library(dslabs)
## Warning: package 'dslabs' was built under R version 3.5.3
library(tidyverse)
## Warning: package 'tidyverse' was built under R version 3.5.3
## -- Attaching packages --------------------------------------- tidyverse 1.2.1 --
## v ggplot2 3.2.1     v purrr   0.3.2
## v tibble  2.1.3     v dplyr   0.8.3
## v tidyr   1.0.0     v stringr 1.4.0
## v readr   1.3.1     v forcats 0.4.0
## Warning: package 'ggplot2' was built under R version 3.5.3
## Warning: package 'tibble' was built under R version 3.5.3
## Warning: package 'tidyr' was built under R version 3.5.3
## Warning: package 'readr' was built under R version 3.5.3
## Warning: package 'purrr' was built under R version 3.5.3
## Warning: package 'dplyr' was built under R version 3.5.3
## Warning: package 'stringr' was built under R version 3.5.3
## Warning: package 'forcats' was built under R version 3.5.3
## -- Conflicts ------------------------------------------ tidyverse_conflicts() --
## x dplyr::filter() masks stats::filter()
## x dplyr::lag()    masks stats::lag()
library(caret)
## Warning: package 'caret' was built under R version 3.5.3
## Loading required package: lattice
## 
## Attaching package: 'caret'
## The following object is masked from 'package:purrr':
## 
##     lift
data("movielens")
set.seed(755)
test_index <- createDataPartition(y = movielens$rating, times = 1,
                                  p = 0.2, list = FALSE)
train_set <- movielens[-test_index,]
test_set <- movielens[test_index,]
test_set <- test_set %>% 
     semi_join(train_set, by = "movieId") %>%
     semi_join(train_set, by = "userId")
RMSE <- function(true_ratings, predicted_ratings){
     sqrt(mean((true_ratings - predicted_ratings)^2))
}
mu_hat <- mean(train_set$rating)
naive_rmse <- RMSE(test_set$rating, mu_hat)
rmse_results <- data_frame(method = "Just the average", RMSE = naive_rmse)
## Warning: `data_frame()` is deprecated, use `tibble()`.
## This warning is displayed once per session.
mu <- mean(train_set$rating) 
movie_avgs <- train_set %>% 
     group_by(movieId) %>% 
     summarize(b_i = mean(rating - mu))
predicted_ratings <- mu + test_set %>% 
     left_join(movie_avgs, by='movieId') %>%
     .$b_i
model_1_rmse <- RMSE(predicted_ratings, test_set$rating)
rmse_results <- bind_rows(rmse_results,
                          data_frame(method="Movie Effect Model",
                                     RMSE = model_1_rmse ))
user_avgs <- test_set %>% 
     left_join(movie_avgs, by='movieId') %>%
     group_by(userId) %>%
     summarize(b_u = mean(rating - mu - b_i))
predicted_ratings <- test_set %>% 
     left_join(movie_avgs, by='movieId') %>%
     left_join(user_avgs, by='userId') %>%
     mutate(pred = mu + b_i + b_u) %>%
     .$pred
model_2_rmse <- RMSE(predicted_ratings, test_set$rating)
rmse_results <- bind_rows(rmse_results,
                          data_frame(method="Movie + User Effects Model",  
                                     RMSE = model_2_rmse ))

test_set %>% 
     left_join(movie_avgs, by='movieId') %>%
     mutate(residual = rating - (mu + b_i)) %>%
     arrange(desc(abs(residual))) %>% 
     select(title,  residual) %>% slice(1:10) %>% knitr::kable()
title residual
Day of the Beast, The (Día de la Bestia, El) 4.500000
Horror Express -4.000000
No Holds Barred 4.000000
Dear Zachary: A Letter to a Son About His Father -4.000000
Faust -4.000000
Hear My Song -4.000000
Confessions of a Shopaholic -4.000000
Twilight Saga: Breaking Dawn - Part 1, The -4.000000
Taxi Driver -3.806931
Taxi Driver -3.806931
movie_titles <- movielens %>% 
     select(movieId, title) %>%
     distinct()
movie_avgs %>% left_join(movie_titles, by="movieId") %>%
     arrange(desc(b_i)) %>% 
     select(title, b_i) %>% 
     slice(1:10) %>%  
     knitr::kable()
title b_i
Lamerica 1.457207
Love & Human Remains 1.457207
Enfer, L’ 1.457207
Picture Bride (Bijo photo) 1.457207
Red Firecracker, Green Firecracker (Pao Da Shuang Deng) 1.457207
Faces 1.457207
Maya Lin: A Strong Clear Vision 1.457207
Heavy 1.457207
Gate of Heavenly Peace, The 1.457207
Death in the Garden (Mort en ce jardin, La) 1.457207
movie_avgs %>% left_join(movie_titles, by="movieId") %>%
     arrange(b_i) %>% 
     select(title, b_i) %>% 
     slice(1:10) %>%  
     knitr::kable()
title b_i
Santa with Muscles -3.042793
BAP*S -3.042793
3 Ninjas: High Noon On Mega Mountain -3.042793
Barney’s Great Adventure -3.042793
Merry War, A -3.042793
Day of the Beast, The (Día de la Bestia, El) -3.042793
Children of the Corn III -3.042793
Whiteboyz -3.042793
Catfish in Black Bean Sauce -3.042793
Watcher, The -3.042793
train_set %>% dplyr::count(movieId) %>% 
     left_join(movie_avgs) %>%
     left_join(movie_titles, by="movieId") %>%
     arrange(desc(b_i)) %>% 
     select(title, b_i, n) %>% 
     slice(1:10) %>% 
     knitr::kable()
## Joining, by = "movieId"
title b_i n
Lamerica 1.457207 1
Love & Human Remains 1.457207 3
Enfer, L’ 1.457207 1
Picture Bride (Bijo photo) 1.457207 1
Red Firecracker, Green Firecracker (Pao Da Shuang Deng) 1.457207 3
Faces 1.457207 1
Maya Lin: A Strong Clear Vision 1.457207 2
Heavy 1.457207 1
Gate of Heavenly Peace, The 1.457207 1
Death in the Garden (Mort en ce jardin, La) 1.457207 1
train_set %>% dplyr::count(movieId) %>% 
     left_join(movie_avgs) %>%
     left_join(movie_titles, by="movieId") %>%
     arrange(b_i) %>% 
     select(title, b_i, n) %>% 
     slice(1:10) %>% 
     knitr::kable()
## Joining, by = "movieId"
title b_i n
Santa with Muscles -3.042793 1
BAP*S -3.042793 1
3 Ninjas: High Noon On Mega Mountain -3.042793 1
Barney’s Great Adventure -3.042793 1
Merry War, A -3.042793 1
Day of the Beast, The (Día de la Bestia, El) -3.042793 1
Children of the Corn III -3.042793 1
Whiteboyz -3.042793 1
Catfish in Black Bean Sauce -3.042793 1
Watcher, The -3.042793 1
lambda <- 3
mu <- mean(train_set$rating)
movie_reg_avgs <- train_set %>% 
     group_by(movieId) %>% 
     summarize(b_i = sum(rating - mu)/(n()+lambda), n_i = n()) 

data_frame(original = movie_avgs$b_i, 
           regularlized = movie_reg_avgs$b_i, 
           n = movie_reg_avgs$n_i) %>%
     ggplot(aes(original, regularlized, size=sqrt(n))) + 
     geom_point(shape=1, alpha=0.5)

train_set %>%
     dplyr::count(movieId) %>% 
     left_join(movie_reg_avgs) %>%
     left_join(movie_titles, by="movieId") %>%
     arrange(desc(b_i)) %>% 
     select(title, b_i, n) %>% 
     slice(1:10) %>% 
     knitr::kable()
## Joining, by = "movieId"
title b_i n
All About Eve 0.9271514 26
Shawshank Redemption, The 0.9206986 240
Godfather, The 0.8971328 153
Godfather: Part II, The 0.8710751 100
Maltese Falcon, The 0.8597749 47
Best Years of Our Lives, The 0.8592343 11
On the Waterfront 0.8467603 23
Face in the Crowd, A 0.8326899 4
African Queen, The 0.8322939 36
All Quiet on the Western Front 0.8235200 11
train_set %>%
     dplyr::count(movieId) %>% 
     left_join(movie_reg_avgs) %>%
     left_join(movie_titles, by="movieId") %>%
     arrange(b_i) %>% 
     select(title, b_i, n) %>% 
     slice(1:10) %>% 
     knitr::kable()
## Joining, by = "movieId"
title b_i n
Battlefield Earth -2.064653 14
Joe’s Apartment -1.779955 7
Speed 2: Cruise Control -1.689385 20
Super Mario Bros. -1.597269 13
Police Academy 6: City Under Siege -1.571379 10
After Earth -1.524453 4
Disaster Movie -1.521396 3
Little Nicky -1.511374 17
Cats & Dogs -1.472973 6
Blade: Trinity -1.462194 11
predicted_ratings <- test_set %>% 
     left_join(movie_reg_avgs, by='movieId') %>%
     mutate(pred = mu + b_i) %>%
     .$pred

model_3_rmse <- RMSE(predicted_ratings, test_set$rating)
rmse_results <- bind_rows(rmse_results,
                          data_frame(method="Regularized Movie Effect Model",  
                                     RMSE = model_3_rmse ))
rmse_results %>% knitr::kable()
method RMSE
Just the average 1.0482202
Movie Effect Model 0.9862839
Movie + User Effects Model 0.8848688
Regularized Movie Effect Model 0.9649457
lambdas <- seq(0, 10, 0.25)
mu <- mean(train_set$rating)
just_the_sum <- train_set %>% 
     group_by(movieId) %>% 
     summarize(s = sum(rating - mu), n_i = n())
rmses <- sapply(lambdas, function(l){
     predicted_ratings <- test_set %>% 
          left_join(just_the_sum, by='movieId') %>% 
          mutate(b_i = s/(n_i+l)) %>%
          mutate(pred = mu + b_i) %>%
          .$pred
     return(RMSE(predicted_ratings, test_set$rating))
})
qplot(lambdas, rmses)  

lambdas[which.min(rmses)]
## [1] 3
lambdas <- seq(0, 10, 0.25)
rmses <- sapply(lambdas, function(l){
     mu <- mean(train_set$rating)
     b_i <- train_set %>%
          group_by(movieId) %>%
          summarize(b_i = sum(rating - mu)/(n()+l))
     b_u <- train_set %>% 
          left_join(b_i, by="movieId") %>%
          group_by(userId) %>%
          summarize(b_u = sum(rating - b_i - mu)/(n()+l))
     predicted_ratings <- 
          test_set %>% 
          left_join(b_i, by = "movieId") %>%
          left_join(b_u, by = "userId") %>%
          mutate(pred = mu + b_i + b_u) %>%
          .$pred
     return(RMSE(predicted_ratings, test_set$rating))
})

qplot(lambdas, rmses)  

lambda <- lambdas[which.min(rmses)]
lambda
## [1] 3.75
rmse_results <- bind_rows(rmse_results,
                          data_frame(method="Regularized Movie + User Effect Model",  
                                     RMSE = min(rmses)))
rmse_results %>% knitr::kable()
method RMSE
Just the average 1.0482202
Movie Effect Model 0.9862839
Movie + User Effects Model 0.8848688
Regularized Movie Effect Model 0.9649457
Regularized Movie + User Effect Model 0.8806419
train_small <- movielens %>% 
     group_by(movieId) %>%
     filter(n() >= 50 | movieId == 3252) %>% ungroup() %>% #3252 is Scent of a Woman used in example
     group_by(userId) %>%
     filter(n() >= 50) %>% ungroup()

y <- train_small %>% 
     select(userId, movieId, rating) %>%
     spread(movieId, rating) %>%
     as.matrix()

rownames(y)<- y[,1]
y <- y[,-1]
colnames(y) <- with(movie_titles, title[match(colnames(y), movieId)])

y <- sweep(y, 1, rowMeans(y, na.rm=TRUE))
y <- sweep(y, 2, colMeans(y, na.rm=TRUE))

m_1 <- "Godfather, The"
m_2 <- "Godfather: Part II, The"
qplot(y[ ,m_1], y[,m_2], xlab = m_1, ylab = m_2)
## Warning: Removed 199 rows containing missing values (geom_point).

m_1 <- "Godfather, The"
m_3 <- "Goodfellas"
qplot(y[ ,m_1], y[,m_3], xlab = m_1, ylab = m_3)
## Warning: Removed 204 rows containing missing values (geom_point).

m_4 <- "You've Got Mail" 
m_5 <- "Sleepless in Seattle" 
qplot(y[ ,m_4], y[,m_5], xlab = m_4, ylab = m_5)
## Warning: Removed 259 rows containing missing values (geom_point).

cor(y[, c(m_1, m_2, m_3, m_4, m_5)], use="pairwise.complete") %>% 
     knitr::kable()
Godfather, The Godfather: Part II, The Goodfellas You’ve Got Mail Sleepless in Seattle
Godfather, The 1.0000000 0.8320756 0.4541425 -0.4535093 -0.3540335
Godfather: Part II, The 0.8320756 1.0000000 0.5400558 -0.3377691 -0.3259897
Goodfellas 0.4541425 0.5400558 1.0000000 -0.4894054 -0.3672836
You’ve Got Mail -0.4535093 -0.3377691 -0.4894054 1.0000000 0.5423584
Sleepless in Seattle -0.3540335 -0.3259897 -0.3672836 0.5423584 1.0000000
set.seed(1)
options(digits = 2)
Q <- matrix(c(1 , 1, 1, -1, -1), ncol=1)
rownames(Q) <- c(m_1, m_2, m_3, m_4, m_5)
P <- matrix(rep(c(2,0,-2), c(3,5,4)), ncol=1)
rownames(P) <- 1:nrow(P)

X <- jitter(P%*%t(Q))
X %>% knitr::kable(align = "c")
Godfather, The Godfather: Part II, The Goodfellas You’ve Got Mail Sleepless in Seattle
1.81 2.15 1.81 -1.76 -1.81
1.90 1.91 1.91 -2.31 -1.85
2.06 2.22 1.61 -1.82 -2.02
0.33 0.00 -0.09 -0.07 0.29
-0.24 0.17 0.30 0.26 -0.05
0.32 0.39 -0.13 0.12 -0.20
0.36 -0.10 -0.01 0.23 -0.34
0.13 0.22 0.08 0.04 -0.32
-1.90 -1.65 -2.01 2.02 1.85
-2.35 -2.23 -2.25 2.23 2.01
-2.24 -1.88 -1.74 1.62 2.13
-2.26 -2.30 -1.87 1.98 1.93
cor(X)
##                         Godfather, The Godfather: Part II, The Goodfellas
## Godfather, The                    1.00                    0.99       0.98
## Godfather: Part II, The           0.99                    1.00       0.99
## Goodfellas                        0.98                    0.99       1.00
## You've Got Mail                  -0.98                   -0.98      -0.99
## Sleepless in Seattle             -0.99                   -0.99      -0.99
##                         You've Got Mail Sleepless in Seattle
## Godfather, The                    -0.98                -0.99
## Godfather: Part II, The           -0.98                -0.99
## Goodfellas                        -0.99                -0.99
## You've Got Mail                    1.00                 0.98
## Sleepless in Seattle               0.98                 1.00
t(Q) %>% knitr::kable(aling="c")
Godfather, The Godfather: Part II, The Goodfellas You’ve Got Mail Sleepless in Seattle
1 1 1 -1 -1
P
##    [,1]
## 1     2
## 2     2
## 3     2
## 4     0
## 5     0
## 6     0
## 7     0
## 8     0
## 9    -2
## 10   -2
## 11   -2
## 12   -2
set.seed(1)
options(digits = 2)
m_6 <- "Scent of a Woman"
Q <- cbind(c(1 , 1, 1, -1, -1, -1), 
           c(1 , 1, -1, -1, -1, 1))
rownames(Q) <- c(m_1, m_2, m_3, m_4, m_5, m_6)
P <- cbind(rep(c(2,0,-2), c(3,5,4)), 
           c(-1,1,1,0,0,1,1,1,0,-1,-1,-1))/2
rownames(P) <- 1:nrow(X)

X <- jitter(P%*%t(Q), factor=1)
X %>% knitr::kable(align = "c")
Godfather, The Godfather: Part II, The Goodfellas You’ve Got Mail Sleepless in Seattle Scent of a Woman
0.45 0.54 1.45 -0.44 -0.45 -1.42
1.47 1.48 0.48 -1.58 -1.46 -0.54
1.51 1.55 0.40 -1.46 -1.50 -0.51
0.08 0.00 -0.02 -0.02 0.07 -0.03
-0.06 0.04 0.07 0.06 -0.01 0.03
0.58 0.60 -0.53 -0.47 -0.55 0.45
0.59 0.48 -0.50 -0.44 -0.59 0.50
0.53 0.56 -0.48 -0.49 -0.58 0.55
-0.97 -0.91 -1.00 1.01 0.96 0.92
-1.59 -1.56 -0.56 1.56 1.50 0.58
-1.56 -1.47 -0.43 1.40 1.53 0.47
-1.56 -1.57 -0.47 1.50 1.48 0.57
cor(X)
##                         Godfather, The Godfather: Part II, The Goodfellas
## Godfather, The                    1.00                    1.00       0.53
## Godfather: Part II, The           1.00                    1.00       0.55
## Goodfellas                        0.53                    0.55       1.00
## You've Got Mail                  -1.00                   -1.00      -0.55
## Sleepless in Seattle             -1.00                   -1.00      -0.53
## Scent of a Woman                 -0.57                   -0.59      -0.99
##                         You've Got Mail Sleepless in Seattle Scent of a Woman
## Godfather, The                    -1.00                -1.00            -0.57
## Godfather: Part II, The           -1.00                -1.00            -0.59
## Goodfellas                        -0.55                -0.53            -0.99
## You've Got Mail                    1.00                 1.00             0.60
## Sleepless in Seattle               1.00                 1.00             0.57
## Scent of a Woman                   0.60                 0.57             1.00
t(Q) %>% knitr::kable(aling="c")
Godfather, The Godfather: Part II, The Goodfellas You’ve Got Mail Sleepless in Seattle Scent of a Woman
1 1 1 -1 -1 -1
1 1 -1 -1 -1 1
P
##    [,1] [,2]
## 1     1 -0.5
## 2     1  0.5
## 3     1  0.5
## 4     0  0.0
## 5     0  0.0
## 6     0  0.5
## 7     0  0.5
## 8     0  0.5
## 9    -1  0.0
## 10   -1 -0.5
## 11   -1 -0.5
## 12   -1 -0.5
six_movies <- c(m_1, m_2, m_3, m_4, m_5, m_6)
tmp <- y[,six_movies]
cor(tmp, use="pairwise.complete")
##                         Godfather, The Godfather: Part II, The Goodfellas
## Godfather, The                    1.00                    0.83       0.45
## Godfather: Part II, The           0.83                    1.00       0.54
## Goodfellas                        0.45                    0.54       1.00
## You've Got Mail                  -0.45                   -0.34      -0.49
## Sleepless in Seattle             -0.35                   -0.33      -0.37
## Scent of a Woman                  0.07                    0.14      -0.17
##                         You've Got Mail Sleepless in Seattle Scent of a Woman
## Godfather, The                    -0.45                -0.35             0.07
## Godfather: Part II, The           -0.34                -0.33             0.14
## Goodfellas                        -0.49                -0.37            -0.17
## You've Got Mail                    1.00                 0.54            -0.20
## Sleepless in Seattle               0.54                 1.00            -0.18
## Scent of a Woman                  -0.20                -0.18             1.00
y[is.na(y)] <- 0
y <- sweep(y, 1, rowMeans(y))
pca <- prcomp(y)

dim(pca$rotation)
## [1] 454 292
dim(pca$x)
## [1] 292 292
plot(pca$sdev)

var_explained <- cumsum(pca$sdev^2/sum(pca$sdev^2))
plot(var_explained)

library(ggrepel)
## Warning: package 'ggrepel' was built under R version 3.5.3
pcs <- data.frame(pca$rotation, name = colnames(y))
pcs %>%  ggplot(aes(PC1, PC2)) + geom_point() + 
     geom_text_repel(aes(PC1, PC2, label=name),
                     data = filter(pcs, 
                                   PC1 < -0.1 | PC1 > 0.1 | PC2 < -0.075 | PC2 > 0.1))

pcs %>% select(name, PC1) %>% arrange(PC1) %>% slice(1:10)
##                         name   PC1
## 1               Pulp Fiction -0.16
## 2       Seven (a.k.a. Se7en) -0.14
## 3                      Fargo -0.14
## 4                Taxi Driver -0.13
## 5      2001: A Space Odyssey -0.13
## 6  Silence of the Lambs, The -0.13
## 7        Clockwork Orange, A -0.12
## 8       Being John Malkovich -0.11
## 9                 Fight Club -0.10
## 10            Godfather, The -0.10
pcs %>% select(name, PC1) %>% arrange(desc(PC1)) %>% slice(1:10)
##                                                                                       name
## 1                                                            Independence Day (a.k.a. ID4)
## 2                                                                                    Shrek
## 3                                                                                  Twister
## 4                                                                                  Titanic
## 5                                                                               Armageddon
## 6                                                                               Spider-Man
## 7  Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 8                                                                           Batman Forever
## 9                                                                             Forrest Gump
## 10                                                                      Enemy of the State
##      PC1
## 1  0.161
## 2  0.128
## 3  0.119
## 4  0.118
## 5  0.111
## 6  0.107
## 7  0.102
## 8  0.101
## 9  0.100
## 10 0.092
pcs %>% select(name, PC2) %>% arrange(PC2) %>% slice(1:10)
##                                             name    PC2
## 1                           Little Miss Sunshine -0.081
## 2                               Truman Show, The -0.079
## 3                            Slumdog Millionaire -0.076
## 4                                  Mars Attacks! -0.073
## 5                                American Beauty -0.069
## 6  Amelie (Fabuleux destin d'Amélie Poulain, Le) -0.068
## 7                   City of God (Cidade de Deus) -0.068
## 8                   Monty Python's Life of Brian -0.068
## 9                      Shawshank Redemption, The -0.066
## 10                             Beautiful Mind, A -0.064
pcs %>% select(name, PC2) %>% arrange(desc(PC2)) %>% slice(1:10)
##                                                  name   PC2
## 1              Lord of the Rings: The Two Towers, The 0.336
## 2  Lord of the Rings: The Fellowship of the Ring, The 0.332
## 3      Lord of the Rings: The Return of the King, The 0.237
## 4                                         Matrix, The 0.231
## 5                  Star Wars: Episode IV - A New Hope 0.217
## 6          Star Wars: Episode VI - Return of the Jedi 0.192
## 7      Star Wars: Episode V - The Empire Strikes Back 0.168
## 8                                        Spider-Man 2 0.114
## 9                                    Dark Knight, The 0.103
## 10                                   X2: X-Men United 0.094
dat <- movielens  %>% select(movieId, year, rating,title,timestamp) %>% mutate(n_year=format(as.POSIXct(timestamp,origin="1970-01-01"),"%Y")) 
dat
##        movieId year rating
## 1           31 1995    2.5
## 2         1029 1941    3.0
## 3         1061 1996    3.0
## 4         1129 1981    2.0
## 5         1172 1989    4.0
## 6         1263 1978    2.0
## 7         1287 1959    2.0
## 8         1293 1982    2.0
## 9         1339 1992    3.5
## 10        1343 1991    2.0
## 11        1371 1979    2.5
## 12        1405 1996    1.0
## 13        1953 1971    4.0
## 14        2105 1982    4.0
## 15        2150 1980    3.0
## 16        2193 1988    2.0
## 17        2294 1998    2.0
## 18        2455 1986    2.5
## 19        2968 1981    1.0
## 20        3671 1974    3.0
## 21          10 1995    4.0
## 22          17 1995    5.0
## 23          39 1995    5.0
## 24          47 1995    4.0
## 25          50 1995    4.0
## 26          52 1995    3.0
## 27          62 1995    3.0
## 28         110 1995    4.0
## 29         144 1995    3.0
## 30         150 1995    5.0
## 31         153 1995    4.0
## 32         161 1995    3.0
## 33         165 1995    3.0
## 34         168 1995    3.0
## 35         185 1995    3.0
## 36         186 1995    3.0
## 37         208 1995    3.0
## 38         222 1995    5.0
## 39         223 1994    1.0
## 40         225 1994    3.0
## 41         235 1994    3.0
## 42         248 1994    3.0
## 43         253 1994    4.0
## 44         261 1994    4.0
## 45         265 1992    5.0
## 46         266 1994    5.0
## 47         272 1994    3.0
## 48         273 1994    4.0
## 49         292 1995    3.0
## 50         296 1994    4.0
## 51         300 1994    3.0
## 52         314 1994    4.0
## 53         317 1994    2.0
## 54         319 1994    1.0
## 55         339 1995    3.0
## 56         349 1994    4.0
## 57         350 1994    4.0
## 58         356 1994    3.0
## 59         357 1994    3.0
## 60         364 1994    3.0
## 61         367 1994    3.0
## 62         370 1994    2.0
## 63         371 1994    3.0
## 64         372 1994    3.0
## 65         377 1994    3.0
## 66         382 1994    3.0
## 67         405 1994    2.0
## 68         410 1993    3.0
## 69         454 1993    4.0
## 70         457 1993    3.0
## 71         468 1995    4.0
## 72         474 1993    2.0
## 73         480 1993    4.0
## 74         485 1993    3.0
## 75         497 1993    3.0
## 76         500 1993    4.0
## 77         508 1993    4.0
## 78         509 1993    4.0
## 79         515 1993    4.0
## 80         527 1993    4.0
## 81         537 1994    4.0
## 82         539 1993    3.0
## 83         550 1994    3.0
## 84         551 1993    5.0
## 85         552 1993    3.0
## 86         585 1995    5.0
## 87         586 1990    3.0
## 88         587 1990    3.0
## 89         588 1992    3.0
## 90         589 1991    5.0
## 91         590 1990    5.0
## 92         592 1989    5.0
## 93         593 1991    3.0
## 94         616 1970    3.0
## 95         661 1996    4.0
## 96         720 1996    4.0
## 97          60 1995    3.0
## 98         110 1995    4.0
## 99         247 1994    3.5
## 100        267 1995    3.0
## 101        296 1994    4.5
## 102        318 1994    5.0
## 103        355 1994    2.5
## 104        356 1994    5.0
## 105        377 1994    2.5
## 106        527 1993    3.0
## 107        588 1992    3.0
## 108        592 1989    3.0
## 109        593 1991    3.0
## 110        595 1991    2.0
## 111        736 1996    3.5
## 112        778 1996    4.0
## 113        866 1996    3.0
## 114       1197 1987    5.0
## 115       1210 1983    3.0
## 116       1235 1971    4.0
## 117       1271 1991    3.0
## 118       1378 1988    4.0
## 119       1580 1997    3.5
## 120       1721 1997    4.5
## 121       1884 1998    4.0
## 122       2028 1998    4.0
## 123       2318 1998    4.0
## 124       2513 1989    3.0
## 125       2694 1999    3.0
## 126       2702 1999    3.5
## 127       2716 1984    3.0
## 128       2762 1999    3.5
## 129       2841 1999    4.0
## 130       2858 1999    4.0
## 131       2959 1999    5.0
## 132       3243 1992    3.0
## 133       3510 2000    4.0
## 134       3949 2000    5.0
## 135       5349 2002    3.0
## 136       5669 2002    3.5
## 137       6377 2003    3.0
## 138       7153 2003    2.5
## 139       7361 2004    3.0
## 140       8622 2004    3.5
## 141       8636 2004    3.0
## 142      27369 2000    3.5
## 143      44191 2006    3.5
## 144      48783 2006    4.5
## 145      50068 2006    4.5
## 146      58559 2008    3.0
## 147      84236 2009    4.0
## 148         10 1995    4.0
## 149         34 1995    5.0
## 150        112 1995    5.0
## 151        141 1996    5.0
## 152        153 1995    4.0
## 153        173 1995    3.0
## 154        185 1995    3.0
## 155        260 1977    5.0
## 156        289 1994    4.0
## 157        296 1994    5.0
## 158        329 1994    3.0
## 159        349 1994    5.0
## 160        356 1994    5.0
## 161        357 1994    5.0
## 162        364 1994    5.0
## 163        367 1994    4.0
## 164        380 1994    3.0
## 165        410 1993    3.0
## 166        431 1993    3.0
## 167        434 1993    4.0
## 168        435 1993    1.0
## 169        440 1993    4.0
## 170        442 1993    4.0
## 171        464 1993    4.0
## 172        480 1993    5.0
## 173        541 1982    5.0
## 174        588 1992    5.0
## 175        589 1991    5.0
## 176        590 1990    3.0
## 177        594 1937    5.0
## 178        596 1940    5.0
## 179        610 1981    4.0
## 180        616 1970    5.0
## 181        858 1972    5.0
## 182        903 1958    5.0
## 183        910 1959    4.0
## 184        913 1941    5.0
## 185        919 1939    5.0
## 186       1011 1974    4.0
## 187       1016 1959    4.0
## 188       1022 1950    5.0
## 189       1028 1964    5.0
## 190       1030 1977    5.0
## 191       1031 1971    5.0
## 192       1032 1951    5.0
## 193       1033 1981    5.0
## 194       1036 1988    5.0
## 195       1073 1971    5.0
## 196       1079 1988    5.0
## 197       1089 1992    5.0
## 198       1097 1982    5.0
## 199       1125 1975    5.0
## 200       1127 1989    5.0
## 201       1136 1975    5.0
## 202       1194 1978    5.0
## 203       1196 1980    5.0
## 204       1197 1987    5.0
## 205       1198 1981    5.0
## 206       1200 1986    5.0
## 207       1206 1971    5.0
## 208       1208 1979    5.0
## 209       1210 1983    5.0
## 210       1213 1990    5.0
## 211       1214 1979    5.0
## 212       1219 1960    5.0
## 213       1220 1980    5.0
## 214       1222 1987    5.0
## 215       1225 1984    5.0
## 216       1230 1977    5.0
## 217       1240 1984    5.0
## 218       1243 1990    5.0
## 219       1257 1985    5.0
## 220       1258 1980    5.0
## 221       1259 1986    4.0
## 222       1265 1993    5.0
## 223       1270 1985    5.0
## 224       1278 1974    5.0
## 225       1282 1940    5.0
## 226       1285 1989    4.0
## 227       1288 1984    5.0
## 228       1291 1989    5.0
## 229       1298 1982    4.0
## 230       1307 1989    4.0
## 231       1332 1987    4.0
## 232       1334 1958    5.0
## 233       1344 1962    5.0
## 234       1356 1996    4.0
## 235       1371 1979    4.0
## 236       1372 1991    3.0
## 237       1374 1982    4.0
## 238       1376 1986    3.0
## 239       1377 1992    3.0
## 240       1380 1978    5.0
## 241       1387 1975    5.0
## 242       1388 1978    4.0
## 243       1396 1992    5.0
## 244       1544 1997    3.0
## 245       1580 1997    5.0
## 246       1663 1981    4.0
## 247       1674 1985    5.0
## 248       1805 1998    1.0
## 249       1858 1997    5.0
## 250       1917 1998    4.0
## 251       1918 1998    2.0
## 252       1953 1971    5.0
## 253       1954 1976    5.0
## 254       1961 1988    5.0
## 255       1967 1986    3.0
## 256       1968 1985    5.0
## 257       1994 1982    5.0
## 258       2000 1987    5.0
## 259       2002 1992    3.0
## 260       2003 1984    2.0
## 261       2005 1985    5.0
## 262       2014 1977    4.0
## 263       2018 1942    5.0
## 264       2020 1988    4.0
## 265       2021 1984    4.0
## 266       2033 1985    4.0
## 267       2034 1979    4.0
## 268       2046 1986    5.0
## 269       2054 1989    3.0
## 270       2064 1989    5.0
## 271       2078 1967    5.0
## 272       2080 1955    5.0
## 273       2081 1989    4.0
## 274       2085 1961    5.0
## 275       2086 1985    5.0
## 276       2087 1953    5.0
## 277       2091 1978    5.0
## 278       2094 1991    4.0
## 279       2096 1959    5.0
## 280       2100 1984    5.0
## 281       2102 1928    5.0
## 282       2105 1982    4.0
## 283       2109 1979    5.0
## 284       2110 1982    3.0
## 285       2114 1983    5.0
## 286       2115 1984    5.0
## 287       2124 1991    4.0
## 288       2140 1982    5.0
## 289       2141 1986    4.0
## 290       2143 1985    4.0
## 291       2144 1984    5.0
## 292       2161 1984    5.0
## 293       2174 1988    5.0
## 294       2193 1988    3.0
## 295       2194 1987    5.0
## 296       2248 1989    4.0
## 297       2263 1988    3.0
## 298       2268 1992    5.0
## 299       2289 1992    5.0
## 300       2348 1986    4.0
## 301       2371 1985    4.0
## 302       2403 1982    4.0
## 303       2406 1984    5.0
## 304       2409 1979    4.0
## 305       2454 1958    5.0
## 306       2467 1986    5.0
## 307       2551 1988    4.0
## 308       2616 1990    1.0
## 309       2628 1999    5.0
## 310       2640 1978    5.0
## 311       2659 1982    3.0
## 312       2683 1999    4.0
## 313       2699 1990    4.0
## 314       2716 1984    5.0
## 315       2723 1999    5.0
## 316       2734 1986    4.0
## 317       2770 1999    1.0
## 318       2788 1971    5.0
## 319       2791 1980    5.0
## 320       2795 1983    4.0
## 321       2797 1988    5.0
## 322       2804 1983    5.0
## 323       2822 1992    3.0
## 324       2867 1985    3.0
## 325       2872 1981    5.0
## 326       2877 1975    5.0
## 327       2902 1983    2.0
## 328       2903 1986    1.0
## 329       2916 1990    4.0
## 330       2918 1986    5.0
## 331       2968 1981    5.0
## 332       2986 1990    3.0
## 333       2987 1988    5.0
## 334       2991 1973    5.0
## 335       3016 1982    3.0
## 336       3034 1973    5.0
## 337       3039 1983    4.0
## 338       3040 1979    5.0
## 339       3060 1991    5.0
## 340       3071 1988    4.0
## 341       3101 1987    4.0
## 342       3104 1988    4.0
## 343       3108 1991    5.0
## 344       3169 1985    4.0
## 345       3208 1993    2.0
## 346       3210 1982    4.0
## 347       3251 1985    5.0
## 348       3255 1992    4.0
## 349       3263 1992    3.0
## 350       3265 1992    5.0
## 351       4006 1986    2.0
## 352          3 1995    4.0
## 353         39 1995    4.0
## 354        104 1996    4.0
## 355        141 1996    4.0
## 356        150 1995    4.0
## 357        231 1994    3.5
## 358        277 1994    4.5
## 359        344 1994    3.5
## 360        356 1994    4.0
## 361        364 1994    4.0
## 362        367 1994    4.0
## 363        377 1994    4.0
## 364        440 1993    4.0
## 365        500 1993    4.5
## 366        586 1990    4.0
## 367        588 1992    3.5
## 368        595 1991    4.0
## 369        597 1990    5.0
## 370        788 1996    3.5
## 371        858 1972    2.5
## 372        903 1958    3.5
## 373        919 1939    4.0
## 374       1022 1950    4.0
## 375       1035 1965    5.0
## 376       1193 1975    3.0
## 377       1221 1974    2.5
## 378       1247 1967    4.0
## 379       1307 1989    4.0
## 380       1380 1978    5.0
## 381       1393 1996    3.5
## 382       1485 1997    4.5
## 383       1544 1997    3.5
## 384       1682 1998    4.0
## 385       1721 1997    4.0
## 386       1777 1998    4.0
## 387       1784 1997    4.5
## 388       1923 1998    4.5
## 389       1961 1988    4.0
## 390       1968 1985    4.0
## 391       1997 1973    3.5
## 392       2023 1990    1.5
## 393       2081 1989    5.0
## 394       2273 1998    4.0
## 395       2294 1998    4.0
## 396       2355 1998    3.5
## 397       2424 1998    4.0
## 398       2502 1999    3.5
## 399       2683 1999    4.0
## 400       2694 1999    4.5
## 401       2706 1999    4.0
## 402       2762 1999    3.5
## 403       2770 1999    3.5
## 404       2918 1986    3.5
## 405       2997 1999    3.5
## 406       3114 1999    3.5
## 407       3176 1999    3.5
## 408       3408 2000    4.0
## 409       3753 2000    3.5
## 410       3897 2000    4.5
## 411       3948 2000    3.5
## 412       4014 2000    4.0
## 413       4018 2000    4.0
## 414       4022 2000    3.5
## 415       4025 2000    4.5
## 416       4306 2001    3.5
## 417       4308 2001    3.5
## 418       4447 2001    4.5
## 419       4718 2001    3.5
## 420       4963 2001    3.0
## 421       4995 2001    4.5
## 422       5266 2002    3.5
## 423       5299 2002    4.5
## 424       5349 2002    4.5
## 425       5464 2002    4.0
## 426       5669 2002    3.5
## 427       5679 2002    4.5
## 428       5816 2002    3.0
## 429       5995 2002    4.0
## 430       6218 2002    3.5
## 431       6373 2003    4.0
## 432       6377 2003    4.0
## 433       6502 2002    4.0
## 434       6711 2003    2.5
## 435       6942 2003    4.0
## 436       8376 2004    4.0
## 437       8464 2004    4.0
## 438       8622 2004    3.5
## 439       8636 2004    4.5
## 440       8644 2004    4.0
## 441      30707 2004    4.5
## 442      30749 2004    4.5
## 443      30793 2005    3.5
## 444      33166 2004    5.0
## 445      33679 2005    4.0
## 446      34162 2005    4.5
## 447      35836 2005    4.0
## 448      40819 2005    4.5
## 449      41566 2005    4.0
## 450      41569 2005    4.0
## 451      48385 2006    4.5
## 452        111 1976    4.0
## 453        158 1995    2.0
## 454        173 1995    2.0
## 455        293 1994    5.0
## 456        596 1940    4.0
## 457        903 1958    4.0
## 458       1204 1962    5.0
## 459       1250 1957    4.5
## 460       1259 1986    4.5
## 461       1276 1967    4.5
## 462       1285 1989    4.5
## 463       1358 1996    2.0
## 464       1639 1997    2.0
## 465       1687 1997    2.0
## 466       1747 1997    2.0
## 467       1876 1998    0.5
## 468       1909 1998    3.0
## 469       2001 1989    3.0
## 470       2019 1954    4.0
## 471       2072 1989    4.0
## 472       2174 1988    4.0
## 473       2502 1999    3.5
## 474       2528 1976    3.0
## 475       2529 1968    4.0
## 476       2571 1999    1.0
## 477       2657 1975    2.0
## 478       2692 1998    4.0
## 479       2723 1999    3.0
## 480       2761 1999    4.5
## 481       2890 1999    3.0
## 482       3052 1999    1.0
## 483       3114 1999    4.0
## 484       3300 2000    3.5
## 485       3751 2000    1.5
## 486       4641 2001    1.5
## 487       4975 2001    1.5
## 488       5952 2002    5.0
## 489       7090 2002    3.0
## 490       7153 2003    5.0
## 491       7361 2004    4.0
## 492       8368 2004    3.5
## 493       8636 2004    4.0
## 494       8784 2004    3.0
## 495       8874 2004    4.5
## 496          1 1995    3.0
## 497         10 1995    3.0
## 498         21 1995    3.0
## 499         31 1995    3.0
## 500         34 1995    4.0
## 501         40 1995    4.0
## 502        104 1996    3.0
## 503        110 1995    5.0
## 504        112 1995    4.0
## 505        141 1996    4.0
## 506        151 1995    4.0
## 507        198 1995    2.0
## 508        207 1995    3.0
## 509        260 1977    5.0
## 510        272 1994    3.0
## 511        316 1994    2.0
## 512        318 1994    5.0
## 513        329 1994    3.0
## 514        333 1995    3.0
## 515        345 1994    3.0
## 516        355 1994    3.0
## 517        356 1994    3.0
## 518        357 1994    3.0
## 519        364 1994    3.0
## 520        367 1994    3.0
## 521        377 1994    3.0
## 522        380 1994    4.0
## 523        480 1993    4.0
## 524        500 1993    3.0
## 525        534 1993    4.0
## 526        539 1993    3.0
## 527        541 1982    4.0
## 528        551 1993    4.0
## 529        588 1992    4.0
## 530        589 1991    3.0
## 531        590 1990    4.0
## 532        592 1989    3.0
## 533        594 1937    4.0
## 534        595 1991    3.0
## 535        610 1981    3.0
## 536        671 1996    4.0
## 537        708 1996    3.0
## 538        720 1996    5.0
## 539        724 1996    2.0
## 540        736 1996    1.0
## 541        737 1996    1.0
## 542        745 1995    5.0
## 543        780 1996    3.0
## 544        786 1996    2.0
## 545        924 1968    4.0
## 546       1036 1988    3.0
## 547       1073 1971    3.0
## 548       1079 1988    4.0
## 549       1080 1979    4.0
## 550       1097 1982    3.0
## 551       1125 1975    3.0
## 552       1129 1981    3.0
## 553       1136 1975    4.0
## 554       1148 1993    5.0
## 555       1196 1980    5.0
## 556       1197 1987    3.0
## 557       1198 1981    5.0
## 558       1210 1983    5.0
## 559       1220 1980    4.0
## 560       1223 1989    5.0
## 561       1225 1984    5.0
## 562       1231 1983    4.0
## 563       1240 1984    4.0
## 564       1242 1989    5.0
## 565       1270 1985    3.0
## 566       1275 1986    4.0
## 567       1278 1974    3.0
## 568       1287 1959    4.0
## 569       1288 1984    4.0
## 570       1291 1989    3.0
## 571       1298 1982    3.0
## 572       1302 1989    4.0
## 573       1307 1989    3.0
## 574       1353 1996    3.0
## 575       1371 1979    3.0
## 576       1372 1991    3.0
## 577       1373 1989    2.0
## 578       1374 1982    4.0
## 579       1375 1984    3.0
## 580       1376 1986    3.0
## 581       1394 1987    3.0
## 582       1405 1996    5.0
## 583       1408 1992    1.0
## 584         32 1995    5.0
## 585         45 1995    2.5
## 586         47 1995    5.0
## 587         50 1995    5.0
## 588        110 1995    4.0
## 589        260 1977    3.5
## 590        282 1994    2.0
## 591        296 1994    4.0
## 592        318 1994    5.0
## 593        356 1994    4.0
## 594        457 1993    4.5
## 595        520 1993    3.5
## 596        524 1993    2.0
## 597        527 1993    5.0
## 598        543 1993    5.0
## 599        589 1991    4.0
## 600        593 1991    4.5
## 601        628 1996    4.0
## 602        805 1996    3.5
## 603        858 1972    5.0
## 604       1196 1980    3.5
## 605       1197 1987    4.0
## 606       1198 1981    4.0
## 607       1210 1983    4.0
## 608       1219 1960    4.0
## 609       1225 1984    4.0
## 610       1258 1980    4.0
## 611       1259 1986    4.0
## 612       1265 1993    3.0
## 613       1270 1985    4.0
## 614       1291 1989    4.0
## 615       1302 1989    3.5
## 616       1358 1996    0.5
## 617       1387 1975    4.0
## 618       1393 1996    3.0
## 619       1500 1997    4.0
## 620       1552 1997    3.0
## 621       1617 1997    3.5
## 622       1625 1997    5.0
## 623       1674 1985    4.0
## 624       1704 1997    4.0
## 625       1754 1998    3.0
## 626       1777 1998    5.0
## 627       1876 1998    3.5
## 628       1961 1988    5.0
## 629       2028 1998    4.0
## 630       2100 1984    3.0
## 631       2139 1982    3.0
## 632       2194 1987    4.5
## 633       2302 1992    4.5
## 634       2324 1997    4.0
## 635       2329 1998    5.0
## 636       2353 1998    3.5
## 637       2423 1989    3.5
## 638       2502 1999    5.0
## 639       2571 1999    5.0
## 640       2716 1984    3.5
## 641       2762 1999    4.5
## 642       2770 1999    2.5
## 643       2791 1980    4.5
## 644       2797 1988    3.5
## 645       2804 1983    3.5
## 646       2841 1999    3.0
## 647       2858 1999    4.5
## 648       2918 1986    5.0
## 649       2959 1999    4.0
## 650       3147 1999    4.5
## 651       3578 2000    5.0
## 652       3916 2000    3.5
## 653       3948 2000    4.0
## 654       3996 2000    4.0
## 655       4011 2000    4.5
## 656       4019 2000    3.5
## 657       4034 2000    4.5
## 658       4226 2000    5.0
## 659       4262 1983    4.0
## 660       4448 2001    2.5
## 661       4886 2001    3.5
## 662       4896 2001    3.5
## 663       4963 2001    4.5
## 664       4973 2001    4.0
## 665       4993 2001    3.5
## 666       4995 2001    3.5
## 667       5064 2002    5.0
## 668       5378 2002    3.5
## 669       5445 2002    4.5
## 670       5464 2002    4.0
## 671       5630 2002    4.0
## 672       5650 1983    4.0
## 673       5669 2002    3.0
## 674       5952 2002    4.0
## 675       5989 2002    3.5
## 676       6377 2003    4.0
## 677       6378 2003    3.0
## 678       6870 2003    4.0
## 679       6874 2003    5.0
## 680       6879 2003    3.0
## 681       7143 2003    3.5
## 682       7153 2003    4.0
## 683       7361 2004    4.0
## 684       7438 2004    4.0
## 685       8533 2004    2.5
## 686       8784 2004    4.5
## 687       8873 2004    4.0
## 688       8874 2004    3.0
## 689      32587 2005    3.5
## 690      33166 2004    4.5
## 691      33493 2005    4.5
## 692      33794 2005    4.5
## 693      34162 2005    3.5
## 694      40583 2005    3.5
## 695      40819 2005    3.5
## 696      42007 2005    2.0
## 697      43556 2006    3.5
## 698      43871 2006    3.0
## 699      44004 2006    3.0
## 700          1 1995    4.0
## 701         17 1995    4.0
## 702         26 1995    3.0
## 703         36 1995    5.0
## 704         47 1995    3.0
## 705        318 1994    4.0
## 706        497 1993    4.0
## 707        515 1993    4.0
## 708        527 1993    5.0
## 709        534 1993    5.0
## 710        593 1991    4.0
## 711        608 1996    5.0
## 712        733 1996    2.0
## 713       1059 1996    5.0
## 714       1177 1992    3.0
## 715       1357 1996    4.0
## 716       1358 1996    4.0
## 717       1411 1996    3.0
## 718       1541 1997    2.0
## 719       1584 1997    4.0
## 720       1680 1998    4.0
## 721       1682 1998    5.0
## 722       1704 1997    4.0
## 723       1721 1997    3.0
## 724       1784 1997    5.0
## 725       2028 1998    4.0
## 726       2125 1998    4.0
## 727       2140 1982    4.0
## 728       2249 1990    4.0
## 729       2268 1992    3.0
## 730       2273 1998    3.0
## 731       2278 1998    4.0
## 732       2291 1990    4.0
## 733       2294 1998    2.0
## 734       2302 1992    4.0
## 735       2391 1998    4.0
## 736       2396 1998    4.0
## 737       2427 1998    2.0
## 738       2490 1999    3.0
## 739       2501 1999    4.0
## 740       2539 1999    2.0
## 741       2571 1999    5.0
## 742       2628 1999    3.0
## 743       2762 1999    4.0
## 744       2857 1968    4.0
## 745         50 1995    5.0
## 746        152 1995    4.0
## 747        318 1994    4.0
## 748        344 1994    3.0
## 749        345 1994    4.0
## 750        592 1989    3.0
## 751        735 1994    4.0
## 752       1036 1988    3.0
## 753       1089 1992    3.0
## 754       1101 1986    2.0
## 755       1127 1989    4.0
## 756       1196 1980    4.0
## 757       1197 1987    4.0
## 758       1198 1981    4.0
## 759       1200 1986    4.0
## 760       1210 1983    4.0
## 761       1220 1980    3.0
## 762       1240 1984    4.0
## 763       1291 1989    4.0
## 764       1358 1996    5.0
## 765       1423 1996    4.0
## 766       1459 1997    3.0
## 767       1499 1997    3.0
## 768       1611 1991    5.0
## 769       1690 1997    3.0
## 770       1704 1997    4.0
## 771       1719 1997    5.0
## 772       1887 1998    2.0
## 773       1923 1998    5.0
## 774       2108 1991    3.0
## 775       2344 1985    5.0
## 776       2406 1984    4.0
## 777       2410 1982    2.0
## 778       2539 1999    4.0
## 779       2571 1999    5.0
## 780       2826 1999    5.0
## 781       2827 1999    3.0
## 782       2840 1999    3.0
## 783       2841 1999    4.0
## 784       2881 1999    3.0
## 785       2890 1999    4.0
## 786       2907 1999    2.0
## 787       2926 1988    5.0
## 788       2995 1999    2.0
## 789       3005 1999    3.0
## 790       3019 1989    4.0
## 791         50 1995    5.0
## 792         70 1996    1.0
## 793        126 1994    4.0
## 794        169 1995    3.0
## 795        296 1994    5.0
## 796        778 1996    4.5
## 797        785 1996    3.5
## 798        923 1941    5.0
## 799       1027 1991    4.5
## 800       1201 1966    5.0
## 801       1408 1992    5.0
## 802       1918 1998    3.0
## 803       2042 1994    3.5
## 804       2596 1998    4.5
## 805       2762 1999    3.0
## 806       3424 1989    3.0
## 807       5669 2002    3.0
## 808       6598 2002    5.0
## 809      26614 1988    5.0
## 810      48516 2006    5.0
## 811      51084 2007    4.0
## 812      58295 2008    4.5
## 813      71211 2009    3.5
## 814      77455 2010    4.5
## 815      79132 2010    4.0
## 816      80489 2010    4.5
## 817      80906 2010    3.0
## 818      81158 2010    4.0
## 819      81562 2010    3.5
## 820      88129 2011    4.0
## 821      91500 2012    4.5
## 822      91529 2012    4.5
## 823      91548 2011    4.0
## 824      96079 2012    4.0
## 825      96861 2012    4.0
## 826      97938 2012    4.0
## 827     104841 2013    5.0
## 828     106487 2013    5.0
## 829        253 1994    3.0
## 830        529 1993    1.0
## 831        538 1993    3.0
## 832        608 1996    2.0
## 833        673 1996    1.0
## 834        736 1996    4.0
## 835        737 1996    3.0
## 836       1028 1964    1.0
## 837       1032 1951    2.0
## 838       1077 1973    3.0
## 839       1197 1987    1.0
## 840       1215 1993    5.0
## 841       1220 1980    5.0
## 842       1230 1977    2.0
## 843       1235 1971    5.0
## 844       1295 1988    1.0
## 845       1374 1982    1.0
## 846       1387 1975    4.0
## 847       1639 1997    2.0
## 848       1732 1998    3.0
## 849       2259 1984    2.0
## 850       2355 1998    2.0
## 851       2460 1986    4.0
## 852       2529 1968    1.0
## 853       2668 1982    2.0
## 854       2959 1999    4.0
## 855       3146 1999    2.0
## 856       3148 1999    1.0
## 857       3176 1999    3.0
## 858       3179 1999    2.0
## 859       3298 2000    4.0
## 860       3324 2000    1.0
## 861       3408 2000    4.0
## 862       3474 1997    4.0
## 863       3770 1984    3.0
## 864       3773 1990    2.0
## 865       3780 1950    2.0
## 866       3791 1984    1.0
## 867       3793 2000    5.0
## 868       3794 2000    3.0
## 869       3798 2000    4.0
## 870       3799 2000    1.0
## 871       3801 1959    3.0
## 872       3809 1991    3.0
## 873       3825 2000    5.0
## 874       3827 2000    2.0
## 875       3829 2000    2.0
## 876       3831 2000    4.0
## 877       3841 1990    2.0
## 878       3844 1989    1.0
## 879       3861 2000    3.0
## 880       3863 2000    5.0
## 881       3864 1999    3.0
## 882       3865 2000    5.0
## 883       3869 1991    2.0
## 884       3871 1953    2.0
## 885       3873 1965    3.0
## 886       3879 2000    5.0
## 887       3885 2000    3.0
## 888       3886 2000    2.0
## 889       6184 1976    4.0
## 890          1 1995    5.0
## 891         47 1995    2.5
## 892        110 1995    4.0
## 893        277 1994    4.0
## 894        296 1994    3.5
## 895        318 1994    4.5
## 896        356 1994    5.0
## 897        362 1994    4.5
## 898        480 1993    3.0
## 899        524 1993    3.5
## 900        527 1993    4.0
## 901        531 1993    4.0
## 902        587 1990    3.0
## 903        590 1990    4.0
## 904        914 1964    4.0
## 905        919 1939    3.5
## 906       1027 1991    3.0
## 907       1259 1986    4.0
## 908       1265 1993    2.5
## 909       1918 1998    3.0
## 910       1961 1988    4.0
## 911       2355 1998    4.0
## 912       2571 1999    3.0
## 913       2572 1999    3.5
## 914       2761 1999    4.0
## 915       2762 1999    3.0
## 916       2804 1983    3.0
## 917       2908 1999    3.0
## 918       2918 1986    3.0
## 919       3114 1999    3.0
## 920       3147 1999    4.0
## 921       3255 1992    3.5
## 922       3396 1979    3.5
## 923       3624 2000    3.0
## 924       4306 2001    4.0
## 925       4310 2001    4.5
## 926       4321 1991    2.5
## 927       4718 2001    3.5
## 928       4878 2001    4.5
## 929       4886 2001    3.5
## 930       4993 2001    4.5
## 931       5989 2002    4.0
## 932       6377 2003    4.5
## 933       7361 2004    4.0
## 934       7502 2001    4.5
## 935      54286 2007    3.5
## 936      58559 2008    4.5
## 937      64614 2008    4.5
## 938      69757 2009    4.0
## 939      78499 2010    4.0
## 940      81834 2010    4.5
## 941      88125 2011    4.5
## 942      93363 2012    3.0
## 943        594 1937    1.0
## 944       1196 1980    4.0
## 945       1721 1997    3.0
## 946       2038 1978    3.0
## 947       2355 1998    2.0
## 948       2394 1998    3.0
## 949       2628 1999    3.0
## 950       2683 1999    2.0
## 951       2716 1984    3.0
## 952       2720 1999    2.0
## 953       2724 1999    3.0
## 954       2861 1999    2.0
## 955       3114 1999    4.0
## 956       3157 1999    2.0
## 957       3175 1999    5.0
## 958       3354 2000    3.0
## 959       3623 2000    3.0
## 960       3751 2000    4.0
## 961       3986 2000    3.0
## 962       3988 2000    4.0
## 963          1 1995    2.0
## 964          2 1995    2.0
## 965          5 1995    4.5
## 966          6 1995    4.0
## 967         10 1995    3.0
## 968         11 1995    2.5
## 969         14 1995    2.5
## 970         16 1995    3.5
## 971         17 1995    3.0
## 972         19 1995    1.0
## 973         21 1995    4.5
## 974         22 1995    2.5
## 975         25 1995    3.0
## 976         32 1995    4.0
## 977         34 1995    3.0
## 978         36 1995    1.0
## 979         39 1995    2.5
## 980         44 1995    3.0
## 981         47 1995    5.0
## 982         50 1995    5.0
## 983         52 1995    2.5
## 984         62 1995    2.0
## 985         70 1996    0.5
## 986         82 1995    5.0
## 987         94 1996    3.0
## 988         95 1996    1.5
## 989        101 1996    4.0
## 990        104 1996    1.0
## 991        107 1996    2.0
## 992        110 1995    3.0
## 993        111 1976    5.0
## 994        112 1995    2.5
## 995        123 1994    4.0
## 996        125 1996    3.5
## 997        145 1995    3.5
## 998        149 1994    5.0
## 999        150 1995    3.0
## 1000       153 1995    1.0
## 1001       157 1995    2.0
## 1002       160 1995    0.5
## 1003       161 1995    3.0
## 1004       162 1994    4.0
## 1005       163 1995    2.0
## 1006       164 1995    4.0
## 1007       165 1995    3.0
## 1008       170 1995    2.5
## 1009       172 1995    1.0
## 1010       175 1995    4.0
## 1011       176 1995    4.0
## 1012       180 1995    3.0
## 1013       185 1995    2.0
## 1014       193 1995    1.0
## 1015       196 1995    2.0
## 1016       198 1995    1.5
## 1017       208 1995    1.5
## 1018       214 1994    2.0
## 1019       215 1995    4.5
## 1020       216 1995    1.0
## 1021       223 1994    4.0
## 1022       225 1994    1.0
## 1023       230 1995    1.0
## 1024       231 1994    3.5
## 1025       232 1994    4.0
## 1026       233 1994    4.0
## 1027       235 1994    4.0
## 1028       237 1995    3.5
## 1029       246 1994    5.0
## 1030       247 1994    2.0
## 1031       252 1994    2.0
## 1032       253 1994    2.0
## 1033       260 1977    5.0
## 1034       265 1992    1.0
## 1035       288 1994    2.0
## 1036       292 1995    1.0
## 1037       293 1994    5.0
## 1038       296 1994    5.0
## 1039       300 1994    4.0
## 1040       306 1994    5.0
## 1041       307 1993    4.0
## 1042       308 1994    4.0
## 1043       316 1994    3.0
## 1044       317 1994    1.0
## 1045       318 1994    2.0
## 1046       322 1995    2.5
## 1047       329 1994    1.5
## 1048       335 1995    2.0
## 1049       339 1995    2.5
## 1050       342 1994    3.0
## 1051       344 1994    2.0
## 1052       349 1994    3.0
## 1053       353 1994    3.0
## 1054       355 1994    0.5
## 1055       356 1994    1.0
## 1056       357 1994    3.5
## 1057       364 1994    4.0
## 1058       367 1994    2.0
## 1059       370 1994    3.5
## 1060       371 1994    2.0
## 1061       372 1994    3.0
## 1062       373 1992    3.5
## 1063       377 1994    4.0
## 1064       380 1994    4.0
## 1065       382 1994    3.5
## 1066       429 1994    1.0
## 1067       431 1993    4.0
## 1068       434 1993    3.0
## 1069       435 1993    1.0
## 1070       440 1993    2.5
## 1071       441 1993    4.0
## 1072       442 1993    1.0
## 1073       454 1993    3.0
## 1074       457 1993    5.0
## 1075       466 1993    2.5
## 1076       471 1994    3.0
## 1077       474 1993    3.0
## 1078       480 1993    3.0
## 1079       481 1993    3.0
## 1080       483 1993    1.0
## 1081       485 1993    0.5
## 1082       494 1996    4.0
## 1083       500 1993    3.0
## 1084       508 1993    1.5
## 1085       509 1993    2.0
## 1086       520 1993    3.5
## 1087       524 1993    2.5
## 1088       527 1993    4.0
## 1089       535 1993    3.0
## 1090       539 1993    2.0
## 1091       540 1993    1.5
## 1092       541 1982    5.0
## 1093       543 1993    3.0
## 1094       549 1993    5.0
## 1095       551 1993    2.0
## 1096       555 1993    4.0
## 1097       556 1993    3.5
## 1098       562 1995    3.0
## 1099       574 1994    3.0
## 1100       586 1990    2.0
## 1101       587 1990    1.0
## 1102       588 1992    0.5
## 1103       589 1991    4.0
## 1104       590 1990    3.0
## 1105       592 1989    4.0
## 1106       593 1991    5.0
## 1107       594 1937    2.5
## 1108       597 1990    2.5
## 1109       608 1996    5.0
## 1110       610 1981    3.0
## 1111       628 1996    2.5
## 1112       647 1996    1.5
## 1113       648 1996    4.0
## 1114       663 1996    2.0
## 1115       665 1995    3.0
## 1116       674 1968    3.0
## 1117       680 1965    2.0
## 1118       708 1996    3.0
## 1119       720 1996    3.0
## 1120       724 1996    2.0
## 1121       733 1996    3.5
## 1122       736 1996    1.0
## 1123       745 1995    3.0
## 1124       748 1996    2.5
## 1125       750 1964    4.0
## 1126       762 1996    2.0
## 1127       778 1996    4.0
## 1128       780 1996    2.5
## 1129       784 1996    2.5
## 1130       785 1996    3.0
## 1131       786 1996    0.5
## 1132       788 1996    1.5
## 1133       799 1996    3.0
## 1134       800 1996    5.0
## 1135       802 1996    1.0
## 1136       803 1996    4.5
## 1137       804 1996    3.5
## 1138       832 1996    1.0
## 1139       836 1996    2.0
## 1140       851 1996    4.0
## 1141       858 1972    5.0
## 1142       866 1996    4.0
## 1143       899 1952    5.0
## 1144       903 1958    5.0
## 1145       904 1954    5.0
## 1146       908 1959    5.0
## 1147       909 1960    4.0
## 1148       910 1959    2.5
## 1149       911 1963    4.0
## 1150       912 1942    5.0
## 1151       913 1941    4.0
## 1152       914 1964    1.5
## 1153       916 1953    1.0
## 1154       919 1939    3.0
## 1155       920 1939    3.5
## 1156       922 1950    1.0
## 1157       923 1941    5.0
## 1158       924 1968    5.0
## 1159       926 1950    3.0
## 1160       931 1945    1.0
## 1161       953 1946    3.0
## 1162       994 1996    4.0
## 1163      1020 1993    2.0
## 1164      1035 1965    2.0
## 1165      1036 1988    4.0
## 1166      1041 1996    5.0
## 1167      1047 1996    2.5
## 1168      1059 1996    1.5
## 1169      1060 1996    4.0
## 1170      1073 1971    3.0
## 1171      1079 1988    4.0
## 1172      1084 1967    3.0
## 1173      1088 1987    2.0
## 1174      1089 1992    4.0
## 1175      1092 1992    2.5
## 1176      1093 1991    2.0
## 1177      1094 1992    4.0
## 1178      1095 1992    4.0
## 1179      1097 1982    4.0
## 1180      1100 1990    2.5
## 1181      1101 1986    3.0
## 1182      1120 1996    1.0
## 1183      1127 1989    4.0
## 1184      1131 1986    2.5
## 1185      1136 1975    2.5
## 1186      1147 1996    3.5
## 1187      1148 1993    3.0
## 1188      1171 1992    4.0
## 1189      1173 1989    3.0
## 1190      1176 1991    4.0
## 1191      1178 1957    3.0
## 1192      1179 1990    4.0
## 1193      1183 1996    2.0
## 1194      1186 1989    4.5
## 1195      1189 1988    3.5
## 1196      1193 1975    5.0
## 1197      1196 1980    5.0
## 1198      1197 1987    1.0
## 1199      1198 1981    4.0
## 1200      1199 1985    1.0
## 1201      1200 1986    4.0
## 1202      1201 1966    3.5
## 1203      1203 1957    4.0
## 1204      1204 1962    2.0
## 1205      1206 1971    5.0
## 1206      1207 1962    3.0
## 1207      1208 1979    5.0
## 1208      1209 1968    4.5
## 1209      1210 1983    5.0
## 1210      1211 1987    1.5
## 1211      1212 1949    3.0
## 1212      1213 1990    3.0
## 1213      1214 1979    4.0
## 1214      1215 1993    1.5
## 1215      1217 1985    2.0
## 1216      1218 1989    4.0
## 1217      1219 1960    3.0
## 1218      1220 1980    1.0
## 1219      1221 1974    5.0
## 1220      1222 1987    4.0
## 1221      1223 1989    4.0
## 1222      1225 1984    4.0
## 1223      1228 1980    4.0
## 1224      1230 1977    3.0
## 1225      1231 1983    4.0
## 1226      1233 1981    3.0
## 1227      1234 1973    4.0
## 1228      1235 1971    3.5
## 1229      1240 1984    3.0
## 1230      1243 1990    2.0
## 1231      1244 1979    5.0
## 1232      1246 1989    1.0
## 1233      1247 1967    5.0
## 1234      1248 1958    3.0
## 1235      1249 1990    3.0
## 1236      1250 1957    4.0
## 1237      1251 1963    3.0
## 1238      1252 1974    5.0
## 1239      1254 1948    3.5
## 1240      1258 1980    4.0
## 1241      1259 1986    3.0
## 1242      1260 1931    3.0
## 1243      1262 1963    1.5
## 1244      1263 1978    4.0
## 1245      1264 1981    3.0
## 1246      1265 1993    4.0
## 1247      1266 1992    4.0
## 1248      1267 1962    5.0
## 1249      1270 1985    5.0
## 1250      1272 1970    3.5
## 1251      1276 1967    2.5
## 1252      1280 1991    3.0
## 1253      1281 1940    1.0
## 1254      1283 1952    3.0
## 1255      1284 1946    3.0
## 1256      1287 1959    2.0
## 1257      1288 1984    4.0
## 1258      1289 1983    4.0
## 1259      1290 1987    3.0
## 1260      1291 1989    4.0
## 1261      1293 1982    4.0
## 1262      1297 1985    4.0
## 1263      1302 1989    3.0
## 1264      1303 1975    2.0
## 1265      1304 1969    3.0
## 1266      1307 1989    5.0
## 1267      1320 1992    3.0
## 1268      1333 1963    2.0
## 1269      1334 1958    2.0
## 1270      1339 1992    2.0
## 1271      1342 1992    2.0
## 1272      1356 1996    2.0
## 1273      1358 1996    1.0
## 1274      1361 1996    3.5
## 1275      1370 1990    3.0
## 1276      1377 1992    3.0
## 1277      1380 1978    2.5
## 1278      1385 1992    3.0
## 1279      1387 1975    4.0
## 1280      1391 1996    0.5
## 1281      1393 1996    3.5
## 1282      1394 1987    4.0
## 1283      1396 1992    4.0
## 1284      1405 1996    3.0
## 1285      1407 1996    5.0
## 1286      1449 1996    4.0
## 1287      1464 1997    4.0
## 1288      1466 1997    4.0
## 1289      1476 1997    3.0
## 1290      1479 1997    1.5
## 1291      1483 1996    3.0
## 1292      1484 1996    3.0
## 1293      1485 1997    3.0
## 1294      1500 1997    3.0
## 1295      1502 1996    1.5
## 1296      1503 1997    1.0
## 1297      1513 1997    2.0
## 1298      1517 1997    3.0
## 1299      1527 1997    1.0
## 1300      1529 1997    3.0
## 1301      1544 1997    1.0
## 1302      1546 1996    4.0
## 1303      1552 1997    1.5
## 1304      1556 1997    2.5
## 1305      1562 1997    1.5
## 1306      1569 1997    3.5
## 1307      1573 1997    4.0
## 1308      1580 1997    4.0
## 1309      1584 1997    4.0
## 1310      1589 1997    2.0
## 1311      1597 1997    2.0
## 1312      1608 1997    1.0
## 1313      1610 1990    3.0
## 1314      1615 1997    3.0
## 1315      1616 1997    3.0
## 1316      1617 1997    5.0
## 1317      1625 1997    4.0
## 1318      1635 1997    4.0
## 1319      1639 1997    4.0
## 1320      1644 1997    1.5
## 1321      1645 1997    3.0
## 1322      1649 1997    2.0
## 1323      1653 1997    3.0
## 1324      1663 1981    3.0
## 1325      1673 1997    3.0
## 1326      1676 1997    4.0
## 1327      1680 1998    3.0
## 1328      1682 1998    2.0
## 1329      1689 1997    4.5
## 1330      1690 1997    1.0
## 1331      1694 1997    3.0
## 1332      1704 1997    4.0
## 1333      1717 1997    4.0
## 1334      1719 1997    4.0
## 1335      1721 1997    1.5
## 1336      1722 1997    3.5
## 1337      1729 1997    1.0
## 1338      1732 1998    3.5
## 1339      1735 1998    0.5
## 1340      1747 1997    3.5
## 1341      1748 1998    4.0
## 1342      1752 1998    3.5
## 1343      1753 1998    1.0
## 1344      1754 1998    3.5
## 1345      1777 1998    2.0
## 1346      1779 1998    1.0
## 1347      1784 1997    3.0
## 1348      1792 1998    3.0
## 1349      1805 1998    3.0
## 1350      1807 1998    1.5
## 1351      1810 1998    2.5
## 1352      1816 1997    2.5
## 1353      1827 1997    4.0
## 1354      1831 1998    2.0
## 1355      1834 1997    3.5
## 1356      1836 1998    2.0
## 1357      1845 1998    4.0
## 1358      1859 1997    5.0
## 1359      1860 1997    4.0
## 1360      1862 1998    2.0
## 1361      1876 1998    2.0
## 1362      1882 1998    1.5
## 1363      1883 1998    4.0
## 1364      1889 1997    3.0
## 1365      1895 1998    2.5
## 1366      1897 1998    1.5
## 1367      1904 1997    3.5
## 1368      1909 1998    2.0
## 1369      1912 1998    5.0
## 1370      1914 1998    3.5
## 1371      1917 1998    2.0
## 1372      1921 1998    4.0
## 1373      1923 1998    4.5
## 1374      1945 1954    4.0
## 1375      1950 1967    3.0
## 1376      1952 1969    3.0
## 1377      1953 1971    3.0
## 1378      1954 1976    3.0
## 1379      1955 1979    4.5
## 1380      1956 1980    4.0
## 1381      1961 1988    3.5
## 1382      1962 1989    3.0
## 1383      1964 1971    3.0
## 1384      1968 1985    4.0
## 1385      1994 1982    2.5
## 1386      1997 1973    5.0
## 1387      2000 1987    3.0
## 1388      2003 1984    3.0
## 1389      2005 1985    4.0
## 1390      2006 1998    4.0
## 1391      2010 1927    3.0
## 1392      2011 1989    3.0
## 1393      2012 1990    1.0
## 1394      2018 1942    2.0
## 1395      2019 1954    4.5
## 1396      2020 1988    2.5
## 1397      2025 1997    2.0
## 1398      2028 1998    3.0
## 1399      2041 1981    2.0
## 1400      2054 1989    2.0
## 1401      2058 1998    2.5
## 1402      2060 1998    2.0
## 1403      2064 1989    4.5
## 1404      2076 1986    3.0
## 1405      2100 1984    2.0
## 1406      2105 1982    4.0
## 1407      2108 1991    4.5
## 1408      2115 1984    4.0
## 1409      2124 1991    2.0
## 1410      2126 1998    1.0
## 1411      2133 1987    3.5
## 1412      2134 1985    3.5
## 1413      2140 1982    3.0
## 1414      2145 1986    2.0
## 1415      2150 1980    3.0
## 1416      2160 1968    3.0
## 1417      2161 1984    3.0
## 1418      2167 1998    3.0
## 1419      2174 1988    4.0
## 1420      2186 1951    3.0
## 1421      2194 1987    4.0
## 1422      2231 1998    3.0
## 1423      2232 1997    4.0
## 1424      2243 1987    4.5
## 1425      2248 1989    3.5
## 1426      2268 1992    1.0
## 1427      2269 1993    2.5
## 1428      2273 1998    2.5
## 1429      2278 1998    2.5
## 1430      2282 1998    0.5
## 1431      2288 1982    3.0
## 1432      2289 1992    4.0
## 1433      2291 1990    3.0
## 1434      2294 1998    2.0
## 1435      2302 1992    3.5
## 1436      2303 1975    3.0
## 1437      2311 1984    2.0
## 1438      2313 1980    3.5
## 1439      2318 1998    4.5
## 1440      2321 1998    3.5
## 1441      2324 1997    2.0
## 1442      2329 1998    1.0
## 1443      2333 1998    3.0
## 1444      2334 1998    3.0
## 1445      2336 1998    2.0
## 1446      2340 1998    2.0
## 1447      2351 1957    1.0
## 1448      2353 1998    0.5
## 1449      2355 1998    2.0
## 1450      2357 1998    3.0
## 1451      2360 1998    2.0
## 1452      2366 1933    3.0
## 1453      2369 1985    1.0
## 1454      2371 1985    3.5
## 1455      2378 1984    3.0
## 1456      2387 1998    3.5
## 1457      2391 1998    3.0
## 1458      2395 1998    5.0
## 1459      2396 1998    2.0
## 1460      2405 1985    3.0
## 1461      2406 1984    3.5
## 1462      2407 1985    3.0
## 1463      2413 1985    4.5
## 1464      2424 1998    1.5
## 1465      2427 1998    3.0
## 1466      2428 1998    1.0
## 1467      2439 1997    2.0
## 1468      2447 1999    2.5
## 1469      2455 1986    3.5
## 1470      2467 1986    1.0
## 1471      2478 1986    4.0
## 1472      2490 1999    1.0
## 1473      2501 1999    3.0
## 1474      2502 1999    5.0
## 1475      2505 1999    0.5
## 1476      2528 1976    2.0
## 1477      2539 1999    2.5
## 1478      2541 1999    1.0
## 1479      2542 1998    1.0
## 1480      2560 1999    3.0
## 1481      2568 1999    0.5
## 1482      2571 1999    5.0
## 1483      2572 1999    5.0
## 1484      2574 1999    1.0
## 1485      2575 1998    3.0
## 1486      2579 1998    2.5
## 1487      2580 1999    3.0
## 1488      2581 1999    1.0
## 1489      2585 1998    1.0
## 1490      2594 1997    4.0
## 1491      2598 1999    1.5
## 1492      2599 1999    3.0
## 1493      2600 1999    3.0
## 1494      2605 1999    1.0
## 1495      2617 1999    1.0
## 1496      2624 1998    3.0
## 1497      2628 1999    2.5
## 1498      2640 1978    4.0
## 1499      2648 1931    3.0
## 1500      2657 1975    2.0
## 1501      2671 1999    4.0
## 1502      2678 1998    1.0
## 1503      2683 1999    1.0
## 1504      2686 1998    3.0
## 1505      2692 1998    3.0
## 1506      2699 1990    3.0
## 1507      2700 1999    3.0
## 1508      2701 1999    1.0
## 1509      2702 1999    1.5
## 1510      2706 1999    3.0
## 1511      2707 1999    3.0
## 1512      2709 1999    1.0
## 1513      2710 1999    1.0
## 1514      2712 1999    4.0
## 1515      2713 1999    1.0
## 1516      2716 1984    4.0
## 1517      2717 1989    3.5
## 1518      2718 1999    1.5
## 1519      2722 1999    2.0
## 1520      2723 1999    1.0
## 1521      2726 1956    2.5
## 1522      2729 1962    3.0
## 1523      2759 1999    1.0
## 1524      2761 1999    2.0
## 1525      2762 1999    1.0
## 1526      2763 1999    1.0
## 1527      2769 2000    2.0
## 1528      2770 1999    4.0
## 1529      2791 1980    4.0
## 1530      2795 1983    3.5
## 1531      2797 1988    4.0
## 1532      2803 1993    1.5
## 1533      2819 1975    3.0
## 1534      2840 1999    1.0
## 1535      2841 1999    2.0
## 1536      2858 1999    4.0
## 1537      2871 1972    4.0
## 1538      2881 1999    1.0
## 1539      2890 1999    4.0
## 1540      2905 1962    4.0
## 1541      2908 1999    1.0
## 1542      2912 1999    4.0
## 1543      2915 1983    1.5
## 1544      2916 1990    4.0
## 1545      2918 1986    4.0
## 1546      2925 1970    4.0
## 1547      2947 1964    5.0
## 1548      2949 1962    4.0
## 1549      2952 1996    1.0
## 1550      2959 1999    5.0
## 1551      2973 1989    4.0
## 1552      2976 1999    2.0
## 1553      2983 1965    4.0
## 1554      2985 1987    3.0
## 1555      2987 1988    4.0
## 1556      2990 1989    3.5
## 1557      2993 1965    4.0
## 1558      2997 1999    5.0
## 1559      3000 1997    4.0
## 1560      3004 1999    1.0
## 1561      3005 1999    1.0
## 1562      3006 1999    5.0
## 1563      3007 1999    2.5
## 1564      3008 1998    2.0
## 1565      3010 1999    4.0
## 1566      3019 1989    3.0
## 1567      3020 1993    3.0
## 1568      3030 1961    4.0
## 1569      3033 1987    4.0
## 1570      3039 1983    4.0
## 1571      3044 1991    3.0
## 1572      3052 1999    3.0
## 1573      3060 1991    4.0
## 1574      3077 1998    3.0
## 1575      3081 1999    1.0
## 1576      3082 1999    3.0
## 1577      3083 1999    5.0
## 1578      3089 1948    3.0
## 1579      3101 1987    4.0
## 1580      3104 1988    4.0
## 1581      3107 1991    3.0
## 1582      3108 1991    4.0
## 1583      3113 1999    2.0
## 1584      3114 1999    1.0
## 1585      3128 1999    4.0
## 1586      3129 1999    3.5
## 1587      3134 1937    1.0
## 1588      3146 1999    1.5
## 1589      3147 1999    1.0
## 1590      3148 1999    1.0
## 1591      3150 1999    3.0
## 1592      3152 1971    3.0
## 1593      3157 1999    1.0
## 1594      3160 1999    3.0
## 1595      3168 1969    2.5
## 1596      3173 1999    2.5
## 1597      3174 1999    1.0
## 1598      3175 1999    4.0
## 1599      3176 1999    2.0
## 1600      3181 1999    1.0
## 1601      3182 1999    2.0
## 1602      3185 1999    2.0
## 1603      3210 1982    5.0
## 1604      3219 1990    2.0
## 1605      3225 2000    1.0
## 1606      3246 1992    4.0
## 1607      3250 1993    2.0
## 1608      3253 1992    3.0
## 1609      3255 1992    2.0
## 1610      3256 1992    2.0
## 1611      3261 1992    4.0
## 1612      3262 1992    1.0
## 1613      3265 1992    4.0
## 1614      3266 1992    5.0
## 1615      3267 1992    3.0
## 1616      3272 1992    2.0
## 1617      3273 2000    1.0
## 1618      3275 2000    0.5
## 1619      3285 2000    2.0
## 1620      3286 2000    3.0
## 1621      3298 2000    4.0
## 1622      3300 2000    5.0
## 1623      3301 2000    4.0
## 1624      3307 1931    3.0
## 1625      3316 2000    1.5
## 1626      3317 2000    5.0
## 1627      3318 1999    3.0
## 1628      3320 1999    5.0
## 1629      3328 1999    4.0
## 1630      3358 1991    2.5
## 1631      3361 1988    3.0
## 1632      3362 1975    3.5
## 1633      3386 1991    3.0
## 1634      3390 1986    1.0
## 1635      3408 2000    2.0
## 1636      3409 2000    4.0
## 1637      3418 1991    1.0
## 1638      3421 1978    1.5
## 1639      3429 1989    3.0
## 1640      3435 1944    2.5
## 1641      3448 1987    2.5
## 1642      3461 1963    3.0
## 1643      3462 1936    1.5
## 1644      3471 1977    4.0
## 1645      3476 1990    4.5
## 1646      3477 1995    3.0
## 1647      3481 2000    5.0
## 1648      3484 2000    0.5
## 1649      3489 1991    2.0
## 1650      3499 1990    3.0
## 1651      3504 1976    4.0
## 1652      3505 1987    4.0
## 1653      3510 2000    2.0
## 1654      3512 2000    3.0
## 1655      3527 1987    3.0
## 1656      3534 2000    1.0
## 1657      3535 2000    1.0
## 1658      3536 2000    4.0
## 1659      3538 1999    1.5
## 1660      3543 1982    2.0
## 1661      3552 1980    2.0
## 1662      3555 2000    1.0
## 1663      3556 1999    3.0
## 1664      3566 2000    3.0
## 1665      3569 1998    4.0
## 1666      3571 2000    4.0
## 1667      3577 1988    3.5
## 1668      3578 2000    2.0
## 1669      3598 2000    3.0
## 1670      3617 2000    4.0
## 1671      3618 2000    2.0
## 1672      3623 2000    1.0
## 1673      3624 2000    2.0
## 1674      3626 1999    3.0
## 1675      3633 1969    4.0
## 1676      3634 1964    2.0
## 1677      3635 1977    3.5
## 1678      3638 1979    3.5
## 1679      3639 1974    2.0
## 1680      3671 1974    2.0
## 1681      3683 1984    4.0
## 1682      3707 1986    5.0
## 1683      3717 2000    1.0
## 1684      3728 1992    4.0
## 1685      3730 1974    5.0
## 1686      3735 1973    2.0
## 1687      3742 1925    2.5
## 1688      3745 2000    1.0
## 1689      3747 1999    2.0
## 1690      3751 2000    1.0
## 1691      3752 2000    1.0
## 1692      3755 2000    1.5
## 1693      3763 1986    2.0
## 1694      3783 1998    2.0
## 1695      3785 2000    4.0
## 1696      3786 1999    2.0
## 1697      3787 1999    3.0
## 1698      3788 1966    3.0
## 1699      3793 2000    2.0
## 1700      3794 2000    4.0
## 1701      3798 2000    2.0
## 1702      3800 1999    2.0
## 1703      3801 1959    3.0
## 1704      3823 1999    2.0
## 1705      3825 2000    1.0
## 1706      3826 2000    1.0
## 1707      3827 2000    2.5
## 1708      3852 2000    3.0
## 1709      3854 1999    3.0
## 1710      3861 2000    3.0
## 1711      3863 2000    2.0
## 1712      3868 1988    4.0
## 1713      3882 2000    4.0
## 1714      3892 2000    1.0
## 1715      3893 2000    1.0
## 1716      3896 2000    3.0
## 1717      3897 2000    3.0
## 1718      3910 2000    2.0
## 1719      3911 2000    2.0
## 1720      3915 2000    5.0
## 1721      3943 2000    3.0
## 1722      3948 2000    5.0
## 1723      3949 2000    5.0
## 1724      3952 2000    4.0
## 1725      3956 2000    1.0
## 1726      3967 2000    1.0
## 1727      3968 2000    2.5
## 1728      3969 2000    1.0
## 1729      3977 2000    3.0
## 1730      3979 2000    1.0
## 1731      3981 2000    1.0
## 1732      3983 2000    5.0
## 1733      3984 1971    4.0
## 1734      3986 2000    1.0
## 1735      3987 2000    4.0
## 1736      3988 2000    1.0
## 1737      3989 1999    3.0
## 1738      3990 2000    1.0
## 1739      3993 2000    1.0
## 1740      3994 2000    4.0
## 1741      3996 2000    5.0
## 1742      3998 2000    1.0
## 1743      3999 2000    3.0
## 1744      4005 1987    3.5
## 1745      4006 1986    3.0
## 1746      4007 1987    3.5
## 1747      4010 1985    2.0
## 1748      4011 2000    1.0
## 1749      4014 2000    2.0
## 1750      4015 2000    5.0
## 1751      4017 2000    4.0
## 1752      4018 2000    1.0
## 1753      4019 2000    2.0
## 1754      4020 2000    3.0
## 1755      4021 2000    3.0
## 1756      4022 2000    3.0
## 1757      4023 2000    2.0
## 1758      4025 2000    1.0
## 1759      4027 2000    3.0
## 1760      4029 2000    4.0
## 1761      4030 2000    2.0
## 1762      4033 2000    4.0
## 1763      4034 2000    4.0
## 1764      4036 2000    1.0
## 1765      4037 1987    3.0
## 1766      4052 2001    1.0
## 1767      4055 2000    1.0
## 1768      4056 2001    5.0
## 1769      4066 1988    4.0
## 1770      4079 1987    4.0
## 1771      4082 1987    1.0
## 1772      4085 1984    3.0
## 1773      4121 1987    3.0
## 1774      4144 2000    4.0
## 1775      4148 2001    1.0
## 1776      4149 2001    1.0
## 1777      4158 2001    2.0
## 1778      4161 2001    3.0
## 1779      4167 2001    1.0
## 1780      4168 2001    3.0
## 1781      4210 1986    4.5
## 1782      4223 2001    1.0
## 1783      4225 2001    1.0
## 1784      4226 2000    5.0
## 1785      4232 2001    3.0
## 1786      4235 2000    4.0
## 1787      4238 2001    3.0
## 1788      4239 2001    1.0
## 1789      4246 2001    2.0
## 1790      4247 2001    1.0
## 1791      4262 1983    3.0
## 1792      4270 2001    1.5
## 1793      4271 2000    4.0
## 1794      4299 2001    2.5
## 1795      4302 2000    5.0
## 1796      4306 2001    1.0
## 1797      4308 2001    2.0
## 1798      4310 2001    3.0
## 1799      4321 1991    2.0
## 1800      4322 1988    4.0
## 1801      4343 2001    1.0
## 1802      4344 2001    2.0
## 1803      4351 1991    3.0
## 1804      4361 1982    5.0
## 1805      4367 2001    1.0
## 1806      4369 2001    3.0
## 1807      4370 2001    1.0
## 1808      4372 2001    3.0
## 1809      4378 2000    3.0
## 1810      4380 2000    2.0
## 1811      4381 2001    2.0
## 1812      4383 2000    3.0
## 1813      4386 2001    1.0
## 1814      4388 2001    3.0
## 1815      4410 1986    3.0
## 1816      4446 2001    4.0
## 1817      4447 2001    1.5
## 1818      4448 2001    1.0
## 1819      4450 2001    2.0
## 1820      4451 2001    2.5
## 1821      4489 1988    4.5
## 1822      4546 1988    3.0
## 1823      4571 1989    3.0
## 1824      4621 1989    3.0
## 1825      4623 1989    4.0
## 1826      4638 2001    1.0
## 1827      4639 2001    1.0
## 1828      4641 2001    3.0
## 1829      4642 2000    1.5
## 1830      4643 2001    3.0
## 1831      4654 1989    1.0
## 1832      4658 1989    2.0
## 1833      4666 1989    1.0
## 1834      4675 1989    2.0
## 1835      4678 1989    4.0
## 1836      4679 1989    3.0
## 1837      4700 2001    2.0
## 1838      4701 2001    3.0
## 1839      4713 1980    4.0
## 1840      4718 2001    4.0
## 1841      4719 2001    2.0
## 1842      4720 2001    2.0
## 1843      4723 2001    3.5
## 1844      4727 2001    3.0
## 1845      4728 2001    4.0
## 1846      4731 2000    5.0
## 1847      4734 2001    1.0
## 1848      4738 2000    3.5
## 1849      4744 2001    1.0
## 1850      4776 2001    2.5
## 1851      4816 2001    3.0
## 1852      4823 2001    2.5
## 1853      4844 2001    2.0
## 1854      4848 2001    2.0
## 1855      4873 2001    5.0
## 1856      4878 2001    4.0
## 1857      4881 2001    1.5
## 1858      4886 2001    5.0
## 1859      4888 2001    3.0
## 1860      4890 2001    3.0
## 1861      4896 2001    1.0
## 1862      4901 2001    4.0
## 1863      4902 2001    2.0
## 1864      4903 2001    5.0
## 1865      4914 1960    4.0
## 1866      4958 2001    1.0
## 1867      4963 2001    4.0
## 1868      4973 2001    2.0
## 1869      4974 2001    2.0
## 1870      4975 2001    1.0
## 1871      4979 2001    5.0
## 1872      4992 2001    1.5
## 1873      4993 2001    5.0
## 1874      4995 2001    1.0
## 1875      5000 1969    3.5
## 1876      5008 1957    3.5
## 1877      5010 2001    4.5
## 1878      5013 2001    2.0
## 1879      5015 2001    1.0
## 1880      5026 2001    2.0
## 1881      5060 1970    1.5
## 1882      5066 2002    3.0
## 1883      5071 2000    5.0
## 1884      5074 2001    1.0
## 1885      5075 2000    4.0
## 1886      5110 2001    1.5
## 1887      5120 1972    3.0
## 1888      5128 2002    1.0
## 1889      5135 2001    4.0
## 1890      5170 2002    2.0
## 1891      5171 2002    0.5
## 1892      5218 2002    1.0
## 1893      5219 2002    1.0
## 1894      5220 2002    3.0
## 1895      5222 2001    2.0
## 1896      5225 2001    1.5
## 1897      5254 2002    1.0
## 1898      5266 2002    1.0
## 1899      5269 2001    4.5
## 1900      5279 1991    0.5
## 1901      5283 2002    3.0
## 1902      5291 1950    3.5
## 1903      5293 2002    3.0
## 1904      5296 2002    1.5
## 1905      5298 2001    2.5
## 1906      5299 2002    0.5
## 1907      5308 1987    2.5
## 1908      5313 2002    1.0
## 1909      5319 2000    3.5
## 1910      5339 1992    3.5
## 1911      5346 1990    3.5
## 1912      5349 2002    1.0
## 1913      5363 2002    1.0
## 1914      5364 2002    2.5
## 1915      5377 2002    4.0
## 1916      5378 2002    3.0
## 1917      5388 2002    2.0
## 1918      5391 2001    2.5
## 1919      5400 2002    3.0
## 1920      5410 1972    2.0
## 1921      5416 2002    1.5
## 1922      5418 2002    2.0
## 1923      5419 2002    1.0
## 1924      5444 2002    1.0
## 1925      5445 2002    5.0
## 1926      5449 2002    2.0
## 1927      5458 2002    1.0
## 1928      5459 2002    1.0
## 1929      5463 2002    1.0
## 1930      5464 2002    0.5
## 1931      5477 2001    5.0
## 1932      5478 2002    2.0
## 1933      5481 2002    2.0
## 1934      5500 1984    4.0
## 1935      5502 2002    1.0
## 1936      5504 2002    2.0
## 1937      5507 2002    1.0
## 1938      5508 2002    3.0
## 1939      5515 2000    4.0
## 1940      5524 2002    1.0
## 1941      5528 2002    1.0
## 1942      5541 1991    3.0
## 1943      5553 1987    2.0
## 1944      5568 1984    3.0
## 1945      5577 2002    2.5
## 1946      5617 2002    3.5
## 1947      5618 2001    1.5
## 1948      5620 2002    0.5
## 1949      5630 2002    1.5
## 1950      5650 1983    3.0
## 1951      5662 1997    4.0
## 1952      5669 2002    4.0
## 1953      5673 2002    3.5
## 1954      5679 2002    4.0
## 1955      5791 2002    2.0
## 1956      5792 2002    4.0
## 1957      5809 2002    3.0
## 1958      5816 2002    1.0
## 1959      5872 2002    3.0
## 1960      5878 2002    1.0
## 1961      5893 1994    5.0
## 1962      5902 2002    4.0
## 1963      5903 2002    2.0
## 1964      5909 2001    1.0
## 1965      5945 2002    1.0
## 1966      5952 2002    5.0
## 1967      5954 2002    1.0
## 1968      5956 2002    2.5
## 1969      5957 2002    4.5
## 1970      5959 2002    3.0
## 1971      5968 1990    3.0
## 1972      5989 2002    2.5
## 1973      5991 2002    1.0
## 1974      5995 2002    4.0
## 1975      6003 2002    1.5
## 1976      6016 2002    2.0
## 1977      6025 1993    3.0
## 1978      6037 1982    3.0
## 1979      6059 2003    2.0
## 1980      6155 2003    0.5
## 1981      6157 2003    0.5
## 1982      6180 1990    1.0
## 1983      6188 2003    3.5
## 1984      6203 1991    3.0
## 1985      6218 2002    0.5
## 1986      6271 1973    4.0
## 1987      6281 2002    1.0
## 1988      6283 2001    1.0
## 1989      6287 2003    0.5
## 1990      6296 2003    1.5
## 1991      6299 2001    2.5
## 1992      6303 1971    2.5
## 1993      6327 2003    4.0
## 1994      6331 2002    3.0
## 1995      6333 2003    3.0
## 1996      6365 2003    1.0
## 1997      6373 2003    2.0
## 1998      6377 2003    1.0
## 1999      6378 2003    3.0
## 2000      6380 2003    3.0
## 2001      6385 2002    1.5
## 2002      6433 1929    3.0
## 2003      6440 1991    3.5
## 2004      6442 1992    3.5
## 2005      6464 1997    2.5
## 2006      6502 2002    3.5
## 2007      6503 2003    2.5
## 2008      6534 2003    2.0
## 2009      6537 2003    2.5
## 2010      6539 2003    3.5
## 2011      6547 2003    1.0
## 2012      6552 2002    1.5
## 2013      6586 2003    3.0
## 2014      6593 2003    1.0
## 2015      6620 2003    1.5
## 2016      6641 2000    4.0
## 2017      6650 1949    3.5
## 2018      6708 2003    2.0
## 2019      6711 2003    3.5
## 2020      6754 2003    0.5
## 2021      6773 2003    1.0
## 2022      6783 1939    2.0
## 2023      6787 1976    5.0
## 2024      6816 1987    4.0
## 2025      6820 2000    2.5
## 2026      6863 2003    2.0
## 2027      6867 2003    3.5
## 2028      6870 2003    3.5
## 2029      6873 2003    1.0
## 2030      6874 2003    1.0
## 2031      6875 2003    1.0
## 2032      6879 2003    2.5
## 2033      6885 2003    1.0
## 2034      6932 2003    4.5
## 2035      6934 2003    1.5
## 2036      6936 2003    1.0
## 2037      6942 2003    3.0
## 2038      6944 1991    4.0
## 2039      6947 2003    1.0
## 2040      6953 2003    2.0
## 2041      6957 2003    4.0
## 2042      6961 1992    2.5
## 2043      6975 1997    4.0
## 2044      6978 1991    2.5
## 2045      6979 1983    3.0
## 2046      6989 1983    2.5
## 2047      7003 1991    2.0
## 2048      7004 1990    2.5
## 2049      7008 1972    3.5
## 2050      7010 1992    3.5
## 2051      7028 1990    3.5
## 2052      7034 1998    4.5
## 2053      7090 2002    3.0
## 2054      7123 1991    3.5
## 2055      7132 1935    3.0
## 2056      7143 2003    2.0
## 2057      7147 2003    1.5
## 2058      7153 2003    1.5
## 2059      7156 2003    3.0
## 2060      7162 2003    1.0
## 2061      7173 2004    0.5
## 2062      7199 2003    1.0
## 2063      7254 2004    1.0
## 2064      7265 2003    3.5
## 2065      7293 2004    1.0
## 2066      7317 2004    3.0
## 2067      7323 2003    2.0
## 2068      7325 2004    0.5
## 2069      7327 1966    1.5
## 2070      7346 2004    3.0
## 2071      7348 2004    2.0
## 2072      7361 2004    5.0
## 2073      7371 2003    1.0
## 2074      7373 2004    1.5
## 2075      7438 2004    0.5
## 2076      7444 2004    1.0
## 2077      7445 2004    1.5
## 2078      7451 2004    3.5
## 2079      7458 2004    1.5
## 2080      7484 1970    4.0
## 2081      7487 1990    1.5
## 2082      7560 1964    3.5
## 2083      7569 1967    3.5
## 2084      7573 1983    2.5
## 2085      7698 1979    3.0
## 2086      7792 1974    2.5
## 2087      7925 1958    3.0
## 2088      8011 2002    2.0
## 2089      8264 1975    4.0
## 2090      8360 2004    2.5
## 2091      8361 2004    4.0
## 2092      8366 2004    2.5
## 2093      8368 2004    1.5
## 2094      8376 2004    2.5
## 2095      8464 2004    3.0
## 2096      8528 2004    1.0
## 2097      8529 2004    1.5
## 2098      8531 2004    1.5
## 2099      8581 1999    2.5
## 2100      8582 1992    3.5
## 2101      8622 2004    3.5
## 2102      8623 1987    3.0
## 2103      8636 2004    3.0
## 2104      8638 2004    4.0
## 2105      8641 2004    3.0
## 2106      8644 2004    1.0
## 2107      8645 2004    2.0
## 2108      8665 2004    3.5
## 2109      8781 2004    0.5
## 2110      8784 2004    2.0
## 2111      8798 2004    3.0
## 2112      8807 2004    2.5
## 2113      8865 2004    1.0
## 2114      8874 2004    2.5
## 2115      8910 2004    2.5
## 2116      8914 2004    4.5
## 2117      8917 2004    4.0
## 2118      8930 2003    2.5
## 2119      8948 2004    1.0
## 2120      8949 2004    4.5
## 2121      8950 2004    2.0
## 2122      8957 2004    3.0
## 2123      8958 2004    3.5
## 2124      8961 2004    2.0
## 2125      8970 2004    2.0
## 2126      8972 2004    3.5
## 2127      8974 2004    2.5
## 2128      8984 2004    2.0
## 2129     26131 1966    5.0
## 2130     26152 1966    4.0
## 2131     26587 1989    5.0
## 2132     26729 1991    4.5
## 2133     26810 1993    2.0
## 2134     27020 1998    2.5
## 2135     27478 2002    2.5
## 2136     27660 2003    4.0
## 2137     27773 2003    1.0
## 2138     27821 2005    1.0
## 2139     27846 2003    4.0
## 2140     27904 2006    2.5
## 2141     30707 2004    1.5
## 2142     30749 2004    2.0
## 2143     30810 2004    1.5
## 2144     30812 2004    0.5
## 2145     30825 2004    1.5
## 2146     31685 2005    0.5
## 2147     31696 2005    3.5
## 2148     32587 2005    3.5
## 2149     33004 2005    0.5
## 2150     33154 2005    3.5
## 2151     33166 2004    3.5
## 2152     33493 2005    5.0
## 2153     33679 2005    3.5
## 2154     33794 2005    4.5
## 2155     34048 2005    0.5
## 2156     34072 2005    1.5
## 2157     34150 2005    1.0
## 2158     34162 2005    1.0
## 2159     34319 2005    1.0
## 2160     34334 2005    1.5
## 2161     34405 2005    0.5
## 2162     34542 2005    3.5
## 2163     35836 2005    3.0
## 2164     35957 2005    2.5
## 2165     36517 2005    1.5
## 2166     36529 2005    1.0
## 2167     37386 2005    2.0
## 2168     37729 2005    2.0
## 2169     37741 2005    2.5
## 2170     38061 2005    4.5
## 2171     38886 2005    1.5
## 2172     39292 2005    4.5
## 2173     40583 2005    2.0
## 2174     40815 2005    1.5
## 2175     41997 2005    2.5
## 2176     42718 2004    4.5
## 2177     44004 2006    1.0
## 2178     44191 2006    2.5
## 2179     44195 2006    2.0
## 2180     44199 2006    4.0
## 2181     44555 2006    1.0
## 2182     44597 1963    2.5
## 2183     44665 2006    1.0
## 2184     44761 2005    1.5
## 2185     44788 2006    4.0
## 2186     45186 2006    2.5
## 2187     45447 2006    1.0
## 2188     45499 2006    2.5
## 2189     45517 2006    0.5
## 2190     45666 2006    4.0
## 2191     45672 2006    1.5
## 2192     45720 2006    1.5
## 2193     45722 2006    2.0
## 2194     45728 2006    0.5
## 2195     45950 2006    3.0
## 2196     46530 2006    0.5
## 2197     46578 2006    1.0
## 2198     46723 2006    2.0
## 2199     46970 2006    2.0
## 2200     46972 2006    3.5
## 2201     46976 2006    3.5
## 2202     47610 2006    1.5
## 2203     47999 2006    2.5
## 2204     48043 2006    0.5
## 2205     48082 2006    1.0
## 2206     48385 2006    4.0
## 2207     48394 2006    1.5
## 2208     48516 2006    3.0
## 2209     48774 2006    4.0
## 2210     48780 2006    4.0
## 2211     49272 2006    4.0
## 2212     49278 2006    2.5
## 2213     49286 2006    2.5
## 2214     50851 2006    3.5
## 2215     50872 2007    3.5
## 2216     51080 2007    4.5
## 2217     51255 2007    1.5
## 2218     51540 2007    5.0
## 2219     51662 2007    2.0
## 2220     52245 2007    1.5
## 2221     52328 2007    1.5
## 2222     52604 2007    2.0
## 2223     52722 2007    1.5
## 2224     52973 2007    3.5
## 2225     53322 2007    3.5
## 2226     53464 2007    1.5
## 2227     53894 2007    2.5
## 2228     53972 2007    3.0
## 2229     53996 2007    4.0
## 2230     54001 2007    2.0
## 2231     54272 2007    1.0
## 2232     54286 2007    2.5
## 2233     54372 2006    4.5
## 2234     54503 2007    3.5
## 2235     54881 2007    4.5
## 2236     55247 2007    1.0
## 2237     55269 2007    1.0
## 2238     55276 2007    3.5
## 2239     55442 2007    2.5
## 2240     55765 2007    2.0
## 2241     55820 2007    2.0
## 2242     55830 2008    2.5
## 2243     56174 2007    1.0
## 2244     56367 2007    2.0
## 2245     56563 2007    4.0
## 2246     56775 2007    3.0
## 2247     56782 2007    1.0
## 2248     57368 2008    1.5
## 2249     57640 2008    4.0
## 2250     57669 2008    1.5
## 2251     58025 2008    1.0
## 2252     58295 2008    1.5
## 2253     58559 2008    4.5
## 2254     58998 2008    1.5
## 2255     59126 2008    4.0
## 2256     59315 2008    4.5
## 2257     59369 2008    2.5
## 2258     59519 2006    3.5
## 2259     59615 2008    1.0
## 2260     59784 2008    3.5
## 2261     59900 2008    1.5
## 2262     60037 2008    0.5
## 2263     60040 2008    3.0
## 2264     60069 2008    4.5
## 2265     60072 2008    1.0
## 2266     60074 2008    1.0
## 2267     60126 2008    1.0
## 2268     60295 2007    3.5
## 2269     60684 2009    4.0
## 2270     60766 2008    3.5
## 2271     61024 2008    1.0
## 2272     61132 2008    2.0
## 2273     61323 2008    1.0
## 2274     61394 2008    2.0
## 2275     62374 2008    3.5
## 2276     62434 2008    3.5
## 2277     62511 2008    4.5
## 2278     63082 2008    0.5
## 2279     63113 2008    3.5
## 2280     63131 2008    2.0
## 2281     63859 2008    3.0
## 2282     64620 2008    2.0
## 2283     64839 2008    1.0
## 2284     64957 2008    1.5
## 2285     65642 2007    4.5
## 2286     65802 2009    0.5
## 2287     66097 2009    3.0
## 2288     66130 2008    1.5
## 2289     66203 2009    1.0
## 2290     66596 2009    1.5
## 2291     66665 2009    3.0
## 2292     66934 2008    0.5
## 2293     67087 2009    1.5
## 2294     67193 2009    1.5
## 2295     67665 2008    3.5
## 2296     67734 2009    1.5
## 2297     67997 2009    4.0
## 2298     68157 2009    3.0
## 2299     68159 2009    4.0
## 2300     68237 2009    3.5
## 2301     68319 2009    2.0
## 2302     68324 2009    1.0
## 2303     68358 2009    4.5
## 2304     68791 2009    4.0
## 2305     68793 2009    3.0
## 2306     68954 2009    2.0
## 2307     69122 2009    1.0
## 2308     69306 2009    2.0
## 2309     69406 2009    1.0
## 2310     69436 2009    0.5
## 2311     69481 2008    4.5
## 2312     69524 1989    4.0
## 2313     69526 2009    3.0
## 2314     70286 2009    5.0
## 2315     70293 2009    3.5
## 2316     70336 2009    4.5
## 2317     70697 2009    2.5
## 2318     70862 2008    2.5
## 2319     71211 2009    3.5
## 2320     71264 2009    1.5
## 2321     71282 2008    2.5
## 2322     71462 2009    3.0
## 2323     71464 2009    2.0
## 2324     71535 2009    1.0
## 2325     71838 2009    2.0
## 2326     72011 2009    2.5
## 2327     72226 2009    1.5
## 2328     72378 2009    1.0
## 2329     72998 2009    4.0
## 2330     73017 2009    1.0
## 2331     73344 2009    3.5
## 2332     74458 2010    0.5
## 2333     74649 2008    4.0
## 2334     74795 2010    1.5
## 2335     74851 2010    0.5
## 2336     76077 2010    2.0
## 2337     76093 2010    4.0
## 2338     76251 2010    3.0
## 2339     76293 2010    3.0
## 2340     76738 2010    2.5
## 2341     77364 2010    2.5
## 2342     77455 2010    4.0
## 2343     77561 2010    1.0
## 2344     78209 2010    3.0
## 2345     78469 2010    3.0
## 2346     78499 2010    2.0
## 2347     78574 2010    4.5
## 2348     79057 2010    2.5
## 2349     79132 2010    5.0
## 2350     79185 2010    2.5
## 2351     79242 2010    2.5
## 2352     79293 2010    1.5
## 2353     79428 2010    1.0
## 2354     79695 2010    0.5
## 2355     79702 2010    1.5
## 2356     80126 2010    1.0
## 2357     80185 2010    3.0
## 2358     80463 2010    2.0
## 2359     80489 2010    4.0
## 2360     80862 2010    2.5
## 2361     80906 2010    4.0
## 2362     81158 2010    3.0
## 2363     81191 2010    3.0
## 2364     81229 2010    3.5
## 2365     81591 2010    1.0
## 2366     81782 2010    3.0
## 2367     81834 2010    2.0
## 2368     81845 2010    3.0
## 2369     81847 2010    1.0
## 2370     81932 2010    3.0
## 2371     82461 2010    3.0
## 2372     82854 2010    0.5
## 2373     83270 2010    1.0
## 2374     83293 2010    3.5
## 2375     83349 2011    1.0
## 2376     83613 2011    0.5
## 2377     83827 2010    4.0
## 2378     84152 2011    3.0
## 2379     84374 2011    2.5
## 2380     84392 2011    2.5
## 2381     84954 2011    1.0
## 2382     85414 2011    4.0
## 2383     85774 2010    4.0
## 2384     86190 2011    1.5
## 2385     86332 2011    1.0
## 2386     86644 2011    1.5
## 2387     86781 2010    5.0
## 2388     86833 2011    4.0
## 2389     86882 2011    2.5
## 2390     86898 2011    3.5
## 2391     86911 2011    0.5
## 2392     87222 2011    4.0
## 2393     87232 2011    1.5
## 2394     87304 2010    0.5
## 2395     87306 2011    1.0
## 2396     87430 2011    0.5
## 2397     87485 2011    1.0
## 2398     87520 2011    4.5
## 2399     87869 2011    2.5
## 2400     87930 2011    2.0
## 2401     88125 2011    3.0
## 2402     88129 2011    2.5
## 2403     88140 2011    1.0
## 2404     88163 2011    3.5
## 2405     88356 2011    1.5
## 2406     88744 2011    4.5
## 2407     88950 2010    0.5
## 2408     89090 2011    1.5
## 2409     89337 2011    3.0
## 2410     89470 2011    1.5
## 2411     89492 2011    5.0
## 2412     89745 2012    3.0
## 2413     89840 2011    1.0
## 2414     90249 2011    3.5
## 2415     90266 2011    2.5
## 2416     90428 2011    4.5
## 2417     90439 2011    0.5
## 2418     90531 2011    4.0
## 2419     90600 2011    3.5
## 2420     90603 2011    2.5
## 2421     90647 2011    3.0
## 2422     90746 2011    1.5
## 2423     90866 2011    1.0
## 2424     90870 2011    0.5
## 2425     91500 2012    0.5
## 2426     91505 2010    1.0
## 2427     91529 2012    3.0
## 2428     91535 2012    2.0
## 2429     91542 2011    1.0
## 2430     91630 2011    2.5
## 2431     91653 2011    4.5
## 2432     91658 2011    4.0
## 2433     91842 2012    3.0
## 2434     91869 2011    3.0
## 2435     92420 2012    1.5
## 2436     92507 2012    2.5
## 2437     93326 2012    1.0
## 2438     93363 2012    1.0
## 2439     93510 2012    3.0
## 2440     93721 2011    2.0
## 2441     93831 2012    2.5
## 2442     93840 2012    3.5
## 2443     94015 2012    1.0
## 2444     94018 2012    1.0
## 2445     94478 2012    1.0
## 2446     94677 2012    4.0
## 2447     94777 2012    2.5
## 2448     94780 2012    1.5
## 2449     94833 2012    1.5
## 2450     94864 2012    1.5
## 2451     94959 2012    1.0
## 2452     95105 2012    1.0
## 2453     95167 2012    1.0
## 2454     95199 2012    0.5
## 2455     95311 2008    1.5
## 2456     95443 2012    0.5
## 2457     95510 2012    3.5
## 2458     95558 2012    1.0
## 2459     95875 2012    1.5
## 2460     96079 2012    3.0
## 2461     96150 2012    2.0
## 2462     96488 2012    3.5
## 2463     96610 2012    1.5
## 2464     96667 2012    2.5
## 2465     96737 2012    2.5
## 2466     97304 2012    2.5
## 2467     97393 2012    3.5
## 2468     97866 2012    3.5
## 2469     97913 2012    2.5
## 2470     97923 2012    3.0
## 2471     97938 2012    2.5
## 2472     98122 2012    0.5
## 2473     98154 2012    0.5
## 2474     98809 2012    0.5
## 2475     98961 2012    3.0
## 2476     99007 2013    1.0
## 2477     99112 2012    3.5
## 2478     99114 2012    1.5
## 2479     99149 2012    1.0
## 2480     99468 2012    2.5
## 2481     99811 2012    4.0
## 2482    100032 2012    2.0
## 2483    100083 2013    0.5
## 2484    100365 2012    2.5
## 2485    100383 2013    1.0
## 2486    100517 2012    3.0
## 2487    100556 2012    4.0
## 2488    100581 2012    1.5
## 2489    100714 2013    3.0
## 2490    100745 2013    1.0
## 2491    101076 2013    3.0
## 2492    101112 2013    0.5
## 2493    101362 2013    3.0
## 2494    101864 2013    3.5
## 2495    101895 2013    1.0
## 2496    102123 2013    1.5
## 2497    102125 2013    2.0
## 2498    102445 2013    3.0
## 2499    102800 2012    2.5
## 2500    102880 2013    0.5
## 2501    102903 2013    1.0
## 2502    103042 2013    2.5
## 2503    103228 2013    5.0
## 2504    103249 2013    0.5
## 2505    103253 2013    1.0
## 2506    103372 2013    1.0
## 2507    103810 2013    1.5
## 2508    104211 2013    3.5
## 2509    104241 2013    1.0
## 2510    104272 2013    3.0
## 2511    104726 2012    3.0
## 2512    104841 2013    3.5
## 2513    104879 2013    4.0
## 2514    105504 2013    3.5
## 2515    106072 2013    2.0
## 2516    106111 2013    1.0
## 2517    106332 2013    3.5
## 2518    106489 2013    2.0
## 2519    106782 2013    3.5
## 2520    106916 2013    1.5
## 2521    106920 2013    4.5
## 2522    107348 2013    0.5
## 2523    107406 2013    4.0
## 2524    107910 2013    4.5
## 2525    108188 2014    2.0
## 2526    108190 2014    0.5
## 2527    108689 2014    0.5
## 2528    108729 2013    1.0
## 2529    108932 2014    1.5
## 2530    108945 2014    1.0
## 2531    109187 2013    0.5
## 2532    109374 2014    1.0
## 2533    109487 2014    3.5
## 2534    109673 2014    1.5
## 2535    109687 2013    2.5
## 2536    109848 2013    3.0
## 2537    110102 2014    4.0
## 2538    110127 2014    0.5
## 2539    110553 2014    0.5
## 2540    110730 2014    1.0
## 2541    110771 2014    2.0
## 2542    111228 2013    2.5
## 2543    111360 2014    1.0
## 2544    111362 2014    3.5
## 2545    111364 2014    4.0
## 2546    111443 2014    4.0
## 2547    111622 2013    4.5
## 2548    111759 2014    4.5
## 2549    111781 2015    4.5
## 2550    112138 2014    3.5
## 2551    112171 2014    2.5
## 2552    112183 2014    2.0
## 2553    112370 2014    3.5
## 2554    112552 2014    1.5
## 2555    112556 2014    4.5
## 2556    112623 2014    4.0
## 2557    112788 2014    1.0
## 2558    112852 2014    4.5
## 2559    112940 2014    1.5
## 2560    113345 2015    0.5
## 2561    113348 2014    2.0
## 2562    113378 2014    0.5
## 2563    113741 2013    1.0
## 2564    114180 2014    1.0
## 2565    114635 2014    4.0
## 2566    115149 2014    4.0
## 2567    115502 2014    3.5
## 2568    115569 2014    5.0
## 2569    115617 2014    1.5
## 2570    115713 2015    3.5
## 2571    116161 2014    1.0
## 2572    116797 2014    0.5
## 2573    116799 2014    0.5
## 2574    116823 2014    0.5
## 2575    116897 2014    4.5
## 2576    117176 2014    1.0
## 2577    117529 2015    4.0
## 2578    117533 2014    3.5
## 2579    118696 2014    1.5
## 2580    119141 2014    2.0
## 2581    119145 2015    1.5
## 2582    120466 2015    1.5
## 2583    120799 2015    3.0
## 2584    121171 2014    3.0
## 2585    121231 2014    4.5
## 2586    122882 2015    1.0
## 2587    122886 2015    3.5
## 2588    122890 2016    3.0
## 2589    122892 2015    3.0
## 2590    122900 2015    3.0
## 2591    122902 2015    0.5
## 2592    122904 2016    1.0
## 2593    122920 2016    3.0
## 2594    122924 2016    2.5
## 2595    127136 2015    1.0
## 2596    128360 2015    2.5
## 2597    129937 2015    1.5
## 2598    130452 2014    2.0
## 2599    130490 2015    0.5
## 2600    130576 2015    2.0
## 2601    130634 2015    2.0
## 2602    131013 2015    3.0
## 2603    132046 2015    0.5
## 2604    132480 2015    3.0
## 2605    132796 2015    3.0
## 2606    132961 2015    3.0
## 2607    134130 2015    3.5
## 2608    134368 2015    4.5
## 2609    134393 2015    4.0
## 2610    134853 2015    1.0
## 2611    135133 2015    0.5
## 2612    135436 2016    1.0
## 2613    135567 2016    3.0
## 2614    135569 2016    3.0
## 2615    136020 2015    3.0
## 2616    136562 2015    1.5
## 2617    136864 2016    3.0
## 2618    137337 2015    3.5
## 2619    137857 2016    3.0
## 2620    138036 2015    1.0
## 2621    139385 2015    2.5
## 2622    139644 2015    3.0
## 2623    139757 2015    3.5
## 2624    139855 2015    2.0
## 2625    140110 2015    2.5
## 2626    140174 2015    4.0
## 2627    140267 2015    4.0
## 2628    140711 2015    2.5
## 2629    140928 2015    0.5
## 2630    142488 2015    3.5
## 2631    142507 2015    3.0
## 2632    143385 2015    2.5
## 2633    145839 2015    1.0
## 2634    145935 2015    3.0
## 2635    146656 2015    3.5
## 2636    148626 2015    3.5
## 2637    149352 2015    3.0
## 2638    149354 2015    3.5
## 2639    149406 2016    4.0
## 2640    152057 2016    0.5
## 2641    152077 2016    2.0
## 2642    152079 2016    1.5
## 2643    152081 2016    3.0
## 2644    155820 2016    1.0
## 2645    156607 2016    0.5
## 2646    156609 2016    3.5
## 2647    157200 2016    1.5
## 2648    157296 2016    2.0
## 2649    157667 2016    1.5
## 2650    158238 2016    3.5
## 2651    158528 2016    3.5
## 2652    159093 2016    1.0
## 2653    159690 2016    2.0
## 2654    159755 2016    1.0
## 2655    159858 2016    4.0
## 2656    159972 2016    0.5
## 2657    160080 2016    1.0
## 2658    160271 2016    2.5
## 2659    160563 2016    1.0
## 2660    160565 2016    2.0
## 2661    160567 2016    4.0
## 2662    161155 2016    0.5
## 2663        50 1995    4.5
## 2664       318 1994    4.0
## 2665       337 1993    4.0
## 2666       527 1993    4.0
## 2667       750 1964    4.0
## 2668      1653 1997    5.0
## 2669      1704 1997    5.0
## 2670      1961 1988    3.5
## 2671      2012 1990    4.0
## 2672      2278 1998    3.5
## 2673      2539 1999    4.0
## 2674      2706 1999    5.0
## 2675      2797 1988    3.0
## 2676      2858 1999    4.0
## 2677      3623 2000    4.0
## 2678      4014 2000    3.5
## 2679      4231 2001    4.5
## 2680      4246 2001    4.0
## 2681      4718 2001    4.5
## 2682      4738 2000    4.5
## 2683      4772 2000    5.0
## 2684      4823 2001    4.0
## 2685      4995 2001    4.5
## 2686      5349 2002    3.0
## 2687      5445 2002    4.5
## 2688      6016 2002    4.0
## 2689      6711 2003    4.5
## 2690      6874 2003    3.5
## 2691      7346 2004    4.0
## 2692         6 1995    4.5
## 2693        25 1995    4.5
## 2694        29 1995    4.5
## 2695        32 1995    4.5
## 2696        36 1995    4.5
## 2697        47 1995    5.0
## 2698        50 1995    5.0
## 2699       111 1976    5.0
## 2700       170 1995    4.0
## 2701       172 1995    3.5
## 2702       185 1995    3.0
## 2703       194 1995    4.0
## 2704       198 1995    5.0
## 2705       223 1994    2.5
## 2706       235 1994    5.0
## 2707       247 1994    2.0
## 2708       260 1977    3.5
## 2709       288 1994    2.0
## 2710       293 1994    4.0
## 2711       296 1994    5.0
## 2712       307 1993    3.5
## 2713       318 1994    5.0
## 2714       348 1994    3.5
## 2715       356 1994    2.5
## 2716       377 1994    0.5
## 2717       431 1993    4.5
## 2718       480 1993    0.5
## 2719       482 1994    0.5
## 2720       492 1993    5.0
## 2721       527 1993    4.0
## 2722       541 1982    5.0
## 2723       555 1993    4.0
## 2724       590 1990    3.0
## 2725       593 1991    4.5
## 2726       608 1996    3.5
## 2727       680 1965    4.5
## 2728       714 1995    4.5
## 2729       736 1996    2.5
## 2730       778 1996    4.5
## 2731       858 1972    5.0
## 2732       866 1996    4.5
## 2733       903 1958    5.0
## 2734       904 1954    4.5
## 2735       908 1959    5.0
## 2736       910 1959    3.5
## 2737       912 1942    4.5
## 2738       913 1941    5.0
## 2739       922 1950    5.0
## 2740       923 1941    4.5
## 2741       924 1968    4.5
## 2742       928 1940    4.5
## 2743       930 1946    3.5
## 2744       931 1945    4.5
## 2745       942 1944    3.5
## 2746       965 1935    3.5
## 2747      1036 1988    2.5
## 2748      1077 1973    4.0
## 2749      1079 1988    2.5
## 2750      1089 1992    5.0
## 2751      1092 1992    4.0
## 2752      1095 1992    2.0
## 2753      1104 1951    3.5
## 2754      1136 1975    5.0
## 2755      1173 1989    1.0
## 2756      1175 1991    4.5
## 2757      1193 1975    4.5
## 2758      1199 1985    4.5
## 2759      1206 1971    5.0
## 2760      1210 1983    3.5
## 2761      1212 1949    5.0
## 2762      1213 1990    5.0
## 2763      1218 1989    4.0
## 2764      1220 1980    4.0
## 2765      1221 1974    5.0
## 2766      1230 1977    5.0
## 2767      1232 1979    5.0
## 2768      1235 1971    5.0
## 2769      1237 1957    5.0
## 2770      1240 1984    3.0
## 2771      1241 1992    0.5
## 2772      1244 1979    4.0
## 2773      1245 1990    4.0
## 2774      1246 1989    5.0
## 2775      1248 1958    5.0
## 2776      1249 1990    2.5
## 2777      1251 1963    3.5
## 2778      1252 1974    5.0
## 2779      1255 1987    2.0
## 2780      1258 1980    3.5
## 2781      1263 1978    4.5
## 2782      1265 1993    4.5
## 2783      1267 1962    5.0
## 2784      1270 1985    4.5
## 2785      1298 1982    4.5
## 2786      1333 1963    2.0
## 2787      1348 1922    5.0
## 2788      1396 1992    3.0
## 2789      1411 1996    5.0
## 2790      1464 1997    5.0
## 2791      1466 1997    4.5
## 2792      1517 1997    3.0
## 2793      1570 1992    2.5
## 2794      1580 1997    2.5
## 2795      1597 1997    2.5
## 2796      1617 1997    4.5
## 2797      1625 1997    5.0
## 2798      1627 1997    4.0
## 2799      1645 1997    3.5
## 2800      1653 1997    5.0
## 2801      1673 1997    4.5
## 2802      1674 1985    4.5
## 2803      1704 1997    4.0
## 2804      1721 1997    0.5
## 2805      1729 1997    2.5
## 2806      1732 1998    4.0
## 2807      1748 1998    4.5
## 2808      1809 1997    3.0
## 2809      1834 1997    4.5
## 2810      1884 1998    5.0
## 2811      1921 1998    5.0
## 2812      1923 1998    3.0
## 2813      1997 1973    4.0
## 2814      2010 1927    5.0
## 2815      2011 1989    4.0
## 2816      2012 1990    4.0
## 2817      2021 1984    3.5
## 2818      2023 1990    4.0
## 2819      2028 1998    3.5
## 2820      2066 1947    5.0
## 2821      2067 1965    4.5
## 2822      2076 1986    5.0
## 2823      2110 1982    3.5
## 2824      2117 1984    4.5
## 2825      2118 1983    4.0
## 2826      2159 1986    2.5
## 2827      2160 1968    4.5
## 2828      2167 1998    2.0
## 2829      2204 1942    4.5
## 2830      2232 1997    4.5
## 2831      2278 1998    3.5
## 2832      2324 1997    4.5
## 2833      2329 1998    4.0
## 2834      2353 1998    3.5
## 2835      2396 1998    4.5
## 2836      2455 1986    4.0
## 2837      2467 1986    5.0
## 2838      2490 1999    4.0
## 2839      2502 1999    1.0
## 2840      2539 1999    2.5
## 2841      2551 1988    5.0
## 2842      2571 1999    5.0
## 2843      2579 1998    5.0
## 2844      2594 1997    5.0
## 2845      2600 1999    5.0
## 2846      2606 1999    3.0
## 2847      2657 1975    3.0
## 2848      2672 1999    3.5
## 2849      2677 1999    4.0
## 2850      2683 1999    3.0
## 2851      2692 1998    4.5
## 2852      2707 1999    3.5
## 2853      2710 1999    3.5
## 2854      2712 1999    3.0
## 2855      2726 1956    4.5
## 2856      2762 1999    4.5
## 2857      2791 1980    2.0
## 2858      2858 1999    4.5
## 2859      2892 1998    3.5
## 2860      2916 1990    4.0
## 2861      2918 1986    3.0
## 2862      2952 1996    2.5
## 2863      2959 1999    5.0
## 2864      2973 1989    5.0
## 2865      2997 1999    5.0
## 2866      3018 1985    4.0
## 2867      3134 1937    5.0
## 2868      3147 1999    4.0
## 2869      3160 1999    2.5
## 2870      3253 1992    2.0
## 2871      3262 1992    4.5
## 2872      3267 1992    4.0
## 2873      3328 1999    4.0
## 2874      3386 1991    4.0
## 2875      3408 2000    2.5
## 2876      3435 1944    5.0
## 2877      3476 1990    4.5
## 2878      3503 1972    4.5
## 2879      3504 1976    3.5
## 2880      3535 2000    4.5
## 2881      3578 2000    4.0
## 2882      3598 2000    4.0
## 2883      3676 1977    5.0
## 2884      3730 1974    3.0
## 2885      3735 1973    4.0
## 2886      3742 1925    4.0
## 2887      3785 2000    3.5
## 2888      3788 1966    4.5
## 2889      3863 2000    3.5
## 2890      3949 2000    4.0
## 2891      3977 2000    1.0
## 2892      3994 2000    4.0
## 2893      3996 2000    4.5
## 2894      4027 2000    1.5
## 2895      4034 2000    4.0
## 2896      4037 1987    4.5
## 2897      4210 1986    3.0
## 2898      4226 2000    5.0
## 2899      4239 2001    3.5
## 2900      4246 2001    0.5
## 2901      4262 1983    5.0
## 2902      4306 2001    3.5
## 2903      4404 1926    5.0
## 2904      4437 1977    5.0
## 2905      4546 1988    4.5
## 2906      4552 1988    4.0
## 2907      4645 1997    4.5
## 2908      4725 2001    4.5
## 2909      4848 2001    5.0
## 2910      4878 2001    4.0
## 2911      4886 2001    3.5
## 2912      4896 2001    0.5
## 2913      4914 1960    5.0
## 2914      4963 2001    4.0
## 2915      4973 2001    4.5
## 2916      4975 2001    4.0
## 2917      4993 2001    4.5
## 2918      4995 2001    3.0
## 2919      5015 2001    4.0
## 2920      5017 1953    5.0
## 2921      5054 1983    4.0
## 2922      5060 1970    0.5
## 2923      5062 1966    5.0
## 2924      5072 2001    2.5
## 2925      5105 1973    5.0
## 2926      5137 2001    4.5
## 2927      5254 2002    2.5
## 2928      5266 2002    3.0
## 2929      5299 2002    0.5
## 2930      5316 2001    1.5
## 2931      5349 2002    1.5
## 2932      5388 2002    4.0
## 2933      5418 2002    3.5
## 2934      5445 2002    4.5
## 2935      5464 2002    4.0
## 2936      5502 2002    0.5
## 2937      5574 2002    2.0
## 2938      5608 2001    4.5
## 2939      5630 2002    4.0
## 2940      5669 2002    4.5
## 2941      5679 2002    4.0
## 2942      5686 2002    2.5
## 2943      5782 1981    4.5
## 2944      5809 2002    2.0
## 2945      5853 1981    3.0
## 2946      5867 1981    4.0
## 2947      5881 2002    4.0
## 2948      5893 1994    2.0
## 2949      5903 2002    3.5
## 2950      5949 2001    4.5
## 2951      5952 2002    4.5
## 2952      6016 2002    5.0
## 2953      6059 2003    3.5
## 2954      6140 1982    4.0
## 2955      6197 2002    4.5
## 2956      6214 2002    3.0
## 2957      6242 1998    4.0
## 2958      6281 2002    3.5
## 2959      6287 2003    1.0
## 2960      6294 2003    0.5
## 2961      6322 2003    2.0
## 2962      6323 2003    2.0
## 2963      6365 2003    2.0
## 2964      6378 2003    2.0
## 2965      6383 2003    0.5
## 2966      6385 2002    4.0
## 2967      6502 2002    3.0
## 2968      6503 2003    0.5
## 2969      6530 1976    5.0
## 2970      6538 2003    4.0
## 2971      6584 1966    3.5
## 2972      6643 1953    4.5
## 2973      6666 1972    4.5
## 2974      6708 2003    3.5
## 2975      6711 2003    1.5
## 2976      6757 2002    4.0
## 2977      6774 1983    4.0
## 2978      6777 1961    4.0
## 2979      6790 2001    3.5
## 2980      6858 1962    2.0
## 2981      6874 2003    4.5
## 2982      6971 1991    5.0
## 2983      6975 1997    3.5
## 2984      6979 1983    3.5
## 2985      6987 1920    5.0
## 2986      6993 1986    4.0
## 2987      7003 1991    4.0
## 2988      7013 1955    2.5
## 2989      7022 2000    4.5
## 2990      7044 1990    2.5
## 2991      7068 1961    4.5
## 2992      7069 1971    4.5
## 2993      7084 1972    3.5
## 2994      7090 2002    4.0
## 2995      7115 1975    4.5
## 2996      7116 1955    4.5
## 2997      7123 1991    5.0
## 2998      7135 1960    4.5
## 2999      7153 2003    4.5
## 3000      7163 2003    2.0
## 3001      7223 1950    4.0
## 3002      7254 2004    4.0
## 3003      7361 2004    4.5
## 3004      7371 2003    5.0
## 3005      7438 2004    4.5
## 3006      7445 2004    1.0
## 3007      7587 1967    5.0
## 3008      7700 1953    5.0
## 3009      7728 1946    4.5
## 3010      7771 1964    5.0
## 3011      7792 1974    4.0
## 3012      7827 2002    4.0
## 3013      7981 2002    5.0
## 3014      7982 2003    3.5
## 3015      7991 1975    0.5
## 3016      8195 1960    3.0
## 3017      8228 1931    5.0
## 3018      8360 2004    3.0
## 3019      8370 2003    3.0
## 3020      8477 1962    4.5
## 3021      8600 1938    4.0
## 3022      8620 1962    3.5
## 3023      8622 2004    3.0
## 3024      8644 2004    2.0
## 3025      8665 2004    3.5
## 3026      8690 1972    3.0
## 3027      8781 2004    2.0
## 3028      8783 2004    0.5
## 3029      8798 2004    4.5
## 3030      8865 2004    0.5
## 3031      8874 2004    3.5
## 3032      8914 2004    4.5
## 3033      8928 1967    3.0
## 3034      8950 2004    5.0
## 3035      8957 2004    3.0
## 3036      8958 2004    5.0
## 3037      8973 2004    3.5
## 3038      8983 2004    2.5
## 3039     27266 2004    3.5
## 3040     27317 1999    5.0
## 3041     27604 2001    3.0
## 3042     27721 2004    4.0
## 3043     27773 2003    5.0
## 3044     27788 2005    3.0
## 3045     27834 2003    4.5
## 3046     31410 2004    5.0
## 3047     31878 2004    3.0
## 3048     31952 2003    4.5
## 3049     32587 2005    5.0
## 3050     33004 2005    2.5
## 3051     33615 2005    1.0
## 3052     33683 2003    2.0
## 3053     34048 2005    3.0
## 3054     34437 2005    5.0
## 3055         5 1995    3.0
## 3056         6 1995    4.0
## 3057         7 1995    3.0
## 3058         9 1995    3.0
## 3059        14 1995    2.0
## 3060        17 1995    4.0
## 3061        18 1995    3.0
## 3062        25 1995    5.0
## 3063        32 1995    5.0
## 3064        36 1995    3.0
## 3065        52 1995    3.0
## 3066        62 1995    4.0
## 3067        74 1996    2.0
## 3068        76 1995    3.0
## 3069        79 1996    2.0
## 3070        81 1995    3.0
## 3071        85 1995    4.0
## 3072        86 1996    4.0
## 3073        92 1996    3.0
## 3074        95 1996    3.0
## 3075       100 1996    4.0
## 3076       140 1996    3.0
## 3077       141 1996    4.0
## 3078       260 1977    3.0
## 3079       376 1994    3.0
## 3080       494 1996    3.0
## 3081       608 1996    4.0
## 3082       628 1996    4.0
## 3083       640 1996    3.0
## 3084       648 1996    3.0
## 3085       653 1996    4.0
## 3086       707 1996    3.0
## 3087       708 1996    4.0
## 3088       719 1996    3.0
## 3089       733 1996    4.0
## 3090       736 1996    2.0
## 3091       743 1996    3.0
## 3092       748 1996    3.0
## 3093       762 1996    1.0
## 3094       765 1996    2.0
## 3095       780 1996    3.0
## 3096       785 1996    4.0
## 3097       786 1996    4.0
## 3098       788 1996    3.0
## 3099       802 1996    4.0
## 3100       805 1996    4.0
## 3101       818 1996    3.0
## 3102       832 1996    3.0
## 3103       849 1996    4.0
## 3104       852 1996    3.0
## 3105       880 1996    1.0
## 3106         1 1995    3.0
## 3107         2 1995    3.0
## 3108         3 1995    3.0
## 3109         4 1995    3.0
## 3110         6 1995    3.0
## 3111         7 1995    3.0
## 3112         9 1995    3.0
## 3113        10 1995    3.0
## 3114        11 1995    3.0
## 3115        14 1995    5.0
## 3116        16 1995    5.0
## 3117        21 1995    3.0
## 3118        22 1995    3.0
## 3119        23 1995    1.0
## 3120        25 1995    3.0
## 3121        29 1995    3.0
## 3122        32 1995    3.0
## 3123        34 1995    4.0
## 3124        35 1995    3.0
## 3125        36 1995    3.0
## 3126        39 1995    3.0
## 3127        42 1995    3.0
## 3128        45 1995    3.0
## 3129        47 1995    5.0
## 3130        48 1995    3.0
## 3131        50 1995    4.0
## 3132        52 1995    3.0
## 3133        57 1995    3.0
## 3134        58 1994    3.0
## 3135        63 1996    3.0
## 3136        64 1996    2.0
## 3137        70 1996    4.0
## 3138        74 1996    3.0
## 3139        89 1995    3.0
## 3140        94 1996    3.0
## 3141        95 1996    3.0
## 3142        97 1995    4.0
## 3143       101 1996    3.0
## 3144       105 1995    3.0
## 3145       110 1995    3.0
## 3146       111 1976    5.0
## 3147       112 1995    3.0
## 3148       122 1992    3.0
## 3149       125 1996    3.0
## 3150       141 1996    3.0
## 3151       145 1995    4.0
## 3152       150 1995    3.0
## 3153       153 1995    3.0
## 3154       154 1967    4.0
## 3155       159 1995    4.0
## 3156       160 1995    4.0
## 3157       162 1994    5.0
## 3158       165 1995    3.0
## 3159       166 1995    2.0
## 3160       172 1995    1.0
## 3161       176 1995    4.0
## 3162       177 1995    2.0
## 3163       179 1995    2.0
## 3164       180 1995    3.0
## 3165       194 1995    4.0
## 3166       196 1995    3.0
## 3167       198 1995    3.0
## 3168       202 1995    3.0
## 3169       206 1995    3.0
## 3170       208 1995    3.0
## 3171       209 1995    2.0
## 3172       215 1995    3.0
## 3173       223 1994    4.0
## 3174       229 1994    4.0
## 3175       230 1995    5.0
## 3176       231 1994    3.0
## 3177       235 1994    3.0
## 3178       246 1994    4.0
## 3179       247 1994    4.0
## 3180       249 1994    3.0
## 3181       253 1994    3.0
## 3182       260 1977    4.0
## 3183       261 1994    4.0
## 3184       262 1995    5.0
## 3185       266 1994    1.0
## 3186       269 1993    3.0
## 3187       276 1994    1.0
## 3188       281 1994    3.0
## 3189       283 1995    3.0
## 3190       288 1994    5.0
## 3191       292 1995    4.0
## 3192       293 1994    4.0
## 3193       296 1994    5.0
## 3194       300 1994    3.0
## 3195       306 1994    5.0
## 3196       307 1993    5.0
## 3197       308 1994    5.0
## 3198       316 1994    3.0
## 3199       318 1994    4.0
## 3200       326 1994    5.0
## 3201       328 1995    4.0
## 3202       329 1994    3.0
## 3203       332 1995    3.0
## 3204       333 1995    3.0
## 3205       334 1994    4.0
## 3206       337 1993    3.0
## 3207       339 1995    4.0
## 3208       340 1994    3.0
## 3209       344 1994    3.0
## 3210       345 1994    3.0
## 3211       346 1993    3.0
## 3212       348 1994    4.0
## 3213       349 1994    3.0
## 3214       350 1994    3.0
## 3215       353 1994    3.0
## 3216       354 1994    3.0
## 3217       356 1994    5.0
## 3218       357 1994    5.0
## 3219       361 1994    4.0
## 3220       364 1994    3.0
## 3221       365 1993    3.0
## 3222       366 1994    3.0
## 3223       367 1994    3.0
## 3224       369 1994    3.0
## 3225       371 1994    3.0
## 3226       372 1994    1.0
## 3227       373 1992    4.0
## 3228       376 1994    3.0
## 3229       377 1994    3.0
## 3230       379 1994    3.0
## 3231       380 1994    3.0
## 3232       382 1994    3.0
## 3233       383 1994    3.0
## 3234       407 1995    3.0
## 3235       412 1993    3.0
## 3236       423 1994    3.0
## 3237       428 1993    3.0
## 3238       429 1994    4.0
## 3239       431 1993    4.0
## 3240       434 1993    3.0
## 3241       440 1993    3.0
## 3242       441 1993    3.0
## 3243       445 1993    3.0
## 3244       448 1993    3.0
## 3245       450 1994    3.0
## 3246       451 1993    3.0
## 3247       454 1993    3.0
## 3248       456 1994    4.0
## 3249       457 1993    4.0
## 3250       464 1993    4.0
## 3251       465 1993    5.0
## 3252       468 1995    4.0
## 3253       471 1994    3.0
## 3254       474 1993    3.0
## 3255       475 1993    3.0
## 3256       479 1993    2.0
## 3257       480 1993    4.0
## 3258       481 1993    1.0
## 3259       482 1994    2.0
## 3260       485 1993    1.0
## 3261       491 1993    3.0
## 3262       493 1993    4.0
## 3263       494 1996    3.0
## 3264       500 1993    3.0
## 3265       501 1993    5.0
## 3266       504 1994    3.0
## 3267       507 1993    3.0
## 3268       508 1993    3.0
## 3269       509 1993    4.0
## 3270       513 1994    1.0
## 3271       515 1993    5.0
## 3272       517 1993    2.0
## 3273       519 1993    1.0
## 3274       520 1993    3.0
## 3275       522 1992    3.0
## 3276       527 1993    4.0
## 3277       529 1993    3.0
## 3278       531 1993    5.0
## 3279       534 1993    5.0
## 3280       535 1993    4.0
## 3281       537 1994    3.0
## 3282       541 1982    4.0
## 3283       547 1994    4.0
## 3284       550 1994    3.0
## 3285       551 1993    4.0
## 3286       555 1993    3.0
## 3287       562 1995    3.0
## 3288       580 1994    1.0
## 3289       586 1990    3.0
## 3290       588 1992    3.0
## 3291       589 1991    3.0
## 3292       590 1990    3.0
## 3293       592 1989    4.0
## 3294       593 1991    3.0
## 3295       594 1937    4.0
## 3296       595 1991    5.0
## 3297       596 1940    5.0
## 3298       597 1990    3.0
## 3299       599 1969    4.0
## 3300       608 1996    5.0
## 3301       610 1981    4.0
## 3302       612 1996    3.0
## 3303       628 1996    3.0
## 3304       648 1996    3.0
## 3305       653 1996    3.0
## 3306       661 1996    4.0
## 3307       662 1996    3.0
## 3308       663 1996    4.0
## 3309       674 1968    4.0
## 3310       703 1996    3.0
## 3311       724 1996    3.0
## 3312       733 1996    3.0
## 3313       736 1996    3.0
## 3314       748 1996    3.0
## 3315       750 1964    5.0
## 3316       780 1996    3.0
## 3317       784 1996    3.0
## 3318       785 1996    3.0
## 3319       786 1996    3.0
## 3320       788 1996    3.0
## 3321       799 1996    3.0
## 3322       800 1996    3.0
## 3323       802 1996    3.0
## 3324       805 1996    3.0
## 3325       858 1972    5.0
## 3326       880 1996    2.0
## 3327       891 1995    3.0
## 3328       898 1940    5.0
## 3329       902 1961    3.0
## 3330       903 1958    4.0
## 3331       904 1954    5.0
## 3332       908 1959    4.0
## 3333       911 1963    5.0
## 3334       912 1942    3.0
## 3335       913 1941    5.0
## 3336       914 1964    3.0
## 3337       915 1954    4.0
## 3338       916 1953    5.0
## 3339       917 1939    4.0
## 3340       920 1939    4.0
## 3341       923 1941    5.0
## 3342       924 1968    4.0
## 3343       928 1940    5.0
## 3344       929 1940    4.0
## 3345       930 1946    4.0
## 3346       931 1945    3.0
## 3347       933 1955    3.0
## 3348       940 1938    4.0
## 3349       950 1934    4.0
## 3350       951 1940    5.0
## 3351       953 1946    5.0
## 3352       954 1939    4.0
## 3353       955 1938    4.0
## 3354       965 1935    4.0
## 3355       966 1945    4.0
## 3356       968 1968    5.0
## 3357       969 1951    5.0
## 3358       982 1955    4.0
## 3359      1013 1961    3.0
## 3360      1019 1954    4.0
## 3361      1022 1950    4.0
## 3362      1023 1968    4.0
## 3363      1028 1964    3.0
## 3364      1029 1941    5.0
## 3365      1035 1965    4.0
## 3366      1036 1988    4.0
## 3367      1041 1996    5.0
## 3368      1042 1996    3.0
## 3369      1060 1996    5.0
## 3370      1061 1996    3.0
## 3371      1073 1971    4.0
## 3372      1077 1973    3.0
## 3373      1079 1988    4.0
## 3374      1080 1979    3.0
## 3375      1082 1972    3.0
## 3376      1084 1967    4.0
## 3377      1086 1954    4.0
## 3378      1088 1987    3.0
## 3379      1089 1992    4.0
## 3380      1090 1986    4.0
## 3381      1091 1989    3.0
## 3382      1092 1992    1.0
## 3383      1093 1991    3.0
## 3384      1094 1992    4.0
## 3385      1095 1992    5.0
## 3386      1097 1982    5.0
## 3387      1101 1986    3.0
## 3388      1103 1955    4.0
## 3389      1104 1951    4.0
## 3390      1124 1981    3.0
## 3391      1126 1991    3.0
## 3392      1127 1989    3.0
## 3393      1128 1980    4.0
## 3394      1129 1981    3.0
## 3395      1130 1980    4.0
## 3396      1136 1975    5.0
## 3397      1148 1993    4.0
## 3398      1161 1979    3.0
## 3399      1171 1992    3.0
## 3400      1175 1991    3.0
## 3401      1176 1991    4.0
## 3402      1178 1957    5.0
## 3403      1179 1990    5.0
## 3404      1183 1996    3.0
## 3405      1185 1989    4.0
## 3406      1193 1975    4.0
## 3407      1196 1980    5.0
## 3408      1197 1987    3.0
## 3409      1198 1981    4.0
## 3410      1199 1985    4.0
## 3411      1200 1986    4.0
## 3412      1201 1966    4.0
## 3413      1203 1957    4.0
## 3414      1204 1962    4.0
## 3415      1206 1971    4.0
## 3416      1207 1962    5.0
## 3417      1208 1979    5.0
## 3418      1210 1983    4.0
## 3419      1211 1987    5.0
## 3420      1212 1949    4.0
## 3421      1213 1990    5.0
## 3422      1214 1979    4.0
## 3423      1215 1993    4.0
## 3424      1216 1988    2.0
## 3425      1217 1985    5.0
## 3426      1218 1989    4.0
## 3427      1219 1960    5.0
## 3428      1220 1980    5.0
## 3429      1221 1974    5.0
## 3430      1222 1987    5.0
## 3431      1225 1984    5.0
## 3432      1227 1984    3.0
## 3433      1228 1980    5.0
## 3434      1230 1977    4.0
## 3435      1231 1983    5.0
## 3436      1233 1981    4.0
## 3437      1237 1957    4.0
## 3438      1238 1983    5.0
## 3439      1240 1984    4.0
## 3440      1242 1989    5.0
## 3441      1244 1979    4.0
## 3442      1246 1989    3.0
## 3443      1247 1967    3.0
## 3444      1248 1958    4.0
## 3445      1249 1990    4.0
## 3446      1250 1957    4.0
## 3447      1252 1974    4.0
## 3448      1253 1951    4.0
## 3449      1254 1948    5.0
## 3450      1257 1985    5.0
## 3451      1258 1980    5.0
## 3452      1259 1986    3.0
## 3453      1260 1931    5.0
## 3454      1261 1987    5.0
## 3455      1262 1963    4.0
## 3456      1263 1978    4.0
## 3457      1265 1993    4.0
## 3458      1266 1992    4.0
## 3459      1267 1962    4.0
## 3460      1268 1990    3.0
## 3461      1269 1944    4.0
## 3462      1270 1985    5.0
## 3463      1271 1991    3.0
## 3464      1272 1970    3.0
## 3465      1274 1988    4.0
## 3466      1275 1986    3.0
## 3467      1276 1967    4.0
## 3468      1278 1974    4.0
## 3469      1282 1940    4.0
## 3470      1283 1952    4.0
## 3471      1284 1946    4.0
## 3472      1285 1989    3.0
## 3473      1286 1980    4.0
## 3474      1287 1959    4.0
## 3475      1288 1984    5.0
## 3476      1290 1987    3.0
## 3477      1291 1989    3.0
## 3478      1292 1979    4.0
## 3479      1297 1985    4.0
## 3480      1298 1982    1.0
## 3481      1299 1984    4.0
## 3482      1302 1989    3.0
## 3483      1304 1969    3.0
## 3484      1306 1991    3.0
## 3485      1307 1989    3.0
## 3486      1320 1992    3.0
## 3487      1321 1981    3.0
## 3488      1327 1979    3.0
## 3489      1332 1987    2.0
## 3490      1333 1963    4.0
## 3491      1334 1958    3.0
## 3492      1336 1991    3.0
## 3493      1339 1992    3.0
## 3494      1342 1992    3.0
## 3495      1343 1991    4.0
## 3496      1344 1962    5.0
## 3497      1345 1976    4.0
## 3498      1347 1984    3.0
## 3499      1348 1922    5.0
## 3500      1350 1976    3.0
## 3501      1354 1996    5.0
## 3502      1356 1996    3.0
## 3503      1357 1996    4.0
## 3504      1370 1990    4.0
## 3505      1371 1979    4.0
## 3506      1372 1991    2.0
## 3507      1373 1989    3.0
## 3508      1374 1982    3.0
## 3509      1375 1984    4.0
## 3510      1376 1986    3.0
## 3511      1377 1992    3.0
## 3512      1378 1988    2.0
## 3513      1380 1978    3.0
## 3514      1381 1982    3.0
## 3515      1382 1990    1.0
## 3516      1385 1992    3.0
## 3517      1387 1975    5.0
## 3518      1388 1978    1.0
## 3519      1389 1983    1.0
## 3520      1391 1996    2.0
## 3521      1393 1996    3.0
## 3522      1394 1987    5.0
## 3523      1396 1992    3.0
## 3524      1405 1996    3.0
## 3525      1408 1992    3.0
## 3526      1441 1993    3.0
## 3527      2019 1954    3.0
## 3528      4970 1930    4.0
## 3529         1 1995    3.5
## 3530        32 1995    2.5
## 3531        34 1995    3.5
## 3532       107 1996    3.5
## 3533       110 1995    2.0
## 3534       150 1995    3.0
## 3535       153 1995    4.0
## 3536       207 1995    2.5
## 3537       231 1994    1.0
## 3538       260 1977    1.5
## 3539       296 1994    0.5
## 3540       316 1994    3.5
## 3541       318 1994    4.5
## 3542       344 1994    1.0
## 3543       356 1994    2.0
## 3544       364 1994    3.5
## 3545       367 1994    1.0
## 3546       380 1994    4.0
## 3547       457 1993    4.5
## 3548       480 1993    3.0
## 3549       497 1993    5.0
## 3550       500 1993    3.0
## 3551       527 1993    2.5
## 3552       588 1992    3.5
## 3553       590 1990    2.0
## 3554       592 1989    4.0
## 3555       593 1991    0.5
## 3556       595 1991    4.0
## 3557       597 1990    4.0
## 3558       608 1996    2.0
## 3559       671 1996    4.0
## 3560       720 1996    5.0
## 3561       736 1996    3.5
## 3562       745 1995    5.0
## 3563       750 1964    4.0
## 3564       780 1996    5.0
## 3565       858 1972    2.0
## 3566       904 1954    3.0
## 3567       905 1934    3.5
## 3568       912 1942    2.0
## 3569      1019 1954    3.0
## 3570      1097 1982    1.5
## 3571      1103 1955    4.0
## 3572      1136 1975    4.5
## 3573      1148 1993    5.0
## 3574      1196 1980    2.0
## 3575      1198 1981    4.5
## 3576      1204 1962    4.5
## 3577      1207 1962    4.0
## 3578      1210 1983    3.0
## 3579      1247 1967    1.0
## 3580      1269 1944    4.0
## 3581      1270 1985    3.5
## 3582      1293 1982    3.5
## 3583      1378 1988    3.0
## 3584      1441 1993    2.5
## 3585      1580 1997    5.0
## 3586      1680 1998    5.0
## 3587      1907 1998    4.0
## 3588      1960 1987    4.0
## 3589      2013 1972    3.0
## 3590      2405 1985    4.5
## 3591      2571 1999    4.5
## 3592      2690 1999    5.0
## 3593      2762 1999    3.5
## 3594      2908 1999    0.5
## 3595      2959 1999    0.5
## 3596      3148 1999    0.5
## 3597      3196 1953    0.5
## 3598      3406 1951    4.5
## 3599      3555 2000    2.0
## 3600      3809 1991    2.0
## 3601      4993 2001    4.0
## 3602      5380 2002    4.0
## 3603      5618 2001    3.5
## 3604      5747 1981    4.0
## 3605      6201 1986    4.5
## 3606      6385 2002    4.5
## 3607      6516 1956    4.0
## 3608      6753 2003    4.0
## 3609      7153 2003    4.0
## 3610      7212 1949    5.0
## 3611      7841 2003    1.0
## 3612      8191 1969    4.0
## 3613      8493 1990    3.5
## 3614      8611 1947    1.5
## 3615      8970 2004    2.5
## 3616     26111 1964    4.0
## 3617     31116 1941    5.0
## 3618     32469 1955    4.0
## 3619     38038 2005    4.5
## 3620     47721 1956    1.0
## 3621     51471 2006    5.0
## 3622     54259 2007    4.0
## 3623     58047 2008    4.0
## 3624     58299 2008    3.5
## 3625     59784 2008    4.0
## 3626     64285 2008    5.0
## 3627        10 1995    3.0
## 3628        21 1995    3.0
## 3629        32 1995    4.0
## 3630        34 1995    4.0
## 3631        36 1995    3.0
## 3632        44 1995    3.0
## 3633        47 1995    4.0
## 3634        95 1996    3.0
## 3635       112 1995    4.0
## 3636       151 1995    4.0
## 3637       181 1995    2.0
## 3638       196 1995    3.0
## 3639       208 1995    2.0
## 3640       260 1977    3.0
## 3641       266 1994    3.0
## 3642       273 1994    3.0
## 3643       288 1994    3.0
## 3644       296 1994    3.0
## 3645       316 1994    3.0
## 3646       329 1994    3.0
## 3647       333 1995    3.0
## 3648       344 1994    3.0
## 3649       356 1994    4.0
## 3650       377 1994    4.0
## 3651       379 1994    3.0
## 3652       380 1994    3.0
## 3653       393 1994    3.0
## 3654       442 1993    3.0
## 3655       457 1993    3.0
## 3656       466 1993    3.0
## 3657       480 1993    3.0
## 3658       485 1993    3.0
## 3659       509 1993    4.0
## 3660       527 1993    5.0
## 3661       541 1982    3.0
## 3662       543 1993    3.0
## 3663       551 1993    3.0
## 3664       553 1993    3.0
## 3665       586 1990    3.0
## 3666       589 1991    5.0
## 3667       590 1990    4.0
## 3668       592 1989    3.0
## 3669       593 1991    4.0
## 3670       594 1937    3.0
## 3671       595 1991    3.0
## 3672       597 1990    3.0
## 3673       610 1981    2.0
## 3674       648 1996    3.0
## 3675       733 1996    3.0
## 3676       750 1964    5.0
## 3677       780 1996    3.0
## 3678       849 1996    3.0
## 3679       858 1972    4.0
## 3680       899 1952    3.0
## 3681       908 1959    3.0
## 3682       910 1959    3.0
## 3683       912 1942    5.0
## 3684       913 1941    4.0
## 3685       914 1964    5.0
## 3686       918 1944    4.0
## 3687       919 1939    4.0
## 3688       920 1939    4.0
## 3689       921 1982    4.0
## 3690       923 1941    5.0
## 3691       924 1968    4.0
## 3692       945 1935    3.0
## 3693       948 1956    3.0
## 3694       952 1956    3.0
## 3695       953 1946    5.0
## 3696       954 1939    4.0
## 3697       969 1951    5.0
## 3698      1012 1957    3.0
## 3699      1019 1954    3.0
## 3700      1022 1950    3.0
## 3701      1028 1964    3.0
## 3702      1031 1971    3.0
## 3703      1032 1951    3.0
## 3704      1035 1965    4.0
## 3705      1036 1988    4.0
## 3706      1079 1988    3.0
## 3707      1080 1979    3.0
## 3708      1088 1987    2.0
## 3709      1089 1992    3.0
## 3710      1090 1986    4.0
## 3711      1091 1989    3.0
## 3712      1097 1982    3.0
## 3713      1103 1955    3.0
## 3714      1124 1981    4.0
## 3715      1125 1975    4.0
## 3716      1127 1989    3.0
## 3717      1129 1981    3.0
## 3718      1135 1980    3.0
## 3719      1136 1975    5.0
## 3720      1148 1993    5.0
## 3721      1173 1989    5.0
## 3722      1175 1991    4.0
## 3723      1193 1975    3.0
## 3724      1196 1980    4.0
## 3725      1198 1981    5.0
## 3726      1199 1985    4.0
## 3727      1200 1986    4.0
## 3728      1203 1957    4.0
## 3729      1206 1971    5.0
## 3730      1208 1979    4.0
## 3731      1210 1983    4.0
## 3732      1214 1979    4.0
## 3733      1217 1985    5.0
## 3734      1221 1974    3.0
## 3735      1222 1987    3.0
## 3736      1224 1989    5.0
## 3737      1225 1984    5.0
## 3738      1228 1980    4.0
## 3739      1231 1983    3.0
## 3740      1234 1973    3.0
## 3741      1240 1984    5.0
## 3742      1246 1989    4.0
## 3743      1250 1957    4.0
## 3744      1252 1974    3.0
## 3745      1253 1951    3.0
## 3746      1254 1948    5.0
## 3747      1256 1933    3.0
## 3748      1259 1986    4.0
## 3749      1263 1978    4.0
## 3750      1265 1993    3.0
## 3751      1266 1992    3.0
## 3752      1270 1985    4.0
## 3753      1275 1986    2.0
## 3754      1281 1940    4.0
## 3755      1282 1940    3.0
## 3756      1283 1952    4.0
## 3757      1287 1959    5.0
## 3758      1288 1984    4.0
## 3759      1291 1989    4.0
## 3760      1292 1979    4.0
## 3761      1295 1988    3.0
## 3762      1296 1986    4.0
## 3763      1297 1985    3.0
## 3764      1298 1982    3.0
## 3765      1301 1956    3.0
## 3766      1302 1989    4.0
## 3767      1303 1975    5.0
## 3768      1320 1992    3.0
## 3769      1321 1981    4.0
## 3770      1327 1979    3.0
## 3771      1334 1958    3.0
## 3772      1345 1976    3.0
## 3773      1346 1982    3.0
## 3774      1350 1976    3.0
## 3775      1370 1990    3.0
## 3776      1371 1979    3.0
## 3777      1372 1991    3.0
## 3778      1373 1989    3.0
## 3779      1374 1982    4.0
## 3780      1375 1984    3.0
## 3781      1376 1986    3.0
## 3782      1380 1978    3.0
## 3783      1387 1975    3.0
## 3784      1388 1978    3.0
## 3785      1394 1987    4.0
## 3786      1395 1987    3.0
## 3787      1427 1997    3.0
## 3788      5060 1970    3.0
## 3789        32 1995    4.5
## 3790        44 1995    2.0
## 3791        47 1995    3.5
## 3792        48 1995    2.0
## 3793        70 1996    3.0
## 3794       153 1995    3.0
## 3795       158 1995    1.0
## 3796       163 1995    4.5
## 3797       173 1995    1.5
## 3798       208 1995    2.0
## 3799       231 1994    2.5
## 3800       235 1994    2.0
## 3801       253 1994    4.5
## 3802       260 1977    4.0
## 3803       267 1995    2.0
## 3804       296 1994    5.0
## 3805       315 1994    3.0
## 3806       355 1994    2.0
## 3807       356 1994    3.5
## 3808       442 1993    2.5
## 3809       457 1993    4.5
## 3810       480 1993    4.5
## 3811       485 1993    2.5
## 3812       541 1982    4.5
## 3813       551 1993    5.0
## 3814       552 1993    3.0
## 3815       555 1993    4.0
## 3816       586 1990    1.0
## 3817       588 1992    2.0
## 3818       589 1991    5.0
## 3819       592 1989    4.5
## 3820       593 1991    4.5
## 3821       648 1996    5.0
## 3822       784 1996    1.5
## 3823       785 1996    2.5
## 3824       858 1972    4.0
## 3825      1080 1979    3.5
## 3826      1089 1992    4.0
## 3827      1097 1982    2.5
## 3828      1101 1986    2.0
## 3829      1148 1993    2.0
## 3830      1196 1980    4.5
## 3831      1198 1981    5.0
## 3832      1200 1986    5.0
## 3833      1201 1966    2.5
## 3834      1208 1979    3.5
## 3835      1210 1983    5.0
## 3836      1214 1979    3.5
## 3837      1215 1993    4.0
## 3838      1240 1984    4.0
## 3839      1255 1987    4.0
## 3840      1263 1978    3.0
## 3841      1270 1985    4.0
## 3842      1291 1989    5.0
## 3843      1320 1992    3.5
## 3844      1339 1992    4.5
## 3845      1356 1996    4.0
## 3846      1371 1979    2.0
## 3847      1372 1991    4.0
## 3848      1374 1982    3.5
## 3849      1375 1984    4.0
## 3850      1376 1986    4.0
## 3851      1377 1992    4.0
## 3852      1387 1975    4.0
## 3853      1391 1996    3.5
## 3854      1527 1997    4.5
## 3855      1544 1997    3.0
## 3856      1580 1997    4.0
## 3857      1608 1997    2.5
## 3858      1625 1997    2.0
## 3859      1641 1997    2.0
## 3860      1645 1997    2.5
## 3861      1682 1998    2.5
## 3862      1693 1997    2.0
## 3863      1721 1997    3.0
## 3864      1722 1997    3.5
## 3865      1769 1998    2.5
## 3866      1799 1997    4.0
## 3867      1876 1998    2.0
## 3868      1884 1998    4.5
## 3869      1909 1998    3.0
## 3870      1917 1998    2.5
## 3871      1923 1998    2.5
## 3872      1997 1973    3.0
## 3873      2006 1998    2.5
## 3874      2011 1989    3.5
## 3875      2023 1990    3.5
## 3876      2081 1989    2.5
## 3877      2115 1984    3.5
## 3878      2174 1988    4.0
## 3879      2232 1997    3.5
## 3880      2288 1982    4.0
## 3881      2291 1990    4.5
## 3882      2301 1981    3.5
## 3883      2340 1998    2.5
## 3884      2402 1985    3.0
## 3885      2431 1998    2.0
## 3886      2459 1974    4.0
## 3887      2502 1999    1.5
## 3888      2542 1998    4.5
## 3889      2571 1999    4.5
## 3890      2605 1999    2.0
## 3891      2616 1990    2.5
## 3892      2617 1999    2.5
## 3893      2657 1975    2.0
## 3894      2672 1999    2.0
## 3895      2683 1999    2.5
## 3896      2700 1999    2.0
## 3897      2701 1999    2.0
## 3898      2710 1999    2.0
## 3899      2712 1999    4.5
## 3900      2716 1984    3.0
## 3901      2717 1989    3.0
## 3902      2723 1999    2.0
## 3903      2762 1999    4.0
## 3904      2763 1999    1.5
## 3905      2858 1999    4.0
## 3906      2881 1999    2.0
## 3907      2953 1992    1.0
## 3908      2959 1999    4.0
## 3909      2985 1987    2.0
## 3910      2987 1988    4.0
## 3911      2990 1989    3.0
## 3912      3033 1987    4.0
## 3913      3052 1999    2.5
## 3914      3081 1999    5.0
## 3915      3082 1999    3.5
## 3916      3147 1999    2.5
## 3917      3176 1999    2.5
## 3918      3213 1993    4.0
## 3919      3253 1992    1.5
## 3920      3285 2000    2.0
## 3921      3300 2000    3.0
## 3922      3354 2000    2.5
## 3923      3355 1999    4.5
## 3924      3408 2000    1.5
## 3925      3438 1990    3.0
## 3926      3527 1987    4.0
## 3927      3535 2000    4.5
## 3928      3578 2000    3.0
## 3929      3623 2000    2.5
## 3930      3697 1990    2.5
## 3931      3751 2000    2.0
## 3932      3793 2000    4.5
## 3933      3809 1991    2.0
## 3934      3826 2000    2.0
## 3935      3868 1988    4.0
## 3936      3977 2000    2.5
## 3937      3994 2000    3.0
## 3938      3996 2000    2.0
## 3939      3999 2000    2.0
## 3940      4011 2000    4.5
## 3941      4015 2000    2.0
## 3942      4027 2000    2.0
## 3943      4105 1981    4.0
## 3944      4226 2000    5.0
## 3945      4239 2001    2.0
## 3946      4262 1983    3.5
## 3947      4306 2001    4.5
## 3948      4370 2001    3.5
## 3949      4383 2000    3.5
## 3950      4643 2001    2.5
## 3951      4701 2001    4.0
## 3952      4720 2001    2.5
## 3953      4776 2001    3.0
## 3954      4886 2001    4.0
## 3955      4896 2001    3.5
## 3956      4963 2001    2.5
## 3957      4975 2001    4.5
## 3958      4993 2001    5.0
## 3959      5010 2001    2.5
## 3960      5026 2001    4.0
## 3961      5219 2002    3.0
## 3962      5266 2002    2.5
## 3963      5349 2002    5.0
## 3964      5400 2002    2.5
## 3965      5445 2002    4.5
## 3966      5459 2002    3.5
## 3967      5464 2002    2.5
## 3968      5630 2002    4.5
## 3969      5679 2002    4.0
## 3970      5816 2002    3.5
## 3971      5872 2002    3.5
## 3972      5903 2002    4.0
## 3973      5952 2002    4.5
## 3974      5989 2002    3.5
## 3975      6286 2002    4.5
## 3976      6333 2003    4.5
## 3977      6365 2003    2.5
## 3978      6373 2003    2.0
## 3979      6502 2002    3.0
## 3980      6539 2003    4.0
## 3981      6541 2003    2.5
## 3982      6754 2003    2.5
## 3983      6874 2003    4.0
## 3984      6893 1969    2.0
## 3985      6934 2003    2.0
## 3986      7143 2003    4.0
## 3987      7147 2003    4.0
## 3988      7153 2003    4.0
## 3989      7360 2004    3.5
## 3990      7373 2004    3.0
## 3991      7438 2004    4.5
## 3992      7454 2004    3.0
## 3993      7482 1973    4.0
## 3994      8360 2004    3.5
## 3995      8368 2004    3.5
## 3996      8636 2004    4.5
## 3997      8798 2004    3.0
## 3998      8947 2004    3.0
## 3999      8950 2004    4.0
## 4000      8957 2004    4.5
## 4001      8961 2004    3.5
## 4002     30793 2005    4.0
## 4003     31184 2004    4.5
## 4004     31696 2005    4.0
## 4005     32587 2005    4.5
## 4006     33493 2005    2.5
## 4007     33794 2005    3.0
## 4008     37729 2005    5.0
## 4009         1 1995    3.0
## 4010         6 1995    3.5
## 4011        11 1995    3.5
## 4012        16 1995    4.0
## 4013        19 1995    2.0
## 4014        20 1995    1.5
## 4015        24 1995    3.5
## 4016        32 1995    4.0
## 4017        34 1995    3.5
## 4018        47 1995    4.5
## 4019        50 1995    4.0
## 4020        58 1994    3.5
## 4021        62 1995    4.0
## 4022        89 1995    4.0
## 4023       104 1996    3.5
## 4024       110 1995    3.5
## 4025       111 1976    5.0
## 4026       150 1995    3.5
## 4027       153 1995    3.0
## 4028       154 1967    4.0
## 4029       172 1995    2.5
## 4030       185 1995    3.5
## 4031       224 1995    4.0
## 4032       235 1994    4.0
## 4033       236 1995    4.5
## 4034       246 1994    4.5
## 4035       247 1994    4.0
## 4036       252 1994    4.0
## 4037       253 1994    3.5
## 4038       260 1977    4.5
## 4039       262 1995    4.0
## 4040       265 1992    3.5
## 4041       292 1995    2.5
## 4042       293 1994    4.0
## 4043       296 1994    4.5
## 4044       300 1994    4.0
## 4045       306 1994    3.5
## 4046       307 1993    2.5
## 4047       316 1994    3.5
## 4048       318 1994    5.0
## 4049       319 1994    4.5
## 4050       337 1993    4.5
## 4051       344 1994    2.0
## 4052       345 1994    4.0
## 4053       356 1994    4.5
## 4054       380 1994    4.0
## 4055       425 1994    3.5
## 4056       431 1993    3.5
## 4057       442 1993    3.5
## 4058       457 1993    3.5
## 4059       465 1993    3.5
## 4060       471 1994    3.5
## 4061       480 1993    3.5
## 4062       485 1993    3.0
## 4063       492 1993    4.5
## 4064       497 1993    4.5
## 4065       508 1993    4.5
## 4066       509 1993    4.5
## 4067       527 1993    3.5
## 4068       532 1994    3.5
## 4069       535 1993    4.5
## 4070       539 1993    2.5
## 4071       541 1982    3.0
## 4072       586 1990    3.5
## 4073       588 1992    4.0
## 4074       589 1991    3.5
## 4075       590 1990    2.5
## 4076       592 1989    3.5
## 4077       593 1991    4.5
## 4078       595 1991    4.5
## 4079       597 1990    3.0
## 4080       605 1996    4.0
## 4081       608 1996    4.5
## 4082       648 1996    4.5
## 4083       653 1996    2.5
## 4084       668 1955    4.5
## 4085       670 1959    4.5
## 4086       745 1995    4.5
## 4087       750 1964    4.5
## 4088       778 1996    4.5
## 4089       780 1996    3.5
## 4090       788 1996    2.0
## 4091       802 1996    3.5
## 4092       805 1996    3.5
## 4093       841 1959    4.0
## 4094       858 1972    5.0
## 4095       898 1940    4.5
## 4096       899 1952    4.5
## 4097       900 1951    2.5
## 4098       903 1958    3.5
## 4099       904 1954    4.5
## 4100       905 1934    4.0
## 4101       908 1959    5.0
## 4102       909 1960    3.5
## 4103       910 1959    4.5
## 4104       911 1963    4.0
## 4105       912 1942    5.0
## 4106       913 1941    4.0
## 4107       914 1964    3.0
## 4108       920 1939    3.5
## 4109       922 1950    4.5
## 4110       923 1941    5.0
## 4111       924 1968    3.5
## 4112       926 1950    4.0
## 4113       928 1940    4.5
## 4114       930 1946    4.0
## 4115       931 1945    4.5
## 4116       933 1955    3.5
## 4117       942 1944    4.0
## 4118       948 1956    3.5
## 4119       949 1955    3.5
## 4120       952 1956    3.5
## 4121       953 1946    4.5
## 4122       954 1939    5.0
## 4123       955 1938    3.5
## 4124       965 1935    3.5
## 4125       969 1951    3.5
## 4126       971 1958    3.5
## 4127      1035 1965    2.5
## 4128      1036 1988    3.0
## 4129      1041 1996    4.0
## 4130      1059 1996    4.5
## 4131      1061 1996    3.5
## 4132      1077 1973    4.0
## 4133      1078 1971    4.0
## 4134      1080 1979    4.0
## 4135      1084 1967    4.0
## 4136      1089 1992    3.5
## 4137      1090 1986    4.0
## 4138      1096 1982    2.5
## 4139      1097 1982    5.0
## 4140      1101 1986    3.0
## 4141      1103 1955    4.5
## 4142      1104 1951    4.0
## 4143      1136 1975    4.0
## 4144      1172 1989    5.0
## 4145      1175 1991    3.5
## 4146      1176 1991    3.0
## 4147      1178 1957    4.0
## 4148      1183 1996    4.0
## 4149      1185 1989    3.0
## 4150      1188 1992    4.0
## 4151      1193 1975    4.5
## 4152      1196 1980    4.5
## 4153      1197 1987    5.0
## 4154      1198 1981    4.5
## 4155      1199 1985    3.5
## 4156      1201 1966    4.0
## 4157      1202 1987    4.5
## 4158      1203 1957    4.5
## 4159      1204 1962    5.0
## 4160      1206 1971    4.5
## 4161      1207 1962    3.5
## 4162      1208 1979    5.0
## 4163      1210 1983    4.0
## 4164      1211 1987    3.5
## 4165      1212 1949    3.5
## 4166      1213 1990    5.0
## 4167      1217 1985    4.5
## 4168      1218 1989    3.5
## 4169      1219 1960    5.0
## 4170      1221 1974    4.5
## 4171      1222 1987    3.5
## 4172      1225 1984    4.5
## 4173      1227 1984    3.5
## 4174      1228 1980    4.0
## 4175      1230 1977    4.0
## 4176      1231 1983    4.0
## 4177      1232 1979    4.0
## 4178      1233 1981    3.5
## 4179      1234 1973    3.5
## 4180      1235 1971    1.5
## 4181      1237 1957    4.5
## 4182      1240 1984    3.5
## 4183      1241 1992    2.5
## 4184      1243 1990    3.5
## 4185      1244 1979    3.5
## 4186      1246 1989    4.0
## 4187      1247 1967    4.0
## 4188      1248 1958    4.5
## 4189      1250 1957    4.0
## 4190      1251 1963    5.0
## 4191      1252 1974    4.5
## 4192      1254 1948    3.5
## 4193      1256 1933    3.5
## 4194      1258 1980    3.5
## 4195      1260 1931    4.0
## 4196      1262 1963    4.0
## 4197      1263 1978    3.0
## 4198      1265 1993    4.0
## 4199      1266 1992    3.5
## 4200      1267 1962    5.0
## 4201      1269 1944    4.0
## 4202      1270 1985    4.5
## 4203      1272 1970    2.0
## 4204      1277 1990    3.5
## 4205      1280 1991    5.0
## 4206      1281 1940    3.0
## 4207      1284 1946    4.0
## 4208      1287 1959    4.0
## 4209      1288 1984    3.5
## 4210      1291 1989    3.5
## 4211      1293 1982    5.0
## 4212      1304 1969    4.0
## 4213      1305 1984    4.5
## 4214      1307 1989    4.0
## 4215      1333 1963    3.5
## 4216      1343 1991    4.0
## 4217      1348 1922    2.5
## 4218      1354 1996    4.5
## 4219      1356 1996    3.0
## 4220      1377 1992    2.5
## 4221      1380 1978    2.5
## 4222      1387 1975    3.5
## 4223      1391 1996    3.5
## 4224      1393 1996    4.0
## 4225      1394 1987    4.0
## 4226      1408 1992    3.5
## 4227      1411 1996    3.5
## 4228      1438 1997    3.0
## 4229      1464 1997    2.0
## 4230      1499 1997    1.5
## 4231      1500 1997    4.5
## 4232      1515 1997    3.0
## 4233      1527 1997    3.5
## 4234      1544 1997    2.0
## 4235      1552 1997    3.0
## 4236      1556 1997    0.5
## 4237      1562 1997    1.0
## 4238      1580 1997    3.5
## 4239      1584 1997    4.0
## 4240      1608 1997    2.5
## 4241      1617 1997    4.0
## 4242      1625 1997    4.5
## 4243      1673 1997    4.0
## 4244      1682 1998    5.0
## 4245      1693 1997    4.0
## 4246      1704 1997    3.5
## 4247      1721 1997    5.0
## 4248      1722 1997    3.0
## 4249      1732 1998    4.0
## 4250      1735 1998    4.5
## 4251      1748 1998    5.0
## 4252      1792 1998    3.5
## 4253      1797 1998    3.5
## 4254      1835 1998    3.5
## 4255      1860 1997    5.0
## 4256      1873 1998    3.0
## 4257      1876 1998    3.0
## 4258      1900 1997    3.5
## 4259      1907 1998    3.5
## 4260      1917 1998    2.0
## 4261      1927 1930    3.0
## 4262      1931 1935    4.0
## 4263      1932 1936    1.5
## 4264      1935 1941    4.0
## 4265      1941 1948    3.5
## 4266      1944 1953    4.0
## 4267      1945 1954    4.5
## 4268      1946 1955    4.0
## 4269      1947 1961    4.0
## 4270      1949 1966    3.5
## 4271      1950 1967    4.5
## 4272      1951 1968    3.0
## 4273      1952 1969    4.0
## 4274      1953 1971    3.0
## 4275      1954 1976    3.0
## 4276      1955 1979    4.0
## 4277      1956 1980    1.0
## 4278      1957 1981    3.5
## 4279      1958 1983    3.5
## 4280      1959 1985    2.5
## 4281      1960 1987    1.5
## 4282      1961 1988    4.0
## 4283      1962 1989    3.5
## 4284      1997 1973    3.5
## 4285      2002 1992    3.5
## 4286      2010 1927    3.5
## 4287      2011 1989    4.0
## 4288      2012 1990    4.5
## 4289      2019 1954    4.0
## 4290      2022 1988    4.0
## 4291      2023 1990    3.0
## 4292      2027 1998    3.5
## 4293      2028 1998    4.0
## 4294      2067 1965    2.5
## 4295      2068 1982    5.0
## 4296      2115 1984    4.0
## 4297      2126 1998    2.0
## 4298      2132 1966    4.0
## 4299      2143 1985    1.5
## 4300      2174 1988    3.5
## 4301      2176 1948    5.0
## 4302      2178 1972    3.0
## 4303      2181 1964    4.0
## 4304      2183 1956    3.5
## 4305      2186 1951    5.0
## 4306      2194 1987    3.5
## 4307      2203 1943    4.0
## 4308      2205 1941    3.5
## 4309      2231 1998    3.5
## 4310      2248 1989    3.5
## 4311      2273 1998    3.5
## 4312      2278 1998    4.0
## 4313      2289 1992    4.0
## 4314      2291 1990    4.0
## 4315      2313 1980    3.5
## 4316      2321 1998    5.0
## 4317      2324 1997    3.5
## 4318      2329 1998    2.5
## 4319      2333 1998    3.5
## 4320      2334 1998    2.5
## 4321      2336 1998    3.0
## 4322      2351 1957    5.0
## 4323      2353 1998    3.0
## 4324      2357 1998    4.0
## 4325      2360 1998    3.5
## 4326      2361 1972    4.0
## 4327      2394 1998    3.5
## 4328      2396 1998    4.5
## 4329      2406 1984    4.0
## 4330      2424 1998    3.0
## 4331      2467 1986    4.0
## 4332      2474 1986    2.5
## 4333      2501 1999    4.0
## 4334      2502 1999    4.0
## 4335      2539 1999    2.0
## 4336      2542 1998    3.5
## 4337      2571 1999    4.0
## 4338      2575 1998    3.0
## 4339      2580 1999    3.5
## 4340      2599 1999    3.5
## 4341      2600 1999    4.0
## 4342      2617 1999    3.5
## 4343      2628 1999    2.5
## 4344      2640 1978    4.5
## 4345      2644 1931    3.5
## 4346      2648 1931    4.5
## 4347      2657 1975    3.0
## 4348      2692 1998    5.0
## 4349      2699 1990    1.5
## 4350      2702 1999    4.0
## 4351      2712 1999    4.5
## 4352      2716 1984    3.0
## 4353      2721 1999    3.5
## 4354      2724 1999    2.0
## 4355      2726 1956    4.5
## 4356      2728 1960    4.0
## 4357      2729 1962    3.5
## 4358      2730 1975    4.0
## 4359      2731 1959    5.0
## 4360      2739 1985    4.0
## 4361      2746 1986    2.0
## 4362      2762 1999    4.0
## 4363      2805 1999    2.5
## 4364      2858 1999    3.5
## 4365      2871 1972    3.5
## 4366      2890 1999    4.0
## 4367      2905 1962    4.0
## 4368      2908 1999    3.5
## 4369      2918 1986    4.0
## 4370      2932 1978    4.0
## 4371      2947 1964    3.5
## 4372      2952 1996    3.5
## 4373      2953 1992    3.5
## 4374      2959 1999    3.5
## 4375      2970 1982    4.0
## 4376      2976 1999    4.5
## 4377      2987 1988    3.5
## 4378      2997 1999    4.5
## 4379      3006 1999    4.5
## 4380      3019 1989    3.5
## 4381      3020 1993    2.5
## 4382      3052 1999    3.5
## 4383      3053 1999    2.0
## 4384      3067 1988    5.0
## 4385      3081 1999    3.0
## 4386      3082 1999    2.5
## 4387      3083 1999    5.0
## 4388      3088 1950    2.5
## 4389      3089 1948    4.5
## 4390      3095 1940    3.0
## 4391      3100 1992    3.5
## 4392      3114 1999    3.5
## 4393      3147 1999    3.0
## 4394      3152 1971    2.0
## 4395      3155 1999    2.5
## 4396      3159 1999    4.0
## 4397      3160 1999    4.5
## 4398      3168 1969    4.0
## 4399      3176 1999    5.0
## 4400      3201 1970    3.5
## 4401      3245 1964    4.5
## 4402      3246 1992    4.5
## 4403      3248 1993    3.0
## 4404      3252 1992    4.5
## 4405      3267 1992    3.5
## 4406      3307 1931    4.0
## 4407      3310 1921    5.0
## 4408      3317 2000    4.0
## 4409      3365 1956    2.5
## 4410      3371 1976    3.5
## 4411      3386 1991    5.0
## 4412      3405 1958    3.5
## 4413      3408 2000    4.5
## 4414      3415 1975    1.5
## 4415      3424 1989    4.0
## 4416      3435 1944    4.5
## 4417      3448 1987    4.0
## 4418      3462 1936    4.5
## 4419      3468 1961    3.0
## 4420      3471 1977    4.5
## 4421      3475 1951    3.5
## 4422      3481 2000    3.5
## 4423      3489 1991    3.5
## 4424      3498 1978    4.5
## 4425      3503 1972    3.5
## 4426      3504 1976    3.0
## 4427      3510 2000    3.5
## 4428      3535 2000    4.0
## 4429      3546 1962    4.0
## 4430      3559 1952    2.0
## 4431      3569 1998    1.0
## 4432      3578 2000    4.0
## 4433      3618 2000    3.0
## 4434      3623 2000    2.0
## 4435      3629 1925    4.0
## 4436      3668 1968    3.0
## 4437      3671 1974    3.5
## 4438      3681 1965    3.5
## 4439      3730 1974    3.5
## 4440      3736 1951    4.0
## 4441      3741 1973    2.5
## 4442      3751 2000    4.0
## 4443      3753 2000    2.0
## 4444      3788 1966    4.0
## 4445      3801 1959    2.0
## 4446      3844 1989    3.0
## 4447      3871 1953    3.0
## 4448      3897 2000    4.5
## 4449      3910 2000    4.5
## 4450      3949 2000    5.0
## 4451      3983 2000    4.5
## 4452      3989 1999    4.0
## 4453      3992 2000    3.5
## 4454      3994 2000    4.0
## 4455      3996 2000    4.0
## 4456      4007 1987    4.0
## 4457      4008 1989    4.0
## 4458      4011 2000    4.5
## 4459      4014 2000    3.5
## 4460      4022 2000    2.0
## 4461      4027 2000    3.5
## 4462      4034 2000    3.5
## 4463      4037 1987    3.5
## 4464      4103 1987    3.5
## 4465      4148 2001    1.0
## 4466      4167 2001    3.0
## 4467      4223 2001    2.0
## 4468      4225 2001    4.0
## 4469      4226 2000    4.5
## 4470      4235 2000    4.0
## 4471      4267 2001    4.0
## 4472      4278 1934    3.5
## 4473      4282 1969    2.0
## 4474      4297 1987    3.5
## 4475      4308 2001    4.5
## 4476      4310 2001    1.5
## 4477      4312 1999    3.5
## 4478      4343 2001    3.0
## 4479      4344 2001    0.5
## 4480      4359 1955    2.0
## 4481      4370 2001    3.0
## 4482      4378 2000    4.0
## 4483      4432 1957    3.5
## 4484      4447 2001    3.5
## 4485      4458 1994    3.0
## 4486      4564 1989    1.5
## 4487      4571 1989    3.5
## 4488      4641 2001    4.0
## 4489      4720 2001    4.0
## 4490      4816 2001    3.0
## 4491      4823 2001    4.0
## 4492      4848 2001    4.0
## 4493      4857 1971    3.5
## 4494      4865 2001    3.5
## 4495      4878 2001    3.5
## 4496      4881 2001    3.5
## 4497      4886 2001    3.5
## 4498      4896 2001    3.5
## 4499      4901 2001    3.0
## 4500      4914 1960    5.0
## 4501      4963 2001    5.0
## 4502      4967 2001    5.0
## 4503      4973 2001    5.0
## 4504      4975 2001    2.0
## 4505      4976 2001    3.0
## 4506      4978 2001    4.5
## 4507      4979 2001    4.0
## 4508      4993 2001    4.0
## 4509      4995 2001    4.5
## 4510      5013 2001    4.5
## 4511      5014 2001    1.0
## 4512      5015 2001    3.5
## 4513      5060 1970    3.0
## 4514      5073 2001    3.0
## 4515      5096 1994    3.0
## 4516      5114 1952    4.0
## 4517      5135 2001    4.0
## 4518      5147 1957    4.0
## 4519      5177 1942    4.5
## 4520      5222 2001    4.0
## 4521      5225 2001    5.0
## 4522      5266 2002    4.0
## 4523      5291 1950    4.0
## 4524      5299 2002    2.5
## 4525      5304 1945    3.5
## 4526      5348 2002    3.5
## 4527      5349 2002    2.0
## 4528      5367 1985    4.0
## 4529      5373 1957    3.5
## 4530      5377 2002    3.5
## 4531      5378 2002    0.5
## 4532      5385 1978    3.5
## 4533      5388 2002    3.5
## 4534      5445 2002    3.0
## 4535      5446 2002    4.0
## 4536      5463 2002    2.5
## 4537      5464 2002    2.0
## 4538      5470 1952    3.0
## 4539      5489 1979    3.0
## 4540      5502 2002    4.0
## 4541      5599 1931    3.5
## 4542      5618 2001    3.5
## 4543      5633 2002    4.5
## 4544      5669 2002    4.0
## 4545      5673 2002    4.5
## 4546      5679 2002    3.5
## 4547      5682 2001    3.5
## 4548      5810 2002    4.0
## 4549      5816 2002    2.5
## 4550      5878 2002    4.0
## 4551      5881 2002    4.0
## 4552      5882 2002    1.5
## 4553      5902 2002    5.0
## 4554      5940 1982    4.0
## 4555      5949 2001    4.0
## 4556      5952 2002    4.0
## 4557      5954 2002    3.5
## 4558      5956 2002    3.5
## 4559      5971 1988    4.5
## 4560      5989 2002    5.0
## 4561      5991 2002    2.5
## 4562      5992 2002    5.0
## 4563      5995 2002    4.5
## 4564      6001 1983    4.5
## 4565      6008 2002    3.0
## 4566      6016 2002    5.0
## 4567      6162 2002    2.5
## 4568      6197 2002    2.5
## 4569      6214 2002    3.5
## 4570      6218 2002    4.0
## 4571      6235 1990    4.0
## 4572      6281 2002    4.0
## 4573      6323 2003    3.5
## 4574      6333 2003    3.5
## 4575      6365 2003    4.5
## 4576      6377 2003    3.5
## 4577      6404 1952    3.5
## 4578      6415 1987    1.5
## 4579      6440 1991    3.5
## 4580      6537 2003    3.0
## 4581      6539 2003    4.5
## 4582      6552 2002    3.5
## 4583      6591 2002    4.0
## 4584      6599 1961    3.5
## 4585      6611 1952    4.5
## 4586      6620 2003    3.5
## 4587      6641 2000    2.5
## 4588      6643 1953    4.5
## 4589      6666 1972    3.0
## 4590      6669 1952    4.0
## 4591      6708 2003    3.5
## 4592      6709 2003    1.5
## 4593      6711 2003    3.0
## 4594      6783 1939    4.0
## 4595      6787 1976    4.0
## 4596      6796 1991    3.5
## 4597      6807 1983    3.0
## 4598      6867 2003    3.5
## 4599      6870 2003    3.5
## 4600      6873 2003    4.0
## 4601      6874 2003    5.0
## 4602      6881 2003    4.5
## 4603      6890 2003    4.0
## 4604      6918 1957    5.0
## 4605      6932 2003    4.0
## 4606      6934 2003    3.0
## 4607      6944 1991    3.0
## 4608      6947 2003    2.5
## 4609      6953 2003    3.5
## 4610      6954 2003    3.0
## 4611      6975 1997    4.5
## 4612      6981 1955    2.5
## 4613      6982 1952    2.0
## 4614      6985 1928    4.0
## 4615      6987 1920    4.0
## 4616      6993 1986    3.5
## 4617      7004 1990    2.0
## 4618      7008 1972    1.5
## 4619      7013 1955    4.0
## 4620      7038 2000    4.0
## 4621      7042 1986    2.5
## 4622      7063 1972    4.5
## 4623      7070 1948    4.5
## 4624      7072 1939    4.5
## 4625      7088 1959    4.0
## 4626      7090 2002    4.5
## 4627      7104 1979    2.0
## 4628      7132 1935    3.5
## 4629      7136 1968    5.0
## 4630      7139 2002    3.5
## 4631      7147 2003    4.0
## 4632      7153 2003    4.5
## 4633      7160 2003    3.0
## 4634      7161 2003    2.0
## 4635      7162 2003    2.0
## 4636      7234 1954    4.0
## 4637      7265 2003    4.0
## 4638      7323 2003    4.0
## 4639      7347 2004    3.0
## 4640      7361 2004    4.5
## 4641      7371 2003    4.5
## 4642      7419 1985    3.5
## 4643      7438 2004    3.5
## 4644      7458 2004    2.0
## 4645      7569 1967    3.5
## 4646      7587 1967    4.0
## 4647      7713 1942    3.5
## 4648      7748 1965    3.5
## 4649      7759 1983    1.0
## 4650      7766 1957    4.0
## 4651      7771 1964    4.0
## 4652      7942 1953    3.0
## 4653      8019 2002    3.5
## 4654      8042 1973    4.5
## 4655      8125 1927    4.0
## 4656      8154 1960    3.5
## 4657      8195 1960    3.0
## 4658      8239 1961    3.5
## 4659      8338 1947    3.5
## 4660      8368 2004    4.0
## 4661      8376 2004    4.5
## 4662      8464 2004    3.5
## 4663      8507 1932    3.5
## 4664      8529 2004    2.0
## 4665      8636 2004    3.5
## 4666      8656 1988    2.5
## 4667      8873 2004    4.5
## 4668      8910 2004    4.0
## 4669      8949 2004    3.5
## 4670      8955 2004    5.0
## 4671      8958 2004    4.5
## 4672      8966 2004    3.5
## 4673      8970 2004    4.5
## 4674      8973 2004    4.0
## 4675      8984 2004    3.0
## 4676     25753 1924    3.5
## 4677     25769 1928    4.5
## 4678     25805 1934    2.5
## 4679     26052 1959    4.0
## 4680     26131 1966    4.0
## 4681     26242 1971    5.0
## 4682     26729 1991    4.5
## 4683     27266 2004    3.0
## 4684     27317 1999    3.0
## 4685     27721 2004    3.0
## 4686     27803 2004    4.5
## 4687     30707 2004    3.5
## 4688     30749 2004    4.5
## 4689     30793 2005    3.5
## 4690     30812 2004    3.5
## 4691     30820 2004    4.0
## 4692     31101 2003    4.0
## 4693     31658 2004    3.5
## 4694     32587 2005    3.5
## 4695     32892 1962    4.0
## 4696     33162 2005    2.5
## 4697     33166 2004    5.0
## 4698     33493 2005    4.0
## 4699     33794 2005    3.5
## 4700     33903 2004    3.5
## 4701     34048 2005    3.0
## 4702     34143 2005    2.5
## 4703     34326 2005    4.0
## 4704     34437 2005    3.0
## 4705     36517 2005    3.5
## 4706     36529 2005    3.5
## 4707     36535 2005    4.5
## 4708     37733 2005    3.5
## 4709     37736 2005    3.0
## 4710     37741 2005    4.0
## 4711     38038 2005    4.0
## 4712     39183 2005    4.5
## 4713     39231 2005    4.0
## 4714     39292 2005    4.5
## 4715     39869 2005    4.0
## 4716     40278 2005    3.5
## 4717     40583 2005    4.0
## 4718     40629 2005    4.0
## 4719     40815 2005    3.0
## 4720     40819 2005    3.0
## 4721     41285 2005    4.5
## 4722     41569 2005    2.0
## 4723     41571 2005    2.5
## 4724     41863 2006    3.5
## 4725     41997 2005    4.0
## 4726     42004 2005    4.0
## 4727     42418 2005    3.5
## 4728     42734 2005    3.0
## 4729     44191 2006    4.5
## 4730     44204 2005    4.0
## 4731     45186 2006    3.5
## 4732     45447 2006    1.5
## 4733     45722 2006    2.5
## 4734     48385 2006    3.5
## 4735         6 1995    5.0
## 4736        36 1995    3.0
## 4737        81 1995    4.0
## 4738        95 1996    3.0
## 4739       150 1995    3.0
## 4740       165 1995    4.0
## 4741       296 1994    5.0
## 4742       316 1994    3.0
## 4743       356 1994    4.0
## 4744       380 1994    4.0
## 4745       457 1993    4.0
## 4746       588 1992    3.0
## 4747       590 1990    4.0
## 4748       592 1989    3.0
## 4749       610 1981    3.0
## 4750       648 1996    4.0
## 4751       736 1996    3.0
## 4752       780 1996    4.0
## 4753       786 1996    4.0
## 4754      1034 1996    3.0
## 4755      1161 1979    4.0
## 4756         3 1995    3.0
## 4757        32 1995    4.0
## 4758        78 1995    3.0
## 4759       104 1996    4.0
## 4760       260 1977    4.0
## 4761       494 1996    3.0
## 4762       608 1996    3.0
## 4763       653 1996    2.0
## 4764       663 1996    2.0
## 4765       707 1996    3.0
## 4766       778 1996    4.0
## 4767       780 1996    4.0
## 4768       784 1996    3.0
## 4769       786 1996    3.0
## 4770       788 1996    2.0
## 4771       802 1996    5.0
## 4772       832 1996    3.0
## 4773       842 1996    2.0
## 4774      1073 1971    5.0
## 4775      1354 1996    1.0
## 4776      1356 1996    3.0
## 4777      1358 1996    5.0
## 4778      1391 1996    2.0
## 4779      1405 1996    3.0
## 4780      1409 1996    2.0
## 4781      1483 1996    3.0
## 4782         1 1995    5.0
## 4783        32 1995    4.5
## 4784        47 1995    4.5
## 4785        50 1995    4.5
## 4786        63 1996    0.5
## 4787        69 1995    4.5
## 4788       153 1995    3.5
## 4789       165 1995    2.5
## 4790       260 1977    3.0
## 4791       296 1994    3.5
## 4792       316 1994    0.5
## 4793       318 1994    4.0
## 4794       344 1994    0.5
## 4795       356 1994    4.5
## 4796       367 1994    2.0
## 4797       377 1994    3.0
## 4798       380 1994    3.0
## 4799       457 1993    3.5
## 4800       480 1993    2.5
## 4801       500 1993    1.0
## 4802       555 1993    3.5
## 4803       589 1991    4.0
## 4804       593 1991    3.5
## 4805       608 1996    3.5
## 4806       648 1996    2.5
## 4807       720 1996    3.0
## 4808       733 1996    3.0
## 4809       778 1996    4.5
## 4810       780 1996    3.5
## 4811       858 1972    4.0
## 4812      1036 1988    3.5
## 4813      1089 1992    3.5
## 4814      1196 1980    3.5
## 4815      1198 1981    4.0
## 4816      1210 1983    3.5
## 4817      1405 1996    1.5
## 4818      1527 1997    4.0
## 4819      1580 1997    3.5
## 4820      1653 1997    3.5
## 4821      1687 1997    3.5
## 4822      1732 1998    4.0
## 4823      1753 1998    3.0
## 4824      1831 1998    3.0
## 4825      1884 1998    4.0
## 4826      2028 1998    3.0
## 4827      2329 1998    4.0
## 4828      2355 1998    4.0
## 4829      2542 1998    5.0
## 4830      2571 1999    5.0
## 4831      2692 1998    4.5
## 4832      2858 1999    4.0
## 4833      2959 1999    4.0
## 4834      3108 1991    2.0
## 4835      3114 1999    4.5
## 4836      3147 1999    3.0
## 4837      3275 2000    4.0
## 4838      3481 2000    2.5
## 4839      3578 2000    2.5
## 4840      3744 2000    4.0
## 4841      4011 2000    5.0
## 4842      4019 2000    4.0
## 4843      4027 2000    3.0
## 4844      4161 2001    3.5
## 4845      4226 2000    4.0
## 4846      4262 1983    2.5
## 4847      4306 2001    4.0
## 4848      4776 2001    4.0
## 4849      4844 2001    2.0
## 4850      4865 2001    4.5
## 4851      4963 2001    1.5
## 4852      4973 2001    3.5
## 4853      4979 2001    4.0
## 4854      4995 2001    3.0
## 4855      5010 2001    3.5
## 4856      5110 2001    4.0
## 4857      5218 2002    4.0
## 4858      5418 2002    4.0
## 4859      5608 2001    4.0
## 4860      5617 2002    2.0
## 4861      5903 2002    2.5
## 4862      5952 2002    4.0
## 4863      5954 2002    3.0
## 4864      5989 2002    2.0
## 4865      6016 2002    5.0
## 4866      6333 2003    0.5
## 4867      6539 2003    1.5
## 4868      6708 2003    3.5
## 4869      6867 2003    4.0
## 4870      6870 2003    3.0
## 4871      6874 2003    4.5
## 4872      7323 2003    4.0
## 4873      7361 2004    3.5
## 4874      7438 2004    3.5
## 4875      7445 2004    4.5
## 4876      8368 2004    3.0
## 4877      8665 2004    4.0
## 4878      8784 2004    2.0
## 4879      8798 2004    5.0
## 4880      8874 2004    1.5
## 4881      8961 2004    4.0
## 4882     27376 2001    0.5
## 4883     27831 2004    5.0
## 4884     30810 2004    3.0
## 4885     31410 2004    2.0
## 4886     31878 2004    4.0
## 4887     32587 2005    4.0
## 4888     33794 2005    4.0
## 4889     34437 2005    3.0
## 4890     36529 2005    4.0
## 4891     37731 2005    3.0
## 4892     37741 2005    3.5
## 4893     38038 2005    3.0
## 4894     38061 2005    4.5
## 4895     41997 2005    4.0
## 4896     44191 2006    5.0
## 4897     44195 2006    5.0
## 4898     44199 2006    4.5
## 4899     44665 2006    3.5
## 4900     46976 2006    4.0
## 4901     47610 2006    4.5
## 4902     48516 2006    4.5
## 4903     48774 2006    3.0
## 4904     48780 2006    4.5
## 4905     49272 2006    4.0
## 4906     49278 2006    3.0
## 4907     49530 2006    4.0
## 4908     50851 2006    3.5
## 4909     50872 2007    5.0
## 4910     51255 2007    3.5
## 4911     51662 2007    4.0
## 4912     52604 2007    4.0
## 4913     52952 2006    4.0
## 4914     53129 2007    4.5
## 4915     53972 2007    3.0
## 4916     54286 2007    5.0
## 4917     54503 2007    2.5
## 4918     55118 2007    2.5
## 4919     55167 2006    0.5
## 4920     55247 2007    4.0
## 4921     55276 2007    3.5
## 4922     55280 2007    3.5
## 4923     55765 2007    2.5
## 4924     55820 2007    3.0
## 4925     56782 2007    3.5
## 4926     57669 2008    3.5
## 4927     58559 2008    5.0
## 4928     59315 2008    3.5
## 4929     59369 2008    5.0
## 4930     59387 2006    3.0
## 4931     59784 2008    5.0
## 4932     60069 2008    3.0
## 4933     60684 2009    5.0
## 4934     61024 2008    3.0
## 4935     61323 2008    3.5
## 4936     62849 2008    4.5
## 4937     63082 2008    3.0
## 4938     65514 2008    5.0
## 4939     67997 2009    3.5
## 4940     68157 2009    3.5
## 4941     68358 2009    2.0
## 4942     68954 2009    3.5
## 4943     69122 2009    3.5
## 4944     70533 2007    0.5
## 4945     71464 2009    2.0
## 4946     72998 2009    3.5
## 4947     73017 2009    3.5
## 4948     73587 2009    4.5
## 4949     79132 2010    3.5
## 4950     80489 2010    2.0
## 4951     82459 2010    4.0
## 4952     91542 2011    3.5
## 4953     92259 2011    4.5
## 4954        50 1995    4.0
## 4955        73 1995    5.0
## 4956       111 1976    4.0
## 4957       296 1994    4.0
## 4958       527 1993    5.0
## 4959       593 1991    4.0
## 4960      1213 1990    4.0
## 4961      1343 1991    4.0
## 4962      1584 1997    4.0
## 4963      1610 1990    4.0
## 4964      1639 1997    4.0
## 4965      1704 1997    5.0
## 4966      1721 1997    3.0
## 4967      1892 1998    4.0
## 4968      2356 1998    2.0
## 4969      2391 1998    3.0
## 4970      2396 1998    2.0
## 4971      2501 1999    4.0
## 4972      2502 1999    4.0
## 4973      2710 1999    1.0
## 4974      2712 1999    4.0
## 4975      2762 1999    5.0
## 4976      2858 1999    5.0
## 4977        21 1995    5.0
## 4978        58 1994    5.0
## 4979       110 1995    4.0
## 4980       345 1994    5.0
## 4981       898 1940    5.0
## 4982       899 1952    5.0
## 4983       902 1961    5.0
## 4984       903 1958    3.0
## 4985       904 1954    4.0
## 4986       908 1959    5.0
## 4987       909 1960    4.0
## 4988       913 1941    4.0
## 4989       920 1939    5.0
## 4990       924 1968    4.0
## 4991       926 1950    5.0
## 4992       933 1955    4.0
## 4993       953 1946    2.0
## 4994      1059 1996    5.0
## 4995      1079 1988    5.0
## 4996      1094 1992    4.0
## 4997      1203 1957    5.0
## 4998      1206 1971    4.0
## 4999      1219 1960    5.0
## 5000      1225 1984    5.0
## 5001      1250 1957    5.0
## 5002      1252 1974    5.0
## 5003      1267 1962    5.0
## 5004      1296 1986    5.0
## 5005      1300 1985    4.0
## 5006      1366 1996    5.0
## 5007      1610 1990    4.0
## 5008      1617 1997    5.0
## 5009      1674 1985    4.0
## 5010      1831 1998    1.0
## 5011      1883 1998    4.0
## 5012      1945 1954    5.0
## 5013      1956 1980    4.0
## 5014      1962 1989    3.0
## 5015      2019 1954    2.0
## 5016      2028 1998    3.0
## 5017      2109 1979    5.0
## 5018      2202 1944    5.0
## 5019      2291 1990    4.0
## 5020      2300 1968    4.0
## 5021      2324 1997    5.0
## 5022      2406 1984    2.0
## 5023      2470 1986    4.0
## 5024      2571 1999    5.0
## 5025      2583 1999    5.0
## 5026      2662 1953    4.0
## 5027       778 1996    5.0
## 5028      1569 1997    2.0
## 5029      1681 1997    0.5
## 5030      1717 1997    3.0
## 5031      2065 1985    0.5
## 5032      2367 1976    0.5
## 5033      2384 1998    1.5
## 5034      2459 1974    3.5
## 5035      2513 1989    3.0
## 5036      2571 1999    5.0
## 5037      2713 1999    3.0
## 5038      2717 1989    2.5
## 5039      2942 1983    0.5
## 5040      3720 1999    4.0
## 5041      5065 2002    2.0
## 5042      6365 2003    2.5
## 5043      6502 2002    5.0
## 5044      6934 2003    2.5
## 5045     27822 2003    4.0
## 5046     51662 2007    4.5
## 5047     58559 2008    5.0
## 5048     73268 2010    3.0
## 5049         1 1995    4.0
## 5050         2 1995    2.0
## 5051         6 1995    4.0
## 5052         8 1995    4.0
## 5053        11 1995    4.0
## 5054        14 1995    4.0
## 5055        16 1995    5.0
## 5056        18 1995    2.0
## 5057        21 1995    5.0
## 5058        23 1995    4.0
## 5059        25 1995    4.0
## 5060        32 1995    2.0
## 5061        34 1995    4.0
## 5062        42 1995    3.0
## 5063        45 1995    3.0
## 5064        47 1995    4.0
## 5065        50 1995    5.0
## 5066        52 1995    5.0
## 5067        60 1995    2.0
## 5068        70 1996    4.0
## 5069        78 1995    2.0
## 5070       100 1996    4.0
## 5071       110 1995    5.0
## 5072       111 1976    4.0
## 5073       118 1996    3.0
## 5074       141 1996    4.0
## 5075       150 1995    5.0
## 5076       158 1995    3.0
## 5077       161 1995    5.0
## 5078       162 1994    1.0
## 5079       165 1995    4.0
## 5080       170 1995    4.0
## 5081       196 1995    2.0
## 5082       203 1995    3.0
## 5083       208 1995    2.0
## 5084       209 1995    2.0
## 5085       224 1995    4.0
## 5086       227 1994    2.0
## 5087       228 1995    2.0
## 5088       235 1994    4.0
## 5089       253 1994    4.0
## 5090       254 1995    3.0
## 5091       260 1977    4.0
## 5092       261 1994    4.0
## 5093       272 1994    4.0
## 5094       281 1994    4.0
## 5095       282 1994    5.0
## 5096       288 1994    1.0
## 5097       296 1994    5.0
## 5098       300 1994    5.0
## 5099       317 1994    4.0
## 5100       318 1994    5.0
## 5101       337 1993    5.0
## 5102       344 1994    2.0
## 5103       348 1994    5.0
## 5104       349 1994    5.0
## 5105       350 1994    4.0
## 5106       356 1994    5.0
## 5107       357 1994    4.0
## 5108       364 1994    3.0
## 5109       368 1994    4.0
## 5110       369 1994    3.0
## 5111       371 1994    4.0
## 5112       377 1994    4.0
## 5113       380 1994    4.0
## 5114       382 1994    4.0
## 5115       410 1993    4.0
## 5116       412 1993    5.0
## 5117       413 1994    2.0
## 5118       419 1993    2.0
## 5119       424 1994    4.0
## 5120       425 1994    4.0
## 5121       426 1993    2.0
## 5122       428 1993    5.0
## 5123       432 1994    3.0
## 5124       434 1993    4.0
## 5125       440 1993    4.0
## 5126       445 1993    4.0
## 5127       451 1993    4.0
## 5128       454 1993    5.0
## 5129       457 1993    5.0
## 5130       459 1994    4.0
## 5131       463 1993    4.0
## 5132       471 1994    4.0
## 5133       472 1994    4.0
## 5134       474 1993    5.0
## 5135       477 1993    4.0
## 5136       480 1993    4.0
## 5137       485 1993    4.0
## 5138       492 1993    4.0
## 5139       500 1993    4.0
## 5140       507 1993    4.0
## 5141       508 1993    5.0
## 5142       509 1993    5.0
## 5143       515 1993    5.0
## 5144       517 1993    4.0
## 5145       518 1994    2.0
## 5146       523 1993    2.0
## 5147       527 1993    5.0
## 5148       531 1993    3.0
## 5149       532 1994    2.0
## 5150       534 1993    4.0
## 5151       535 1993    4.0
## 5152       538 1993    4.0
## 5153       539 1993    3.0
## 5154       540 1993    4.0
## 5155       541 1982    4.0
## 5156       553 1993    4.0
## 5157       555 1993    5.0
## 5158       556 1993    4.0
## 5159       581 1995    3.0
## 5160       586 1990    4.0
## 5161       587 1990    2.0
## 5162       588 1992    5.0
## 5163       589 1991    4.0
## 5164       590 1990    5.0
## 5165       592 1989    4.0
## 5166       593 1991    4.0
## 5167       594 1937    3.0
## 5168       595 1991    5.0
## 5169       596 1940    4.0
## 5170       597 1990    4.0
## 5171       608 1996    5.0
## 5172       628 1996    5.0
## 5173       640 1996    3.0
## 5174       647 1996    5.0
## 5175       661 1996    2.0
## 5176       707 1996    3.0
## 5177       733 1996    4.0
## 5178       736 1996    4.0
## 5179       750 1964    3.0
## 5180       762 1996    3.0
## 5181       765 1996    3.0
## 5182       767 1995    4.0
## 5183       780 1996    4.0
## 5184       782 1996    3.0
## 5185       800 1996    4.0
## 5186       805 1996    5.0
## 5187       806 1996    1.0
## 5188       832 1996    4.0
## 5189       858 1972    5.0
## 5190       869 1996    2.0
## 5191       898 1940    5.0
## 5192       899 1952    4.0
## 5193       903 1958    4.0
## 5194       904 1954    4.0
## 5195       908 1959    4.0
## 5196       912 1942    5.0
## 5197       913 1941    5.0
## 5198       914 1964    4.0
## 5199       919 1939    4.0
## 5200       920 1939    5.0
## 5201       921 1982    5.0
## 5202       922 1950    5.0
## 5203       923 1941    5.0
## 5204       924 1968    4.0
## 5205       928 1940    5.0
## 5206       947 1936    4.0
## 5207       950 1934    4.0
## 5208       953 1946    4.0
## 5209       954 1939    4.0
## 5210       969 1951    4.0
## 5211       971 1958    4.0
## 5212       996 1996    3.0
## 5213      1006 1996    4.0
## 5214      1010 1969    3.0
## 5215      1012 1957    3.0
## 5216      1013 1961    4.0
## 5217      1017 1960    2.0
## 5218      1018 1965    3.0
## 5219      1025 1963    4.0
## 5220      1027 1991    3.0
## 5221      1028 1964    4.0
## 5222      1035 1965    4.0
## 5223      1036 1988    4.0
## 5224      1042 1996    4.0
## 5225      1061 1996    3.0
## 5226      1073 1971    3.0
## 5227      1078 1971    2.0
## 5228      1079 1988    5.0
## 5229      1081 1982    4.0
## 5230      1082 1972    4.0
## 5231      1084 1967    4.0
## 5232      1086 1954    4.0
## 5233      1088 1987    4.0
## 5234      1089 1992    5.0
## 5235      1090 1986    4.0
## 5236      1091 1989    1.0
## 5237      1092 1992    4.0
## 5238      1093 1991    1.0
## 5239      1094 1992    5.0
## 5240      1095 1992    5.0
## 5241      1096 1982    5.0
## 5242      1097 1982    4.0
## 5243      1101 1986    4.0
## 5244      1104 1951    4.0
## 5245      1114 1996    3.0
## 5246      1120 1996    4.0
## 5247      1124 1981    4.0
## 5248      1126 1991    2.0
## 5249      1129 1981    3.0
## 5250      1135 1980    3.0
## 5251      1171 1992    3.0
## 5252      1179 1990    5.0
## 5253      1181 1997    4.0
## 5254      1186 1989    4.0
## 5255      1189 1988    3.0
## 5256      1193 1975    4.0
## 5257      1196 1980    4.0
## 5258      1197 1987    3.0
## 5259      1198 1981    5.0
## 5260      1200 1986    3.0
## 5261      1206 1971    2.0
## 5262      1207 1962    5.0
## 5263      1208 1979    5.0
## 5264      1210 1983    4.0
## 5265      1212 1949    3.0
## 5266      1213 1990    5.0
## 5267      1214 1979    4.0
## 5268      1219 1960    4.0
## 5269      1220 1980    5.0
## 5270      1221 1974    5.0
## 5271      1222 1987    4.0
## 5272      1225 1984    5.0
## 5273      1226 1952    4.0
## 5274      1227 1984    5.0
## 5275      1228 1980    5.0
## 5276      1231 1983    5.0
## 5277      1234 1973    5.0
## 5278      1235 1971    2.0
## 5279      1240 1984    4.0
## 5280      1242 1989    5.0
## 5281      1244 1979    4.0
## 5282      1245 1990    4.0
## 5283      1246 1989    4.0
## 5284      1247 1967    4.0
## 5285      1250 1957    5.0
## 5286      1252 1974    5.0
## 5287      1258 1980    4.0
## 5288      1259 1986    4.0
## 5289      1263 1978    5.0
## 5290      1265 1993    4.0
## 5291      1266 1992    5.0
## 5292      1267 1962    5.0
## 5293      1270 1985    5.0
## 5294      1271 1991    4.0
## 5295      1272 1970    5.0
## 5296      1276 1967    5.0
## 5297      1277 1990    5.0
## 5298      1278 1974    3.0
## 5299      1283 1952    4.0
## 5300      1285 1989    4.0
## 5301      1286 1980    3.0
## 5302      1291 1989    4.0
## 5303      1292 1979    5.0
## 5304      1302 1989    4.0
## 5305      1303 1975    4.0
## 5306      1304 1969    4.0
## 5307      1307 1989    4.0
## 5308      1320 1992    3.0
## 5309      1321 1981    4.0
## 5310      1327 1979    4.0
## 5311      1332 1987    4.0
## 5312      1333 1963    5.0
## 5313      1334 1958    4.0
## 5314      1339 1992    4.0
## 5315      1343 1991    5.0
## 5316      1345 1976    3.0
## 5317      1346 1982    4.0
## 5318      1350 1976    4.0
## 5319      1352 1996    4.0
## 5320      1358 1996    5.0
## 5321      1366 1996    5.0
## 5322      1370 1990    4.0
## 5323      1377 1992    3.0
## 5324      1378 1988    4.0
## 5325      1380 1978    4.0
## 5326      1385 1992    3.0
## 5327      1387 1975    4.0
## 5328      1388 1978    3.0
## 5329      1390 1996    3.0
## 5330      1393 1996    4.0
## 5331      1394 1987    5.0
## 5332      1395 1987    5.0
## 5333      1396 1992    4.0
## 5334      1399 1996    3.0
## 5335      1422 1997    4.0
## 5336      1438 1997    3.0
## 5337      1440 1993    3.0
## 5338      1459 1997    4.0
## 5339      1461 1997    4.0
## 5340      1466 1997    5.0
## 5341      1485 1997    4.0
## 5342      1488 1997    4.0
## 5343      1508 1997    4.0
## 5344      1517 1997    3.0
## 5345      1523 1997    4.0
## 5346      1552 1997    4.0
## 5347      1562 1997    3.0
## 5348      1566 1997    4.0
## 5349      1580 1997    4.0
## 5350      1584 1997    5.0
## 5351      1588 1997    2.0
## 5352      1589 1997    3.0
## 5353      1598 1998    4.0
## 5354      1608 1997    5.0
## 5355      1610 1990    5.0
## 5356      1611 1991    2.0
## 5357      1614 1997    3.0
## 5358      1617 1997    5.0
## 5359      1620 1997    4.0
## 5360      1624 1997    4.0
## 5361      1625 1997    3.0
## 5362      1645 1997    5.0
## 5363      1672 1997    4.0
## 5364      1673 1997    4.0
## 5365      1674 1985    5.0
## 5366      1682 1998    5.0
## 5367      1686 1997    4.0
## 5368      1690 1997    3.0
## 5369      1694 1997    5.0
## 5370      1701 1997    4.0
## 5371      1704 1997    5.0
## 5372      1711 1997    5.0
## 5373      1721 1997    4.0
## 5374      1726 1997    2.0
## 5375      1729 1997    5.0
## 5376      1732 1998    3.0
## 5377      1747 1997    4.0
## 5378      1783 1998    4.0
## 5379      1784 1997    5.0
## 5380      1785 1990    4.0
## 5381      1791 1998    4.0
## 5382      1798 1998    3.0
## 5383      1805 1998    4.0
## 5384      1810 1998    3.0
## 5385      1834 1997    4.0
## 5386      1864 1998    3.0
## 5387      1873 1998    5.0
## 5388      1876 1998    4.0
## 5389      1882 1998    2.0
## 5390      1884 1998    1.0
## 5391      1892 1998    5.0
## 5392      1912 1998    4.0
## 5393      1917 1998    4.0
## 5394      1923 1998    4.0
## 5395      1943 1952    3.0
## 5396      1945 1954    4.0
## 5397      1947 1961    4.0
## 5398      1951 1968    4.0
## 5399      1952 1969    4.0
## 5400      1953 1971    4.0
## 5401      1954 1976    5.0
## 5402      1955 1979    4.0
## 5403      1956 1980    4.0
## 5404      1957 1981    4.0
## 5405      1958 1983    3.0
## 5406      1960 1987    5.0
## 5407      1961 1988    5.0
## 5408      1962 1989    5.0
## 5409      1965 1984    4.0
## 5410      1968 1985    4.0
## 5411      1982 1978    3.0
## 5412      1994 1982    4.0
## 5413      1997 1973    5.0
## 5414      2000 1987    4.0
## 5415      2001 1989    4.0
## 5416      2002 1992    3.0
## 5417      2003 1984    3.0
## 5418      2009 1973    3.0
## 5419      2011 1989    4.0
## 5420      2012 1990    3.0
## 5421      2013 1972    3.0
## 5422      2015 1961    3.0
## 5423      2023 1990    5.0
## 5424      2024 1991    1.0
## 5425      2025 1997    4.0
## 5426      2028 1998    5.0
## 5427      2054 1989    1.0
## 5428      2064 1989    4.0
## 5429      2065 1985    5.0
## 5430      2070 1983    4.0
## 5431      2076 1986    4.0
## 5432      2078 1967    3.0
## 5433      2081 1989    4.0
## 5434      2082 1992    2.0
## 5435      2083 1992    4.0
## 5436      2088 1980    3.0
## 5437      2094 1991    4.0
## 5438      2105 1982    2.0
## 5439      2108 1991    4.0
## 5440      2109 1979    3.0
## 5441      2112 1991    3.0
## 5442      2114 1983    4.0
## 5443      2115 1984    4.0
## 5444      2116 1978    3.0
## 5445      2117 1984    3.0
## 5446      2118 1983    4.0
## 5447      2120 1993    4.0
## 5448      2121 1983    2.0
## 5449      2122 1984    2.0
## 5450      2124 1991    4.0
## 5451      2126 1998    4.0
## 5452      2136 1963    3.0
## 5453      2144 1984    3.0
## 5454      2145 1986    3.0
## 5455      2146 1985    4.0
## 5456      2148 1986    1.0
## 5457      2159 1986    2.0
## 5458      2160 1968    5.0
## 5459      2166 1998    4.0
## 5460      2174 1988    4.0
## 5461      2183 1956    4.0
## 5462      2184 1955    4.0
## 5463      2188 1998    3.0
## 5464      2193 1988    3.0
## 5465      2194 1987    5.0
## 5466      2231 1998    5.0
## 5467      2236 1998    3.0
## 5468      2240 1980    4.0
## 5469      2243 1987    5.0
## 5470      2245 1988    4.0
## 5471      2247 1988    4.0
## 5472      2249 1990    4.0
## 5473      2252 1992    4.0
## 5474      2253 1992    3.0
## 5475      2255 1982    2.0
## 5476      2259 1984    3.0
## 5477      2263 1988    2.0
## 5478      2264 1989    2.0
## 5479      2267 1991    4.0
## 5480      2268 1992    5.0
## 5481      2269 1993    5.0
## 5482      2278 1998    3.0
## 5483      2286 1980    1.0
## 5484      2289 1992    5.0
## 5485      2291 1990    5.0
## 5486      2296 1998    2.0
## 5487      2300 1968    5.0
## 5488      2301 1981    4.0
## 5489      2302 1992    4.0
## 5490      2307 1998    4.0
## 5491      2311 1984    3.0
## 5492      2313 1980    4.0
## 5493      2320 1998    4.0
## 5494      2321 1998    5.0
## 5495      2329 1998    3.0
## 5496      2334 1998    3.0
## 5497      2336 1998    5.0
## 5498      2346 1975    3.0
## 5499      2347 1984    3.0
## 5500      2352 1983    4.0
## 5501      2353 1998    5.0
## 5502      2355 1998    5.0
## 5503      2367 1976    2.0
## 5504      2369 1985    4.0
## 5505      2371 1985    3.0
## 5506      2374 1986    3.0
## 5507      2376 1985    4.0
## 5508      2389 1998    3.0
## 5509      2391 1998    5.0
## 5510      2396 1998    5.0
## 5511      2398 1947    4.0
## 5512      2402 1985    3.0
## 5513      2403 1982    3.0
## 5514      2407 1985    4.0
## 5515      2409 1979    4.0
## 5516      2410 1982    4.0
## 5517      2411 1985    4.0
## 5518      2412 1990    4.0
## 5519      2417 1986    3.0
## 5520      2418 1986    3.0
## 5521      2420 1984    2.0
## 5522      2424 1998    4.0
## 5523      2427 1998    1.0
## 5524      2432 1998    4.0
## 5525      2433 1998    4.0
## 5526      2435 1998    2.0
## 5527      2454 1958    4.0
## 5528      2457 1986    4.0
## 5529      2463 1986    4.0
## 5530      2468 1986    2.0
## 5531      2470 1986    4.0
## 5532      2474 1986    5.0
## 5533      2490 1999    5.0
## 5534      2505 1999    3.0
## 5535      2513 1989    1.0
## 5536      2517 1983    2.0
## 5537      2518 1982    3.0
## 5538      2520 1970    4.0
## 5539      2521 1974    3.0
## 5540      2523 1977    3.0
## 5541      2524 1974    4.0
## 5542      2528 1976    3.0
## 5543      2529 1968    4.0
## 5544      2530 1970    2.0
## 5545      2531 1973    2.0
## 5546      2532 1972    3.0
## 5547      2533 1971    2.0
## 5548      2535 1974    4.0
## 5549      2539 1999    4.0
## 5550      2551 1988    2.0
## 5551      2561 1999    4.0
## 5552      2571 1999    3.0
## 5553      2574 1999    3.0
## 5554      2577 1997    3.0
## 5555      2598 1999    4.0
## 5556      2599 1999    5.0
## 5557      2605 1999    4.0
## 5558      2611 1999    5.0
## 5559      2616 1990    3.0
## 5560      2617 1999    3.0
## 5561      2639 1981    4.0
## 5562      2640 1978    4.0
## 5563      2641 1980    4.0
## 5564      2642 1983    1.0
## 5565      2664 1956    3.0
## 5566      2671 1999    4.0
## 5567      2687 1999    5.0
## 5568      2688 1999    4.0
## 5569      2701 1999    2.0
## 5570      2702 1999    2.0
## 5571      2707 1999    3.0
## 5572      2712 1999    4.0
## 5573      2716 1984    4.0
## 5574      2729 1962    5.0
## 5575      2730 1975    4.0
## 5576      2738 1986    3.0
## 5577      2739 1985    5.0
## 5578      2741 1986    4.0
## 5579      2746 1986    4.0
## 5580      2749 1986    4.0
## 5581      2750 1987    4.0
## 5582      2757 1982    2.0
## 5583      2762 1999    5.0
## 5584      2763 1999    5.0
## 5585      2770 1999    3.0
## 5586      2782 1961    4.0
## 5587      2787 1985    4.0
## 5588      2790 1981    3.0
## 5589      2791 1980    2.0
## 5590      2793 1997    3.0
## 5591      2794 1985    3.0
## 5592      2795 1983    4.0
## 5593      2797 1988    5.0
## 5594      2802 1988    4.0
## 5595      2803 1993    4.0
## 5596      2804 1983    4.0
## 5597      2805 1999    4.0
## 5598      2819 1975    4.0
## 5599      2829 1999    4.0
## 5600      2841 1999    4.0
## 5601      2851 1980    2.0
## 5602      2852 1984    5.0
## 5603      2856 1965    4.0
## 5604      2858 1999    5.0
## 5605      2861 1999    4.0
## 5606      2871 1972    4.0
## 5607      2875 1993    4.0
## 5608      2881 1999    4.0
## 5609      2883 1999    4.0
## 5610      2890 1999    4.0
## 5611      2908 1999    4.0
## 5612      2912 1999    4.0
## 5613      2916 1990    4.0
## 5614      2917 1981    5.0
## 5615      2918 1986    5.0
## 5616      2929 1981    5.0
## 5617      2942 1983    3.0
## 5618      2944 1967    5.0
## 5619      2947 1964    4.0
## 5620      2950 1980    3.0
## 5621      2952 1996    5.0
## 5622      2956 1987    4.0
## 5623      2959 1999    4.0
## 5624      2966 1999    4.0
## 5625      2967 1956    4.0
## 5626      2971 1979    4.0
## 5627      2973 1989    5.0
## 5628      2976 1999    3.0
## 5629      2977 1999    2.0
## 5630      2985 1987    4.0
## 5631      2987 1988    5.0
## 5632      2989 1981    4.0
## 5633      2991 1973    4.0
## 5634      3006 1999    5.0
## 5635      3015 1978    3.0
## 5636      3019 1989    3.0
## 5637      3020 1993    4.0
## 5638      3032 1971    4.0
## 5639      3035 1955    4.0
## 5640      3038 1957    5.0
## 5641      3039 1983    4.0
## 5642      3044 1991    3.0
## 5643      3053 1999    4.0
## 5644      3063 1992    2.0
## 5645      3068 1982    5.0
## 5646      3071 1988    4.0
## 5647      3072 1987    4.0
## 5648      3074 1972    4.0
## 5649      3081 1999    3.0
## 5650      3082 1999    3.0
## 5651      3087 1988    2.0
## 5652      3095 1940    3.0
## 5653      3098 1984    4.0
## 5654      3101 1987    5.0
## 5655      3102 1985    5.0
## 5656      3104 1988    4.0
## 5657      3105 1990    4.0
## 5658      3107 1991    4.0
## 5659      3108 1991    2.0
## 5660      3111 1984    5.0
## 5661      3114 1999    5.0
## 5662      3120 1992    4.0
## 5663      3130 1990    3.0
## 5664      3138 1988    3.0
## 5665      3141 1990    4.0
## 5666      3144 1966    3.0
## 5667      3147 1999    4.0
## 5668      3152 1971    4.0
## 5669      3156 1999    4.0
## 5670      3160 1999    5.0
## 5671      3167 1971    4.0
## 5672      3169 1985    3.0
## 5673      3173 1999    3.0
## 5674      3174 1999    4.0
## 5675      3176 1999    4.0
## 5676      3185 1999    3.0
## 5677      3197 1988    4.0
## 5678      3198 1973    5.0
## 5679      3204 1978    4.0
## 5680      3206 1984    4.0
## 5681      3210 1982    4.0
## 5682      3218 1991    1.0
## 5683      3219 1990    4.0
## 5684      3244 1977    4.0
## 5685      3246 1992    5.0
## 5686      3247 1992    3.0
## 5687      3249 1992    4.0
## 5688      3252 1992    4.0
## 5689      3253 1992    4.0
## 5690      3255 1992    4.0
## 5691      3256 1992    4.0
## 5692      3257 1992    3.0
## 5693      3258 1992    3.0
## 5694      3263 1992    4.0
## 5695      3269 1992    3.0
## 5696      3274 1992    4.0
## 5697      3286 2000    2.0
## 5698      3296 1967    4.0
## 5699      3298 2000    5.0
## 5700      3308 1984    4.0
## 5701      3316 2000    2.0
## 5702      3334 1948    4.0
## 5703      3354 2000    4.0
## 5704      3358 1991    5.0
## 5705      3359 1979    4.0
## 5706      3360 1986    5.0
## 5707      3361 1988    4.0
## 5708      3362 1975    5.0
## 5709      3363 1973    4.0
## 5710      3370 1988    4.0
## 5711      3385 1985    2.0
## 5712      3386 1991    4.0
## 5713      3391 1987    3.0
## 5714      3394 1987    3.0
## 5715      3395 1987    4.0
## 5716      3418 1991    4.0
## 5717      3420 1979    4.0
## 5718      3421 1978    4.0
## 5719      3426 1991    4.0
## 5720      3428 1979    4.0
## 5721      3441 1984    2.0
## 5722      3445 1978    3.0
## 5723      3448 1987    4.0
## 5724      3451 1967    4.0
## 5725      3468 1961    5.0
## 5726      3476 1990    2.0
## 5727      3478 1987    4.0
## 5728      3483 2000    3.0
## 5729      3489 1991    4.0
## 5730      3494 1969    3.0
## 5731      3498 1978    4.0
## 5732      3499 1990    4.0
## 5733      3500 1992    4.0
## 5734      3504 1976    4.0
## 5735      3505 1987    4.0
## 5736      3506 1979    3.0
## 5737      3507 1968    4.0
## 5738      3513 2000    5.0
## 5739      3524 1981    3.0
## 5740      3526 1989    4.0
## 5741      3528 1991    2.0
## 5742      3529 1981    4.0
## 5743      3535 2000    3.0
## 5744      3536 2000    4.0
## 5745      3537 2000    4.0
## 5746      3543 1982    5.0
## 5747      3545 1972    4.0
## 5748      3546 1962    4.0
## 5749      3548 1958    4.0
## 5750      3549 1955    4.0
## 5751      3551 1976    4.0
## 5752      3556 1999    4.0
## 5753      3557 1992    4.0
## 5754      3566 2000    2.0
## 5755      3578 2000    4.0
## 5756      3608 1985    4.0
## 5757      3613 1988    4.0
## 5758      3614 1992    4.0
## 5759      3618 2000    4.0
## 5760      3638 1979    4.0
## 5761      3649 1980    4.0
## 5762      3671 1974    4.0
## 5763      3683 1984    5.0
## 5764      3684 1989    4.0
## 5765      3685 1985    4.0
## 5766      3686 1990    4.0
## 5767      3688 1982    2.0
## 5768      3701 1988    3.0
## 5769      3702 1979    4.0
## 5770      3704 1985    3.0
## 5771      3712 1991    4.0
## 5772      3713 1990    5.0
## 5773      3724 1978    4.0
## 5774      3734 1981    4.0
## 5775      3735 1973    5.0
## 5776      3751 2000    4.0
## 5777      3753 2000    5.0
## 5778      3763 1986    3.0
## 5779      3783 1998    4.0
## 5780      3791 1984    4.0
## 5781      3804 1979    2.0
## 5782      3812 1972    3.0
## 5783      3826 2000    4.0
## 5784      3834 1980    4.0
## 5785      3844 1989    4.0
## 5786      3852 2000    4.0
## 5787      3859 2000    4.0
## 5788      3873 1965    4.0
## 5789      3897 2000    4.0
## 5790      3927 1966    4.0
## 5791      3948 2000    4.0
## 5792      3952 2000    5.0
## 5793      3957 1971    2.0
## 5794      3983 2000    4.0
## 5795      3994 2000    4.0
## 5796      3996 2000    4.0
## 5797      4002 1987    4.0
## 5798      4007 1987    5.0
## 5799      4008 1989    5.0
## 5800      4009 1988    4.0
## 5801      4011 2000    4.0
## 5802      4012 1988    2.0
## 5803      4014 2000    5.0
## 5804      4018 2000    4.0
## 5805      4022 2000    4.0
## 5806      4025 2000    3.0
## 5807      4027 2000    5.0
## 5808      4029 2000    4.0
## 5809      4033 2000    5.0
## 5810      4034 2000    5.0
## 5811      4037 1987    5.0
## 5812      4039 1982    3.0
## 5813      4041 1982    4.0
## 5814      4055 2000    4.0
## 5815      4060 1992    4.0
## 5816      4062 1988    4.0
## 5817      4063 1992    3.0
## 5818      4085 1984    4.0
## 5819      4086 1987    4.0
## 5820      4088 1987    5.0
## 5821      4090 1987    3.0
## 5822      4102 1987    4.0
## 5823      4111 1987    4.0
## 5824      4122 1987    4.0
## 5825      4126 1987    4.0
## 5826      4128 1987    4.0
## 5827      4132 1987    2.0
## 5828      4146 2001    1.0
## 5829      4148 2001    5.0
## 5830      4167 2001    3.0
## 5831      4190 1960    4.0
## 5832      4211 1990    5.0
## 5833      4214 1984    3.0
## 5834      4226 2000    3.0
## 5835      4228 2001    3.0
## 5836      4239 2001    5.0
## 5837      4246 2001    4.0
## 5838      4262 1983    4.0
## 5839      4263 1962    5.0
## 5840      4276 1985    4.0
## 5841      4280 1982    4.0
## 5842      4291 1980    3.0
## 5843      4292 1979    4.0
## 5844      4306 2001    5.0
## 5845      4308 2001    5.0
## 5846      4310 2001    4.0
## 5847      4316 1978    3.0
## 5848      4318 1990    4.0
## 5849      4321 1991    4.0
## 5850      4322 1988    4.0
## 5851      4326 1988    5.0
## 5852      4333 1987    3.0
## 5853      4344 2001    4.0
## 5854      4345 2001    4.0
## 5855      4352 1989    3.0
## 5856      4354 1992    4.0
## 5857      4361 1982    4.0
## 5858      4370 2001    4.0
## 5859      4378 2000    3.0
## 5860      4396 1981    2.0
## 5861      4406 1962    5.0
## 5862      4409 1991    2.0
## 5863      4410 1986    4.0
## 5864      4447 2001    4.0
## 5865      4464 1988    4.0
## 5866      4465 1988    5.0
## 5867      4474 1988    3.0
## 5868      4482 1988    4.0
## 5869      4486 1988    4.0
## 5870      4487 1988    3.0
## 5871      4488 1988    3.0
## 5872      4489 1988    4.0
## 5873      4491 1988    2.0
## 5874      4495 1988    3.0
## 5875      4496 1988    4.0
## 5876      4498 1988    4.0
## 5877      4499 1988    4.0
## 5878      4503 1988    4.0
## 5879      4522 1988    5.0
## 5880      4524 1988    4.0
## 5881      4526 1988    3.0
## 5882      4528 1988    2.0
## 5883      4557 1988    5.0
## 5884      4564 1989    4.0
## 5885      4570 1989    4.0
## 5886      4573 1989    4.0
## 5887      4608 1989    4.0
## 5888      4615 1989    1.0
## 5889      4617 1989    5.0
## 5890      4621 1989    3.0
## 5891      4627 1989    2.0
## 5892      4628 1989    5.0
## 5893      4629 1989    2.0
## 5894      4639 2001    4.0
## 5895      4643 2001    4.0
## 5896      4661 1989    4.0
## 5897      4681 1989    3.0
## 5898      4700 2001    4.0
## 5899      4709 1969    4.0
## 5900      4710 1976    4.0
## 5901      4713 1980    3.0
## 5902      4714 1980    2.0
## 5903      4728 2001    3.0
## 5904      4733 2001    4.0
## 5905      4751 1980    4.0
## 5906      4776 2001    4.0
## 5907      4787 1991    5.0
## 5908      4803 1971    4.0
## 5909      4815 2001    4.0
## 5910      4830 1980    4.0
## 5911      4832 1980    3.0
## 5912      4835 1980    5.0
## 5913      4881 2001    4.0
## 5914      4886 2001    4.0
## 5915      4889 2001    4.0
## 5916      4890 2001    3.0
## 5917      4896 2001    4.0
## 5918      4898 2001    4.0
## 5919      4929 1982    3.0
## 5920      4932 1980    4.0
## 5921      4941 1980    2.0
## 5922      4951 1990    3.0
## 5923      4954 1960    4.0
## 5924      4960 2000    4.0
## 5925      4963 2001    5.0
## 5926      4971 1984    4.0
## 5927      4978 2001    5.0
## 5928      4979 2001    4.0
## 5929      4993 2001    3.0
## 5930      4995 2001    5.0
## 5931      5015 2001    4.0
## 5932      5027 1990    3.0
## 5933      5043 1980    3.0
## 5934      5049 1982    4.0
## 5935      5060 1970    3.0
## 5936      5061 1984    3.0
## 5937      5064 2002    5.0
## 5938      5111 1993    4.0
## 5939      5120 1972    4.0
## 5940      5122 1971    4.0
## 5941      5125 1980    2.0
## 5942      5127 2002    3.0
## 5943      5152 2002    5.0
## 5944      5161 1994    4.0
## 5945      5172 2002    4.0
## 5946      5187 1980    4.0
## 5947      5193 1980    3.0
## 5948      5198 1980    4.0
## 5949      5208 1980    4.0
## 5950      5214 1977    3.0
## 5951      5237 1981    4.0
## 5952      5247 1977    3.0
## 5953      5250 1980    4.0
## 5954      5269 2001    1.0
## 5955      5276 1984    4.0
## 5956      5277 1984    2.0
## 5957      5293 2002    5.0
## 5958      5297 2002    4.0
## 5959      5299 2002    5.0
## 5960      5303 1990    3.0
## 5961      5307 1990    3.0
## 5962      5308 1987    4.0
## 5963      5309 1990    3.0
## 5964      5334 1990    4.0
## 5965      5335 1985    2.0
## 5966      5344 1984    4.0
## 5967      5359 1991    4.0
## 5968      5364 2002    4.0
## 5969      5366 1991    1.0
## 5970      5382 1978    2.0
## 5971      5388 2002    4.0
## 5972      5391 2001    4.0
## 5973      5400 2002    4.0
## 5974      5445 2002    4.0
## 5975      5452 1993    2.0
## 5976      5464 2002    5.0
## 5977      5471 1985    3.0
## 5978      5502 2002    3.0
## 5979      5506 2002    4.0
## 5980      5534 2001    4.0
## 5981      5544 1979    4.0
## 5982      5548 1986    4.0
## 5983      5561 1991    4.0
## 5984      5564 2002    3.0
## 5985      5581 1990    3.0
## 5986      5620 2002    4.0
## 5987      5630 2002    5.0
## 5988      5655 1981    3.0
## 5989      5670 2002    4.0
## 5990      5679 2002    1.0
## 5991      5680 2002    4.0
## 5992      5689 1991    4.0
## 5993      5694 1983    2.0
## 5994      5696 1980    4.0
## 5995      5699 1980    4.0
## 5996      5703 1980    3.0
## 5997      5705 1980    4.0
## 5998      5707 1981    4.0
## 5999      5712 1981    4.0
## 6000      5723 1981    4.0
## 6001      5729 1981    3.0
## 6002      5732 1981    4.0
## 6003      5742 1981    4.0
## 6004      5745 1981    4.0
## 6005      5773 1981    3.0
## 6006      5812 2002    5.0
## 6007      5843 1991    4.0
## 6008      5846 1981    4.0
## 6009      5847 1981    5.0
## 6010      5854 1981    4.0
## 6011      5857 1981    1.0
## 6012      5859 1981    2.0
## 6013      5869 1981    4.0
## 6014      5900 2002    3.5
## 6015      5902 2002    4.0
## 6016      5923 1982    3.0
## 6017      5926 1982    3.0
## 6018      5927 1982    4.0
## 6019      5933 1982    4.0
## 6020      5938 1982    4.0
## 6021      5940 1982    3.0
## 6022      5945 2002    4.0
## 6023      5956 2002    5.0
## 6024      5959 2002    3.0
## 6025      5960 1990    5.0
## 6026      5961 1990    4.0
## 6027      5962 1993    3.0
## 6028      5968 1990    4.0
## 6029      5989 2002    5.0
## 6030      5991 2002    5.0
## 6031      6001 1983    5.0
## 6032      6027 1991    4.0
## 6033      6084 1982    3.0
## 6034      6096 1982    3.0
## 6035      6101 1982    2.0
## 6036      6103 1982    2.0
## 6037      6115 1982    3.0
## 6038      6127 1982    4.0
## 6039      6180 1990    3.0
## 6040      6186 2003    2.0
## 6041      6212 2003    3.0
## 6042      6233 1993    3.0
## 6043      6234 1977    3.0
## 6044      6237 1953    4.0
## 6045      6238 1990    4.0
## 6046      6240 1991    3.0
## 6047      6263 2003    3.0
## 6048      6281 2002    4.0
## 6049      6308 1986    4.0
## 6050      6318 1991    3.0
## 6051      6345 1985    4.0
## 6052      6413 1979    3.5
## 6053      6419 1990    5.0
## 6054      6422 1965    4.0
## 6055      6436 1993    5.0
## 6056      6440 1991    4.0
## 6057      6452 1958    5.0
## 6058      6473 1986    4.0
## 6059      6565 2003    4.5
## 6060        31 1995    4.0
## 6061        32 1995    4.5
## 6062        50 1995    3.5
## 6063       111 1976    4.5
## 6064       260 1977    4.0
## 6065       296 1994    4.5
## 6066       318 1994    4.0
## 6067       372 1994    3.5
## 6068       379 1994    4.0
## 6069       527 1993    5.0
## 6070       541 1982    4.0
## 6071       778 1996    3.5
## 6072       858 1972    4.5
## 6073       904 1954    4.0
## 6074      1089 1992    4.5
## 6075      1091 1989    3.0
## 6076      1186 1989    2.0
## 6077      1197 1987    4.5
## 6078      1206 1971    4.5
## 6079      1208 1979    4.5
## 6080      1221 1974    4.5
## 6081      1234 1973    4.5
## 6082      1299 1984    4.0
## 6083      1378 1988    4.0
## 6084      1416 1996    3.0
## 6085      1957 1981    4.5
## 6086      1967 1986    4.5
## 6087      2028 1998    4.5
## 6088      2248 1989    4.0
## 6089      2329 1998    4.5
## 6090      2502 1999    4.0
## 6091      2571 1999    4.5
## 6092      2692 1998    4.5
## 6093      2959 1999    5.0
## 6094      2997 1999    4.5
## 6095      3072 1987    3.0
## 6096      3087 1988    3.5
## 6097      3698 1987    4.5
## 6098      3755 2000    4.0
## 6099      3897 2000    4.0
## 6100      3911 2000    4.0
## 6101      4886 2001    4.0
## 6102      4979 2001    3.5
## 6103      4993 2001    4.5
## 6104      5418 2002    4.5
## 6105      5952 2002    4.5
## 6106      5995 2002    3.5
## 6107      6539 2003    3.5
## 6108      6711 2003    4.5
## 6109      7153 2003    4.5
## 6110      7361 2004    5.0
## 6111      8961 2004    4.0
## 6112     33154 2005    4.0
## 6113     33794 2005    4.5
## 6114     44191 2006    4.0
## 6115     44195 2006    4.0
## 6116     48394 2006    4.5
## 6117     50872 2007    4.5
## 6118     54503 2007    4.0
## 6119     55280 2007    4.5
## 6120     55820 2007    4.0
## 6121     58559 2008    5.0
## 6122     59315 2008    5.0
## 6123     64614 2008    4.5
## 6124     72226 2009    4.0
## 6125     72998 2009    4.0
## 6126     74789 2010    4.5
## 6127     76093 2010    3.5
## 6128     76251 2010    5.0
## 6129         2 1995    4.0
## 6130        19 1995    3.0
## 6131        31 1995    4.0
## 6132        44 1995    3.0
## 6133       110 1995    5.0
## 6134       150 1995    5.0
## 6135       153 1995    4.0
## 6136       158 1995    3.0
## 6137       165 1995    4.0
## 6138       168 1995    3.0
## 6139       173 1995    3.0
## 6140       204 1995    4.0
## 6141       208 1995    4.0
## 6142       225 1994    2.0
## 6143       231 1994    5.0
## 6144       252 1994    3.0
## 6145       261 1994    4.0
## 6146       266 1994    3.0
## 6147       292 1995    5.0
## 6148       296 1994    2.0
## 6149       300 1994    3.0
## 6150       316 1994    3.0
## 6151       317 1994    3.0
## 6152       333 1995    3.0
## 6153       337 1993    4.0
## 6154       344 1994    4.0
## 6155       349 1994    5.0
## 6156       350 1994    3.0
## 6157       356 1994    5.0
## 6158       364 1994    3.0
## 6159       367 1994    4.0
## 6160       377 1994    4.0
## 6161       380 1994    3.0
## 6162       410 1993    3.0
## 6163       420 1994    2.0
## 6164       428 1993    3.0
## 6165       432 1994    3.0
## 6166       434 1993    3.0
## 6167       440 1993    4.0
## 6168       442 1993    4.0
## 6169       457 1993    5.0
## 6170       480 1993    5.0
## 6171       553 1993    5.0
## 6172       588 1992    3.0
## 6173       589 1991    5.0
## 6174       590 1990    5.0
## 6175       592 1989    4.0
## 6176       595 1991    2.0
## 6177        19 1995    3.0
## 6178        88 1996    3.0
## 6179       157 1995    1.0
## 6180       231 1994    3.0
## 6181       344 1994    4.0
## 6182       377 1994    2.0
## 6183       532 1994    4.0
## 6184       562 1995    4.0
## 6185       832 1996    4.0
## 6186       851 1996    1.0
## 6187       908 1959    4.0
## 6188      1060 1996    4.0
## 6189      1091 1989    4.0
## 6190      1120 1996    4.0
## 6191      1186 1989    5.0
## 6192      1196 1980    2.0
## 6193      1197 1987    4.0
## 6194      1198 1981    4.0
## 6195      1230 1977    4.0
## 6196      1258 1980    5.0
## 6197      1259 1986    4.0
## 6198      1285 1989    4.0
## 6199      1291 1989    4.0
## 6200      1347 1984    2.0
## 6201      1359 1996    3.0
## 6202      1394 1987    2.0
## 6203      1407 1996    4.0
## 6204      1717 1997    3.0
## 6205      1760 1997    1.0
## 6206      1784 1997    4.0
## 6207      1967 1986    2.0
## 6208      1974 1980    3.0
## 6209      1982 1978    4.0
## 6210      1983 1981    4.0
## 6211      1984 1982    1.0
## 6212      1994 1982    5.0
## 6213      2005 1985    4.0
## 6214      2006 1998    4.0
## 6215      2060 1998    3.0
## 6216      2064 1989    5.0
## 6217      2088 1980    2.0
## 6218      2107 1998    2.0
## 6219      2145 1986    4.0
## 6220      2170 1998    2.0
## 6221      2193 1988    2.0
## 6222      2329 1998    4.0
## 6223      2371 1985    4.0
## 6224      2395 1998    3.0
## 6225      2470 1986    4.0
## 6226      2502 1999    5.0
## 6227      2507 1999    1.0
## 6228      2541 1999    4.0
## 6229      2599 1999    4.0
## 6230      2617 1999    2.0
## 6231      2689 1999    1.0
## 6232      2706 1999    3.0
## 6233      2787 1985    4.0
## 6234      2793 1997    2.0
## 6235      2795 1983    4.0
## 6236      2888 1999    2.0
## 6237      2891 1999    1.0
## 6238      2917 1981    4.0
## 6239      2918 1986    4.0
## 6240      2926 1988    3.0
## 6241      2959 1999    4.0
## 6242      2997 1999    4.0
## 6243      3007 1999    5.0
## 6244      3157 1999    2.0
## 6245      3273 2000    2.0
## 6246      3298 2000    4.0
## 6247      3317 2000    2.0
## 6248      3408 2000    3.0
## 6249      3481 2000    3.0
## 6250      3552 1980    3.0
## 6251      3566 2000    2.0
## 6252      3568 1999    3.0
## 6253      3608 1985    4.0
## 6254      3617 2000    4.0
## 6255      3747 1999    2.0
## 6256      3752 2000    2.0
## 6257      3785 2000    3.0
## 6258      3794 2000    4.0
## 6259      3852 2000    4.0
## 6260      3858 2000    3.0
## 6261      3865 2000    2.0
## 6262      3868 1988    4.0
## 6263      3893 2000    2.0
## 6264      3897 2000    3.0
## 6265      3910 2000    2.0
## 6266      3911 2000    5.0
## 6267      4016 2000    4.0
## 6268      4017 2000    4.0
## 6269      4027 2000    2.0
## 6270      4214 1984    4.0
## 6271      4247 2001    3.0
## 6272      4248 2001    1.0
## 6273      4251 2000    4.0
## 6274      4333 1987    4.0
## 6275      4340 2001    4.0
## 6276      4378 2000    3.0
## 6277      4388 2001    2.0
## 6278      4447 2001    2.0
## 6279      4450 2001    5.0
## 6280      4452 2001    2.0
## 6281      4483 1988    5.0
## 6282      4488 1988    2.0
## 6283      4502 1988    2.0
## 6284      4509 1988    4.0
## 6285      4558 1988    3.0
## 6286      4621 1989    4.0
## 6287      4622 1989    3.0
## 6288      4641 2001    3.0
## 6289      4643 2001    2.0
## 6290      4649 2001    4.0
## 6291      4652 1989    4.0
## 6292      4662 1989    4.0
## 6293      4678 1989    3.0
## 6294      4679 1989    5.0
## 6295      4718 2001    4.0
## 6296      4728 2001    3.0
## 6297      4809 1983    3.0
## 6298      4878 2001    4.0
## 6299      4890 2001    4.0
## 6300      4898 2001    4.0
## 6301      4929 1982    4.0
## 6302      4956 1980    3.0
## 6303      4963 2001    3.0
## 6304      4974 2001    3.0
## 6305      4975 2001    4.0
## 6306      4988 1987    3.0
## 6307      5015 2001    4.0
## 6308      5074 2001    4.0
## 6309      5106 2002    2.0
## 6310      5282 2002    4.0
## 6311      5339 1992    4.0
## 6312      5483 2002    4.0
## 6313      5669 2002    4.0
## 6314      5673 2002    5.0
## 6315         6 1995    3.0
## 6316        21 1995    4.0
## 6317        32 1995    5.0
## 6318        39 1995    3.0
## 6319        47 1995    5.0
## 6320        50 1995    5.0
## 6321        70 1996    4.0
## 6322       110 1995    4.0
## 6323       150 1995    4.0
## 6324       198 1995    3.0
## 6325       253 1994    4.0
## 6326       260 1977    4.0
## 6327       288 1994    4.0
## 6328       293 1994    4.0
## 6329       296 1994    5.0
## 6330       316 1994    4.0
## 6331       337 1993    5.0
## 6332       377 1994    3.0
## 6333       407 1995    3.0
## 6334       442 1993    3.0
## 6335       482 1994    5.0
## 6336       527 1993    4.0
## 6337       541 1982    4.0
## 6338       555 1993    5.0
## 6339       556 1993    4.0
## 6340       562 1995    4.0
## 6341       581 1995    4.0
## 6342       589 1991    5.0
## 6343       593 1991    4.0
## 6344       595 1991    4.0
## 6345       599 1969    3.0
## 6346       608 1996    4.0
## 6347       610 1981    4.0
## 6348       678 1993    5.0
## 6349       724 1996    4.0
## 6350       750 1964    4.0
## 6351       858 1972    4.0
## 6352       912 1942    5.0
## 6353       913 1941    5.0
## 6354       919 1939    3.0
## 6355       923 1941    5.0
## 6356       924 1968    5.0
## 6357       940 1938    5.0
## 6358       969 1951    4.0
## 6359      1036 1988    4.0
## 6360      1059 1996    5.0
## 6361      1089 1992    4.0
## 6362      1090 1986    4.0
## 6363      1092 1992    4.0
## 6364      1097 1982    3.0
## 6365      1103 1955    4.0
## 6366      1104 1951    4.0
## 6367      1120 1996    3.0
## 6368      1129 1981    4.0
## 6369      1130 1980    3.0
## 6370      1147 1996    4.0
## 6371      1178 1957    5.0
## 6372      1179 1990    1.0
## 6373      1193 1975    4.0
## 6374      1196 1980    3.0
## 6375      1198 1981    4.0
## 6376      1200 1986    4.0
## 6377      1201 1966    4.0
## 6378      1204 1962    5.0
## 6379      1206 1971    5.0
## 6380      1207 1962    5.0
## 6381      1208 1979    5.0
## 6382      1213 1990    5.0
## 6383      1214 1979    5.0
## 6384      1215 1993    3.0
## 6385      1219 1960    5.0
## 6386      1220 1980    3.0
## 6387      1221 1974    4.0
## 6388      1222 1987    5.0
## 6389      1231 1983    4.0
## 6390      1234 1973    3.0
## 6391      1240 1984    5.0
## 6392      1247 1967    5.0
## 6393      1250 1957    4.0
## 6394      1252 1974    4.0
## 6395      1253 1951    4.0
## 6396      1254 1948    5.0
## 6397      1258 1980    4.0
## 6398      1259 1986    4.0
## 6399      1262 1963    4.0
## 6400      1263 1978    4.0
## 6401      1267 1962    5.0
## 6402      1270 1985    3.0
## 6403      1272 1970    4.0
## 6404      1276 1967    5.0
## 6405      1287 1959    5.0
## 6406      1298 1982    3.0
## 6407      1299 1984    4.0
## 6408      1320 1992    3.0
## 6409      1321 1981    4.0
## 6410      1339 1992    4.0
## 6411      1340 1935    3.0
## 6412      1358 1996    5.0
## 6413      1387 1975    3.0
## 6414      1396 1992    4.0
## 6415      1407 1996    4.0
## 6416      1464 1997    1.0
## 6417      1527 1997    3.0
## 6418      1580 1997    3.0
## 6419      1589 1997    4.0
## 6420      1597 1997    3.0
## 6421      1610 1990    4.0
## 6422      1617 1997    4.0
## 6423      1645 1997    3.0
## 6424      1653 1997    4.0
## 6425      1676 1997    3.0
## 6426      1690 1997    3.0
## 6427      1754 1998    3.0
## 6428      1923 1998    4.0
## 6429      1931 1935    5.0
## 6430      1952 1969    2.0
## 6431      1954 1976    3.0
## 6432      1965 1984    3.0
## 6433      1997 1973    5.0
## 6434      2009 1973    4.0
## 6435      2028 1998    4.0
## 6436      2064 1989    5.0
## 6437      2076 1986    5.0
## 6438      2105 1982    4.0
## 6439      2288 1982    5.0
## 6440      2289 1992    5.0
## 6441      2311 1984    4.0
## 6442      2338 1998    2.0
## 6443      2353 1998    3.0
## 6444      2366 1933    4.0
## 6445      2396 1998    4.0
## 6446      2407 1985    3.0
## 6447      2527 1973    4.0
## 6448      2528 1976    3.0
## 6449      2529 1968    4.0
## 6450      2553 1960    3.0
## 6451      2571 1999    5.0
## 6452      2599 1999    4.0
## 6453      2644 1931    4.0
## 6454      2648 1931    4.0
## 6455      2657 1975    4.0
## 6456      2662 1953    4.0
## 6457      2716 1984    2.0
## 6458      2762 1999    4.0
## 6459      2793 1997    3.0
## 6460      2797 1988    3.0
## 6461      2858 1999    4.0
## 6462      2863 1964    4.0
## 6463      2871 1972    4.0
## 6464      2901 1979    4.0
## 6465      2908 1999    5.0
## 6466      2916 1990    4.0
## 6467      2921 1973    4.0
## 6468      2944 1967    3.0
## 6469      2949 1962    3.0
## 6470      2951 1964    4.0
## 6471      2971 1979    4.0
## 6472      2985 1987    3.0
## 6473      2987 1988    4.0
## 6474      3032 1971    4.0
## 6475      3035 1955    5.0
## 6476      3062 1962    4.0
## 6477      3066 1970    3.0
## 6478      3074 1972    4.0
## 6479      3168 1969    4.0
## 6480      3196 1953    5.0
## 6481      3256 1992    3.0
## 6482      3286 2000    1.0
## 6483      3361 1988    4.0
## 6484      3386 1991    4.0
## 6485      3418 1991    3.0
## 6486      3467 1963    4.0
## 6487      3468 1961    4.0
## 6488      3471 1977    4.0
## 6489      3504 1976    5.0
## 6490      3508 1976    4.0
## 6491      3527 1987    4.0
## 6492      3551 1976    4.0
## 6493      3634 1964    5.0
## 6494      3702 1979    5.0
## 6495      3703 1981    4.0
## 6496      3706 1987    4.0
## 6497      3727 1987    4.0
## 6498      3811 1980    5.0
## 6499      3917 1987    4.0
## 6500      3927 1966    4.0
## 6501      5060 1970    3.0
## 6502        24 1995    2.5
## 6503       230 1995    1.5
## 6504       247 1994    3.0
## 6505       468 1995    4.0
## 6506       724 1996    2.0
## 6507       838 1996    4.0
## 6508       914 1964    1.5
## 6509      1029 1941    1.5
## 6510      1047 1996    1.5
## 6511      1188 1992    0.5
## 6512      1231 1983    1.5
## 6513      1249 1990    2.5
## 6514      1267 1962    1.0
## 6515      2105 1982    3.5
## 6516      2278 1998    4.0
## 6517      2289 1992    3.5
## 6518      2336 1998    2.0
## 6519      2968 1981    0.5
## 6520      3072 1987    5.0
## 6521      3755 2000    2.5
## 6522         6 1995    3.0
## 6523        16 1995    3.0
## 6524        18 1995    4.0
## 6525        21 1995    3.0
## 6526        25 1995    4.0
## 6527        31 1995    3.0
## 6528        32 1995    5.0
## 6529        36 1995    4.0
## 6530        41 1995    3.0
## 6531        45 1995    4.0
## 6532        50 1995    4.0
## 6533        52 1995    3.0
## 6534        55 1995    4.0
## 6535        57 1995    4.0
## 6536        58 1994    5.0
## 6537        68 1995    4.0
## 6538       111 1976    4.0
## 6539       144 1995    4.0
## 6540       145 1995    3.0
## 6541       147 1995    3.0
## 6542       151 1995    3.0
## 6543       165 1995    3.0
## 6544       216 1995    3.0
## 6545       223 1994    5.0
## 6546       232 1994    5.0
## 6547       236 1995    3.0
## 6548       242 1994    4.0
## 6549       246 1994    4.0
## 6550       248 1994    2.0
## 6551       249 1994    4.0
## 6552       252 1994    3.0
## 6553       253 1994    4.0
## 6554       256 1994    3.0
## 6555       260 1977    5.0
## 6556       261 1994    4.0
## 6557       265 1992    5.0
## 6558       272 1994    4.0
## 6559       273 1994    3.0
## 6560       277 1994    3.0
## 6561       282 1994    3.0
## 6562       288 1994    4.0
## 6563       293 1994    5.0
## 6564       296 1994    4.0
## 6565       300 1994    4.0
## 6566       306 1994    5.0
## 6567       307 1993    5.0
## 6568       308 1994    5.0
## 6569       312 1995    3.0
## 6570       315 1994    5.0
## 6571       318 1994    4.0
## 6572       321 1993    5.0
## 6573       334 1994    4.0
## 6574       345 1994    4.0
## 6575       348 1994    3.0
## 6576       350 1994    3.0
## 6577       356 1994    3.0
## 6578       357 1994    4.0
## 6579       362 1994    4.0
## 6580       368 1994    3.0
## 6581       372 1994    3.0
## 6582       381 1994    3.0
## 6583       382 1994    3.0
## 6584       412 1993    5.0
## 6585       420 1994    3.0
## 6586       431 1993    4.0
## 6587       432 1994    3.0
## 6588       434 1993    3.0
## 6589       440 1993    3.0
## 6590       454 1993    3.0
## 6591       457 1993    3.0
## 6592       469 1993    4.0
## 6593       475 1993    4.0
## 6594       480 1993    3.0
## 6595       481 1993    4.0
## 6596       491 1993    3.0
## 6597       508 1993    4.0
## 6598       509 1993    4.0
## 6599       515 1993    3.0
## 6600       521 1993    4.0
## 6601       524 1993    3.0
## 6602       527 1993    5.0
## 6603       531 1993    4.0
## 6604       532 1994    3.0
## 6605       534 1993    4.0
## 6606       539 1993    3.0
## 6607       540 1993    3.0
## 6608       543 1993    3.0
## 6609       551 1993    3.0
## 6610       586 1990    2.0
## 6611       587 1990    3.0
## 6612       588 1992    3.0
## 6613       590 1990    3.0
## 6614       592 1989    3.0
## 6615       593 1991    4.0
## 6616       597 1990    3.0
## 6617       640 1996    3.0
## 6618       720 1996    4.0
## 6619       778 1996    5.0
## 6620       788 1996    2.0
## 6621       838 1996    4.0
## 6622      1036 1988    3.0
## 6623      1150 1982    3.0
## 6624      1356 1996    4.0
## 6625      1367 1996    3.0
## 6626         1 1995    4.0
## 6627       364 1994    5.0
## 6628       595 1991    5.0
## 6629       902 1961    2.0
## 6630       912 1942    5.0
## 6631       920 1939    5.0
## 6632       940 1938    3.0
## 6633      1193 1975    5.0
## 6634      1196 1980    3.0
## 6635      1246 1989    5.0
## 6636      1307 1989    5.0
## 6637      1907 1998    5.0
## 6638      2028 1998    4.0
## 6639      2081 1989    5.0
## 6640      2085 1961    4.0
## 6641      2273 1998    3.0
## 6642      2858 1999    4.0
## 6643      3357 1999    4.0
## 6644      3481 2000    4.0
## 6645      3538 1999    4.0
## 6646      3564 2000    4.0
## 6647      3751 2000    3.0
## 6648      3948 2000    4.0
## 6649      3977 2000    3.0
## 6650      3996 2000    5.0
## 6651      4011 2000    3.0
## 6652      4014 2000    4.0
## 6653      4015 2000    3.0
## 6654      4018 2000    5.0
## 6655      4034 2000    5.0
## 6656      4054 2001    3.0
## 6657      4069 2001    4.0
## 6658        16 1995    4.5
## 6659        47 1995    4.0
## 6660       110 1995    4.0
## 6661       293 1994    4.5
## 6662       296 1994    5.0
## 6663       306 1994    4.5
## 6664       318 1994    4.5
## 6665       356 1994    4.5
## 6666       364 1994    4.0
## 6667       365 1993    4.5
## 6668       367 1994    3.0
## 6669       527 1993    4.5
## 6670       588 1992    4.0
## 6671       590 1990    3.5
## 6672       593 1991    4.5
## 6673       778 1996    4.0
## 6674       838 1996    4.5
## 6675       858 1972    4.5
## 6676       926 1950    4.5
## 6677      1078 1971    4.5
## 6678      1080 1979    4.0
## 6679      1136 1975    4.0
## 6680      1172 1989    4.5
## 6681      1213 1990    4.0
## 6682      1221 1974    4.5
## 6683      1244 1979    4.0
## 6684      1289 1983    4.5
## 6685      1682 1998    4.0
## 6686      1704 1997    3.5
## 6687      2000 1987    3.0
## 6688      2025 1997    3.0
## 6689      2068 1982    5.0
## 6690      2075 1981    4.5
## 6691      2092 1994    3.5
## 6692      2131 1978    4.5
## 6693      2194 1987    3.0
## 6694      2324 1997    4.5
## 6695      2571 1999    4.0
## 6696      2641 1980    4.0
## 6697      2686 1998    4.0
## 6698      2750 1987    4.0
## 6699      2858 1999    4.0
## 6700      2959 1999    4.0
## 6701      3328 1999    5.0
## 6702      3578 2000    4.5
## 6703      3677 1992    5.0
## 6704      4114 1987    5.0
## 6705      4226 2000    4.5
## 6706      4422 1972    4.5
## 6707      4862 1991    3.5
## 6708      4936 1980    3.5
## 6709      4973 2001    4.0
## 6710      4993 2001    4.0
## 6711      4995 2001    4.5
## 6712      5349 2002    4.0
## 6713      5418 2002    4.5
## 6714      5952 2002    4.5
## 6715      6107 1982    5.0
## 6716      6365 2003    3.0
## 6717      6539 2003    4.0
## 6718      6870 2003    4.5
## 6719      6874 2003    4.0
## 6720      6953 2003    4.5
## 6721      7063 1972    4.5
## 6722      7089 1973    5.0
## 6723      7153 2003    4.5
## 6724      7234 1954    4.0
## 6725      7327 1966    4.5
## 6726      7396 1973    4.5
## 6727      7438 2004    3.5
## 6728      7936 1968    4.5
## 6729      7941 1955    5.0
## 6730      8154 1960    4.0
## 6731      8197 1959    4.5
## 6732      8239 1961    4.5
## 6733      8656 1988    4.5
## 6734     26587 1989    4.5
## 6735     33794 2005    4.0
## 6736     44555 2006    4.5
## 6737     48682 2006    5.0
## 6738     49530 2006    4.0
## 6739     55118 2007    4.5
## 6740     55247 2007    3.5
## 6741     58559 2008    4.5
## 6742     59447 1993    5.0
## 6743     60069 2008    4.0
## 6744     64614 2008    4.5
## 6745     69761 1994    5.0
## 6746     71180 1977    5.0
## 6747     73344 2009    4.5
## 6748     76111 2009    5.0
## 6749     79132 2010    4.0
## 6750     86781 2010    4.5
## 6751     89759 2011    5.0
## 6752     96829 2012    4.0
## 6753     97826 2012    5.0
## 6754     98587 2012    5.0
## 6755    100843 2012    4.5
## 6756    101070 2012    3.0
## 6757    102753 2013    5.0
## 6758    103980 2013    4.0
## 6759    105197 2013    4.5
## 6760    105355 2013    4.5
## 6761    105769 2013    4.5
## 6762    106487 2013    4.5
## 6763    106782 2013    4.0
## 6764    107555 2006    5.0
## 6765    109374 2014    4.0
## 6766    110102 2014    4.0
## 6767    110586 2014    4.5
## 6768    134130 2015    4.5
## 6769         6 1995    4.0
## 6770        10 1995    5.0
## 6771        16 1995    5.0
## 6772        21 1995    3.0
## 6773        22 1995    4.0
## 6774        31 1995    3.0
## 6775        47 1995    4.0
## 6776        50 1995    3.0
## 6777        69 1995    3.0
## 6778        70 1996    5.0
## 6779        73 1995    3.0
## 6780        76 1995    3.0
## 6781       110 1995    5.0
## 6782       145 1995    3.0
## 6783       150 1995    4.0
## 6784       153 1995    3.0
## 6785       160 1995    3.0
## 6786       162 1994    5.0
## 6787       165 1995    5.0
## 6788       168 1995    3.0
## 6789       170 1995    3.0
## 6790       175 1995    3.0
## 6791       177 1995    4.0
## 6792       180 1995    5.0
## 6793       188 1995    2.0
## 6794       198 1995    5.0
## 6795       220 1995    4.0
## 6796       223 1994    4.0
## 6797       231 1994    4.0
## 6798       253 1994    4.0
## 6799       273 1994    3.0
## 6800       285 1993    4.0
## 6801       288 1994    4.0
## 6802       293 1994    4.0
## 6803       296 1994    5.0
## 6804       315 1994    4.0
## 6805       316 1994    4.0
## 6806       328 1995    5.0
## 6807       330 1995    2.0
## 6808       332 1995    3.0
## 6809       333 1995    3.0
## 6810       338 1995    3.0
## 6811       344 1994    4.0
## 6812       353 1994    5.0
## 6813       366 1994    3.0
## 6814       380 1994    5.0
## 6815       426 1993    3.0
## 6816       434 1993    4.0
## 6817       457 1993    4.0
## 6818       553 1993    4.0
## 6819       555 1993    4.0
## 6820       588 1992    3.0
## 6821       590 1990    3.0
## 6822       592 1989    3.0
## 6823       593 1991    3.0
## 6824       595 1991    3.0
## 6825       606 1995    4.0
## 6826       611 1996    5.0
## 6827       648 1996    4.0
## 6828       662 1996    5.0
## 6829       663 1996    4.0
## 6830       743 1996    4.0
## 6831        50 1995    4.5
## 6832       260 1977    4.5
## 6833      1136 1975    5.0
## 6834      1196 1980    4.5
## 6835      1197 1987    5.0
## 6836      1198 1981    4.5
## 6837      2959 1999    4.0
## 6838      4226 2000    5.0
## 6839      4993 2001    4.5
## 6840      7153 2003    4.5
## 6841      7361 2004    4.5
## 6842      8874 2004    4.5
## 6843      8961 2004    4.5
## 6844     33794 2005    4.0
## 6845     38061 2005    5.0
## 6846     44191 2006    4.5
## 6847     48516 2006    5.0
## 6848     48774 2006    5.0
## 6849     48780 2006    5.0
## 6850     49272 2006    4.5
## 6851     51255 2007    5.0
## 6852     51540 2007    4.5
## 6853     55820 2007    4.5
## 6854     58559 2008    4.5
## 6855     68157 2009    4.0
## 6856     68237 2009    4.5
## 6857     68954 2009    4.5
## 6858     70286 2009    4.5
## 6859     74458 2010    3.5
## 6860     79132 2010    4.5
## 6861     79702 2010    4.5
## 6862     99114 2012    4.0
## 6863    106920 2013    5.0
## 6864    109487 2014    4.5
## 6865    112556 2014    4.0
## 6866    116797 2014    4.0
## 6867    122882 2015    4.5
## 6868    122886 2015    4.5
## 6869    122904 2016    4.5
## 6870    127202 2015    5.0
## 6871    134130 2015    4.0
## 6872    152077 2016    5.0
## 6873    152081 2016    4.0
## 6874         2 1995    3.5
## 6875        29 1995    4.0
## 6876       110 1995    4.0
## 6877       130 1995    4.5
## 6878       165 1995    4.0
## 6879       172 1995    3.5
## 6880       173 1995    4.0
## 6881       196 1995    3.0
## 6882       208 1995    4.0
## 6883       233 1994    4.0
## 6884       253 1994    4.0
## 6885       260 1977    4.0
## 6886       262 1995    4.5
## 6887       316 1994    3.5
## 6888       327 1995    4.0
## 6889       329 1994    4.0
## 6890       332 1995    4.0
## 6891       353 1994    4.0
## 6892       356 1994    3.5
## 6893       377 1994    4.5
## 6894       380 1994    4.0
## 6895       426 1993    3.0
## 6896       435 1993    4.0
## 6897       442 1993    3.5
## 6898       457 1993    4.0
## 6899       541 1982    5.0
## 6900       592 1989    4.0
## 6901       610 1981    3.0
## 6902       648 1996    4.0
## 6903       674 1968    4.0
## 6904       736 1996    4.0
## 6905       748 1996    3.5
## 6906       780 1996    4.0
## 6907       849 1996    4.0
## 6908       917 1939    4.0
## 6909       919 1939    4.0
## 6910       924 1968    5.0
## 6911       986 1996    3.5
## 6912      1037 1992    3.5
## 6913      1073 1971    4.0
## 6914      1077 1973    4.0
## 6915      1097 1982    4.0
## 6916      1127 1989    3.5
## 6917      1129 1981    4.5
## 6918      1196 1980    4.0
## 6919      1200 1986    4.0
## 6920      1206 1971    3.5
## 6921      1210 1983    4.0
## 6922      1214 1979    4.0
## 6923      1220 1980    5.0
## 6924      1222 1987    4.0
## 6925      1240 1984    4.0
## 6926      1270 1985    4.0
## 6927      1298 1982    5.0
## 6928      1302 1989    3.0
## 6929      1320 1992    4.0
## 6930      1333 1963    2.5
## 6931      1356 1996    4.0
## 6932      1371 1979    3.5
## 6933      1372 1991    4.0
## 6934      1373 1989    4.0
## 6935      1374 1982    4.5
## 6936      1375 1984    4.0
## 6937      1376 1986    4.0
## 6938      1437 1993    4.0
## 6939      1527 1997    4.0
## 6940      1545 1996    4.5
## 6941      1552 1997    3.5
## 6942      1580 1997    4.0
## 6943      1591 1997    4.0
## 6944      1676 1997    4.0
## 6945      1690 1997    4.0
## 6946      1719 1997    4.0
## 6947      1747 1997    3.0
## 6948      1748 1998    4.0
## 6949      1772 1998    4.0
## 6950      1779 1998    3.5
## 6951      1876 1998    3.5
## 6952      1880 1997    4.0
## 6953      1917 1998    4.0
## 6954      1965 1984    3.0
## 6955      1997 1973    4.0
## 6956      2001 1989    3.0
## 6957      2003 1984    2.5
## 6958      2009 1973    4.5
## 6959      2011 1989    4.0
## 6960      2012 1990    3.5
## 6961      2025 1997    5.0
## 6962      2105 1982    5.0
## 6963      2117 1984    5.0
## 6964      2174 1988    4.0
## 6965      2232 1997    3.5
## 6966      2311 1984    4.0
## 6967      2322 1998    3.5
## 6968      2454 1958    3.0
## 6969      2455 1986    3.0
## 6970      2520 1970    3.0
## 6971      2521 1974    3.5
## 6972      2522 1977    4.0
## 6973      2528 1976    4.0
## 6974      2529 1968    4.0
## 6975      2530 1970    3.0
## 6976      2531 1973    3.0
## 6977      2532 1972    3.0
## 6978      2536 1979    2.5
## 6979      2553 1960    4.0
## 6980      2571 1999    5.0
## 6981      2600 1999    3.5
## 6982      2640 1978    4.0
## 6983      2641 1980    3.5
## 6984      2642 1983    3.5
## 6985      2729 1962    3.5
## 6986      2746 1986    3.5
## 6987      2808 1992    4.0
## 6988      2858 1999    4.5
## 6989      2877 1975    4.0
## 6990      2916 1990    3.5
## 6991      2918 1986    4.0
## 6992      2950 1980    4.0
## 6993      3033 1987    4.0
## 6994      3156 1999    4.0
## 6995      3175 1999    4.0
## 6996      3253 1992    3.0
## 6997      3300 2000    4.0
## 6998      3354 2000    3.5
## 6999      3471 1977    4.0
## 7000      3479 1985    4.0
## 7001      3556 1999    4.0
## 7002      3593 2000    4.0
## 7003      3638 1979    3.5
## 7004      3698 1987    3.5
## 7005      3699 1984    3.5
## 7006      3702 1979    4.0
## 7007      3703 1981    4.0
## 7008      3704 1985    4.0
## 7009      3745 2000    3.5
## 7010      3793 2000    4.0
## 7011      3802 1992    3.5
## 7012      3863 2000    3.5
## 7013      3910 2000    4.0
## 7014      3937 1984    3.0
## 7015      3986 2000    3.5
## 7016      4039 1982    4.0
## 7017      4232 2001    4.0
## 7018      4306 2001    4.0
## 7019      4370 2001    4.0
## 7020      4443 1981    3.5
## 7021      4446 2001    4.0
## 7022      4553 1988    4.5
## 7023      4625 1989    3.5
## 7024      4678 1989    4.0
## 7025      4691 1985    2.5
## 7026      4789 1974    5.0
## 7027      4811 1979    4.0
## 7028      4874 2001    3.5
## 7029      4936 1980    4.0
## 7030      5219 2002    4.0
## 7031      5349 2002    3.5
## 7032      5445 2002    4.0
## 7033      5459 2002    3.5
## 7034      5463 2002    3.5
## 7035      5490 1976    3.5
## 7036      5518 1981    4.5
## 7037      5522 1975    4.0
## 7038      5618 2001    4.0
## 7039      5694 1983    3.5
## 7040      5705 1980    4.0
## 7041      5881 2002    3.0
## 7042      5903 2002    4.5
## 7043      5981 1962    4.0
## 7044      6116 1982    4.5
## 7045      6157 2003    4.0
## 7046      6264 2003    3.5
## 7047      6303 1971    4.0
## 7048      6316 1978    4.5
## 7049      6333 2003    4.0
## 7050      6365 2003    4.0
## 7051      6385 2002    4.5
## 7052      6502 2002    3.5
## 7053      6537 2003    3.5
## 7054      6541 2003    4.0
## 7055      6645 1971    4.0
## 7056      6678 1990    3.0
## 7057      6725 1978    5.0
## 7058      6863 2003    4.0
## 7059      6934 2003    4.0
## 7060      6951 2003    4.0
## 7061      6979 1983    4.5
## 7062      7001 1978    4.0
## 7063      7060 1973    4.5
## 7064      7164 2003    4.5
## 7065      7373 2004    4.0
## 7066      7817 1974    3.0
## 7067      7991 1975    4.0
## 7068      8371 2004    4.0
## 7069      8499 1978    4.0
## 7070      8633 1984    4.0
## 7071      8644 2004    4.5
## 7072      8861 2004    4.0
## 7073       110 1995    4.0
## 7074       165 1995    3.5
## 7075       260 1977    4.5
## 7076       296 1994    5.0
## 7077       318 1994    5.0
## 7078       349 1994    4.0
## 7079       356 1994    4.5
## 7080       380 1994    3.5
## 7081       457 1993    5.0
## 7082       480 1993    5.0
## 7083       508 1993    3.5
## 7084       527 1993    4.5
## 7085       588 1992    4.0
## 7086       589 1991    5.0
## 7087       648 1996    4.0
## 7088       733 1996    3.5
## 7089       780 1996    4.5
## 7090      1036 1988    5.0
## 7091      1097 1982    5.0
## 7092      1196 1980    5.0
## 7093      1198 1981    5.0
## 7094      1200 1986    5.0
## 7095      1210 1983    4.0
## 7096      1291 1989    4.5
## 7097      1320 1992    1.5
## 7098      1370 1990    3.5
## 7099      1527 1997    4.0
## 7100      1573 1997    3.0
## 7101      1704 1997    4.5
## 7102      1721 1997    4.0
## 7103      2028 1998    4.0
## 7104      2571 1999    3.5
## 7105      2916 1990    4.0
## 7106      2985 1987    4.0
## 7107      3793 2000    3.5
## 7108      3996 2000    2.5
## 7109      4886 2001    4.0
## 7110      4993 2001    5.0
## 7111      5349 2002    4.0
## 7112      5952 2002    4.5
## 7113      7153 2003    4.0
## 7114      7502 2001    5.0
## 7115      8636 2004    4.0
## 7116      8961 2004    4.0
## 7117     33794 2005    3.5
## 7118     40815 2005    3.5
## 7119     44191 2006    4.0
## 7120     48394 2006    4.0
## 7121     48516 2006    4.5
## 7122     58559 2008    4.5
## 7123     59315 2008    4.0
## 7124     63082 2008    3.0
## 7125     68358 2009    3.5
## 7126     69844 2009    4.5
## 7127     70286 2009    4.5
## 7128     73017 2009    4.0
## 7129     74458 2010    3.5
## 7130     76093 2010    4.5
## 7131     79132 2010    4.5
## 7132     87232 2011    4.0
## 7133     89745 2012    4.0
## 7134     91529 2012    3.5
## 7135     98809 2012    3.0
## 7136    106489 2013    2.0
## 7137    106782 2013    4.5
## 7138    109487 2014    4.0
## 7139    111759 2014    3.0
## 7140    112852 2014    3.5
## 7141    122886 2015    4.5
## 7142    134853 2015    2.0
## 7143         1 1995    4.0
## 7144        34 1995    4.0
## 7145        39 1995    4.0
## 7146        70 1996    2.0
## 7147       104 1996    2.0
## 7148       110 1995    5.0
## 7149       216 1995    1.0
## 7150       223 1994    3.0
## 7151       231 1994    3.0
## 7152       339 1995    4.0
## 7153       356 1994    5.0
## 7154       480 1993    4.0
## 7155       500 1993    3.0
## 7156       524 1993    3.0
## 7157       527 1993    5.0
## 7158       585 1995    2.0
## 7159       588 1992    3.0
## 7160       589 1991    3.0
## 7161       608 1996    5.0
## 7162       837 1996    4.0
## 7163       838 1996    4.0
## 7164      1035 1965    4.0
## 7165      1210 1983    3.0
## 7166      1380 1978    3.0
## 7167      1457 1997    3.0
## 7168      1476 1997    4.0
## 7169      1513 1997    4.0
## 7170      1517 1997    1.0
## 7171      1544 1997    2.0
## 7172      1569 1997    5.0
## 7173      1580 1997    4.0
## 7174      1612 1997    4.0
## 7175      1673 1997    3.0
## 7176      1726 1997    1.0
## 7177      1777 1998    3.0
## 7178      1806 1998    1.0
## 7179      1821 1998    3.0
## 7180      1883 1998    3.0
## 7181      1895 1998    2.0
## 7182      1907 1998    3.0
## 7183      1958 1983    4.0
## 7184      1968 1985    3.0
## 7185      1997 1973    5.0
## 7186      2000 1987    2.0
## 7187      2003 1984    2.0
## 7188      2004 1990    1.0
## 7189      2054 1989    2.0
## 7190      2081 1989    4.0
## 7191      2082 1992    2.0
## 7192      2109 1979    3.0
## 7193      2144 1984    3.0
## 7194      2150 1980    3.0
## 7195      2160 1968    1.0
## 7196      2291 1990    3.0
## 7197      2321 1998    4.0
## 7198      2355 1998    4.0
## 7199      2384 1998    4.0
## 7200      2390 1998    3.0
## 7201      2395 1998    3.0
## 7202      2396 1998    4.0
## 7203      2447 1999    3.0
## 7204      2454 1958    3.0
## 7205      2455 1986    3.0
## 7206      2496 1999    2.0
## 7207      2539 1999    2.0
## 7208      2622 1999    2.0
## 7209      2671 1999    4.0
## 7210      2683 1999    2.0
## 7211      2688 1999    3.0
## 7212      2690 1999    4.0
## 7213      2700 1999    2.0
## 7214      2706 1999    4.0
## 7215      2723 1999    3.0
## 7216      2770 1999    3.0
## 7217      2791 1980    2.0
## 7218      2804 1983    4.0
## 7219      2836 1999    3.0
## 7220      2858 1999    5.0
## 7221      2879 1991    4.0
## 7222      2978 1999    2.0
## 7223      2997 1999    4.0
## 7224      3005 1999    2.0
## 7225      3052 1999    3.0
## 7226      3114 1999    4.0
## 7227      3156 1999    2.0
## 7228      3160 1999    4.0
## 7229      3173 1999    3.0
## 7230      3189 1999    4.0
## 7231      3247 1992    3.0
## 7232      3254 1993    2.0
## 7233      3255 1992    3.0
## 7234      3286 2000    2.0
## 7235      3301 2000    2.0
## 7236      3409 2000    4.0
## 7237      3450 1993    2.0
## 7238      3481 2000    2.0
## 7239      3510 2000    4.0
## 7240      3515 2000    4.0
## 7241      3525 1984    3.0
## 7242      3535 2000    1.0
## 7243      3555 2000    2.0
## 7244      3624 2000    3.0
## 7245      3712 1991    2.0
## 7246      3753 2000    4.0
## 7247      3773 1990    2.0
## 7248      3868 1988    1.0
## 7249      3869 1991    1.0
## 7250      3917 1987    2.0
## 7251      3948 2000    2.0
## 7252      3969 2000    4.0
## 7253         1 1995    4.0
## 7254         3 1995    5.0
## 7255         5 1995    3.0
## 7256         6 1995    3.0
## 7257        17 1995    2.0
## 7258        25 1995    3.0
## 7259        32 1995    3.0
## 7260        62 1995    5.0
## 7261        95 1996    3.0
## 7262       104 1996    4.0
## 7263       135 1996    4.0
## 7264       141 1996    2.0
## 7265       260 1977    3.0
## 7266       494 1996    3.0
## 7267       628 1996    3.0
## 7268       637 1996    2.0
## 7269       648 1996    3.0
## 7270       733 1996    4.0
## 7271       736 1996    4.0
## 7272       780 1996    5.0
## 7273       786 1996    3.0
## 7274       788 1996    3.0
## 7275       802 1996    3.0
## 7276       805 1996    4.0
## 7277      1047 1996    3.0
## 7278       520 1993    3.5
## 7279       899 1952    4.0
## 7280       903 1958    5.0
## 7281      1199 1985    4.0
## 7282      1333 1963    4.5
## 7283      1639 1997    3.0
## 7284      1673 1997    4.5
## 7285      1748 1998    4.5
## 7286      2572 1999    2.5
## 7287      2692 1998    4.5
## 7288      2699 1990    2.5
## 7289      3052 1999    2.5
## 7290      3160 1999    4.5
## 7291      3307 1931    4.5
## 7292      3753 2000    0.5
## 7293      4235 2000    4.0
## 7294      4246 2001    1.0
## 7295      4995 2001    2.5
## 7296      5878 2002    4.0
## 7297      7064 1946    5.0
## 7298     26151 1966    5.0
## 7299        73 1995    5.0
## 7300       355 1994    5.0
## 7301       724 1996    5.0
## 7302      1270 1985    5.0
## 7303      1359 1996    4.5
## 7304      1515 1997    5.0
## 7305      1707 1997    5.0
## 7306      1965 1984    5.0
## 7307      2153 1998    5.0
## 7308      2379 1985    5.0
## 7309      2381 1987    5.0
## 7310      2383 1989    5.0
## 7311      2398 1947    5.0
## 7312      2539 1999    5.0
## 7313      2541 1999    5.0
## 7314      2605 1999    5.0
## 7315      2804 1983    5.0
## 7316      3157 1999    4.5
## 7317      3247 1992    4.0
## 7318      3868 1988    5.0
## 7319      4993 2001    5.0
## 7320      5952 2002    5.0
## 7321      7004 1990    5.0
## 7322      7153 2003    5.0
## 7323      8387 1994    5.0
## 7324     26614 1988    5.0
## 7325     33615 2005    5.0
## 7326     33794 2005    5.0
## 7327     49530 2006    5.0
## 7328     50872 2007    5.0
## 7329     58559 2008    5.0
## 7330     59018 2007    5.0
## 7331     79132 2010    5.0
## 7332     80463 2010    5.0
## 7333     81834 2010    5.0
## 7334     88125 2011    5.0
## 7335     89745 2012    5.0
## 7336     91529 2012    5.0
## 7337     98124 2012    5.0
## 7338         1 1995    5.0
## 7339         2 1995    5.0
## 7340        10 1995    4.0
## 7341        32 1995    4.0
## 7342        39 1995    3.0
## 7343        50 1995    4.0
## 7344        95 1996    3.0
## 7345       110 1995    5.0
## 7346       150 1995    4.0
## 7347       153 1995    4.0
## 7348       160 1995    3.0
## 7349       161 1995    5.0
## 7350       165 1995    4.0
## 7351       173 1995    5.0
## 7352       208 1995    3.0
## 7353       231 1994    3.0
## 7354       236 1995    4.0
## 7355       253 1994    3.0
## 7356       266 1994    3.0
## 7357       288 1994    4.0
## 7358       292 1995    5.0
## 7359       296 1994    4.0
## 7360       300 1994    3.0
## 7361       315 1994    4.0
## 7362       316 1994    5.0
## 7363       329 1994    4.0
## 7364       344 1994    3.0
## 7365       349 1994    4.0
## 7366       380 1994    4.0
## 7367       410 1993    3.0
## 7368       420 1994    3.0
## 7369       434 1993    4.0
## 7370       442 1993    3.0
## 7371       457 1993    5.0
## 7372       588 1992    4.0
## 7373       592 1989    3.0
## 7374       593 1991    5.0
## 7375       595 1991    3.0
## 7376         1 1995    4.0
## 7377         2 1995    3.5
## 7378        34 1995    3.0
## 7379       110 1995    4.0
## 7380       111 1976    3.0
## 7381       158 1995    3.0
## 7382       163 1995    3.5
## 7383       223 1994    2.5
## 7384       231 1994    3.5
## 7385       288 1994    3.5
## 7386       293 1994    5.0
## 7387       296 1994    4.5
## 7388       344 1994    3.5
## 7389       356 1994    4.0
## 7390       364 1994    4.0
## 7391       367 1994    3.5
## 7392       480 1993    3.5
## 7393       501 1993    3.5
## 7394       527 1993    4.5
## 7395       541 1982    4.0
## 7396       562 1995    3.5
## 7397       593 1991    3.5
## 7398       595 1991    3.5
## 7399       648 1996    3.5
## 7400       673 1996    3.0
## 7401       741 1995    4.0
## 7402       778 1996    4.5
## 7403       784 1996    2.5
## 7404       858 1972    4.0
## 7405       924 1968    4.5
## 7406      1097 1982    3.5
## 7407      1127 1989    3.5
## 7408      1148 1993    3.5
## 7409      1175 1991    4.0
## 7410      1185 1989    4.0
## 7411      1206 1971    3.5
## 7412      1214 1979    3.5
## 7413      1222 1987    3.5
## 7414      1240 1984    3.5
## 7415      1258 1980    4.0
## 7416      1270 1985    3.5
## 7417      1274 1988    3.5
## 7418      1293 1982    4.0
## 7419      1407 1996    2.5
## 7420      1485 1997    3.5
## 7421      1499 1997    2.5
## 7422      1527 1997    3.5
## 7423      1544 1997    3.5
## 7424      1580 1997    3.5
## 7425      1591 1997    3.0
## 7426      1676 1997    3.0
## 7427      1682 1998    3.5
## 7428      1721 1997    4.0
## 7429      1732 1998    3.5
## 7430      1784 1997    4.5
## 7431      1882 1998    3.0
## 7432      1884 1998    4.5
## 7433      1917 1998    3.5
## 7434      1921 1998    4.0
## 7435      1923 1998    3.5
## 7436      1997 1973    3.5
## 7437      2006 1998    3.0
## 7438      2167 1998    3.5
## 7439      2232 1997    3.5
## 7440      2288 1982    3.5
## 7441      2291 1990    4.0
## 7442      2294 1998    3.0
## 7443      2318 1998    3.5
## 7444      2324 1997    4.5
## 7445      2329 1998    4.5
## 7446      2355 1998    3.5
## 7447      2455 1986    2.5
## 7448      2542 1998    3.5
## 7449      2571 1999    4.5
## 7450      2617 1999    3.5
## 7451      2692 1998    3.0
## 7452      2700 1999    3.5
## 7453      2706 1999    3.5
## 7454      2710 1999    3.0
## 7455      2722 1999    2.5
## 7456      2762 1999    3.5
## 7457      2840 1999    3.0
## 7458      2959 1999    5.0
## 7459      2987 1988    3.5
## 7460      2997 1999    3.0
## 7461      3000 1997    5.0
## 7462      3114 1999    3.5
## 7463      3147 1999    4.0
## 7464      3527 1987    3.0
## 7465      3578 2000    5.0
## 7466      3677 1992    4.5
## 7467      3717 2000    3.0
## 7468      3745 2000    3.5
## 7469      3751 2000    3.0
## 7470      3793 2000    3.5
## 7471      3949 2000    4.5
## 7472      3968 2000    3.0
## 7473      4011 2000    4.0
## 7474      4016 2000    3.5
## 7475      4022 2000    3.5
## 7476      4226 2000    3.5
## 7477      4270 2001    3.0
## 7478      4306 2001    4.0
## 7479      4369 2001    3.5
## 7480      4446 2001    3.5
## 7481      4720 2001    3.0
## 7482      4878 2001    4.5
## 7483      4886 2001    3.5
## 7484      4902 2001    3.5
## 7485      4973 2001    5.0
## 7486      4975 2001    3.5
## 7487      4993 2001    4.5
## 7488      4995 2001    4.0
## 7489      5010 2001    4.0
## 7490      5146 2000    4.0
## 7491      5218 2002    4.0
## 7492      5225 2001    3.0
## 7493      5349 2002    3.5
## 7494      5459 2002    3.0
## 7495      5502 2002    3.5
## 7496      5570 1996    3.5
## 7497      5618 2001    4.5
## 7498      5669 2002    4.0
## 7499      5679 2002    3.5
## 7500      5690 1988    4.5
## 7501      5902 2002    4.0
## 7502      5903 2002    3.5
## 7503      5952 2002    4.0
## 7504      5971 1988    4.0
## 7505      5995 2002    4.0
## 7506      6016 2002    4.5
## 7507      6214 2002    3.5
## 7508      6223 2001    3.5
## 7509      6242 1998    3.0
## 7510      6283 2001    3.5
## 7511      6291 2002    3.0
## 7512      6350 1986    4.0
## 7513      6365 2003    3.5
## 7514      6373 2003    4.0
## 7515      6377 2003    4.0
## 7516      6539 2003    4.0
## 7517      6711 2003    3.0
## 7518      6857 1995    3.5
## 7519      6890 2003    3.0
## 7520      6934 2003    3.0
## 7521      6953 2003    3.5
## 7522      7099 1984    4.0
## 7523      7147 2003    3.5
## 7524      7153 2003    4.0
## 7525      7235 2001    3.0
## 7526      7254 2004    4.0
## 7527      7256 2003    4.5
## 7528      7360 2004    2.5
## 7529      7361 2004    4.5
## 7530      7373 2004    3.5
## 7531      7382 2003    3.0
## 7532      7982 2003    4.0
## 7533      8132 1992    5.0
## 7534      8157 1998    2.5
## 7535      8360 2004    3.0
## 7536      8376 2004    3.5
## 7537      8582 1992    4.0
## 7538      8636 2004    4.0
## 7539      8645 2004    3.0
## 7540      8784 2004    4.5
## 7541      8807 2004    4.0
## 7542      8874 2004    4.5
## 7543      8906 1980    2.5
## 7544      8907 2004    2.5
## 7545      8950 2004    4.5
## 7546      8957 2004    3.0
## 7547      8961 2004    3.5
## 7548      8965 2004    3.0
## 7549     26662 1989    4.0
## 7550     26776 1992    4.0
## 7551     27156 1997    4.0
## 7552     27523 2001    3.5
## 7553     27660 2003    3.5
## 7554     27713 2003    4.0
## 7555     27722 2003    2.5
## 7556     27731 2002    4.0
## 7557     27773 2003    3.5
## 7558     27800 2003    3.5
## 7559     27801 2003    3.0
## 7560     27838 2004    3.0
## 7561     27846 2003    4.5
## 7562     27850 2003    3.5
## 7563     27878 2004    4.0
## 7564     30793 2005    3.5
## 7565     30867 2004    4.0
## 7566     31410 2004    4.5
## 7567     31435 2004    5.0
## 7568     31658 2004    4.5
## 7569     31878 2004    3.0
## 7570     32031 2005    3.0
## 7571     32554 1995    3.0
## 7572     32562 2003    4.0
## 7573     32587 2005    4.5
## 7574     33154 2005    4.0
## 7575     33166 2004    3.5
## 7576     33615 2005    3.5
## 7577     33679 2005    3.5
## 7578     34323 2005    3.0
## 7579     34405 2005    3.5
## 7580     36276 2005    2.5
## 7581     36535 2005    3.5
## 7582     37729 2005    3.0
## 7583     37830 2004    3.5
## 7584     38038 2005    3.5
## 7585     40629 2005    4.5
## 7586     41569 2005    3.5
## 7587     41769 2005    3.0
## 7588     42723 2005    3.0
## 7589     44022 2006    3.0
## 7590     44191 2006    3.5
## 7591     44397 2006    2.5
## 7592     44555 2006    4.5
## 7593     44633 2005    4.0
## 7594     44828 2006    3.0
## 7595     44974 2005    3.5
## 7596     45431 2006    4.0
## 7597     45517 2006    4.0
## 7598     45720 2006    3.0
## 7599     45950 2006    4.0
## 7600     46578 2006    3.5
## 7601     46948 2006    3.5
## 7602     46976 2006    3.0
## 7603     47099 2006    3.5
## 7604     47124 2006    3.0
## 7605     47404 2004    4.0
## 7606     47610 2006    4.0
## 7607     47999 2006    4.0
## 7608     48043 2006    3.5
## 7609     48082 2006    4.0
## 7610     48385 2006    3.5
## 7611     48394 2006    4.0
## 7612     48414 2006    3.0
## 7613     48774 2006    3.0
## 7614     48780 2006    3.5
## 7615     48982 2006    3.5
## 7616     48997 2006    4.0
## 7617     49278 2006    3.5
## 7618     50583 2005    3.0
## 7619     50601 2007    4.0
## 7620     50872 2007    3.5
## 7621     51255 2007    3.5
## 7622     51540 2007    3.0
## 7623     51662 2007    4.0
## 7624     52281 2007    3.5
## 7625     52287 2007    3.0
## 7626     52319 1978    4.0
## 7627     52328 2007    2.5
## 7628     52458 2007    3.0
## 7629     52722 2007    3.0
## 7630     53121 2007    2.5
## 7631     53326 2006    2.0
## 7632     53460 2007    3.0
## 7633     53519 2007    3.0
## 7634     53883 2004    4.0
## 7635     53894 2007    4.0
## 7636     53996 2007    3.5
## 7637     54272 2007    2.5
## 7638     54503 2007    3.5
## 7639     54995 2007    4.0
## 7640     55247 2007    4.5
## 7641     55280 2007    4.0
## 7642     55442 2007    4.5
## 7643     55444 2007    4.5
## 7644     55768 2007    3.0
## 7645     55814 2007    4.0
## 7646     55908 2007    3.5
## 7647     55995 2007    3.0
## 7648     56069 2007    2.5
## 7649     56095 2007    3.0
## 7650     56145 2007    3.5
## 7651     56174 2007    3.0
## 7652     56339 2007    4.0
## 7653     56367 2007    3.5
## 7654     56607 2007    4.0
## 7655     56757 2007    3.0
## 7656     56782 2007    3.5
## 7657     56908 2007    4.0
## 7658     57274 2007    3.5
## 7659     57368 2008    4.5
## 7660     57453 2007    3.5
## 7661     57504 2006    4.0
## 7662     57640 2008    3.0
## 7663     57669 2008    4.0
## 7664     57980 2006    3.0
## 7665     58299 2008    3.5
## 7666     58347 2006    3.5
## 7667     58554 2007    3.5
## 7668     58559 2008    4.0
## 7669     59118 2008    4.5
## 7670     59141 2007    3.5
## 7671     59315 2008    4.0
## 7672     59387 2006    4.0
## 7673     59684 2006    5.0
## 7674     59784 2008    3.5
## 7675     60069 2008    4.0
## 7676     60126 2008    3.0
## 7677     60161 2008    3.5
## 7678     60291 2008    4.0
## 7679     60684 2009    3.5
## 7680     60763 2008    3.5
## 7681     61240 2008    4.5
## 7682     61323 2008    3.5
## 7683     62203 2008    4.5
## 7684     62250 2008    3.0
## 7685     62956 2008    3.5
## 7686     62999 2008    3.5
## 7687     63082 2008    3.5
## 7688     63131 2008    2.5
## 7689     63808 2008    3.5
## 7690     63859 2008    3.5
## 7691     64575 2008    4.0
## 7692     64716 2008    4.0
## 7693     64957 2008    3.5
## 7694     64969 2008    3.0
## 7695     64983 2008    3.5
## 7696     64993 2007    4.0
## 7697     65037 2007    5.0
## 7698     65261 2008    3.5
## 7699     65514 2008    4.0
## 7700     66097 2009    3.5
## 7701     66371 2008    3.5
## 7702     67197 2009    3.5
## 7703     67255 2009    4.0
## 7704     67408 2009    3.0
## 7705     67734 2009    3.0
## 7706     68157 2009    4.0
## 7707     68237 2009    4.0
## 7708     68358 2009    3.0
## 7709     68945 1997    3.5
## 7710     68954 2009    4.0
## 7711     69122 2009    4.5
## 7712     69526 2009    3.0
## 7713     69644 2009    3.5
## 7714     69712 2009    3.5
## 7715     69757 2009    4.5
## 7716     70159 2009    4.0
## 7717     70286 2009    4.5
## 7718     70533 2007    4.0
## 7719     70567 2009    4.0
## 7720     71033 2009    4.0
## 7721     71057 2009    3.5
## 7722     71264 2009    3.5
## 7723     71282 2008    3.0
## 7724     71379 2009    4.0
## 7725     71462 2009    4.0
## 7726     71468 2009    3.0
## 7727     71520 2009    3.5
## 7728     71535 2009    3.5
## 7729     71579 2009    3.5
## 7730     71899 2009    5.0
## 7731     72104 1989    3.0
## 7732     72209 2009    3.0
## 7733     72393 2009    3.5
## 7734     72731 2009    3.0
## 7735     72741 2009    3.5
## 7736     72998 2009    4.5
## 7737     73017 2009    4.0
## 7738     73268 2010    3.0
## 7739     73321 2010    3.0
## 7740     73392 2009    3.5
## 7741     73664 2008    3.0
## 7742     73881 2009    4.0
## 7743     74228 2009    3.5
## 7744     74677 2009    4.0
## 7745     74789 2010    3.5
## 7746     76093 2010    4.0
## 7747     76173 2009    5.0
## 7748     76251 2010    3.5
## 7749     77307 2009    4.0
## 7750     77427 2009    1.5
## 7751     77561 2010    3.5
## 7752     77837 2010    4.5
## 7753     78499 2010    4.0
## 7754     79029 2006    4.0
## 7755     79091 2010    4.0
## 7756     79132 2010    4.0
## 7757     79357 2009    3.5
## 7758     79702 2010    4.0
## 7759     79868 2009    3.5
## 7760     80463 2010    4.5
## 7761     80586 2010    3.5
## 7762     80831 2010    2.5
## 7763     80862 2010    3.5
## 7764     80906 2010    4.0
## 7765     81018 2010    3.5
## 7766     81562 2010    3.5
## 7767     81564 2010    3.5
## 7768     81591 2010    4.0
## 7769     81845 2010    3.5
## 7770     81847 2010    3.5
## 7771     82461 2010    3.5
## 7772     82667 2010    3.5
## 7773     83132 2010    3.5
## 7774     83134 2010    3.5
## 7775     83803 2010    3.0
## 7776     84152 2011    4.0
## 7777     84187 2009    4.5
## 7778     84772 2011    2.5
## 7779     84944 2011    4.0
## 7780     84952 2010    4.0
## 7781     85412 2010    3.5
## 7782     85414 2011    4.0
## 7783     85510 2011    3.0
## 7784     85736 2008    4.5
## 7785     85774 2010    4.0
## 7786     85788 2010    3.5
## 7787     85796 2011    3.0
## 7788     86298 2011    4.0
## 7789     86332 2011    3.5
## 7790     86347 2008    3.5
## 7791     86721 2008    3.0
## 7792     87222 2011    4.0
## 7793     87232 2011    4.0
## 7794     87306 2011    2.5
## 7795     87430 2011    3.0
## 7796     87520 2011    3.0
## 7797     88140 2011    2.5
## 7798     88744 2011    3.5
## 7799     89745 2012    3.0
## 7800     89837 2011    2.5
## 7801     90469 2011    3.0
## 7802     90531 2011    2.5
## 7803     90647 2011    3.5
## 7804     90746 2011    3.5
## 7805     91414 2011    3.0
## 7806     91529 2012    3.5
## 7807     91542 2011    3.5
## 7808     92058 2011    2.0
## 7809     92420 2012    2.5
## 7810     93272 2012    2.5
## 7811     93838 2011    3.0
## 7812     93840 2012    2.5
## 7813     95167 2012    5.0
## 7814     95311 2008    4.0
## 7815     95375 2003    3.0
## 7816     95510 2012    3.0
## 7817     95543 2012    3.0
## 7818     95858 2000    4.0
## 7819     95875 2012    3.0
## 7820     96281 2012    3.0
## 7821     96606 2011    3.0
## 7822     96610 2012    3.0
## 7823     96737 2012    4.0
## 7824     96821 2012    4.0
## 7825     97188 2012    2.5
## 7826     97225 2012    3.5
## 7827     97752 2012    4.5
## 7828     97913 2012    3.5
## 7829     97921 2012    3.5
## 7830     97938 2012    3.5
## 7831     97957 2012    4.0
## 7832     98056 2012    3.0
## 7833     98243 2012    2.5
## 7834     98809 2012    4.0
## 7835     99114 2012    4.0
## 7836     99145 2012    4.0
## 7837    100556 2012    4.0
## 7838    101142 2013    3.5
## 7839    102125 2013    2.5
## 7840    102445 2013    4.0
## 7841    103042 2013    3.5
## 7842    103228 2013    2.0
## 7843    103249 2013    2.5
## 7844    103253 2013    2.0
## 7845    103299 2012    3.5
## 7846    103335 2013    3.0
## 7847    103688 2013    3.0
## 7848    104841 2013    2.5
## 7849    106002 2013    2.5
## 7850    106072 2013    2.5
## 7851    106204 2013    3.0
## 7852    106489 2013    4.0
## 7853    106696 2013    3.5
## 7854    107406 2013    2.5
## 7855    107769 2014    2.5
## 7856    107953 2013    2.5
## 7857    108190 2014    3.0
## 7858    108945 2014    2.5
## 7859    109487 2014    3.5
## 7860    109578 2014    3.0
## 7861    109673 2014    2.5
## 7862    109846 2014    3.0
## 7863    109848 2013    2.5
## 7864    109850 2014    2.5
## 7865    110102 2014    3.5
## 7866    110127 2014    3.0
## 7867    110501 2014    3.0
## 7868    110553 2014    3.0
## 7869    110591 2013    2.5
## 7870    110655 2014    2.5
## 7871    110730 2014    3.5
## 7872    111362 2014    3.5
## 7873    111364 2014    2.5
## 7874    111659 2014    2.5
## 7875    111759 2014    4.0
## 7876    112175 2014    3.5
## 7877    112370 2014    2.5
## 7878    112515 2014    2.5
## 7879    112623 2014    3.5
## 7880    112852 2014    3.5
## 7881    113741 2013    3.0
## 7882    114180 2014    2.5
## 7883    114935 2014    3.0
## 7884    115149 2014    2.5
## 7885    115534 2014    2.0
## 7886    115617 2014    3.0
## 7887    115624 2010    3.0
## 7888    118696 2014    2.5
## 7889         2 1995    5.0
## 7890        60 1995    3.0
## 7891       161 1995    4.0
## 7892       173 1995    2.0
## 7893       258 1995    1.0
## 7894       303 1995    3.0
## 7895       329 1994    3.0
## 7896       356 1994    4.0
## 7897       421 1994    2.0
## 7898       466 1993    4.0
## 7899       524 1993    3.0
## 7900       590 1990    3.0
## 7901       592 1989    2.0
## 7902       653 1996    4.0
## 7903       674 1968    3.0
## 7904       688 1995    3.0
## 7905       733 1996    3.0
## 7906       736 1996    4.0
## 7907       750 1964    4.0
## 7908       780 1996    4.0
## 7909       897 1943    4.0
## 7910       912 1942    5.0
## 7911       919 1939    5.0
## 7912       920 1939    4.0
## 7913       952 1956    3.0
## 7914       969 1951    5.0
## 7915       976 1932    4.0
## 7916      1017 1960    3.0
## 7917      1073 1971    5.0
## 7918      1085 1958    5.0
## 7919      1127 1989    4.0
## 7920      1129 1981    3.0
## 7921      1196 1980    4.0
## 7922      1197 1987    4.0
## 7923      1198 1981    5.0
## 7924      1204 1962    5.0
## 7925      1208 1979    4.0
## 7926      1210 1983    3.0
## 7927      1242 1989    4.0
## 7928      1254 1948    4.0
## 7929      1262 1963    5.0
## 7930      1272 1970    5.0
## 7931      1287 1959    5.0
## 7932      1291 1989    5.0
## 7933      1374 1982    3.0
## 7934      1375 1984    4.0
## 7935      1376 1986    4.0
## 7936      1391 1996    3.0
## 7937      1580 1997    3.0
## 7938      1676 1997    2.0
## 7939      1927 1930    4.0
## 7940      2013 1972    1.0
## 7941      2054 1989    2.0
## 7942      2088 1980    2.0
## 7943      2094 1991    2.0
## 7944      2105 1982    3.0
## 7945      2115 1984    5.0
## 7946      2161 1984    4.0
## 7947      2202 1944    5.0
## 7948      2287 1954    5.0
## 7949      2366 1933    3.0
## 7950      2402 1985    2.0
## 7951      2406 1984    4.0
## 7952      2414 1985    3.0
## 7953      2430 1949    5.0
## 7954      2471 1988    4.0
## 7955      2524 1974    2.0
## 7956      2537 1979    1.0
## 7957      2662 1953    4.0
## 7958      2669 1959    3.0
## 7959      2748 1987    3.0
## 7960      2815 1986    1.0
## 7961      2816 1988    1.0
## 7962      2817 1992    1.0
## 7963      2871 1972    3.0
## 7964      2941 1958    3.0
## 7965      2944 1967    4.0
## 7966      2968 1981    4.0
## 7967      2987 1988    5.0
## 7968      3062 1962    4.0
## 7969      3066 1970    3.0
## 7970      3196 1953    4.0
## 7971      3247 1992    3.0
## 7972      3269 1992    2.0
## 7973      3406 1951    4.0
## 7974      3412 1988    3.0
## 7975      3417 1952    5.0
## 7976      3441 1984    2.0
## 7977      3461 1963    2.0
## 7978      3519 1978    2.0
## 7979      3628 1942    4.0
## 7980      3643 1944    4.0
## 7981      3755 2000    4.0
## 7982      3836 1970    3.0
## 7983      3927 1966    3.0
## 7984      3959 1960    4.0
## 7985      4042 1960    3.0
## 7986      4047 1993    5.0
## 7987      5060 1970    4.0
## 7988        10 1995    4.0
## 7989        21 1995    3.0
## 7990        39 1995    2.0
## 7991        47 1995    3.0
## 7992        95 1996    3.0
## 7993       110 1995    4.0
## 7994       150 1995    3.0
## 7995       160 1995    3.0
## 7996       161 1995    4.0
## 7997       165 1995    4.0
## 7998       185 1995    3.0
## 7999       208 1995    3.0
## 8000       231 1994    1.0
## 8001       253 1994    3.0
## 8002       282 1994    3.0
## 8003       292 1995    4.0
## 8004       296 1994    4.0
## 8005       315 1994    3.0
## 8006       316 1994    3.0
## 8007       337 1993    3.0
## 8008       339 1995    4.0
## 8009       344 1994    2.0
## 8010       349 1994    3.0
## 8011       356 1994    4.0
## 8012       357 1994    4.0
## 8013       367 1994    4.0
## 8014       368 1994    4.0
## 8015       377 1994    3.0
## 8016       380 1994    3.0
## 8017       420 1994    3.0
## 8018       434 1993    3.0
## 8019       440 1993    4.0
## 8020       442 1993    3.0
## 8021       454 1993    3.0
## 8022       457 1993    3.0
## 8023       480 1993    4.0
## 8024       509 1993    3.0
## 8025       527 1993    4.0
## 8026       539 1993    3.0
## 8027       553 1993    3.0
## 8028       587 1990    3.0
## 8029       589 1991    5.0
## 8030       590 1990    3.0
## 8031       597 1990    3.0
## 8032       780 1996    4.0
## 8033       786 1996    3.0
## 8034       913 1941    4.0
## 8035      1636 1997    1.0
## 8036      1888 1998    3.0
## 8037      1948 1963    4.0
## 8038      1959 1985    4.0
## 8039      1968 1985    4.0
## 8040      2369 1985    3.0
## 8041      2396 1998    2.0
## 8042      2605 1999    5.0
## 8043      2670 1958    5.0
## 8044      2683 1999    4.0
## 8045      2688 1999    4.0
## 8046      2699 1990    4.0
## 8047      2701 1999    2.0
## 8048      2713 1999    5.0
## 8049      2722 1999    5.0
## 8050      2724 1999    2.0
## 8051      2734 1986    3.0
## 8052      2761 1999    5.0
## 8053      2763 1999    4.0
## 8054      2826 1999    5.0
## 8055      2827 1999    4.0
## 8056      2840 1999    3.0
## 8057      2841 1999    5.0
## 8058      2881 1999    5.0
## 8059      2987 1988    5.0
## 8060      3157 1999    5.0
## 8061      3175 1999    4.0
## 8062      3219 1990    5.0
## 8063      3510 2000    5.0
## 8064      3543 1982    4.0
## 8065       357 1994    4.5
## 8066       365 1993    1.0
## 8067       461 1994    3.5
## 8068       866 1996    4.0
## 8069      1088 1987    4.0
## 8070      1295 1988    4.0
## 8071      1614 1997    4.0
## 8072      1639 1997    1.0
## 8073      1735 1998    5.0
## 8074      1969 1985    0.5
## 8075      2338 1998    1.0
## 8076      2396 1998    4.0
## 8077      2408 1988    0.5
## 8078      2806 1999    1.0
## 8079      2858 1999    4.5
## 8080      3155 1999    4.5
## 8081      3255 1992    4.0
## 8082      3793 2000    3.5
## 8083      3854 1999    5.0
## 8084      3967 2000    5.0
## 8085      3987 2000    1.0
## 8086      3996 2000    5.0
## 8087      4014 2000    5.0
## 8088      4228 2001    2.0
## 8089      4246 2001    5.0
## 8090      4896 2001    5.0
## 8091      4973 2001    5.0
## 8092      5222 2001    3.5
## 8093      5296 2002    2.0
## 8094      5380 2002    4.5
## 8095      5525 2001    4.0
## 8096      5791 2002    4.5
## 8097      5812 2002    4.5
## 8098      5816 2002    4.5
## 8099      5878 2002    4.0
## 8100      5992 2002    5.0
## 8101      6058 2003    1.0
## 8102      6218 2002    4.0
## 8103      6370 2002    4.5
## 8104      6539 2003    3.5
## 8105      6776 2001    3.5
## 8106      6807 1983    5.0
## 8107      6942 2003    4.0
## 8108      7160 2003    4.5
## 8109      7615 1985    4.0
## 8110      8368 2004    5.0
## 8111      8781 2004    3.5
## 8112      8918 2004    3.5
## 8113      8966 2004    4.0
## 8114      8983 2004    3.5
## 8115     27020 1998    5.0
## 8116     27721 2004    5.0
## 8117     30825 2004    3.5
## 8118     31408 2004    4.5
## 8119     37727 2005    2.0
## 8120     38886 2005    2.0
## 8121     39183 2005    4.5
## 8122     40815 2005    5.0
## 8123     41571 2005    3.0
## 8124     43744 2005    4.0
## 8125     44555 2006    4.5
## 8126     45447 2006    3.5
## 8127     50872 2007    3.5
## 8128     51094 2006    3.5
## 8129     52545 2006    4.0
## 8130     54001 2007    5.0
## 8131     55451 2007    4.0
## 8132     60950 2008    2.0
## 8133       111 1976    4.0
## 8134       165 1995    4.0
## 8135       238 1995    1.0
## 8136       392 1993    1.0
## 8137       420 1994    3.0
## 8138       421 1994    1.0
## 8139       484 1994    1.0
## 8140       968 1968    4.0
## 8141      1193 1975    5.0
## 8142      1370 1990    3.0
## 8143      1580 1997    3.0
## 8144      1610 1990    5.0
## 8145      1772 1998    4.0
## 8146      1911 1998    2.0
## 8147      1917 1998    5.0
## 8148      1995 1986    2.0
## 8149      2002 1992    3.0
## 8150      2093 1985    1.0
## 8151      2336 1998    4.0
## 8152      2368 1986    3.0
## 8153      2394 1998    1.0
## 8154      2396 1998    4.0
## 8155      2412 1990    1.0
## 8156      2433 1998    5.0
## 8157      2470 1986    4.0
## 8158      2690 1999    4.0
## 8159      2699 1990    4.0
## 8160      2700 1999    1.0
## 8161      2709 1999    1.0
## 8162      2710 1999    3.0
## 8163      2716 1984    3.0
## 8164      2717 1989    3.0
## 8165      2720 1999    1.0
## 8166      2761 1999    1.0
## 8167      2762 1999    5.0
## 8168      2840 1999    2.0
## 8169      2912 1999    1.0
## 8170      2986 1990    4.0
## 8171      2987 1988    1.0
## 8172      2997 1999    1.0
## 8173      3107 1991    4.0
## 8174      3114 1999    1.0
## 8175      3160 1999    2.0
## 8176      3178 1999    4.0
## 8177      3274 1992    4.0
## 8178      3434 1994    4.0
## 8179       318 1994    4.5
## 8180      1027 1991    4.0
## 8181      1088 1987    5.0
## 8182      1201 1966    4.5
## 8183      1203 1957    4.5
## 8184      1333 1963    2.0
## 8185      1680 1998    4.0
## 8186      2150 1980    4.0
## 8187      2471 1988    2.5
## 8188      2571 1999    3.5
## 8189      2991 1973    3.5
## 8190      3258 1992    4.0
## 8191      3462 1936    3.0
## 8192      3638 1979    4.0
## 8193      3906 2000    4.0
## 8194      4467 1988    0.5
## 8195      4963 2001    4.5
## 8196      5418 2002    4.5
## 8197      6378 2003    4.5
## 8198      8533 2004    4.5
## 8199      8665 2004    4.5
## 8200     26160 1967    3.5
## 8201     26294 1973    4.0
## 8202     30749 2004    3.5
## 8203     33794 2005    1.0
## 8204     44197 2006    4.5
## 8205     44199 2006    5.0
## 8206     48516 2006    4.5
## 8207     48660 2006    1.0
## 8208     48780 2006    5.0
## 8209     48997 2006    2.0
## 8210     54286 2007    4.5
## 8211     55820 2007    1.5
## 8212     56941 2007    5.0
## 8213     58803 2008    4.5
## 8214     60069 2008    5.0
## 8215     68157 2009    4.5
## 8216     69640 2009    3.5
## 8217     71899 2009    4.0
## 8218     77846 1997    5.0
## 8219     78499 2010    4.5
## 8220     79132 2010    2.5
## 8221     91355 2006    3.5
## 8222     96655 2012    5.0
## 8223         1 1995    3.0
## 8224         5 1995    3.0
## 8225         6 1995    5.0
## 8226         7 1995    2.0
## 8227         9 1995    3.0
## 8228        32 1995    4.0
## 8229        65 1996    5.0
## 8230        74 1996    3.0
## 8231        79 1996    3.0
## 8232        95 1996    3.0
## 8233       100 1996    3.0
## 8234       104 1996    5.0
## 8235       112 1995    3.0
## 8236       141 1996    4.0
## 8237       260 1977    5.0
## 8238       376 1994    4.0
## 8239       494 1996    3.0
## 8240       608 1996    3.0
## 8241       609 1996    3.0
## 8242       637 1996    4.0
## 8243       648 1996    5.0
## 8244       653 1996    4.0
## 8245       707 1996    2.0
## 8246       708 1996    3.0
## 8247       719 1996    4.0
## 8248       724 1996    4.0
## 8249       733 1996    4.0
## 8250       736 1996    3.0
## 8251       737 1996    3.0
## 8252       761 1996    2.0
## 8253       780 1996    5.0
## 8254       784 1996    3.0
## 8255       786 1996    4.0
## 8256       788 1996    5.0
## 8257       802 1996    3.0
## 8258       805 1996    5.0
## 8259       832 1996    5.0
## 8260      1073 1971    3.0
## 8261         1 1995    4.0
## 8262        10 1995    4.0
## 8263        16 1995    4.0
## 8264        21 1995    2.0
## 8265        29 1995    4.0
## 8266        39 1995    5.0
## 8267        47 1995    4.0
## 8268        50 1995    4.0
## 8269       101 1996    4.0
## 8270       104 1996    4.0
## 8271       111 1976    4.0
## 8272       147 1995    2.0
## 8273       160 1995    2.0
## 8274       176 1995    4.0
## 8275       216 1995    4.0
## 8276       223 1994    4.0
## 8277       231 1994    2.0
## 8278       246 1994    5.0
## 8279       250 1995    5.0
## 8280       260 1977    2.0
## 8281       292 1995    2.0
## 8282       293 1994    4.0
## 8283       296 1994    4.0
## 8284       318 1994    4.0
## 8285       333 1995    2.0
## 8286       337 1993    4.0
## 8287       342 1994    2.0
## 8288       356 1994    4.0
## 8289       377 1994    4.0
## 8290       441 1993    4.0
## 8291       442 1993    2.0
## 8292       456 1994    4.0
## 8293       457 1993    4.0
## 8294       480 1993    4.0
## 8295       527 1993    4.0
## 8296       529 1993    4.0
## 8297       541 1982    4.0
## 8298       586 1990    4.0
## 8299       593 1991    5.0
## 8300       673 1996    2.0
## 8301       750 1964    2.0
## 8302       778 1996    4.0
## 8303       916 1953    4.0
## 8304       919 1939    5.0
## 8305       922 1950    4.0
## 8306       923 1941    4.0
## 8307       924 1968    2.0
## 8308       926 1950    4.0
## 8309       942 1944    2.0
## 8310       951 1940    4.0
## 8311       953 1946    4.0
## 8312      1036 1988    5.0
## 8313      1060 1996    4.0
## 8314      1073 1971    4.0
## 8315      1089 1992    4.0
## 8316      1094 1992    2.0
## 8317      1095 1992    4.0
## 8318      1097 1982    4.0
## 8319      1120 1996    2.0
## 8320      1136 1975    4.0
## 8321      1172 1989    2.0
## 8322      1193 1975    4.0
## 8323      1196 1980    2.0
## 8324      1197 1987    4.0
## 8325      1198 1981    4.0
## 8326      1201 1966    4.0
## 8327      1206 1971    4.0
## 8328      1207 1962    5.0
## 8329      1208 1979    4.0
## 8330      1209 1968    5.0
## 8331      1210 1983    2.0
## 8332      1213 1990    4.0
## 8333      1222 1987    4.0
## 8334      1225 1984    5.0
## 8335      1226 1952    4.0
## 8336      1228 1980    4.0
## 8337      1230 1977    2.0
## 8338      1235 1971    5.0
## 8339      1240 1984    2.0
## 8340      1244 1979    2.0
## 8341      1247 1967    2.0
## 8342      1250 1957    4.0
## 8343      1252 1974    4.0
## 8344      1256 1933    4.0
## 8345      1258 1980    4.0
## 8346      1259 1986    4.0
## 8347      1263 1978    2.0
## 8348      1265 1993    5.0
## 8349      1266 1992    4.0
## 8350      1270 1985    4.0
## 8351      1283 1952    4.0
## 8352      1285 1989    5.0
## 8353      1288 1984    4.0
## 8354      1291 1989    4.0
## 8355      1302 1989    4.0
## 8356      1304 1969    2.0
## 8357      1307 1989    2.0
## 8358      1358 1996    4.0
## 8359      1380 1978    5.0
## 8360      1387 1975    4.0
## 8361      1393 1996    4.0
## 8362      1449 1996    5.0
## 8363      1466 1997    4.0
## 8364      1608 1997    4.0
## 8365      1617 1997    4.0
## 8366      1673 1997    4.0
## 8367      1676 1997    2.0
## 8368      1682 1998    5.0
## 8369      1704 1997    5.0
## 8370      1721 1997    4.0
## 8371      1732 1998    4.0
## 8372      1784 1997    2.0
## 8373      1907 1998    4.0
## 8374      1923 1998    4.0
## 8375      1947 1961    5.0
## 8376      1952 1969    2.0
## 8377      1953 1971    4.0
## 8378      1954 1976    4.0
## 8379      1957 1981    4.0
## 8380      1958 1983    2.0
## 8381      1961 1988    2.0
## 8382      1968 1985    5.0
## 8383      2000 1987    1.0
## 8384      2005 1985    4.0
## 8385      2006 1998    4.0
## 8386      2011 1989    2.0
## 8387      2028 1998    5.0
## 8388      2042 1994    2.0
## 8389      2052 1993    4.0
## 8390      2060 1998    4.0
## 8391      2072 1989    2.0
## 8392      2082 1992    2.0
## 8393      2115 1984    4.0
## 8394      2144 1984    4.0
## 8395      2186 1951    4.0
## 8396      2194 1987    2.0
## 8397      2248 1989    4.0
## 8398      2253 1992    1.0
## 8399      2300 1968    4.0
## 8400      2321 1998    4.0
## 8401      2324 1997    2.0
## 8402      2329 1998    4.0
## 8403      2395 1998    5.0
## 8404      2420 1984    4.0
## 8405      2502 1999    4.0
## 8406      2542 1998    4.0
## 8407      2572 1999    2.0
## 8408      2599 1999    5.0
## 8409      2617 1999    4.0
## 8410      2694 1999    4.0
## 8411      2700 1999    4.0
## 8412      2716 1984    2.0
## 8413      2746 1986    5.0
## 8414      2761 1999    4.0
## 8415      2791 1980    4.0
## 8416      2797 1988    4.0
## 8417      2804 1983    4.0
## 8418      2858 1999    5.0
## 8419      2863 1964    4.0
## 8420      2918 1986    4.0
## 8421      2925 1970    4.0
## 8422      2947 1964    2.0
## 8423      2951 1964    2.0
## 8424      2953 1992    4.0
## 8425      2959 1999    4.0
## 8426      3034 1973    4.0
## 8427      3039 1983    1.0
## 8428      3072 1987    4.0
## 8429      3079 1999    4.0
## 8430      3086 1934    4.0
## 8431      3089 1948    4.0
## 8432      3098 1984    2.0
## 8433      3104 1988    2.0
## 8434      3114 1999    4.0
## 8435      3152 1971    2.0
## 8436      3160 1999    4.0
## 8437      3210 1982    2.0
## 8438      3253 1992    4.0
## 8439      3255 1992    2.0
## 8440      3268 1992    2.0
## 8441      3360 1986    5.0
## 8442      3361 1988    2.0
## 8443      3365 1956    4.0
## 8444      3421 1978    4.0
## 8445      3424 1989    4.0
## 8446      3468 1961    2.0
## 8447      3480 1986    4.0
## 8448      3489 1991    2.0
## 8449      3504 1976    4.0
## 8450      3552 1980    2.0
## 8451      3606 1949    5.0
## 8452      3608 1985    2.0
## 8453      3653 1966    5.0
## 8454      3671 1974    4.0
## 8455      3683 1984    4.0
## 8456      3751 2000    4.0
## 8457      3783 1998    4.0
## 8458      3791 1984    4.0
## 8459      3868 1988    4.0
## 8460      3897 2000    2.0
## 8461      3916 2000    2.0
## 8462      3972 1994    2.0
## 8463      3988 2000    2.0
## 8464      4016 2000    4.0
## 8465      4022 2000    4.0
## 8466      4027 2000    4.0
## 8467      4034 2000    4.0
## 8468      4054 2001    4.0
## 8469      4085 1984    2.0
## 8470      4091 1987    4.0
## 8471      4102 1987    2.0
## 8472      4226 2000    4.0
## 8473      4262 1983    2.0
## 8474      4306 2001    4.0
## 8475      4370 2001    4.0
## 8476      4406 1962    2.0
## 8477      4447 2001    4.0
## 8478      4571 1989    4.0
## 8479      4649 2001    4.0
## 8480      4771 2001    4.0
## 8481      4776 2001    2.0
## 8482      4816 2001    2.0
## 8483      4848 2001    4.0
## 8484      4878 2001    4.0
## 8485      4881 2001    2.0
## 8486      4886 2001    4.0
## 8487      4896 2001    4.0
## 8488      4973 2001    5.0
## 8489      4993 2001    4.0
## 8490      5103 1993    4.0
## 8491      5377 2002    5.0
## 8492      5401 2002    4.0
## 8493      5418 2002    4.0
## 8494      5445 2002    4.0
## 8495      5673 2002    5.0
## 8496      5785 2002    5.0
## 8497      5816 2002    4.0
## 8498      5902 2002    4.0
## 8499      5952 2002    4.0
## 8500      5970 1991    2.0
## 8501      5995 2002    4.0
## 8502      6003 2002    2.0
## 8503      6016 2002    5.0
## 8504      6188 2003    2.0
## 8505      6373 2003    2.0
## 8506      6377 2003    4.0
## 8507      6618 2001    2.0
## 8508      6732 1969    5.0
## 8509      6796 1991    4.0
## 8510      6863 2003    5.0
## 8511      6867 2003    4.0
## 8512      6870 2003    2.0
## 8513      6873 2003    2.0
## 8514      6874 2003    4.0
## 8515      6932 2003    4.0
## 8516      6936 2003    4.0
## 8517      6942 2003    2.0
## 8518      6978 1991    2.0
## 8519      7018 1990    2.0
## 8520      7022 2000    1.0
## 8521      7036 1985    2.0
## 8522      7072 1939    4.0
## 8523      7132 1935    4.0
## 8524      7147 2003    4.0
## 8525      7153 2003    4.0
## 8526      7263 2004    4.0
## 8527      7361 2004    5.0
## 8528      7438 2004    4.0
## 8529      7451 2004    5.0
## 8530      8360 2004    4.0
## 8531      8368 2004    4.0
## 8532      8376 2004    4.0
## 8533      8528 2004    2.0
## 8534      8641 2004    4.0
## 8535      8665 2004    4.0
## 8536      8784 2004    2.0
## 8537      8807 2004    4.0
## 8538      8874 2004    5.0
## 8539      8914 2004    2.0
## 8540      8917 2004    4.0
## 8541      8961 2004    4.0
## 8542      8972 2004    2.0
## 8543     26084 1962    5.0
## 8544     26471 1983    2.0
## 8545     27253 2000    4.0
## 8546     27773 2003    5.0
## 8547     32587 2005    4.0
## 8548     32598 2005    2.0
## 8549     33166 2004    2.0
## 8550     33495 2005    4.0
## 8551     33660 2005    4.0
## 8552     33794 2005    4.0
## 8553     33880 2005    2.0
## 8554     34162 2005    4.0
## 8555     34528 2005    4.0
## 8556     35836 2005    5.0
## 8557     37733 2005    2.0
## 8558     38038 2005    4.0
## 8559     38061 2005    4.0
## 8560     38886 2005    4.0
## 8561     39292 2005    4.0
## 8562     40629 2005    5.0
## 8563     40815 2005    4.0
## 8564     41566 2005    4.0
## 8565     44191 2006    4.0
## 8566     44199 2006    2.0
## 8567     46578 2006    5.0
## 8568     46948 2006    4.0
## 8569     46970 2006    4.0
## 8570     47099 2006    2.0
## 8571     48322 2006    5.0
## 8572     48516 2006    4.0
## 8573     48698 2006    5.0
## 8574     48982 2006    4.0
## 8575     49272 2006    5.0
## 8576     50514 2006    4.0
## 8577     50872 2007    4.0
## 8578     51255 2007    5.0
## 8579     51540 2007    4.0
## 8580     51662 2007    2.0
## 8581     52245 2007    4.0
## 8582     52435 1966    4.0
## 8583     53123 2006    4.0
## 8584     53125 2007    2.0
## 8585     54001 2007    4.0
## 8586     54256 2007    5.0
## 8587     54286 2007    4.0
## 8588     54503 2007    5.0
## 8589     54881 2007    5.0
## 8590     55052 2007    2.0
## 8591     55118 2007    2.0
## 8592     55247 2007    2.0
## 8593     55765 2007    2.0
## 8594     55805 2007    4.0
## 8595     55820 2007    5.0
## 8596     56174 2007    2.0
## 8597     56333 2007    4.0
## 8598     56367 2007    5.0
## 8599     56757 2007    4.0
## 8600     56782 2007    5.0
## 8601     57532 2008    1.0
## 8602     57669 2008    5.0
## 8603     58025 2008    1.0
## 8604     58559 2008    5.0
## 8605     59118 2008    4.0
## 8606     59315 2008    2.0
## 8607     59369 2008    2.0
## 8608     60684 2009    2.0
## 8609     60756 2008    4.0
## 8610     60950 2008    4.0
## 8611     61024 2008    4.0
## 8612     61132 2008    4.0
## 8613     63082 2008    4.0
## 8614     63113 2008    2.0
## 8615     63131 2008    5.0
## 8616     64969 2008    4.0
## 8617     64983 2008    2.0
## 8618     65188 2008    5.0
## 8619     67087 2009    5.0
## 8620     67734 2009    4.0
## 8621     67997 2009    4.0
## 8622     68157 2009    4.0
## 8623     68954 2009    4.0
## 8624     69122 2009    4.0
## 8625     69306 2009    2.0
## 8626     69844 2009    4.0
## 8627     70286 2009    4.0
## 8628     70293 2009    4.0
## 8629     70728 2009    4.0
## 8630     71264 2009    5.0
## 8631     71466 2009    4.0
## 8632     71535 2009    4.0
## 8633     71579 2009    4.0
## 8634     72011 2009    4.0
## 8635     72171 2009    5.0
## 8636     72226 2009    5.0
## 8637     72720 2009    2.0
## 8638     73023 2009    4.0
## 8639     74275 2009    4.0
## 8640     74416 2009    4.0
## 8641     74754 2003    5.0
## 8642     74916 2010    4.0
## 8643     76111 2009    4.0
## 8644     76251 2010    4.0
## 8645     78499 2010    5.0
## 8646     79091 2010    4.0
## 8647     79132 2010    5.0
## 8648     79592 2010    4.0
## 8649     79677 2010    5.0
## 8650     79702 2010    5.0
## 8651     80463 2010    4.0
## 8652     80549 2010    4.0
## 8653     81156 2010    5.0
## 8654     81562 2010    4.0
## 8655     81591 2010    5.0
## 8656     81834 2010    4.0
## 8657     83086 2010    1.0
## 8658     83976 2010    4.0
## 8659     84116 2010    4.0
## 8660     85414 2011    4.0
## 8661     85438 2011    5.0
## 8662     86000 2010    5.0
## 8663     86884 2011    4.0
## 8664     86911 2011    2.0
## 8665     87232 2011    2.0
## 8666     87304 2010    4.0
## 8667     87522 2011    1.0
## 8668     87869 2011    2.0
## 8669     88125 2011    4.0
## 8670     88744 2011    4.0
## 8671     88810 2011    2.0
## 8672     88812 2011    2.0
## 8673     89492 2011    4.0
## 8674     89759 2011    4.0
## 8675     90374 2011    4.0
## 8676     90376 2011    4.0
## 8677     90600 2011    4.0
## 8678     90947 2011    4.0
## 8679     91199 2011    4.0
## 8680     91529 2012    2.0
## 8681     92420 2012    4.0
## 8682     93270 2012    1.0
## 8683     93422 2011    4.0
## 8684     93443 2011    5.0
## 8685     93510 2012    5.0
## 8686     93512 2012    4.0
## 8687     93721 2011    4.0
## 8688     94896 2011    4.0
## 8689     94959 2012    4.0
## 8690     95088 2012    4.0
## 8691     95441 2012    2.0
## 8692     95510 2012    4.0
## 8693     96079 2012    5.0
## 8694     96110 2012    1.0
## 8695     96467 2012    5.0
## 8696     96728 2012    5.0
## 8697     96829 2012    5.0
## 8698     96911 2012    4.0
## 8699     97306 2012    4.0
## 8700     97836 2012    1.0
## 8701     97866 2012    4.0
## 8702     97921 2012    2.0
## 8703     97923 2012    2.0
## 8704     97938 2012    4.0
## 8705     99114 2012    4.0
## 8706     99117 2012    2.0
## 8707     99764 2012    5.0
## 8708     99917 2013    2.0
## 8709    100272 2012    4.0
## 8710    100556 2012    5.0
## 8711    101577 2013    1.0
## 8712    102123 2013    5.0
## 8713    102800 2012    4.0
## 8714    102993 2013    4.0
## 8715    103141 2013    4.0
## 8716    103279 2012    4.0
## 8717    103624 2013    4.0
## 8718    103688 2013    2.0
## 8719    104944 2013    4.0
## 8720    105197 2013    4.0
## 8721    105429 2013    4.0
## 8722    105715 2010    2.0
## 8723    105844 2013    4.0
## 8724    106062 2013    2.0
## 8725    106100 2013    4.0
## 8726    106144 2013    4.0
## 8727    106332 2013    4.0
## 8728    106438 2013    4.0
## 8729    106916 2013    2.0
## 8730    106920 2013    5.0
## 8731    107141 2013    2.0
## 8732    107348 2013    4.0
## 8733    107978 2013    5.0
## 8734    108156 2014    2.0
## 8735    108932 2014    4.0
## 8736    110461 2013    4.0
## 8737    111362 2014    2.0
## 8738    111617 2014    1.0
## 8739    112138 2014    5.0
## 8740    112183 2014    4.0
## 8741    112421 2014    4.0
## 8742    112515 2014    5.0
## 8743    112552 2014    5.0
## 8744    112556 2014    2.0
## 8745    112852 2014    2.0
## 8746    113064 2014    4.0
## 8747    113453 2014    1.0
## 8748    113705 2014    2.0
## 8749    113829 2014    4.0
## 8750    113862 2014    4.0
## 8751    114074 2014    2.0
## 8752    114342 2014    4.0
## 8753    114635 2014    4.0
## 8754    115569 2014    4.0
## 8755    116797 2014    4.0
## 8756    122882 2015    5.0
## 8757    122886 2015    2.0
## 8758    127108 2015    5.0
## 8759    127152 2015    5.0
## 8760    127198 2015    4.0
## 8761    127206 2015    2.0
## 8762    128360 2015    4.0
## 8763    128620 2015    5.0
## 8764    131168 2014    4.0
## 8765    133771 2015    5.0
## 8766    134170 2015    2.0
## 8767    134853 2015    5.0
## 8768    136864 2016    2.0
## 8769    139116 2014    5.0
## 8770    139385 2015    4.0
## 8771    139757 2015    5.0
## 8772    140715 2015    2.0
## 8773    141890 2015    4.0
## 8774    142422 2015    4.0
## 8775    142488 2015    4.0
## 8776    146656 2015    5.0
## 8777    148626 2015    2.0
## 8778    148881 2015    5.0
## 8779    152081 2016    4.0
## 8780    155392 2016    4.0
## 8781    156609 2016    4.0
## 8782    160590 2013    5.0
## 8783        11 1995    5.0
## 8784        17 1995    5.0
## 8785        21 1995    4.0
## 8786        34 1995    5.0
## 8787       110 1995    5.0
## 8788       151 1995    5.0
## 8789       163 1995    4.0
## 8790       164 1995    3.0
## 8791       260 1977    4.0
## 8792       265 1992    5.0
## 8793       293 1994    5.0
## 8794       318 1994    5.0
## 8795       337 1993    5.0
## 8796       350 1994    2.0
## 8797       356 1994    3.0
## 8798       357 1994    5.0
## 8799       380 1994    4.0
## 8800       440 1993    4.0
## 8801       468 1995    4.0
## 8802       497 1993    5.0
## 8803       509 1993    5.0
## 8804       527 1993    5.0
## 8805       534 1993    5.0
## 8806       538 1993    5.0
## 8807       555 1993    4.0
## 8808       590 1990    5.0
## 8809       592 1989    3.0
## 8810       608 1996    5.0
## 8811       635 1996    5.0
## 8812       648 1996    3.0
## 8813       728 1995    5.0
## 8814       800 1996    5.0
## 8815       858 1972    5.0
## 8816       914 1964    5.0
## 8817       921 1982    4.0
## 8818      1007 1975    3.0
## 8819      1009 1975    4.0
## 8820      1028 1964    4.0
## 8821      1035 1965    5.0
## 8822      1036 1988    4.0
## 8823      1073 1971    4.0
## 8824      1079 1988    5.0
## 8825      1080 1979    4.0
## 8826      1081 1982    4.0
## 8827      1088 1987    4.0
## 8828      1091 1989    2.0
## 8829      1092 1992    2.0
## 8830      1094 1992    5.0
## 8831      1097 1982    5.0
## 8832      1101 1986    5.0
## 8833      1124 1981    4.0
## 8834      1125 1975    4.0
## 8835      1127 1989    5.0
## 8836      1128 1980    2.0
## 8837      1129 1981    3.0
## 8838      1130 1980    4.0
## 8839      1135 1980    4.0
## 8840      1136 1975    5.0
## 8841      1148 1993    5.0
## 8842      1185 1989    5.0
## 8843      1186 1989    4.0
## 8844      1193 1975    5.0
## 8845      1194 1978    4.0
## 8846      1196 1980    4.0
## 8847      1197 1987    5.0
## 8848      1198 1981    5.0
## 8849      1200 1986    3.0
## 8850      1208 1979    3.0
## 8851      1214 1979    3.0
## 8852      1220 1980    4.0
## 8853      1221 1974    5.0
## 8854      1222 1987    5.0
## 8855      1224 1989    5.0
## 8856      1225 1984    5.0
## 8857      1227 1984    4.0
## 8858      1234 1973    5.0
## 8859      1240 1984    3.0
## 8860      1242 1989    5.0
## 8861      1243 1990    5.0
## 8862      1246 1989    5.0
## 8863      1252 1974    5.0
## 8864      1258 1980    5.0
## 8865      1259 1986    4.0
## 8866      1263 1978    5.0
## 8867      1265 1993    4.0
## 8868      1270 1985    3.0
## 8869      1272 1970    3.0
## 8870      1275 1986    3.0
## 8871      1278 1974    5.0
## 8872      1286 1980    5.0
## 8873      1288 1984    3.0
## 8874      1291 1989    5.0
## 8875      1296 1986    5.0
## 8876      1299 1984    5.0
## 8877      1302 1989    4.0
## 8878      1307 1989    5.0
## 8879      1321 1981    5.0
## 8880      1323 1983    2.0
## 8881      1326 1982    1.0
## 8882      1327 1979    4.0
## 8883      1345 1976    5.0
## 8884      1346 1982    4.0
## 8885      1347 1984    4.0
## 8886      1350 1976    5.0
## 8887      1357 1996    5.0
## 8888      1358 1996    5.0
## 8889      1378 1988    4.0
## 8890      1380 1978    4.0
## 8891      1387 1975    5.0
## 8892      1393 1996    4.0
## 8893      1394 1987    5.0
## 8894      1408 1992    4.0
## 8895      1422 1997    3.0
## 8896      1459 1997    4.0
## 8897      1476 1997    4.0
## 8898      1587 1982    3.0
## 8899      1589 1997    5.0
## 8900      1597 1997    4.0
## 8901      1617 1997    4.0
## 8902      1625 1997    3.0
## 8903      1641 1997    5.0
## 8904      1645 1997    4.0
## 8905      1663 1981    4.0
## 8906      1674 1985    5.0
## 8907      1704 1997    5.0
## 8908      1719 1997    5.0
## 8909      1721 1997    3.0
## 8910      1732 1998    3.0
## 8911      1754 1998    3.0
## 8912      1784 1997    5.0
## 8913      1892 1998    5.0
## 8914      1909 1998    2.0
## 8915      1914 1998    5.0
## 8916      1917 1998    1.0
## 8917      1918 1998    3.0
## 8918      1923 1998    5.0
## 8919      1947 1961    5.0
## 8920      1951 1968    4.0
## 8921      1953 1971    5.0
## 8922      1954 1976    4.0
## 8923      1955 1979    4.0
## 8924      1956 1980    4.0
## 8925      1957 1981    5.0
## 8926      1958 1983    4.0
## 8927      1961 1988    5.0
## 8928      1962 1989    5.0
## 8929      1964 1971    5.0
## 8930      1967 1986    3.0
## 8931      1968 1985    4.0
## 8932      1974 1980    2.0
## 8933      1975 1981    2.0
## 8934      1977 1984    1.0
## 8935      1978 1985    1.0
## 8936      1979 1986    1.0
## 8937      1981 1989    1.0
## 8938      1982 1978    4.0
## 8939      1983 1981    3.0
## 8940      1984 1982    1.0
## 8941      1987 1980    2.0
## 8942      1994 1982    4.0
## 8943      1995 1986    3.0
## 8944      1996 1988    2.0
## 8945      1997 1973    4.0
## 8946      2000 1987    5.0
## 8947      2001 1989    4.0
## 8948      2003 1984    3.0
## 8949      2005 1985    3.0
## 8950      2006 1998    5.0
## 8951      2009 1973    3.0
## 8952      2013 1972    4.0
## 8953      2020 1988    5.0
## 8954      2027 1998    2.0
## 8955      2028 1998    5.0
## 8956      2037 1977    4.0
## 8957      2044 1981    3.0
## 8958      2054 1989    3.0
## 8959      2070 1983    4.0
## 8960      2088 1980    2.0
## 8961      2097 1983    3.0
## 8962      2100 1984    4.0
## 8963      2109 1979    4.0
## 8964      2110 1982    4.0
## 8965      2111 1983    3.0
## 8966      2114 1983    5.0
## 8967      2115 1984    4.0
## 8968      2118 1983    2.0
## 8969      2121 1983    3.0
## 8970      2122 1984    1.0
## 8971      2125 1998    4.0
## 8972      2130 1980    4.0
## 8973      2143 1985    3.0
## 8974      2144 1984    3.0
## 8975      2153 1998    1.0
## 8976      2161 1984    3.0
## 8977      2163 1978    2.0
## 8978      2174 1988    5.0
## 8979      2178 1972    4.0
## 8980      2193 1988    5.0
## 8981      2194 1987    5.0
## 8982      2240 1980    4.0
## 8983      2245 1988    4.0
## 8984      2268 1992    4.0
## 8985      2288 1982    4.0
## 8986      2291 1990    4.0
## 8987      2300 1968    3.0
## 8988      2301 1981    3.0
## 8989      2302 1992    5.0
## 8990      2313 1980    5.0
## 8991      5060 1970    4.0
## 8992        11 1995    5.0
## 8993        19 1995    1.0
## 8994       150 1995    5.0
## 8995       344 1994    1.0
## 8996       410 1993    3.0
## 8997       415 1993    2.0
## 8998       616 1970    4.0
## 8999       748 1996    4.0
## 9000       909 1960    2.0
## 9001       924 1968    5.0
## 9002       940 1938    2.0
## 9003       952 1956    2.0
## 9004       965 1935    5.0
## 9005       969 1951    5.0
## 9006       999 1996    2.0
## 9007      1007 1975    2.0
## 9008      1019 1954    4.0
## 9009      1021 1994    4.0
## 9010      1127 1989    2.0
## 9011      1200 1986    4.0
## 9012      1203 1957    5.0
## 9013      1214 1979    4.0
## 9014      1225 1984    5.0
## 9015      1230 1977    2.0
## 9016      1269 1944    5.0
## 9017      1320 1992    3.0
## 9018      1321 1981    4.0
## 9019      1367 1996    4.0
## 9020      1459 1997    4.0
## 9021      1499 1997    1.0
## 9022      1517 1997    1.0
## 9023      1608 1997    5.0
## 9024      1690 1997    4.0
## 9025      1784 1997    2.0
## 9026      1917 1998    4.0
## 9027      1927 1930    5.0
## 9028      2015 1961    3.0
## 9029      2016 1979    2.0
## 9030      2072 1989    2.0
## 9031      2085 1961    3.0
## 9032      2124 1991    3.0
## 9033      2133 1987    4.0
## 9034      2153 1998    2.0
## 9035      2163 1978    4.0
## 9036      2180 1966    4.0
## 9037      2202 1944    5.0
## 9038      2311 1984    5.0
## 9039      2475 1986    3.0
## 9040      2505 1999    4.0
## 9041      2520 1970    2.0
## 9042      2522 1977    2.0
## 9043      2551 1988    2.0
## 9044      2683 1999    1.0
## 9045      2788 1971    5.0
## 9046      2791 1980    5.0
## 9047      2792 1982    5.0
## 9048      2817 1992    2.0
## 9049      2827 1999    3.0
## 9050      2846 1986    4.0
## 9051      3070 1984    4.0
## 9052      3153 1958    2.0
## 9053      3251 1985    5.0
## 9054      3420 1979    5.0
## 9055      3421 1978    5.0
## 9056      3510 2000    5.0
## 9057      3524 1981    4.0
## 9058      3535 2000    1.0
## 9059      3555 2000    5.0
## 9060      3649 1980    3.0
## 9061      3672 1974    1.0
## 9062      3701 1988    5.0
## 9063      3706 1987    4.0
## 9064      3710 1988    3.0
## 9065        11 1995    2.5
## 9066        32 1995    4.5
## 9067        50 1995    5.0
## 9068       111 1976    2.5
## 9069       150 1995    4.0
## 9070       223 1994    3.5
## 9071       231 1994    2.0
## 9072       292 1995    1.0
## 9073       296 1994    4.0
## 9074       300 1994    4.5
## 9075       318 1994    2.5
## 9076       367 1994    1.5
## 9077       380 1994    0.5
## 9078       410 1993    1.5
## 9079       412 1993    4.0
## 9080       480 1993    4.5
## 9081       527 1993    4.5
## 9082       541 1982    5.0
## 9083       586 1990    0.5
## 9084       590 1990    3.5
## 9085       593 1991    3.5
## 9086       720 1996    4.5
## 9087       745 1995    5.0
## 9088       858 1972    5.0
## 9089       912 1942    4.0
## 9090       919 1939    1.5
## 9091      1136 1975    4.0
## 9092      1148 1993    5.0
## 9093      1193 1975    3.5
## 9094      1213 1990    3.5
## 9095      1221 1974    5.0
## 9096      1356 1996    0.5
## 9097      1673 1997    4.0
## 9098      1722 1997    1.5
## 9099      1923 1998    3.0
## 9100      1961 1988    3.5
## 9101      1968 1985    2.5
## 9102      2028 1998    1.5
## 9103      2105 1982    1.0
## 9104      2161 1984    0.5
## 9105      2167 1998    4.0
## 9106      2193 1988    0.5
## 9107      2194 1987    3.5
## 9108      2302 1992    3.5
## 9109      2329 1998    4.0
## 9110      2396 1998    3.5
## 9111      2470 1986    0.5
## 9112      2542 1998    2.0
## 9113      2617 1999    4.0
## 9114      2640 1978    1.0
## 9115      2671 1999    1.5
## 9116      2683 1999    1.5
## 9117      2692 1998    4.0
## 9118      2716 1984    2.0
## 9119      2763 1999    1.5
## 9120      2797 1988    3.0
## 9121      2858 1999    4.0
## 9122      2959 1999    4.0
## 9123      2997 1999    1.5
## 9124      3253 1992    4.0
## 9125      3578 2000    4.0
## 9126      3623 2000    1.0
## 9127      3751 2000    4.0
## 9128      3911 2000    3.5
## 9129      3948 2000    0.5
## 9130      4306 2001    1.5
## 9131      4993 2001    4.5
## 9132      5060 1970    3.5
## 9133      5349 2002    3.0
## 9134      5952 2002    5.0
## 9135      6787 1976    5.0
## 9136      7040 1985    4.0
## 9137      7153 2003    5.0
## 9138      7361 2004    4.0
## 9139      8961 2004    5.0
## 9140     26695 1990    3.5
## 9141     33794 2005    2.0
## 9142     34153 2005    4.0
## 9143        16 1995    4.5
## 9144        21 1995    3.0
## 9145       111 1976    4.5
## 9146       163 1995    4.0
## 9147       173 1995    3.5
## 9148       235 1994    5.0
## 9149       466 1993    4.0
## 9150       541 1982    5.0
## 9151       608 1996    4.0
## 9152       653 1996    2.5
## 9153       720 1996    4.0
## 9154       745 1995    3.5
## 9155       858 1972    5.0
## 9156      1080 1979    4.5
## 9157      1090 1986    4.0
## 9158      1208 1979    4.5
## 9159      1209 1968    4.0
## 9160      1219 1960    4.5
## 9161      1221 1974    5.0
## 9162      1380 1978    1.5
## 9163      1485 1997    2.5
## 9164      1653 1997    5.0
## 9165      1673 1997    4.5
## 9166      1732 1998    5.0
## 9167      2012 1990    4.0
## 9168      2115 1984    3.5
## 9169      2174 1988    4.0
## 9170      2324 1997    5.0
## 9171      2640 1978    4.0
## 9172      2710 1999    4.5
## 9173      2797 1988    4.0
## 9174      3018 1985    3.5
## 9175      3160 1999    3.5
## 9176      3608 1985    4.0
## 9177      3726 1976    3.0
## 9178      3949 2000    5.0
## 9179      4973 2001    4.5
## 9180      5060 1970    5.0
## 9181      5618 2001    4.0
## 9182      5690 1988    5.0
## 9183      5945 2002    4.0
## 9184      5952 2002    3.0
## 9185      5959 2002    4.5
## 9186      5995 2002    5.0
## 9187      6350 1986    5.0
## 9188      6502 2002    4.5
## 9189      6957 2003    3.0
## 9190      7361 2004    5.0
## 9191      7387 1978    4.5
## 9192      8638 2004    5.0
## 9193      8981 2004    5.0
## 9194     27773 2003    4.5
## 9195     27801 2003    3.0
## 9196     27803 2004    5.0
## 9197     30749 2004    5.0
## 9198         2 1995    3.5
## 9199        34 1995    2.0
## 9200        48 1995    2.5
## 9201        50 1995    5.0
## 9202       104 1996    4.0
## 9203       158 1995    1.5
## 9204       231 1994    4.0
## 9205       317 1994    3.5
## 9206       364 1994    3.5
## 9207       500 1993    4.0
## 9208       551 1993    1.5
## 9209       585 1995    3.5
## 9210       586 1990    3.0
## 9211       587 1990    5.0
## 9212       588 1992    3.0
## 9213       592 1989    5.0
## 9214       593 1991    3.0
## 9215       594 1937    3.5
## 9216       595 1991    2.5
## 9217       596 1940    2.0
## 9218       616 1970    1.5
## 9219       661 1996    2.5
## 9220       673 1996    2.0
## 9221       801 1996    2.5
## 9222       919 1939    3.0
## 9223       953 1946    3.5
## 9224      1010 1969    3.0
## 9225      1022 1950    3.0
## 9226      1028 1964    3.5
## 9227      1029 1941    2.5
## 9228      1035 1965    4.0
## 9229      1059 1996    3.0
## 9230      1073 1971    2.0
## 9231      1097 1982    3.5
## 9232      1136 1975    5.0
## 9233      1197 1987    5.0
## 9234      1207 1962    2.5
## 9235      1220 1980    3.5
## 9236      1367 1996    2.5
## 9237      1380 1978    3.5
## 9238      1500 1997    4.5
## 9239      1580 1997    3.5
## 9240      1777 1998    2.0
## 9241      1907 1998    4.0
## 9242      1954 1976    2.0
## 9243      1968 1985    5.0
## 9244      2018 1942    2.5
## 9245      2054 1989    2.5
## 9246      2078 1967    1.5
## 9247      2080 1955    2.5
## 9248      2081 1989    3.5
## 9249      2085 1961    2.5
## 9250      2087 1953    3.0
## 9251      2123 1989    2.5
## 9252      2144 1984    3.0
## 9253      2161 1984    2.0
## 9254      2174 1988    2.0
## 9255      2273 1998    3.0
## 9256      2300 1968    5.0
## 9257      2355 1998    3.5
## 9258      2384 1998    2.0
## 9259      2502 1999    5.0
## 9260      2571 1999    4.0
## 9261      2572 1999    4.0
## 9262      2716 1984    3.0
## 9263      2761 1999    3.0
## 9264      2804 1983    1.0
## 9265      2857 1968    4.0
## 9266      2918 1986    4.5
## 9267      2953 1992    3.0
## 9268      3114 1999    1.0
## 9269      3668 1968    2.5
## 9270      3751 2000    1.5
## 9271      3988 2000    3.0
## 9272      4016 2000    1.5
## 9273      4025 2000    2.5
## 9274      4232 2001    3.5
## 9275      4246 2001    3.5
## 9276      4306 2001    3.5
## 9277      4333 1987    5.0
## 9278      4701 2001    2.5
## 9279      4886 2001    3.0
## 9280      4890 2001    3.5
## 9281      4896 2001    3.0
## 9282      4993 2001    5.0
## 9283      5299 2002    3.5
## 9284      5349 2002    4.5
## 9285      5444 2002    1.0
## 9286      5449 2002    3.5
## 9287      5459 2002    3.0
## 9288      5481 2002    1.5
## 9289      5618 2001    5.0
## 9290      5693 1977    3.5
## 9291      5816 2002    3.0
## 9292      5952 2002    5.0
## 9293      5971 1988    5.0
## 9294      6218 2002    2.5
## 9295      6350 1986    5.0
## 9296      6373 2003    3.5
## 9297      6377 2003    3.0
## 9298      6539 2003    1.5
## 9299      6743 1942    2.5
## 9300      6863 2003    4.5
## 9301      6936 2003    3.0
## 9302      7004 1990    4.0
## 9303      7153 2003    5.0
## 9304      7161 2003    2.0
## 9305      7451 2004    4.0
## 9306      8360 2004    2.0
## 9307      8368 2004    2.5
## 9308      8376 2004    0.5
## 9309      8464 2004    3.0
## 9310      8544 1972    3.5
## 9311      8961 2004    4.0
## 9312      8970 2004    2.5
## 9313     26662 1989    5.0
## 9314     27706 2004    3.5
## 9315     30793 2005    1.5
## 9316     33004 2005    2.0
## 9317     33615 2005    2.5
## 9318     33660 2005    2.0
## 9319     33679 2005    4.0
## 9320     33794 2005    5.0
## 9321     34150 2005    2.5
## 9322     34162 2005    4.0
## 9323     40629 2005    3.0
## 9324     40815 2005    4.0
## 9325     41566 2005    2.5
## 9326     44191 2006    5.0
## 9327     44195 2006    4.5
## 9328     45431 2006    1.0
## 9329     45517 2006    2.5
## 9330     45720 2006    4.0
## 9331     45722 2006    3.5
## 9332     46578 2006    5.0
## 9333     46970 2006    4.0
## 9334     46972 2006    4.0
## 9335     46976 2006    3.5
## 9336     47610 2006    2.5
## 9337     48394 2006    4.5
## 9338     48780 2006    5.0
## 9339     50872 2007    4.0
## 9340     52973 2007    4.5
## 9341     53121 2007    3.0
## 9342     53125 2007    1.0
## 9343     53322 2007    4.0
## 9344     53464 2007    2.5
## 9345     53996 2007    5.0
## 9346     54001 2007    2.5
## 9347     54272 2007    2.5
## 9348     55566 2007    4.0
## 9349     55830 2008    2.5
## 9350     56030 2007    3.5
## 9351     56171 2007    4.0
## 9352     56174 2007    4.5
## 9353     56367 2007    4.5
## 9354     56757 2007    3.0
## 9355     57640 2008    2.5
## 9356     57669 2008    4.5
## 9357     58025 2008    3.0
## 9358     58559 2008    5.0
## 9359     58998 2008    5.0
## 9360     59315 2008    4.0
## 9361     60069 2008    5.0
## 9362     60074 2008    3.0
## 9363     60126 2008    4.0
## 9364       111 1976    4.0
## 9365       260 1977    4.0
## 9366       318 1994    3.5
## 9367      1196 1980    5.0
## 9368      1210 1983    4.0
## 9369      1270 1985    4.5
## 9370      2028 1998    4.5
## 9371      2918 1986    4.5
## 9372      2959 1999    5.0
## 9373      4226 2000    4.0
## 9374      5418 2002    4.0
## 9375      6016 2002    4.0
## 9376      8665 2004    4.5
## 9377     48774 2006    4.0
## 9378     49530 2006    3.5
## 9379     54286 2007    4.0
## 9380     58559 2008    5.0
## 9381     68157 2009    4.5
## 9382     68237 2009    4.5
## 9383     69481 2008    3.5
## 9384     70286 2009    4.0
## 9385     70862 2008    4.0
## 9386     79132 2010    5.0
## 9387     81591 2010    4.0
## 9388     85414 2011    4.0
## 9389     91535 2012    3.0
## 9390     92259 2011    3.0
## 9391     97304 2012    4.0
## 9392    101864 2013    3.5
## 9393    101947 2011    3.5
## 9394    103228 2013    4.0
## 9395    104374 2013    5.0
## 9396    104841 2013    4.0
## 9397    106782 2013    4.5
## 9398    106920 2013    4.0
## 9399    109487 2014    4.5
## 9400    111759 2014    4.0
## 9401    112183 2014    3.0
## 9402    112290 2014    4.0
## 9403    112552 2014    4.0
## 9404    114662 2014    3.0
## 9405    115149 2014    3.0
## 9406    115569 2014    3.5
## 9407    115713 2015    4.0
## 9408    119145 2015    4.5
## 9409    120637 2015    1.5
## 9410    122882 2015    5.0
## 9411    122900 2015    3.5
## 9412    134130 2015    5.0
## 9413    134853 2015    5.0
## 9414    139644 2015    4.5
## 9415    146656 2015    4.0
## 9416    160438 2016    4.0
## 9417         1 1995    5.0
## 9418        11 1995    3.5
## 9419        16 1995    5.0
## 9420        58 1994    0.5
## 9421       112 1995    3.0
## 9422       150 1995    4.0
## 9423       151 1995    0.5
## 9424       246 1994    0.5
## 9425       260 1977    5.0
## 9426       315 1994    1.0
## 9427       318 1994    5.0
## 9428       380 1994    3.5
## 9429       432 1994    4.0
## 9430       457 1993    3.0
## 9431       480 1993    4.5
## 9432       515 1993    1.0
## 9433       520 1993    3.0
## 9434       592 1989    5.0
## 9435       593 1991    4.5
## 9436       720 1996    4.0
## 9437       832 1996    2.5
## 9438      1015 1993    1.5
## 9439      1059 1996    4.0
## 9440      1080 1979    4.5
## 9441      1105 1996    0.5
## 9442      1193 1975    5.0
## 9443      1198 1981    5.0
## 9444      1214 1979    5.0
## 9445      1221 1974    5.0
## 9446      1230 1977    1.5
## 9447      1234 1973    1.0
## 9448      1259 1986    5.0
## 9449      1304 1969    4.0
## 9450      1307 1989    2.0
## 9451      1356 1996    5.0
## 9452      1372 1991    3.0
## 9453      1374 1982    4.0
## 9454      1376 1986    3.5
## 9455      1408 1992    4.5
## 9456      1474 1997    1.0
## 9457      1513 1997    1.0
## 9458      1517 1997    4.0
## 9459      1573 1997    4.0
## 9460      1610 1990    4.5
## 9461      1639 1997    5.0
## 9462      1641 1997    3.0
## 9463      1917 1998    4.0
## 9464      1954 1976    4.5
## 9465      1961 1988    3.5
## 9466      2004 1990    4.5
## 9467      2046 1986    4.5
## 9468      2116 1978    2.5
## 9469      2174 1988    1.0
## 9470      2268 1992    4.0
## 9471      2302 1992    2.0
## 9472      2393 1998    4.5
## 9473      2571 1999    4.5
## 9474      2628 1999    4.5
## 9475      2640 1978    4.5
## 9476      2699 1990    4.0
## 9477      2710 1999    4.0
## 9478      2762 1999    3.0
## 9479      2791 1980    4.0
## 9480      2797 1988    5.0
## 9481      2858 1999    5.0
## 9482      2918 1986    5.0
## 9483      2959 1999    4.5
## 9484      2987 1988    4.5
## 9485      2997 1999    4.0
## 9486      3114 1999    5.0
## 9487      3176 1999    5.0
## 9488      3328 1999    4.0
## 9489      3408 2000    2.0
## 9490      3471 1977    4.0
## 9491      3481 2000    5.0
## 9492      3578 2000    5.0
## 9493      3751 2000    2.0
## 9494      3793 2000    4.5
## 9495      3868 1988    4.5
## 9496      3869 1991    4.5
## 9497      3897 2000    4.0
## 9498      3996 2000    4.0
## 9499      4022 2000    2.5
## 9500      4306 2001    5.0
## 9501      4367 2001    4.0
## 9502      4369 2001    4.5
## 9503      4446 2001    4.0
## 9504      4846 1993    5.0
## 9505      4993 2001    5.0
## 9506      5349 2002    5.0
## 9507      5952 2002    5.0
## 9508      6333 2003    5.0
## 9509      6541 2003    2.5
## 9510      6711 2003    5.0
## 9511      6863 2003    4.0
## 9512      7153 2003    5.0
## 9513      7318 2004    3.5
## 9514       110 1995    4.0
## 9515       150 1995    3.0
## 9516       153 1995    5.0
## 9517       165 1995    3.0
## 9518       168 1995    3.0
## 9519       231 1994    3.0
## 9520       253 1994    5.0
## 9521       266 1994    5.0
## 9522       296 1994    5.0
## 9523       318 1994    5.0
## 9524       329 1994    4.0
## 9525       344 1994    2.0
## 9526       349 1994    4.0
## 9527       356 1994    4.0
## 9528       380 1994    4.0
## 9529       434 1993    4.0
## 9530       457 1993    4.0
## 9531       590 1990    5.0
## 9532       592 1989    4.0
## 9533       593 1991    5.0
## 9534       595 1991    3.0
## 9535       260 1977    4.0
## 9536       858 1972    5.0
## 9537       909 1960    5.0
## 9538       920 1939    2.0
## 9539       924 1968    4.0
## 9540      1077 1973    5.0
## 9541      1078 1971    5.0
## 9542      1084 1967    5.0
## 9543      1210 1983    2.0
## 9544      1221 1974    4.0
## 9545      1230 1977    5.0
## 9546      1238 1983    2.0
## 9547      1256 1933    4.0
## 9548      1270 1985    3.0
## 9549      1278 1974    5.0
## 9550      1288 1984    3.0
## 9551      1292 1979    5.0
## 9552      1299 1984    5.0
## 9553      1304 1969    4.0
## 9554      1952 1969    4.0
## 9555      1956 1980    3.0
## 9556      2064 1989    5.0
## 9557      2289 1992    4.0
## 9558      2863 1964    5.0
## 9559      2871 1972    4.0
## 9560      2971 1979    5.0
## 9561      5060 1970    5.0
## 9562        21 1995    4.0
## 9563        22 1995    2.0
## 9564       105 1995    2.0
## 9565       110 1995    4.0
## 9566       260 1977    5.0
## 9567       356 1994    4.0
## 9568       377 1994    4.0
## 9569       457 1993    4.0
## 9570       480 1993    5.0
## 9571       589 1991    5.0
## 9572       593 1991    4.0
## 9573       608 1996    4.0
## 9574       832 1996    4.0
## 9575       858 1972    5.0
## 9576       908 1959    4.0
## 9577      1036 1988    5.0
## 9578      1092 1992    4.0
## 9579      1129 1981    4.0
## 9580      1179 1990    4.0
## 9581      1196 1980    4.0
## 9582      1198 1981    5.0
## 9583      1200 1986    3.0
## 9584      1203 1957    5.0
## 9585      1240 1984    5.0
## 9586      1249 1990    4.0
## 9587      1270 1985    4.0
## 9588      1275 1986    3.0
## 9589      1573 1997    3.0
## 9590      1580 1997    3.0
## 9591      1625 1997    4.0
## 9592      1732 1998    2.0
## 9593      1954 1976    5.0
## 9594      2000 1987    5.0
## 9595      2058 1998    4.0
## 9596      2117 1984    5.0
## 9597      2194 1987    5.0
## 9598      2268 1992    4.0
## 9599      2391 1998    3.0
## 9600      2455 1986    3.0
## 9601      2456 1989    2.0
## 9602      2571 1999    3.0
## 9603      2605 1999    4.0
## 9604      2858 1999    4.0
## 9605      2947 1964    5.0
## 9606      2985 1987    4.0
## 9607      3527 1987    3.0
## 9608      3633 1969    5.0
## 9609      3763 1986    5.0
## 9610      3957 1971    3.0
## 9611         1 1995    3.0
## 9612         6 1995    5.0
## 9613        12 1995    3.0
## 9614        16 1995    4.0
## 9615        17 1995    4.0
## 9616        18 1995    4.0
## 9617        28 1995    5.0
## 9618        34 1995    5.0
## 9619        42 1995    3.0
## 9620        43 1995    4.0
## 9621        60 1995    4.0
## 9622        62 1995    3.0
## 9623        86 1996    5.0
## 9624        88 1996    3.0
## 9625        94 1996    3.0
## 9626        95 1996    1.0
## 9627       104 1996    3.0
## 9628       107 1996    3.0
## 9629       110 1995    5.0
## 9630       112 1995    3.0
## 9631       141 1996    1.0
## 9632       151 1995    5.0
## 9633       198 1995    4.0
## 9634       238 1995    3.0
## 9635       260 1977    4.0
## 9636       265 1992    5.0
## 9637       266 1994    3.0
## 9638       272 1994    5.0
## 9639       277 1994    4.0
## 9640       279 1995    5.0
## 9641       280 1995    5.0
## 9642       282 1994    5.0
## 9643       288 1994    4.0
## 9644       293 1994    4.0
## 9645       294 1995    3.0
## 9646       296 1994    5.0
## 9647       314 1994    5.0
## 9648       316 1994    3.0
## 9649       318 1994    5.0
## 9650       337 1993    4.0
## 9651       350 1994    3.0
## 9652       353 1994    5.0
## 9653       356 1994    4.0
## 9654       362 1994    1.0
## 9655       364 1994    5.0
## 9656       368 1994    3.0
## 9657       383 1994    4.0
## 9658       412 1993    5.0
## 9659       431 1993    4.0
## 9660       434 1993    2.0
## 9661       452 1994    5.0
## 9662       454 1993    2.0
## 9663       457 1993    4.0
## 9664       474 1993    3.0
## 9665       475 1993    5.0
## 9666       480 1993    5.0
## 9667       491 1993    4.0
## 9668       493 1993    4.0
## 9669       509 1993    5.0
## 9670       515 1993    5.0
## 9671       524 1993    3.0
## 9672       531 1993    5.0
## 9673       541 1982    4.0
## 9674       553 1993    4.0
## 9675       586 1990    4.0
## 9676       587 1990    3.0
## 9677       589 1991    4.0
## 9678       590 1990    5.0
## 9679       592 1989    3.0
## 9680       593 1991    5.0
## 9681       595 1991    4.0
## 9682       597 1990    5.0
## 9683       609 1996    3.0
## 9684       610 1981    4.0
## 9685       613 1996    4.0
## 9686       616 1970    4.0
## 9687       628 1996    3.0
## 9688       631 1996    3.0
## 9689       637 1996    3.0
## 9690       648 1996    3.0
## 9691       650 1996    5.0
## 9692       653 1996    3.0
## 9693       664 1996    3.0
## 9694       694 1996    3.0
## 9695       707 1996    4.0
## 9696       708 1996    3.0
## 9697       709 1988    4.0
## 9698       711 1996    3.0
## 9699       719 1996    1.0
## 9700       724 1996    3.0
## 9701       733 1996    4.0
## 9702       736 1996    4.0
## 9703       743 1996    2.0
## 9704       780 1996    4.0
## 9705       784 1996    3.0
## 9706       788 1996    3.0
## 9707       849 1996    3.0
## 9708       852 1996    3.0
## 9709      1027 1991    4.0
## 9710      1035 1965    3.0
## 9711      1073 1971    4.0
## 9712      1084 1967    4.0
## 9713      1097 1982    5.0
## 9714         1 1995    4.0
## 9715         2 1995    3.0
## 9716        11 1995    3.5
## 9717       150 1995    4.0
## 9718       260 1977    3.0
## 9719       317 1994    3.0
## 9720       318 1994    4.0
## 9721       356 1994    4.0
## 9722       367 1994    3.0
## 9723       380 1994    4.0
## 9724       454 1993    4.0
## 9725       457 1993    4.0
## 9726       468 1995    3.0
## 9727       480 1993    4.0
## 9728       500 1993    4.0
## 9729       527 1993    3.5
## 9730       539 1993    3.5
## 9731       541 1982    3.5
## 9732       586 1990    3.5
## 9733       587 1990    4.0
## 9734       590 1990    3.5
## 9735       592 1989    3.5
## 9736       597 1990    3.0
## 9737       778 1996    2.5
## 9738       780 1996    3.5
## 9739       904 1954    4.0
## 9740       908 1959    4.0
## 9741       912 1942    4.0
## 9742       914 1964    4.0
## 9743       933 1955    3.5
## 9744       934 1950    3.5
## 9745       953 1946    4.0
## 9746      1035 1965    4.0
## 9747      1073 1971    3.0
## 9748      1097 1982    4.0
## 9749      1185 1989    3.5
## 9750      1196 1980    4.5
## 9751      1197 1987    3.5
## 9752      1198 1981    4.0
## 9753      1200 1986    3.5
## 9754      1231 1983    4.0
## 9755      1265 1993    4.5
## 9756      1270 1985    4.0
## 9757      1278 1974    4.0
## 9758      1291 1989    4.5
## 9759      1292 1979    4.0
## 9760      1302 1989    4.5
## 9761      1376 1986    4.0
## 9762      1393 1996    4.0
## 9763      1409 1996    3.5
## 9764      1580 1997    4.0
## 9765      1608 1997    4.0
## 9766      1721 1997    3.0
## 9767      1923 1998    4.0
## 9768      1951 1968    4.0
## 9769      1959 1985    4.5
## 9770      2174 1988    4.0
## 9771      2384 1998    2.5
## 9772      2420 1984    3.5
## 9773      2468 1986    4.0
## 9774      2469 1986    3.5
## 9775      2716 1984    4.0
## 9776      2746 1986    3.5
## 9777      2762 1999    4.0
## 9778      2779 1978    3.5
## 9779      2791 1980    3.5
## 9780      2797 1988    3.5
## 9781      2918 1986    4.5
## 9782      2968 1981    1.0
## 9783      3072 1987    3.5
## 9784      3148 1999    1.5
## 9785      3247 1992    3.0
## 9786      3510 2000    4.5
## 9787      3578 2000    2.5
## 9788      3699 1984    4.0
## 9789      3755 2000    3.0
## 9790      4187 1963    4.0
## 9791      4306 2001    4.5
## 9792      4886 2001    3.5
## 9793      4963 2001    3.5
## 9794      4992 2001    3.5
## 9795      4993 2001    5.0
## 9796      4995 2001    4.0
## 9797      5218 2002    3.5
## 9798      5299 2002    3.5
## 9799      5349 2002    4.0
## 9800      5418 2002    3.5
## 9801      5816 2002    4.0
## 9802      5952 2002    5.0
## 9803      5989 2002    4.0
## 9804      5995 2002    1.5
## 9805      6218 2002    3.5
## 9806      6297 2003    3.5
## 9807      6373 2003    3.0
## 9808      6377 2003    3.0
## 9809      6539 2003    4.0
## 9810      6863 2003    3.5
## 9811      6874 2003    1.0
## 9812      7147 2003    3.5
## 9813      7153 2003    5.0
## 9814      7361 2004    3.0
## 9815      8360 2004    4.5
## 9816      8529 2004    3.0
## 9817      8623 1987    4.0
## 9818      8636 2004    4.0
## 9819      8865 2004    3.5
## 9820      8961 2004    4.0
## 9821      8972 2004    4.0
## 9822     26025 1957    3.5
## 9823     26562 1985    4.0
## 9824     30707 2004    2.5
## 9825     30749 2004    3.0
## 9826     30812 2004    3.0
## 9827     31374 1954    4.0
## 9828     31658 2004    3.5
## 9829     31685 2005    4.0
## 9830     33004 2005    2.5
## 9831     45431 2006    3.5
## 9832     45517 2006    3.5
## 9833     45668 2006    3.5
## 9834     46976 2006    3.5
## 9835     54259 2007    3.5
## 9836     56367 2007    4.5
## 9837         1 1995    5.0
## 9838         2 1995    3.5
## 9839         5 1995    5.0
## 9840        19 1995    4.0
## 9841        34 1995    4.0
## 9842        39 1995    4.5
## 9843        48 1995    4.5
## 9844       104 1996    4.0
## 9845       158 1995    3.0
## 9846       231 1994    4.0
## 9847       262 1995    4.0
## 9848       296 1994    3.5
## 9849       318 1994    5.0
## 9850       344 1994    4.0
## 9851       356 1994    5.0
## 9852       357 1994    5.0
## 9853       364 1994    5.0
## 9854       374 1994    3.5
## 9855       410 1993    3.5
## 9856       500 1993    3.5
## 9857       527 1993    5.0
## 9858       586 1990    4.5
## 9859       587 1990    5.0
## 9860       595 1991    4.0
## 9861       596 1940    3.0
## 9862       597 1990    4.5
## 9863       788 1996    2.0
## 9864       919 1939    4.5
## 9865       934 1950    5.0
## 9866      1020 1993    4.5
## 9867      1028 1964    3.0
## 9868      1035 1965    4.5
## 9869      1073 1971    4.5
## 9870      1193 1975    5.0
## 9871      1265 1993    4.5
## 9872      1270 1985    5.0
## 9873      1513 1997    3.5
## 9874      1682 1998    5.0
## 9875      1704 1997    5.0
## 9876      1721 1997    4.5
## 9877      1954 1976    3.5
## 9878      1968 1985    4.5
## 9879      2011 1989    4.5
## 9880      2012 1990    4.5
## 9881      2028 1998    4.5
## 9882      2054 1989    2.5
## 9883      2059 1998    3.5
## 9884      2136 1963    1.0
## 9885      2240 1980    4.5
## 9886      2302 1992    4.5
## 9887      2321 1998    4.0
## 9888      2355 1998    4.5
## 9889      2379 1985    3.5
## 9890      2706 1999    4.0
## 9891      2918 1986    5.0
## 9892      2987 1988    4.5
## 9893      3114 1999    5.0
## 9894      3253 1992    4.5
## 9895      3668 1968    2.5
## 9896      3791 1984    4.0
## 9897      3821 2000    0.5
## 9898      3948 2000    3.5
## 9899      3977 2000    3.5
## 9900      4254 2001    3.5
## 9901      4306 2001    5.0
## 9902      4878 2001    3.5
## 9903      4886 2001    5.0
## 9904      4896 2001    4.5
## 9905      4993 2001    5.0
## 9906      5308 1987    4.0
## 9907      5349 2002    3.5
## 9908      5816 2002    4.5
## 9909      5952 2002    5.0
## 9910      6377 2003    5.0
## 9911      6539 2003    4.0
## 9912      7153 2003    5.0
## 9913      7361 2004    4.5
## 9914      8961 2004    4.0
## 9915     58047 2008    3.0
## 9916     68554 2009    4.5
## 9917     69757 2009    5.0
## 9918         1 1995    5.0
## 9919         3 1995    5.0
## 9920         5 1995    5.0
## 9921         7 1995    3.0
## 9922         9 1995    3.0
## 9923        12 1995    3.0
## 9924        14 1995    3.0
## 9925        17 1995    4.0
## 9926        25 1995    5.0
## 9927        26 1995    5.0
## 9928        32 1995    4.0
## 9929        36 1995    4.0
## 9930        52 1995    4.0
## 9931        58 1994    5.0
## 9932        61 1996    4.0
## 9933        62 1995    5.0
## 9934        63 1996    4.0
## 9935        65 1996    3.0
## 9936        76 1995    4.0
## 9937        79 1996    4.0
## 9938        81 1995    4.0
## 9939        82 1995    4.0
## 9940        86 1996    4.0
## 9941        88 1996    3.0
## 9942        92 1996    5.0
## 9943        95 1996    5.0
## 9944       100 1996    4.0
## 9945       104 1996    3.0
## 9946       107 1996    5.0
## 9947       112 1995    5.0
## 9948       135 1996    4.0
## 9949       141 1996    5.0
## 9950       376 1994    4.0
## 9951       494 1996    3.0
## 9952       608 1996    5.0
## 9953       609 1996    5.0
## 9954       613 1996    5.0
## 9955       628 1996    5.0
## 9956       631 1996    5.0
## 9957       637 1996    3.0
## 9958       640 1996    3.0
## 9959       648 1996    3.0
## 9960       653 1996    5.0
## 9961       661 1996    5.0
## 9962       663 1996    3.0
## 9963       667 1996    5.0
## 9964       671 1996    3.0
## 9965       673 1996    3.0
## 9966       694 1996    5.0
## 9967       704 1996    4.0
## 9968       707 1996    5.0
## 9969       708 1996    5.0
## 9970       711 1996    4.0
## 9971       719 1996    4.0
## 9972       724 1996    3.0
## 9973       733 1996    5.0
## 9974       736 1996    4.0
## 9975       737 1996    3.0
## 9976       743 1996    3.0
## 9977       745 1995    4.0
## 9978       748 1996    3.0
## 9979       761 1996    3.0
## 9980       762 1996    4.0
## 9981       780 1996    4.0
## 9982       784 1996    3.0
## 9983       785 1996    5.0
## 9984       786 1996    5.0
## 9985       788 1996    5.0
## 9986       799 1996    4.0
## 9987       802 1996    5.0
## 9988       805 1996    5.0
## 9989       810 1996    3.0
## 9990       832 1996    5.0
## 9991       839 1996    5.0
## 9992       849 1996    5.0
## 9993       852 1996    5.0
## 9994       880 1996    4.0
## 9995       891 1995    4.0
## 9996      1059 1996    5.0
## 9997      1061 1996    5.0
## 9998      1073 1971    5.0
## 9999      1356 1996    5.0
## 10000     1367 1996    5.0
## 10001      581 1995    4.0
## 10002      589 1991    3.0
## 10003      908 1959    5.0
## 10004     1171 1992    5.0
## 10005     1259 1986    4.0
## 10006     1284 1946    5.0
## 10007     1617 1997    5.0
## 10008     1673 1997    4.0
## 10009     1957 1981    4.0
## 10010     2858 1999    5.0
## 10011     3098 1984    4.0
## 10012     3125 1999    4.0
## 10013     3160 1999    5.0
## 10014     3422 1986    3.0
## 10015     3481 2000    4.0
## 10016     3626 1999    4.0
## 10017     3920 1993    5.0
## 10018     3925 1984    5.0
## 10019     3930 1954    4.0
## 10020     3932 1933    4.0
## 10021     3963 1964    3.0
## 10022     3965 1946    4.0
## 10023     3966 1945    5.0
## 10024        1 1995    3.5
## 10025        2 1995    2.5
## 10026       47 1995    3.5
## 10027       50 1995    4.0
## 10028      110 1995    3.5
## 10029      150 1995    3.5
## 10030      260 1977    3.0
## 10031      296 1994    4.0
## 10032      318 1994    4.0
## 10033      356 1994    4.0
## 10034      480 1993    3.0
## 10035      527 1993    4.0
## 10036      541 1982    4.0
## 10037      593 1991    3.5
## 10038      608 1996    4.0
## 10039      778 1996    4.0
## 10040      858 1972    4.5
## 10041      912 1942    3.5
## 10042      924 1968    4.0
## 10043     1036 1988    3.0
## 10044     1196 1980    3.0
## 10045     1200 1986    3.0
## 10046     1206 1971    4.0
## 10047     1208 1979    4.0
## 10048     1213 1990    4.0
## 10049     1221 1974    4.0
## 10050     1222 1987    4.0
## 10051     1246 1989    3.5
## 10052     1258 1980    4.0
## 10053     1270 1985    3.0
## 10054     1682 1998    3.5
## 10055     1961 1988    3.5
## 10056     2006 1998    2.5
## 10057     2028 1998    3.5
## 10058     2324 1997    4.0
## 10059     2395 1998    3.5
## 10060     2571 1999    3.5
## 10061     2628 1999    3.0
## 10062     2692 1998    3.5
## 10063     2762 1999    4.0
## 10064     2858 1999    4.0
## 10065     2918 1986    3.0
## 10066     2959 1999    4.0
## 10067     3114 1999    3.0
## 10068     3481 2000    3.0
## 10069     3578 2000    3.0
## 10070     3717 2000    1.5
## 10071     3753 2000    2.5
## 10072     3793 2000    3.0
## 10073     3897 2000    3.0
## 10074     3949 2000    3.5
## 10075     3996 2000    3.5
## 10076     4011 2000    3.5
## 10077     4018 2000    3.0
## 10078     4022 2000    4.0
## 10079     4025 2000    1.5
## 10080     4027 2000    3.5
## 10081     4226 2000    4.0
## 10082     4246 2001    2.5
## 10083     4262 1983    4.0
## 10084     4306 2001    3.0
## 10085     4447 2001    3.0
## 10086     4720 2001    3.5
## 10087     4878 2001    4.0
## 10088     4886 2001    3.0
## 10089     4963 2001    3.0
## 10090     4973 2001    3.5
## 10091     4979 2001    3.5
## 10092     4993 2001    3.0
## 10093     4995 2001    3.5
## 10094     5218 2002    2.5
## 10095     5349 2002    3.0
## 10096     5378 2002    3.0
## 10097     5418 2002    3.0
## 10098     5445 2002    3.5
## 10099     5679 2002    3.0
## 10100     5903 2002    2.5
## 10101     5952 2002    3.0
## 10102     5989 2002    3.5
## 10103     5995 2002    3.5
## 10104     6333 2003    2.5
## 10105     6377 2003    3.0
## 10106     6502 2002    3.5
## 10107     6539 2003    3.0
## 10108     6711 2003    4.0
## 10109     6863 2003    3.0
## 10110     6874 2003    3.5
## 10111     6934 2003    2.0
## 10112     7143 2003    3.0
## 10113     7147 2003    3.5
## 10114     7153 2003    3.0
## 10115     7254 2004    3.0
## 10116     7361 2004    3.5
## 10117     7438 2004    3.0
## 10118     7458 2004    2.5
## 10119     7502 2001    3.5
## 10120     8644 2004    3.0
## 10121     8874 2004    3.0
## 10122     8950 2004    3.5
## 10123     8961 2004    2.0
## 10124    31696 2005    3.0
## 10125    33794 2005    3.0
## 10126    36529 2005    3.5
## 10127    41566 2005    3.0
## 10128    44191 2006    3.5
## 10129    44195 2006    3.5
## 10130    45447 2006    2.5
## 10131    46578 2006    3.0
## 10132    47610 2006    3.0
## 10133    48385 2006    3.0
## 10134    48394 2006    3.5
## 10135    48516 2006    3.5
## 10136    49272 2006    3.0
## 10137    50872 2007    4.0
## 10138    51255 2007    3.0
## 10139    51540 2007    3.0
## 10140    51662 2007    3.0
## 10141    52281 2007    3.5
## 10142    52722 2007    1.5
## 10143    52973 2007    2.5
## 10144    53000 2007    3.5
## 10145    53125 2007    3.0
## 10146    53322 2007    2.5
## 10147    53519 2007    3.5
## 10148    53972 2007    3.0
## 10149    53996 2007    2.0
## 10150    54001 2007    2.5
## 10151    54259 2007    3.0
## 10152    54272 2007    3.5
## 10153    54286 2007    3.0
## 10154    54503 2007    3.0
## 10155    54997 2007    3.5
## 10156    55247 2007    3.5
## 10157    55269 2007    3.5
## 10158    55765 2007    3.0
## 10159    55820 2007    5.0
## 10160    56174 2007    3.0
## 10161    56367 2007    4.0
## 10162    56757 2007    3.5
## 10163    56782 2007    4.0
## 10164    58559 2008    3.5
## 10165    59315 2008    3.0
## 10166    60069 2008    4.0
## 10167    61323 2008    3.5
## 10168    64957 2008    3.5
## 10169    68157 2009    3.5
## 10170    68319 2009    2.0
## 10171    68358 2009    3.0
## 10172    68954 2009    4.0
## 10173    69122 2009    2.0
## 10174    72998 2009    2.0
## 10175    74458 2010    3.0
## 10176    79132 2010    3.5
## 10177    79702 2010    3.0
## 10178    81562 2010    3.5
## 10179    81591 2010    3.5
## 10180    82459 2010    3.5
## 10181    86882 2011    3.5
## 10182    88140 2011    3.0
## 10183    88744 2011    3.5
## 10184    89492 2011    3.5
## 10185    89745 2012    2.5
## 10186    91529 2012    3.0
## 10187    92259 2011    4.0
## 10188    94959 2012    4.0
## 10189    97752 2012    2.5
## 10190    97938 2012    3.0
## 10191    99114 2012    3.5
## 10192   102445 2013    3.0
## 10193   103249 2013    2.5
## 10194   104374 2013    3.5
## 10195   104841 2013    3.5
## 10196   105844 2013    3.5
## 10197   106100 2013    3.5
## 10198   106920 2013    4.0
## 10199   109487 2014    3.5
## 10200   112552 2014    3.5
## 10201   112852 2014    3.0
## 10202   114662 2014    1.0
## 10203   115713 2015    3.5
## 10204   116797 2014    3.5
## 10205   117176 2014    3.5
## 10206   122882 2015    4.0
## 10207   122886 2015    3.0
## 10208   122904 2016    3.0
## 10209   122920 2016    3.0
## 10210   134130 2015    3.5
## 10211   136864 2016    1.0
## 10212   139385 2015    3.5
## 10213   142488 2015    3.0
## 10214   156607 2016    2.0
## 10215        1 1995    5.0
## 10216        2 1995    2.5
## 10217        6 1995    4.5
## 10218       10 1995    3.0
## 10219       15 1995    2.5
## 10220       16 1995    4.0
## 10221       19 1995    1.5
## 10222       21 1995    3.5
## 10223       25 1995    4.5
## 10224       31 1995    3.5
## 10225       32 1995    5.0
## 10226       34 1995    2.5
## 10227       36 1995    4.5
## 10228       39 1995    4.0
## 10229       44 1995    3.0
## 10230       47 1995    5.0
## 10231       48 1995    2.0
## 10232       50 1995    5.0
## 10233       60 1995    2.0
## 10234       63 1996    3.5
## 10235       65 1996    2.0
## 10236       69 1995    4.0
## 10237       70 1996    3.5
## 10238       98 1994    3.0
## 10239      101 1996    3.5
## 10240      104 1996    2.5
## 10241      107 1996    3.0
## 10242      110 1995    4.0
## 10243      111 1976    3.5
## 10244      112 1995    3.5
## 10245      145 1995    3.0
## 10246      147 1995    4.5
## 10247      150 1995    3.5
## 10248      153 1995    1.0
## 10249      158 1995    2.0
## 10250      160 1995    3.0
## 10251      163 1995    3.5
## 10252      165 1995    3.5
## 10253      168 1995    2.5
## 10254      169 1995    0.5
## 10255      172 1995    3.5
## 10256      173 1995    3.0
## 10257      175 1995    4.5
## 10258      177 1995    3.0
## 10259      180 1995    3.5
## 10260      185 1995    2.5
## 10261      193 1995    3.0
## 10262      198 1995    4.0
## 10263      208 1995    3.0
## 10264      215 1995    5.0
## 10265      216 1995    4.0
## 10266      223 1994    4.5
## 10267      231 1994    3.5
## 10268      233 1994    4.0
## 10269      235 1994    4.0
## 10270      239 1995    3.0
## 10271      246 1994    4.5
## 10272      247 1994    4.0
## 10273      253 1994    3.5
## 10274      256 1994    2.5
## 10275      258 1995    2.0
## 10276      260 1977    4.5
## 10277      266 1994    4.0
## 10278      267 1995    3.0
## 10279      288 1994    3.5
## 10280      292 1995    3.0
## 10281      293 1994    5.0
## 10282      296 1994    5.0
## 10283      300 1994    4.0
## 10284      316 1994    3.0
## 10285      318 1994    5.0
## 10286      319 1994    4.0
## 10287      322 1995    4.5
## 10288      327 1995    2.5
## 10289      333 1995    2.0
## 10290      337 1993    3.5
## 10291      338 1995    3.0
## 10292      344 1994    2.0
## 10293      349 1994    3.0
## 10294      352 1994    3.5
## 10295      353 1994    4.0
## 10296      356 1994    5.0
## 10297      364 1994    5.0
## 10298      367 1994    2.0
## 10299      368 1994    3.0
## 10300      374 1994    2.5
## 10301      377 1994    3.0
## 10302      380 1994    3.0
## 10303      407 1995    3.5
## 10304      409 1994    2.5
## 10305      410 1993    2.5
## 10306      413 1994    2.5
## 10307      428 1993    4.0
## 10308      431 1993    3.5
## 10309      435 1993    2.5
## 10310      441 1993    3.5
## 10311      442 1993    3.5
## 10312      456 1994    4.0
## 10313      457 1993    4.0
## 10314      466 1993    2.5
## 10315      471 1994    4.0
## 10316      474 1993    3.5
## 10317      480 1993    4.0
## 10318      481 1993    3.5
## 10319      482 1994    4.0
## 10320      485 1993    3.0
## 10321      493 1993    4.0
## 10322      497 1993    3.5
## 10323      500 1993    3.5
## 10324      502 1994    3.0
## 10325      507 1993    3.5
## 10326      508 1993    4.0
## 10327      510 1993    0.5
## 10328      514 1994    3.5
## 10329      520 1993    4.0
## 10330      522 1992    3.0
## 10331      527 1993    5.0
## 10332      541 1982    4.5
## 10333      551 1993    3.5
## 10334      553 1993    4.0
## 10335      555 1993    4.0
## 10336      575 1994    3.5
## 10337      585 1995    2.5
## 10338      586 1990    3.5
## 10339      588 1992    5.0
## 10340      589 1991    3.0
## 10341      590 1990    4.5
## 10342      592 1989    4.0
## 10343      593 1991    4.5
## 10344      594 1937    3.5
## 10345      595 1991    4.5
## 10346      596 1940    3.5
## 10347      597 1990    3.0
## 10348      608 1996    4.0
## 10349      610 1981    1.5
## 10350      628 1996    4.5
## 10351      631 1996    3.0
## 10352      648 1996    3.0
## 10353      653 1996    2.5
## 10354      673 1996    3.0
## 10355      694 1996    3.0
## 10356      704 1996    3.0
## 10357      708 1996    2.5
## 10358      719 1996    2.5
## 10359      733 1996    3.0
## 10360      735 1994    4.0
## 10361      736 1996    1.5
## 10362      737 1996    2.5
## 10363      741 1995    4.0
## 10364      742 1996    2.5
## 10365      745 1995    4.0
## 10366      748 1996    3.5
## 10367      761 1996    2.5
## 10368      778 1996    5.0
## 10369      780 1996    3.5
## 10370      784 1996    1.0
## 10371      785 1996    3.5
## 10372      786 1996    2.0
## 10373      788 1996    2.5
## 10374      799 1996    3.5
## 10375      802 1996    3.0
## 10376      832 1996    2.5
## 10377      849 1996    3.5
## 10378      858 1972    5.0
## 10379      880 1996    2.5
## 10380      904 1954    4.5
## 10381      909 1960    4.0
## 10382      919 1939    4.0
## 10383      924 1968    1.5
## 10384      940 1938    4.5
## 10385      968 1968    4.0
## 10386     1015 1993    3.5
## 10387     1020 1993    3.0
## 10388     1022 1950    3.5
## 10389     1025 1963    3.5
## 10390     1027 1991    3.5
## 10391     1029 1941    3.0
## 10392     1032 1951    3.0
## 10393     1033 1981    3.5
## 10394     1036 1988    4.5
## 10395     1049 1996    3.5
## 10396     1059 1996    3.5
## 10397     1060 1996    4.0
## 10398     1061 1996    4.0
## 10399     1080 1979    4.5
## 10400     1089 1992    3.5
## 10401     1090 1986    5.0
## 10402     1093 1991    2.0
## 10403     1094 1992    3.5
## 10404     1097 1982    4.0
## 10405     1101 1986    3.5
## 10406     1120 1996    3.5
## 10407     1127 1989    4.0
## 10408     1129 1981    4.0
## 10409     1136 1975    3.0
## 10410     1148 1993    4.0
## 10411     1185 1989    4.0
## 10412     1186 1989    3.5
## 10413     1193 1975    4.5
## 10414     1194 1978    4.0
## 10415     1196 1980    5.0
## 10416     1197 1987    5.0
## 10417     1198 1981    5.0
## 10418     1199 1985    4.5
## 10419     1200 1986    5.0
## 10420     1201 1966    5.0
## 10421     1203 1957    4.5
## 10422     1204 1962    5.0
## 10423     1206 1971    4.5
## 10424     1208 1979    5.0
## 10425     1210 1983    5.0
## 10426     1213 1990    5.0
## 10427     1214 1979    5.0
## 10428     1215 1993    4.5
## 10429     1218 1989    4.5
## 10430     1220 1980    3.5
## 10431     1221 1974    5.0
## 10432     1222 1987    4.5
## 10433     1225 1984    3.0
## 10434     1228 1980    4.5
## 10435     1240 1984    4.5
## 10436     1241 1992    4.0
## 10437     1242 1989    3.5
## 10438     1245 1990    4.0
## 10439     1246 1989    3.5
## 10440     1252 1974    4.0
## 10441     1255 1987    4.5
## 10442     1257 1985    4.0
## 10443     1258 1980    4.0
## 10444     1259 1986    3.5
## 10445     1261 1987    4.5
## 10446     1262 1963    4.0
## 10447     1263 1978    4.0
## 10448     1265 1993    4.0
## 10449     1266 1992    4.5
## 10450     1270 1985    5.0
## 10451     1274 1988    4.5
## 10452     1275 1986    4.0
## 10453     1282 1940    4.0
## 10454     1285 1989    3.5
## 10455     1288 1984    2.5
## 10456     1291 1989    5.0
## 10457     1293 1982    4.5
## 10458     1298 1982    1.5
## 10459     1299 1984    3.5
## 10460     1302 1989    2.0
## 10461     1320 1992    3.5
## 10462     1321 1981    3.0
## 10463     1339 1992    3.0
## 10464     1342 1992    3.0
## 10465     1343 1991    4.0
## 10466     1345 1976    4.0
## 10467     1347 1984    3.5
## 10468     1350 1976    3.0
## 10469     1356 1996    3.5
## 10470     1358 1996    4.0
## 10471     1359 1996    2.0
## 10472     1367 1996    2.5
## 10473     1370 1990    3.0
## 10474     1372 1991    3.5
## 10475     1374 1982    4.0
## 10476     1377 1992    3.5
## 10477     1380 1978    4.0
## 10478     1387 1975    4.0
## 10479     1391 1996    3.0
## 10480     1393 1996    4.0
## 10481     1394 1987    4.0
## 10482     1396 1992    4.0
## 10483     1405 1996    3.5
## 10484     1407 1996    4.0
## 10485     1408 1992    3.0
## 10486     1438 1997    2.5
## 10487     1456 1997    1.0
## 10488     1464 1997    3.5
## 10489     1466 1997    4.0
## 10490     1479 1997    2.5
## 10491     1485 1997    3.5
## 10492     1499 1997    2.0
## 10493     1500 1997    4.0
## 10494     1515 1997    3.0
## 10495     1517 1997    3.5
## 10496     1527 1997    3.5
## 10497     1544 1997    3.0
## 10498     1552 1997    2.5
## 10499     1562 1997    0.5
## 10500     1566 1997    4.0
## 10501     1573 1997    3.5
## 10502     1580 1997    3.0
## 10503     1584 1997    3.0
## 10504     1587 1982    4.0
## 10505     1590 1997    4.5
## 10506     1591 1997    3.0
## 10507     1595 1997    0.5
## 10508     1597 1997    3.5
## 10509     1599 1997    1.0
## 10510     1603 1997    2.5
## 10511     1608 1997    3.5
## 10512     1617 1997    4.5
## 10513     1625 1997    4.0
## 10514     1639 1997    3.5
## 10515     1644 1997    1.5
## 10516     1645 1997    3.0
## 10517     1653 1997    3.5
## 10518     1673 1997    4.0
## 10519     1674 1985    3.5
## 10520     1676 1997    3.0
## 10521     1681 1997    1.5
## 10522     1682 1998    4.5
## 10523     1690 1997    2.0
## 10524     1704 1997    4.0
## 10525     1707 1997    1.5
## 10526     1721 1997    0.5
## 10527     1729 1997    3.5
## 10528     1732 1998    4.0
## 10529     1748 1998    4.0
## 10530     1752 1998    2.0
## 10531     1753 1998    4.5
## 10532     1760 1997    0.5
## 10533     1762 1998    3.5
## 10534     1777 1998    3.0
## 10535     1779 1998    3.0
## 10536     1784 1997    4.5
## 10537     1785 1990    3.5
## 10538     1792 1998    2.5
## 10539     1826 1998    1.0
## 10540     1840 1998    3.5
## 10541     1858 1997    3.0
## 10542     1862 1998    1.0
## 10543     1876 1998    2.5
## 10544     1882 1998    1.0
## 10545     1884 1998    3.5
## 10546     1909 1998    3.5
## 10547     1911 1998    3.0
## 10548     1912 1998    4.5
## 10549     1916 1998    4.0
## 10550     1917 1998    2.0
## 10551     1920 1998    2.5
## 10552     1923 1998    3.0
## 10553     1953 1971    3.5
## 10554     1954 1976    4.5
## 10555     1961 1988    4.0
## 10556     1965 1984    3.5
## 10557     1967 1986    5.0
## 10558     1968 1985    4.5
## 10559     1974 1980    3.5
## 10560     1982 1978    4.0
## 10561     1991 1988    3.5
## 10562     1994 1982    4.0
## 10563     1997 1973    4.0
## 10564     2000 1987    4.0
## 10565     2003 1984    4.5
## 10566     2004 1990    4.0
## 10567     2005 1985    5.0
## 10568     2006 1998    3.0
## 10569     2009 1973    4.0
## 10570     2011 1989    4.0
## 10571     2012 1990    2.5
## 10572     2018 1942    4.5
## 10573     2021 1984    3.5
## 10574     2023 1990    2.5
## 10575     2028 1998    4.5
## 10576     2033 1985    3.5
## 10577     2052 1993    3.5
## 10578     2054 1989    3.5
## 10579     2058 1998    2.5
## 10580     2060 1998    2.5
## 10581     2076 1986    4.0
## 10582     2078 1967    5.0
## 10583     2080 1955    3.5
## 10584     2081 1989    3.5
## 10585     2082 1992    3.5
## 10586     2087 1953    3.5
## 10587     2089 1990    3.5
## 10588     2090 1977    3.5
## 10589     2093 1985    4.0
## 10590     2096 1959    3.0
## 10591     2105 1982    3.0
## 10592     2115 1984    5.0
## 10593     2123 1989    4.0
## 10594     2124 1991    3.5
## 10595     2134 1985    4.0
## 10596     2138 1978    4.5
## 10597     2139 1982    4.0
## 10598     2140 1982    4.0
## 10599     2142 1991    3.5
## 10600     2143 1985    3.5
## 10601     2144 1984    4.5
## 10602     2148 1986    3.5
## 10603     2150 1980    3.0
## 10604     2159 1986    3.0
## 10605     2161 1984    3.5
## 10606     2164 1987    1.0
## 10607     2167 1998    3.0
## 10608     2174 1988    4.0
## 10609     2193 1988    4.0
## 10610     2194 1987    4.0
## 10611     2195 1998    3.0
## 10612     2231 1998    4.0
## 10613     2232 1997    4.0
## 10614     2248 1989    3.5
## 10615     2252 1992    4.0
## 10616     2273 1998    3.5
## 10617     2278 1998    4.0
## 10618     2288 1982    4.0
## 10619     2289 1992    4.0
## 10620     2291 1990    3.5
## 10621     2294 1998    3.5
## 10622     2302 1992    3.0
## 10623     2305 1998    4.5
## 10624     2315 1998    2.5
## 10625     2318 1998    4.5
## 10626     2321 1998    3.0
## 10627     2324 1997    3.5
## 10628     2327 1990    3.5
## 10629     2329 1998    4.5
## 10630     2335 1998    3.0
## 10631     2340 1998    0.5
## 10632     2353 1998    2.5
## 10633     2355 1998    3.0
## 10634     2360 1998    4.0
## 10635     2378 1984    3.5
## 10636     2387 1998    3.5
## 10637     2391 1998    3.5
## 10638     2394 1998    3.5
## 10639     2395 1998    4.5
## 10640     2396 1998    4.0
## 10641     2402 1985    3.0
## 10642     2403 1982    3.5
## 10643     2404 1988    3.0
## 10644     2406 1984    3.0
## 10645     2409 1979    4.0
## 10646     2410 1982    3.0
## 10647     2411 1985    3.5
## 10648     2412 1990    2.0
## 10649     2420 1984    4.5
## 10650     2421 1986    4.0
## 10651     2422 1989    3.0
## 10652     2424 1998    1.5
## 10653     2427 1998    4.0
## 10654     2428 1998    2.0
## 10655     2429 1998    2.0
## 10656     2431 1998    4.0
## 10657     2451 1987    3.5
## 10658     2455 1986    4.0
## 10659     2459 1974    4.5
## 10660     2460 1986    3.0
## 10661     2467 1986    4.5
## 10662     2470 1986    3.0
## 10663     2490 1999    3.5
## 10664     2495 1973    3.5
## 10665     2502 1999    4.5
## 10666     2528 1976    3.5
## 10667     2529 1968    4.5
## 10668     2541 1999    2.0
## 10669     2542 1998    4.5
## 10670     2551 1988    3.0
## 10671     2555 1999    1.0
## 10672     2560 1999    4.0
## 10673     2571 1999    4.5
## 10674     2572 1999    3.5
## 10675     2580 1999    4.5
## 10676     2582 1992    3.0
## 10677     2596 1998    4.0
## 10678     2599 1999    4.5
## 10679     2605 1999    2.0
## 10680     2606 1999    3.5
## 10681     2617 1999    3.5
## 10682     2628 1999    2.5
## 10683     2657 1975    2.0
## 10684     2671 1999    3.0
## 10685     2683 1999    3.0
## 10686     2687 1999    4.0
## 10687     2692 1998    4.5
## 10688     2694 1999    3.0
## 10689     2699 1990    3.0
## 10690     2700 1999    3.5
## 10691     2701 1999    2.0
## 10692     2706 1999    3.5
## 10693     2707 1999    4.0
## 10694     2710 1999    3.5
## 10695     2712 1999    4.5
## 10696     2713 1999    1.5
## 10697     2716 1984    4.5
## 10698     2717 1989    3.0
## 10699     2720 1999    1.0
## 10700     2722 1999    2.5
## 10701     2723 1999    3.0
## 10702     2724 1999    2.5
## 10703     2728 1960    4.0
## 10704     2734 1986    3.0
## 10705     2746 1986    3.0
## 10706     2761 1999    2.5
## 10707     2762 1999    4.0
## 10708     2770 1999    3.0
## 10709     2791 1980    3.5
## 10710     2797 1988    3.5
## 10711     2798 1990    3.0
## 10712     2804 1983    4.0
## 10713     2808 1992    2.0
## 10714     2841 1999    4.0
## 10715     2858 1999    4.5
## 10716     2860 1999    3.0
## 10717     2862 1979    3.5
## 10718     2867 1985    4.0
## 10719     2871 1972    4.5
## 10720     2872 1981    3.5
## 10721     2879 1991    3.5
## 10722     2890 1999    3.5
## 10723     2900 1988    3.0
## 10724     2901 1979    3.5
## 10725     2915 1983    3.5
## 10726     2916 1990    4.0
## 10727     2918 1986    4.5
## 10728     2921 1973    4.0
## 10729     2924 1978    4.5
## 10730     2947 1964    4.0
## 10731     2948 1963    4.5
## 10732     2951 1964    4.0
## 10733     2952 1996    4.0
## 10734     2953 1992    2.5
## 10735     2959 1999    5.0
## 10736     2968 1981    3.5
## 10737     2974 1999    1.0
## 10738     2985 1987    4.0
## 10739     2987 1988    3.5
## 10740     2997 1999    4.5
## 10741     3006 1999    4.5
## 10742     3013 1990    3.5
## 10743     3016 1982    4.0
## 10744     3018 1985    3.5
## 10745     3019 1989    4.0
## 10746     3020 1993    4.0
## 10747     3033 1987    3.5
## 10748     3034 1973    4.5
## 10749     3036 1981    4.0
## 10750     3052 1999    3.0
## 10751     3070 1984    3.0
## 10752     3081 1999    2.5
## 10753     3082 1999    2.5
## 10754     3101 1987    3.5
## 10755     3104 1988    4.0
## 10756     3108 1991    4.0
## 10757     3113 1999    2.5
## 10758     3114 1999    4.0
## 10759     3146 1999    2.0
## 10760     3147 1999    3.5
## 10761     3153 1958    4.0
## 10762     3160 1999    3.5
## 10763     3173 1999    2.5
## 10764     3174 1999    4.0
## 10765     3175 1999    2.5
## 10766     3178 1999    4.0
## 10767     3210 1982    3.5
## 10768     3213 1993    4.5
## 10769     3252 1992    4.0
## 10770     3253 1992    3.5
## 10771     3254 1993    2.5
## 10772     3255 1992    2.5
## 10773     3256 1992    3.0
## 10774     3263 1992    4.0
## 10775     3265 1992    4.0
## 10776     3267 1992    3.5
## 10777     3273 2000    2.5
## 10778     3275 2000    3.5
## 10779     3298 2000    4.0
## 10780     3300 2000    3.5
## 10781     3328 1999    4.5
## 10782     3360 1986    3.5
## 10783     3361 1988    3.5
## 10784     3362 1975    4.0
## 10785     3363 1973    4.0
## 10786     3424 1989    4.0
## 10787     3426 1991    3.5
## 10788     3438 1990    3.5
## 10789     3439 1991    3.0
## 10790     3440 1993    1.5
## 10791     3448 1987    3.5
## 10792     3471 1977    3.0
## 10793     3476 1990    4.0
## 10794     3479 1985    4.0
## 10795     3481 2000    4.0
## 10796     3489 1991    3.5
## 10797     3499 1990    4.0
## 10798     3527 1987    3.5
## 10799     3535 2000    4.5
## 10800     3552 1980    4.0
## 10801     3554 2000    3.0
## 10802     3555 2000    2.0
## 10803     3573 1995    0.5
## 10804     3574 1996    0.5
## 10805     3578 2000    4.0
## 10806     3581 1999    4.0
## 10807     3593 2000    0.5
## 10808     3617 2000    2.5
## 10809     3623 2000    2.0
## 10810     3671 1974    3.0
## 10811     3681 1965    4.5
## 10812     3687 1988    3.5
## 10813     3688 1982    3.0
## 10814     3696 1986    4.0
## 10815     3698 1987    4.0
## 10816     3702 1979    2.5
## 10817     3703 1981    3.5
## 10818     3704 1985    3.5
## 10819     3706 1987    4.5
## 10820     3717 2000    3.5
## 10821     3727 1987    3.5
## 10822     3728 1992    4.0
## 10823     3735 1973    4.0
## 10824     3740 1986    3.5
## 10825     3745 2000    3.5
## 10826     3751 2000    2.0
## 10827     3752 2000    2.5
## 10828     3753 2000    3.0
## 10829     3755 2000    3.0
## 10830     3761 1993    4.0
## 10831     3785 2000    3.0
## 10832     3793 2000    2.5
## 10833     3821 2000    1.5
## 10834     3826 2000    1.5
## 10835     3843 1983    4.0
## 10836     3852 2000    3.5
## 10837     3861 2000    2.5
## 10838     3882 2000    1.5
## 10839     3897 2000    4.0
## 10840     3916 2000    3.5
## 10841     3917 1987    3.0
## 10842     3948 2000    4.0
## 10843     3949 2000    4.0
## 10844     3950 2000    3.5
## 10845     3955 2000    3.0
## 10846     3961 1985    3.0
## 10847     3962 1987    2.5
## 10848     3967 2000    3.5
## 10849     3970 1981    4.5
## 10850     3972 1994    4.0
## 10851     3977 2000    2.0
## 10852     3979 2000    0.5
## 10853     3986 2000    3.0
## 10854     3994 2000    2.5
## 10855     3996 2000    3.5
## 10856     4002 1987    3.0
## 10857     4006 1986    4.0
## 10858     4007 1987    4.0
## 10859     4011 2000    4.5
## 10860     4014 2000    4.0
## 10861     4015 2000    2.5
## 10862     4018 2000    3.0
## 10863     4019 2000    3.0
## 10864     4022 2000    3.0
## 10865     4025 2000    2.5
## 10866     4027 2000    4.5
## 10867     4034 2000    4.5
## 10868     4054 2001    2.0
## 10869     4069 2001    1.5
## 10870     4085 1984    3.5
## 10871     4103 1987    4.5
## 10872     4105 1981    4.0
## 10873     4128 1987    3.5
## 10874     4135 1987    3.5
## 10875     4148 2001    3.0
## 10876     4214 1984    3.5
## 10877     4223 2001    3.5
## 10878     4226 2000    4.5
## 10879     4232 2001    0.5
## 10880     4239 2001    4.5
## 10881     4246 2001    2.5
## 10882     4255 2001    0.5
## 10883     4262 1983    4.0
## 10884     4270 2001    2.5
## 10885     4275 1983    4.0
## 10886     4299 2001    2.5
## 10887     4306 2001    4.0
## 10888     4308 2001    2.5
## 10889     4310 2001    1.0
## 10890     4340 2001    2.0
## 10891     4343 2001    2.5
## 10892     4344 2001    3.5
## 10893     4351 1991    4.0
## 10894     4361 1982    4.0
## 10895     4367 2001    1.5
## 10896     4369 2001    5.0
## 10897     4370 2001    2.5
## 10898     4378 2000    3.5
## 10899     4388 2001    2.0
## 10900     4415 1981    3.5
## 10901     4437 1977    3.5
## 10902     4438 1972    4.0
## 10903     4441 1978    3.0
## 10904     4443 1981    4.0
## 10905     4444 1972    4.0
## 10906     4447 2001    1.5
## 10907     4448 2001    3.5
## 10908     4454 1998    3.5
## 10909     4467 1988    4.5
## 10910     4488 1988    3.5
## 10911     4519 1988    5.0
## 10912     4533 1985    3.0
## 10913     4553 1988    4.5
## 10914     4571 1989    3.5
## 10915     4577 1989    4.0
## 10916     4614 1989    3.5
## 10917     4618 1989    3.5
## 10918     4619 1989    2.5
## 10919     4621 1989    2.0
## 10920     4624 1989    4.0
## 10921     4638 2001    3.0
## 10922     4641 2001    4.0
## 10923     4642 2000    4.0
## 10924     4643 2001    2.5
## 10925     4697 1982    3.5
## 10926     4701 2001    3.0
## 10927     4713 1980    4.5
## 10928     4718 2001    3.0
## 10929     4720 2001    3.5
## 10930     4728 2001    1.5
## 10931     4734 2001    3.0
## 10932     4744 2001    1.5
## 10933     4775 2001    0.5
## 10934     4776 2001    3.5
## 10935     4800 1937    4.0
## 10936     4816 2001    2.0
## 10937     4823 2001    3.0
## 10938     4846 1993    4.0
## 10939     4848 2001    3.5
## 10940     4855 1971    4.0
## 10941     4865 2001    3.5
## 10942     4873 2001    4.0
## 10943     4874 2001    4.0
## 10944     4878 2001    4.0
## 10945     4886 2001    3.0
## 10946     4890 2001    2.5
## 10947     4896 2001    3.0
## 10948     4899 2001    2.0
## 10949     4915 1982    3.5
## 10950     4963 2001    3.5
## 10951     4974 2001    3.0
## 10952     4975 2001    3.5
## 10953     4979 2001    4.0
## 10954     4980 1991    3.5
## 10955     4987 1983    3.0
## 10956     4989 2001    3.0
## 10957     4993 2001    5.0
## 10958     4995 2001    4.5
## 10959     5010 2001    4.0
## 10960     5014 2001    4.5
## 10961     5025 2002    3.0
## 10962     5040 1984    3.5
## 10963     5055 1993    3.0
## 10964     5064 2002    4.0
## 10965     5094 2002    0.5
## 10966     5103 1993    4.0
## 10967     5110 2001    3.0
## 10968     5139 1976    3.5
## 10969     5146 2000    4.0
## 10970     5151 2002    3.0
## 10971     5152 2002    3.0
## 10972     5159 1992    4.0
## 10973     5165 1979    4.0
## 10974     5205 1980    3.5
## 10975     5210 1981    3.5
## 10976     5218 2002    3.0
## 10977     5219 2002    3.0
## 10978     5244 1980    5.0
## 10979     5266 2002    3.5
## 10980     5283 2002    3.0
## 10981     5294 2001    3.5
## 10982     5299 2002    3.0
## 10983     5313 2002    2.0
## 10984     5329 2002    4.5
## 10985     5349 2002    4.0
## 10986     5378 2002    3.0
## 10987     5388 2002    3.0
## 10988     5401 2002    3.0
## 10989     5418 2002    3.0
## 10990     5445 2002    3.0
## 10991     5449 2002    3.0
## 10992     5452 1993    1.0
## 10993     5459 2002    2.0
## 10994     5463 2002    3.0
## 10995     5464 2002    3.5
## 10996     5481 2002    2.0
## 10997     5502 2002    2.5
## 10998     5504 2002    0.5
## 10999     5507 2002    1.5
## 11000     5524 2002    2.0
## 11001     5540 1981    4.0
## 11002     5541 1991    2.5
## 11003     5572 2002    1.5
## 11004     5574 2002    2.5
## 11005     5585 1991    1.0
## 11006     5617 2002    3.5
## 11007     5618 2001    4.0
## 11008     5621 2002    2.0
## 11009     5630 2002    3.5
## 11010     5666 2002    4.0
## 11011     5669 2002    4.0
## 11012     5673 2002    4.5
## 11013     5679 2002    3.0
## 11014     5690 1988    4.0
## 11015     5691 1993    2.5
## 11016     5734 1981    2.5
## 11017     5735 1978    3.5
## 11018     5736 1985    2.5
## 11019     5737 1990    2.0
## 11020     5746 1981    4.5
## 11021     5810 2002    3.5
## 11022     5816 2002    3.0
## 11023     5882 2002    3.5
## 11024     5902 2002    4.0
## 11025     5903 2002    4.0
## 11026     5942 2002    2.0
## 11027     5943 2002    2.0
## 11028     5952 2002    5.0
## 11029     5954 2002    4.0
## 11030     5955 2002    3.5
## 11031     5956 2002    3.5
## 11032     5959 2002    4.0
## 11033     5989 2002    4.0
## 11034     5991 2002    1.5
## 11035     6016 2002    5.0
## 11036     6025 1993    4.0
## 11037     6155 2003    3.0
## 11038     6156 2003    3.5
## 11039     6157 2003    0.5
## 11040     6188 2003    3.5
## 11041     6212 2003    2.0
## 11042     6213 2003    2.5
## 11043     6218 2002    2.5
## 11044     6223 2001    4.0
## 11045     6281 2002    3.0
## 11046     6287 2003    2.5
## 11047     6298 2003    0.5
## 11048     6303 1971    3.5
## 11049     6323 2003    4.5
## 11050     6333 2003    3.5
## 11051     6338 2003    3.0
## 11052     6365 2003    2.0
## 11053     6373 2003    2.5
## 11054     6377 2003    4.0
## 11055     6378 2003    3.0
## 11056     6379 2003    2.5
## 11057     6383 2003    3.0
## 11058     6440 1991    4.0
## 11059     6502 2002    3.0
## 11060     6503 2003    1.5
## 11061     6534 2003    0.5
## 11062     6537 2003    2.0
## 11063     6539 2003    4.0
## 11064     6548 2003    2.0
## 11065     6559 1994    4.0
## 11066     6564 2003    3.0
## 11067     6565 2003    2.5
## 11068     6566 2003    0.5
## 11069     6582 1985    3.0
## 11070     6586 2003    3.0
## 11071     6593 2003    0.5
## 11072     6595 2003    1.5
## 11073     6602 1988    3.5
## 11074     6615 2003    1.5
## 11075     6659 1990    4.0
## 11076     6664 1985    3.0
## 11077     6695 2003    1.5
## 11078     6707 2002    2.5
## 11079     6708 2003    4.0
## 11080     6711 2003    4.5
## 11081     6731 1985    4.0
## 11082     6754 2003    3.5
## 11083     6755 2002    4.5
## 11084     6774 1983    3.5
## 11085     6796 1991    4.5
## 11086     6803 1985    4.0
## 11087     6807 1983    3.0
## 11088     6816 1987    4.0
## 11089     6820 2000    3.0
## 11090     6857 1995    3.5
## 11091     6863 2003    2.5
## 11092     6870 2003    4.0
## 11093     6874 2003    4.5
## 11094     6887 2003    3.5
## 11095     6888 2003    2.0
## 11096     6902 2002    3.5
## 11097     6934 2003    2.0
## 11098     6936 2003    2.0
## 11099     6947 2003    3.0
## 11100     6952 2003    3.0
## 11101     6953 2003    3.5
## 11102     6957 2003    2.0
## 11103     6977 1991    3.0
## 11104     7001 1978    4.0
## 11105     7007 1991    4.0
## 11106     7022 2000    4.5
## 11107     7036 1985    3.5
## 11108     7045 1990    3.5
## 11109     7046 1987    3.0
## 11110     7063 1972    4.0
## 11111     7090 2002    4.0
## 11112     7099 1984    4.5
## 11113     7117 1993    3.0
## 11114     7137 2003    4.0
## 11115     7143 2003    2.5
## 11116     7147 2003    2.0
## 11117     7153 2003    5.0
## 11118     7161 2003    2.0
## 11119     7235 2001    4.5
## 11120     7254 2004    3.5
## 11121     7285 2003    4.0
## 11122     7293 2004    3.5
## 11123     7308 1985    3.5
## 11124     7317 2004    4.0
## 11125     7318 2004    3.0
## 11126     7324 2004    2.5
## 11127     7325 2004    2.5
## 11128     7346 2004    3.0
## 11129     7360 2004    3.0
## 11130     7361 2004    4.5
## 11131     7367 2004    2.0
## 11132     7373 2004    3.5
## 11133     7387 1978    3.5
## 11134     7411 1987    3.0
## 11135     7419 1985    4.0
## 11136     7438 2004    4.0
## 11137     7445 2004    3.5
## 11138     7454 2004    1.5
## 11139     7458 2004    2.0
## 11140     7481 1985    4.0
## 11141     7482 1973    4.0
## 11142     7502 2001    4.0
## 11143     7701 1990    1.5
## 11144     7743 1985    3.5
## 11145     7802 1979    5.0
## 11146     7842 2000    2.5
## 11147     7844 1993    4.0
## 11148     7845 1996    3.0
## 11149     7846 2001    2.5
## 11150     7915 1998    3.5
## 11151     7976 2002    4.0
## 11152     7984 1986    3.5
## 11153     7987 1987    3.5
## 11154     8131 2001    4.0
## 11155     8340 1979    4.5
## 11156     8360 2004    3.5
## 11157     8361 2004    3.0
## 11158     8363 2004    1.5
## 11159     8368 2004    3.5
## 11160     8371 2004    3.0
## 11161     8372 2004    1.0
## 11162     8373 2004    2.5
## 11163     8376 2004    3.5
## 11164     8507 1932    3.5
## 11165     8526 2004    2.5
## 11166     8528 2004    3.0
## 11167     8529 2004    4.0
## 11168     8531 2004    2.0
## 11169     8622 2004    3.5
## 11170     8636 2004    3.5
## 11171     8638 2004    4.5
## 11172     8640 2004    2.5
## 11173     8641 2004    4.5
## 11174     8644 2004    3.0
## 11175     8665 2004    3.0
## 11176     8783 2004    2.5
## 11177     8784 2004    4.0
## 11178     8798 2004    3.0
## 11179     8807 2004    3.0
## 11180     8810 2004    2.0
## 11181     8811 2004    0.5
## 11182     8854 1988    3.5
## 11183     8859 2004    0.5
## 11184     8861 2004    2.5
## 11185     8874 2004    4.0
## 11186     8906 1980    4.0
## 11187     8910 2004    4.0
## 11188     8914 2004    3.0
## 11189     8917 2004    3.5
## 11190     8928 1967    3.5
## 11191     8947 2004    0.5
## 11192     8949 2004    3.5
## 11193     8950 2004    4.5
## 11194     8957 2004    4.0
## 11195     8961 2004    3.0
## 11196     8972 2004    3.0
## 11197     8984 2004    2.5
## 11198    25962 1950    4.0
## 11199    26258 1970    4.5
## 11200    26403 1977    3.5
## 11201    26480 1983    3.0
## 11202    26547 1985    4.5
## 11203    26585 1986    3.5
## 11204    26603 1987    3.5
## 11205    26606 1987    4.0
## 11206    26684 1990    3.5
## 11207    26704 1990    4.0
## 11208    26729 1991    3.0
## 11209    26736 1991    4.0
## 11210    26842 1993    4.0
## 11211    27002 1998    2.5
## 11212    27022 1998    4.5
## 11213    27032 1998    4.0
## 11214    27109 1973    4.5
## 11215    27317 1999    4.5
## 11216    27369 2000    3.5
## 11217    27478 2002    2.5
## 11218    27555 2002    4.0
## 11219    27604 2001    4.0
## 11220    27611 2003    2.0
## 11221    27646 2003    4.5
## 11222    27660 2003    4.5
## 11223    27704 2003    2.5
## 11224    27706 2004    3.0
## 11225    27772 2002    1.0
## 11226    27773 2003    5.0
## 11227    27778 2004    3.5
## 11228    27793 2004    2.0
## 11229    27800 2003    3.5
## 11230    27801 2003    4.0
## 11231    27808 2004    3.0
## 11232    27831 2004    4.0
## 11233    27904 2006    3.5
## 11234    30707 2004    4.5
## 11235    30749 2004    5.0
## 11236    30810 2004    4.0
## 11237    30812 2004    3.5
## 11238    30820 2004    3.5
## 11239    30825 2004    3.0
## 11240    31150 1977    4.0
## 11241    31225 2005    3.5
## 11242    31290 1991    0.5
## 11243    31422 2005    1.0
## 11244    31431 2005    1.0
## 11245    31435 2004    4.5
## 11246    31685 2005    3.0
## 11247    31696 2005    3.0
## 11248    31878 2004    3.5
## 11249    32352 1995    3.0
## 11250    32387 1966    4.0
## 11251    32587 2005    4.5
## 11252    32596 2005    2.5
## 11253    33004 2005    3.0
## 11254    33162 2005    4.0
## 11255    33164 2005    1.0
## 11256    33166 2004    5.0
## 11257    33171 2004    4.0
## 11258    33493 2005    3.0
## 11259    33679 2005    2.0
## 11260    33794 2005    4.0
## 11261    33834 2005    3.0
## 11262    34048 2005    2.5
## 11263    34150 2005    3.0
## 11264    34162 2005    3.0
## 11265    34319 2005    3.0
## 11266    34405 2005    3.5
## 11267    34437 2005    3.5
## 11268    34530 2005    2.0
## 11269    35836 2005    3.0
## 11270    36519 2005    2.5
## 11271    36529 2005    3.5
## 11272    36708 2005    3.5
## 11273    37386 2005    3.0
## 11274    37731 2005    4.5
## 11275    37733 2005    4.0
## 11276    38061 2005    1.5
## 11277    39381 2005    3.5
## 11278    39446 2005    3.5
## 11279    40278 2005    3.5
## 11280    40574 2005    3.0
## 11281    40629 2005    1.5
## 11282    40732 2005    4.0
## 11283    40815 2005    3.5
## 11284    41285 2005    3.5
## 11285    41566 2005    3.0
## 11286    41569 2005    2.5
## 11287    41997 2005    4.0
## 11288    42011 2005    3.0
## 11289    42723 2005    3.0
## 11290    42725 2006    3.5
## 11291    43838 1986    3.5
## 11292    43919 2006    1.0
## 11293    43921 2006    4.0
## 11294    43936 2006    3.0
## 11295    44191 2006    4.0
## 11296    44195 2006    3.5
## 11297    44199 2006    4.0
## 11298    44245 2000    4.0
## 11299    44397 2006    3.0
## 11300    44665 2006    4.0
## 11301    44761 2005    4.5
## 11302    44972 2006    2.0
## 11303    44974 2005    4.0
## 11304    45183 2005    3.0
## 11305    45186 2006    2.5
## 11306    45447 2006    2.5
## 11307    45506 2005    4.0
## 11308    45666 2006    0.5
## 11309    45672 2006    1.0
## 11310    45722 2006    3.5
## 11311    45726 2006    2.5
## 11312    45728 2006    3.0
## 11313    46322 2006    4.0
## 11314    46335 2006    3.0
## 11315    46337 2006    0.5
## 11316    46578 2006    3.5
## 11317    46865 2006    1.0
## 11318    46965 2006    2.5
## 11319    46970 2006    2.5
## 11320    46972 2006    3.5
## 11321    46976 2006    4.0
## 11322    47099 2006    3.5
## 11323    47200 2006    3.5
## 11324    47610 2006    4.0
## 11325    47640 2006    3.0
## 11326    47815 2006    0.5
## 11327    47997 2006    4.0
## 11328    48043 2006    3.5
## 11329    48304 2006    3.5
## 11330    48385 2006    3.5
## 11331    48394 2006    3.5
## 11332    48516 2006    4.0
## 11333    48591 2006    0.5
## 11334    48696 2006    4.0
## 11335    48744 2006    3.5
## 11336    48774 2006    4.5
## 11337    48780 2006    4.5
## 11338    48877 2006    2.5
## 11339    49272 2006    4.0
## 11340    49278 2006    3.0
## 11341    49526 2006    2.5
## 11342    49528 2006    2.5
## 11343    49530 2006    3.5
## 11344    49649 2006    2.5
## 11345    49651 2006    3.0
## 11346    49817 1982    4.0
## 11347    50641 1977    5.0
## 11348    50651 2006    3.0
## 11349    50794 2006    2.5
## 11350    50798 2007    1.0
## 11351    50806 2007    1.0
## 11352    50872 2007    3.0
## 11353    51255 2007    2.5
## 11354    51277 1978    4.5
## 11355    51540 2007    4.0
## 11356    51662 2007    3.0
## 11357    51931 2007    4.0
## 11358    51937 2007    2.5
## 11359    52245 2007    3.0
## 11360    52281 2007    3.5
## 11361    52328 2007    3.5
## 11362    52458 2007    3.0
## 11363    52462 2007    3.5
## 11364    52604 2007    4.5
## 11365    52722 2007    2.0
## 11366    52952 2006    4.0
## 11367    52973 2007    3.0
## 11368    53000 2007    3.5
## 11369    53121 2007    2.0
## 11370    53125 2007    3.0
## 11371    53318 2006    4.5
## 11372    53322 2007    2.0
## 11373    53468 2006    4.0
## 11374    53519 2007    3.5
## 11375    53550 2006    4.0
## 11376    53972 2007    3.0
## 11377    53996 2007    2.5
## 11378    54001 2007    3.5
## 11379    54190 2007    2.0
## 11380    54272 2007    3.0
## 11381    54286 2007    3.0
## 11382    54290 2007    0.5
## 11383    54331 2007    4.0
## 11384    54503 2007    4.0
## 11385    54648 2007    3.0
## 11386    54745 2007    3.5
## 11387    54995 2007    3.5
## 11388    54997 2007    4.0
## 11389    55052 2007    4.0
## 11390    55094 2007    4.0
## 11391    55207 2004    4.0
## 11392    55232 2007    2.5
## 11393    55245 2007    3.0
## 11394    55247 2007    4.0
## 11395    55269 2007    3.5
## 11396    55290 2007    4.0
## 11397    55577 2007    3.0
## 11398    55721 2007    4.5
## 11399    55765 2007    3.5
## 11400    55805 2007    2.5
## 11401    55820 2007    4.5
## 11402    55830 2008    3.5
## 11403    55995 2007    2.0
## 11404    56003 2006    2.5
## 11405    56145 2007    4.0
## 11406    56174 2007    2.5
## 11407    56251 2007    3.5
## 11408    56367 2007    3.5
## 11409    56587 2007    3.0
## 11410    56757 2007    2.5
## 11411    56775 2007    2.5
## 11412    56782 2007    4.0
## 11413    56801 2007    2.0
## 11414    57368 2008    1.5
## 11415    57528 2008    3.5
## 11416    57532 2008    1.0
## 11417    57640 2008    3.0
## 11418    57669 2008    4.0
## 11419    58025 2008    1.5
## 11420    58146 2008    0.5
## 11421    58293 2008    1.0
## 11422    58295 2008    3.0
## 11423    58301 2007    4.0
## 11424    58315 2008    1.0
## 11425    58351 2007    4.0
## 11426    58559 2008    5.0
## 11427    58627 2008    3.5
## 11428    58803 2008    3.0
## 11429    58975 2008    2.5
## 11430    58998 2008    3.5
## 11431    59014 2008    1.0
## 11432    59022 2008    2.5
## 11433    59315 2008    3.0
## 11434    59369 2008    3.0
## 11435    59387 2006    3.5
## 11436    59615 2008    1.5
## 11437    59784 2008    2.5
## 11438    59900 2008    2.0
## 11439    59995 2007    4.5
## 11440    60037 2008    2.0
## 11441    60069 2008    3.0
## 11442    60072 2008    2.5
## 11443    60074 2008    2.0
## 11444    60126 2008    2.0
## 11445    60161 2008    4.0
## 11446    60293 2008    5.0
## 11447    60487 1966    3.5
## 11448    60609 2006    4.0
## 11449    60684 2009    3.0
## 11450    60753 2008    3.0
## 11451    60756 2008    4.0
## 11452    61024 2008    3.5
## 11453    61132 2008    3.5
## 11454    61248 2008    3.0
## 11455    61323 2008    3.5
## 11456    61348 2008    0.5
## 11457    61394 2008    3.5
## 11458    62394 2008    1.0
## 11459    62434 2008    3.5
## 11460    62801 1972    4.0
## 11461    62912 2008    0.5
## 11462    62956 2008    3.5
## 11463    63072 2009    3.5
## 11464    63082 2008    5.0
## 11465    63113 2008    2.0
## 11466    63131 2008    3.0
## 11467    63540 2008    0.5
## 11468    63826 2008    3.0
## 11469    63876 2008    4.0
## 11470    63992 2008    2.0
## 11471    64197 2008    4.0
## 11472    64508 2008    1.0
## 11473    64614 2008    4.5
## 11474    64716 2008    4.0
## 11475    64839 2008    5.0
## 11476    64900 1990    4.0
## 11477    64957 2008    4.5
## 11478    64983 2008    3.5
## 11479    65126 2008    4.0
## 11480    65310 2006    3.0
## 11481    65514 2008    4.5
## 11482    65982 2008    3.5
## 11483    66066 2009    0.5
## 11484    66090 2008    4.0
## 11485    66297 2009    3.5
## 11486    66335 2009    3.5
## 11487    66934 2008    4.0
## 11488    67252 2008    3.5
## 11489    67255 2009    4.0
## 11490    67665 2008    3.0
## 11491    67695 2009    3.0
## 11492    67734 2009    3.5
## 11493    67923 2009    3.5
## 11494    68073 2009    4.0
## 11495    68157 2009    4.0
## 11496    68159 2009    4.0
## 11497    68237 2009    4.0
## 11498    68319 2009    3.0
## 11499    68358 2009    3.5
## 11500    68444 2008    3.0
## 11501    68554 2009    2.5
## 11502    68901 2007    3.5
## 11503    68952 2009    3.5
## 11504    68954 2009    4.0
## 11505    68959 2005    2.5
## 11506    68965 2009    0.5
## 11507    69122 2009    3.5
## 11508    69306 2009    3.0
## 11509    69481 2008    4.0
## 11510    69640 2009    3.5
## 11511    69685 2002    3.0
## 11512    69746 2009    2.5
## 11513    69757 2009    4.5
## 11514    69844 2009    3.5
## 11515    70286 2009    3.5
## 11516    70465 2008    4.0
## 11517    70946 1990    0.5
## 11518    71057 2009    3.0
## 11519    71106 2009    4.0
## 11520    71135 2009    4.5
## 11521    71248 2009    3.5
## 11522    71379 2009    3.5
## 11523    71429 2009    4.5
## 11524    71466 2009    4.0
## 11525    71520 2009    4.0
## 11526    71533 2009    3.0
## 11527    71535 2009    4.0
## 11528    71745 2009    3.5
## 11529    71838 2009    2.0
## 11530    72011 2009    4.0
## 11531    72171 2009    3.5
## 11532    72226 2009    4.0
## 11533    72603 2009    3.0
## 11534    72641 2009    4.0
## 11535    72733 2009    4.5
## 11536    72998 2009    4.0
## 11537    73023 2009    4.0
## 11538    73268 2010    3.0
## 11539    73321 2010    3.0
## 11540    73759 2006    4.0
## 11541    74416 2009    4.5
## 11542    74458 2010    4.5
## 11543    74545 2010    4.0
## 11544    74851 2010    3.5
## 11545    74944 2010    3.5
## 11546    74948 2009    4.0
## 11547    75813 2009    3.5
## 11548    76060 2009    2.0
## 11549    76077 2010    3.5
## 11550    76093 2010    4.0
## 11551    76251 2010    4.5
## 11552    76272 2009    3.5
## 11553    77561 2010    2.5
## 11554    77800 2010    3.5
## 11555    77837 2010    3.5
## 11556    77866 2010    2.5
## 11557    78209 2010    3.0
## 11558    78266 2009    2.5
## 11559    78349 2009    3.5
## 11560    78469 2010    3.0
## 11561    78499 2010    4.5
## 11562    78574 2010    3.5
## 11563    78772 2010    2.0
## 11564    79008 2008    4.5
## 11565    79057 2010    3.5
## 11566    79091 2010    4.0
## 11567    79132 2010    4.0
## 11568    79242 2010    3.5
## 11569    79251 2010    3.5
## 11570    79274 2010    4.0
## 11571    79357 2009    5.0
## 11572    79553 2010    3.5
## 11573    79695 2010    3.5
## 11574    79702 2010    4.0
## 11575    79720 2010    3.5
## 11576    79879 2010    2.5
## 11577    80083 1989    3.5
## 11578    80219 2010    4.0
## 11579    80463 2010    4.5
## 11580    80489 2010    4.0
## 11581    80693 2010    4.0
## 11582    80831 2010    3.0
## 11583    80846 2010    2.5
## 11584    81083 2010    3.5
## 11585    81562 2010    3.5
## 11586    81564 2010    5.0
## 11587    81591 2010    4.0
## 11588    81660 1982    2.5
## 11589    81788 2010    4.0
## 11590    81834 2010    4.0
## 11591    81932 2010    4.0
## 11592    82041 2009    3.5
## 11593    82459 2010    4.0
## 11594    82527 2010    4.0
## 11595    82667 2010    4.5
## 11596    83134 2010    4.0
## 11597    83613 2011    3.0
## 11598    84152 2011    4.0
## 11599    84772 2011    3.0
## 11600    84944 2011    4.0
## 11601    85342 2010    5.0
## 11602    85401 2010    4.5
## 11603    85414 2011    4.5
## 11604    85788 2010    4.0
## 11605    85881 2011    3.5
## 11606    86142 2010    4.0
## 11607    86644 2011    3.5
## 11608    86882 2011    4.5
## 11609    87192 2011    4.5
## 11610    87232 2011    4.0
## 11611    87234 2010    4.0
## 11612    87298 2010    3.5
## 11613    87306 2011    4.0
## 11614    87869 2011    3.5
## 11615    88118 2010    4.0
## 11616    88125 2011    4.5
## 11617    88129 2011    3.5
## 11618    88140 2011    3.5
## 11619    88163 2011    4.0
## 11620    88744 2011    3.5
## 11621    89039 2011    3.5
## 11622    89085 2011    4.5
## 11623    89343 2011    3.5
## 11624    89470 2011    3.0
## 11625    89745 2012    4.5
## 11626    89774 2011    4.5
## 11627    89864 2011    3.0
## 11628    90376 2011    3.5
## 11629    90430 2011    3.5
## 11630    90439 2011    3.5
## 11631    90531 2011    4.0
## 11632    91485 2012    3.5
## 11633    91500 2012    4.0
## 11634    91529 2012    4.0
## 11635    91630 2011    4.0
## 11636    91658 2011    4.0
## 11637    91976 2012    3.0
## 11638    92309 2011    3.0
## 11639    93320 1999    5.0
## 11640    93363 2012    3.0
## 11641    93443 2011    3.5
## 11642    93510 2012    4.0
## 11643    93831 2012    3.5
## 11644    93838 2011    4.5
## 11645    93840 2012    4.0
## 11646    93855 2011    5.0
## 11647    94018 2012    2.5
## 11648    94070 2011    4.0
## 11649    94677 2012    4.0
## 11650    94833 2012    3.5
## 11651    94864 2012    4.0
## 11652    94959 2012    4.0
## 11653    95088 2012    4.0
## 11654    95147 1987    3.5
## 11655    95165 1990    3.0
## 11656    95182 1990    3.0
## 11657    95441 2012    4.0
## 11658    95473 1992    3.5
## 11659    95475 1991    4.5
## 11660    95499 1993    4.5
## 11661    95510 2012    4.0
## 11662    95558 2012    3.5
## 11663    95780 1994    3.5
## 11664    95782 1995    3.5
## 11665    95875 2012    3.5
## 11666    95963 1995    3.5
## 11667    95965 1990    4.5
## 11668    96004 1993    4.0
## 11669    96007 1997    3.5
## 11670    96079 2012    4.5
## 11671    96110 2012    2.5
## 11672    96281 2012    3.0
## 11673    96432 2012    3.5
## 11674    96588 2012    3.5
## 11675    96610 2012    4.0
## 11676    96737 2012    3.5
## 11677    96811 2012    4.0
## 11678    96821 2012    4.5
## 11679    97306 2012    4.0
## 11680    97752 2012    4.5
## 11681    97860 2012    3.5
## 11682    97913 2012    3.5
## 11683    97921 2012    4.0
## 11684    97923 2012    3.5
## 11685    97938 2012    4.5
## 11686    98607 2009    3.5
## 11687    98809 2012    4.5
## 11688    98829 1993    4.0
## 11689    98961 2012    4.0
## 11690    99112 2012    3.5
## 11691    99114 2012    4.5
## 11692    99145 2012    4.0
## 11693    99728 2013    3.5
## 11694   100159 2012    4.0
## 11695   100383 2013    4.0
## 11696   100714 2013    4.5
## 11697   101525 2012    4.0
## 11698   101864 2013    3.5
## 11699   102033 2013    3.5
## 11700   102123 2013    4.0
## 11701   102194 2012    4.0
## 11702   102252 1982    4.5
## 11703   102407 2013    2.5
## 11704   102445 2013    4.0
## 11705   102716 2013    3.5
## 11706   102993 2013    4.0
## 11707   103042 2013    3.0
## 11708   103048 2013    4.0
## 11709   103228 2013    2.5
## 11710   103249 2013    2.5
## 11711   103253 2013    3.0
## 11712   103384 2013    2.0
## 11713   103624 2013    3.0
## 11714   103688 2013    3.5
## 11715   103772 2013    3.0
## 11716   104841 2013    4.5
## 11717   104913 2013    4.5
## 11718   104944 2013    4.5
## 11719   105213 2013    3.5
## 11720   105504 2013    4.0
## 11721   106002 2013    3.5
## 11722   106022 2013    4.0
## 11723   106100 2013    4.5
## 11724   106487 2013    0.5
## 11725   106489 2013    3.5
## 11726   106491 2013    3.0
## 11727   106782 2013    4.5
## 11728   106916 2013    4.5
## 11729   106918 2013    3.5
## 11730   106920 2013    4.0
## 11731   107069 2013    3.5
## 11732   107348 2013    3.5
## 11733   107406 2013    4.0
## 11734   107953 2013    3.5
## 11735   107999 1991    3.5
## 11736   108090 1996    3.5
## 11737   108190 2014    3.5
## 11738   108583   NA    5.0
## 11739   108932 2014    4.0
## 11740   108981 2013    3.5
## 11741   109074 2012    4.0
## 11742   109374 2014    4.5
## 11743   109487 2014    4.5
## 11744   109850 2014    3.0
## 11745   109895 2013    3.5
## 11746   110127 2014    2.0
## 11747   110348 2013    4.0
## 11748   110501 2014    4.5
## 11749   110882 2013    3.0
## 11750   111360 2014    3.0
## 11751   111362 2014    4.0
## 11752   111364 2014    2.5
## 11753   111624 2014    3.5
## 11754   111659 2014    2.5
## 11755   111759 2014    4.0
## 11756   111781 2015    3.5
## 11757   111921 2014    4.0
## 11758   112183 2014    4.5
## 11759   112290 2014    2.5
## 11760   112515 2014    3.5
## 11761   112552 2014    4.5
## 11762   112556 2014    4.0
## 11763   112623 2014    3.0
## 11764   112818 2014    3.0
## 11765   112852 2014    5.0
## 11766   113252 2014    4.0
## 11767   113348 2014    2.5
## 11768   113573 2014    3.0
## 11769   114060 2014    4.0
## 11770   114180 2014    3.5
## 11771   114662 2014    4.0
## 11772   114670 2014    3.0
## 11773   114935 2014    4.5
## 11774   115122 2014    5.0
## 11775   115149 2014    3.5
## 11776   115216 2014    4.0
## 11777   115569 2014    4.5
## 11778   115713 2015    4.0
## 11779   115877 2012    3.5
## 11780   115881 2005    3.0
## 11781   116397 2014    3.5
## 11782   116797 2014    4.0
## 11783   116823 2014    0.5
## 11784   117123 2014    3.0
## 11785   117176 2014    4.0
## 11786   117529 2015    3.0
## 11787   118082 2014    3.5
## 11788   118696 2014    3.0
## 11789   119145 2015    3.5
## 11790   120466 2015    3.5
## 11791   121231 2014    3.5
## 11792   122882 2015    5.0
## 11793   122886 2015    4.5
## 11794   122890 2016    4.0
## 11795   122900 2015    3.0
## 11796   122904 2016    4.5
## 11797   122924 2016    3.5
## 11798   126006 1948    3.5
## 11799   127198 2015    3.5
## 11800   128360 2015    4.5
## 11801   130642 2014    3.5
## 11802   130682 2015    3.5
## 11803   133771 2015    3.5
## 11804   134130 2015    4.5
## 11805   135887 2015    3.0
## 11806   137857 2016    3.5
## 11807   139130 2007    4.0
## 11808   139385 2015    4.0
## 11809   139644 2015    3.5
## 11810   140267 2015    3.0
## 11811   140715 2015    4.0
## 11812   141718 2015    3.5
## 11813   141866 2015    4.0
## 11814   146656 2015    4.0
## 11815   148626 2015    3.5
## 11816   152077 2016    3.5
## 11817   152091 2016    3.0
## 11818   152844 1971    4.0
## 11819   156726 2016    3.5
## 11820   158238 2016    4.0
## 11821   159462 1987    3.0
## 11822   159858 2016    3.5
## 11823   161594 2016    3.0
## 11824   162376   NA    4.5
## 11825       10 1995    5.0
## 11826       16 1995    3.0
## 11827       17 1995    4.0
## 11828      104 1996    4.0
## 11829      110 1995    5.0
## 11830      153 1995    4.0
## 11831      260 1977    5.0
## 11832      356 1994    4.0
## 11833      527 1993    5.0
## 11834      592 1989    5.0
## 11835      612 1996    1.0
## 11836      912 1942    5.0
## 11837     1059 1996    4.0
## 11838     1080 1979    3.0
## 11839     1097 1982    3.0
## 11840     1136 1975    5.0
## 11841     1196 1980    5.0
## 11842     1210 1983    5.0
## 11843     1272 1970    5.0
## 11844     1302 1989    4.0
## 11845     1377 1992    4.0
## 11846     1562 1997    4.0
## 11847     1584 1997    5.0
## 11848     1704 1997    4.0
## 11849     1721 1997    2.0
## 11850     1722 1997    5.0
## 11851     1876 1998    3.0
## 11852     1917 1998    4.0
## 11853     1918 1998    5.0
## 11854     1954 1976    3.0
## 11855     1961 1988    4.0
## 11856     2000 1987    4.0
## 11857     2002 1992    4.0
## 11858     2028 1998    5.0
## 11859     2106 1993    5.0
## 11860     2167 1998    4.0
## 11861     2188 1998    3.0
## 11862     2333 1998    4.0
## 11863     2396 1998    5.0
## 11864     2490 1999    5.0
## 11865     2541 1999    4.0
## 11866     2549 1999    3.0
## 11867     2571 1999    5.0
## 11868     2572 1999    4.0
## 11869     2628 1999    4.0
## 11870     2640 1978    3.0
## 11871     2700 1999    4.0
## 11872     2710 1999    4.0
## 11873     2762 1999    4.0
## 11874        1 1995    3.0
## 11875        3 1995    3.0
## 11876       32 1995    4.0
## 11877      161 1995    4.0
## 11878      253 1994    4.5
## 11879      260 1977    4.5
## 11880      316 1994    2.0
## 11881      318 1994    4.0
## 11882      350 1994    3.0
## 11883      353 1994    4.5
## 11884      356 1994    4.0
## 11885      368 1994    2.0
## 11886      377 1994    4.0
## 11887      379 1994    0.5
## 11888      442 1993    2.0
## 11889      480 1993    3.0
## 11890      509 1993    0.5
## 11891      520 1993    3.0
## 11892      527 1993    4.0
## 11893      541 1982    4.0
## 11894      589 1991    4.0
## 11895      592 1989    1.0
## 11896      708 1996    4.0
## 11897      786 1996    1.0
## 11898      800 1996    3.0
## 11899      858 1972    1.0
## 11900      880 1996    1.0
## 11901      899 1952    3.0
## 11902      904 1954    4.0
## 11903      908 1959    4.5
## 11904      923 1941    4.5
## 11905      933 1955    4.0
## 11906      953 1946    4.0
## 11907      955 1938    4.0
## 11908     1080 1979    0.5
## 11909     1127 1989    3.0
## 11910     1196 1980    4.0
## 11911     1197 1987    3.5
## 11912     1198 1981    4.0
## 11913     1201 1966    3.5
## 11914     1207 1962    3.5
## 11915     1208 1979    0.5
## 11916     1214 1979    4.0
## 11917     1219 1960    4.0
## 11918     1221 1974    0.5
## 11919     1225 1984    1.0
## 11920     1234 1973    3.0
## 11921     1240 1984    3.0
## 11922     1253 1951    4.0
## 11923     1258 1980    4.5
## 11924     1259 1986    4.0
## 11925     1265 1993    3.5
## 11926     1270 1985    4.0
## 11927     1272 1970    4.0
## 11928     1278 1974    4.0
## 11929     1288 1984    4.0
## 11930     1291 1989    4.5
## 11931     1297 1985    3.0
## 11932     1356 1996    2.0
## 11933     1358 1996    0.5
## 11934     1376 1986    0.5
## 11935     1441 1993    3.5
## 11936     1517 1997    3.0
## 11937     1580 1997    2.5
## 11938     1584 1997    4.0
## 11939     1672 1997    4.0
## 11940     1721 1997    3.0
## 11941     1917 1998    0.5
## 11942     1967 1986    3.0
## 11943     1994 1982    3.0
## 11944     2003 1984    3.0
## 11945     2005 1985    3.5
## 11946     2011 1989    4.5
## 11947     2012 1990    3.5
## 11948     2115 1984    3.0
## 11949     2134 1985    3.0
## 11950     2161 1984    4.5
## 11951     2167 1998    2.5
## 11952     2174 1988    3.5
## 11953     2176 1948    4.0
## 11954     2231 1998    3.5
## 11955     2300 1968    4.0
## 11956     2302 1992    4.0
## 11957     2311 1984    2.5
## 11958     2355 1998    2.0
## 11959     2371 1985    3.0
## 11960     2423 1989    4.5
## 11961     2424 1998    2.5
## 11962     2455 1986    4.5
## 11963     2502 1999    4.0
## 11964     2571 1999    5.0
## 11965     2600 1999    3.0
## 11966     2692 1998    5.0
## 11967     2707 1999    1.5
## 11968     2710 1999    0.5
## 11969     2797 1988    2.0
## 11970     2841 1999    4.5
## 11971     2916 1990    3.5
## 11972     2959 1999    3.5
## 11973     2991 1973    3.0
## 11974     3007 1999    4.0
## 11975     3020 1993    3.0
## 11976     3033 1987    4.0
## 11977     3087 1988    3.5
## 11978     3147 1999    2.0
## 11979     3252 1992    3.5
## 11980     3408 2000    4.0
## 11981     3510 2000    0.5
## 11982     3671 1974    4.0
## 11983     3793 2000    3.0
## 11984     3948 2000    3.5
## 11985     3959 1960    4.0
## 11986     4223 2001    3.0
## 11987     4226 2000    4.5
## 11988     4306 2001    3.5
## 11989     4571 1989    2.5
## 11990     4799 1963    4.0
## 11991     4878 2001    4.0
## 11992     4973 2001    4.0
## 11993     4975 2001    4.5
## 11994     4980 1991    2.5
## 11995     4993 2001    4.5
## 11996     5054 1983    3.5
## 11997     5171 2002    2.0
## 11998     5445 2002    4.0
## 11999     5782 1981    4.0
## 12000     5952 2002    4.5
## 12001     6323 2003    3.5
## 12002     6537 2003    3.0
## 12003     6820 2000    4.0
## 12004     7153 2003    5.0
## 12005     7254 2004    4.0
## 12006     7361 2004    4.5
## 12007     7743 1985    3.0
## 12008     8581 1999    4.0
## 12009     8638 2004    4.0
## 12010     8957 2004    4.5
## 12011     8985 2004    3.0
## 12012    27788 2005    3.0
## 12013    33166 2004    4.5
## 12014    33794 2005    4.5
## 12015    34319 2005    4.0
## 12016    39446 2005    4.0
## 12017    42002 2005    4.0
## 12018    44397 2006    0.5
## 12019       45 1995    5.0
## 12020      303 1995    3.0
## 12021      531 1993    3.0
## 12022      915 1954    4.0
## 12023      954 1939    4.0
## 12024     1096 1982    4.5
## 12025     1185 1989    3.5
## 12026     1269 1944    3.5
## 12027     1449 1996    4.0
## 12028     2020 1988    4.5
## 12029     2087 1953    3.5
## 12030     2336 1998    4.0
## 12031     2948 1963    4.0
## 12032     3671 1974    3.5
## 12033     3911 2000    4.0
## 12034     3988 2000    2.0
## 12035     4321 1991    4.5
## 12036    44694 2006    4.5
## 12037    49530 2006    3.5
## 12038    54259 2007    3.5
## 12039        1 1995    4.0
## 12040        6 1995    3.5
## 12041       10 1995    3.0
## 12042       32 1995    4.0
## 12043       34 1995    3.5
## 12044       39 1995    2.5
## 12045       47 1995    4.0
## 12046       62 1995    3.5
## 12047       70 1996    3.5
## 12048       76 1995    3.5
## 12049       95 1996    1.5
## 12050      110 1995    3.5
## 12051      111 1976    4.0
## 12052      141 1996    3.0
## 12053      161 1995    2.0
## 12054      163 1995    3.0
## 12055      165 1995    2.5
## 12056      173 1995    2.5
## 12057      185 1995    2.0
## 12058      208 1995    3.0
## 12059      223 1994    4.5
## 12060      231 1994    1.0
## 12061      253 1994    2.5
## 12062      260 1977    4.0
## 12063      288 1994    3.5
## 12064      292 1995    2.5
## 12065      293 1994    4.0
## 12066      296 1994    3.5
## 12067      316 1994    4.0
## 12068      318 1994    4.0
## 12069      329 1994    2.0
## 12070      339 1995    2.5
## 12071      344 1994    3.0
## 12072      349 1994    3.5
## 12073      353 1994    4.0
## 12074      356 1994    3.5
## 12075      364 1994    3.0
## 12076      367 1994    3.5
## 12077      377 1994    2.5
## 12078      380 1994    2.5
## 12079      413 1994    1.5
## 12080      442 1993    3.0
## 12081      457 1993    2.5
## 12082      480 1993    3.0
## 12083      500 1993    3.0
## 12084      541 1982    2.0
## 12085      551 1993    4.5
## 12086      586 1990    1.5
## 12087      587 1990    2.5
## 12088      588 1992    3.5
## 12089      589 1991    4.0
## 12090      590 1990    3.0
## 12091      592 1989    3.5
## 12092      593 1991    3.0
## 12093      595 1991    3.5
## 12094      597 1990    2.5
## 12095      608 1996    2.0
## 12096      648 1996    2.5
## 12097      720 1996    3.0
## 12098      733 1996    3.0
## 12099      736 1996    2.0
## 12100      741 1995    4.0
## 12101      745 1995    3.0
## 12102      750 1964    4.5
## 12103      780 1996    3.5
## 12104      839 1996    3.0
## 12105      849 1996    2.5
## 12106      919 1939    4.5
## 12107      924 1968    3.5
## 12108     1036 1988    3.0
## 12109     1073 1971    4.0
## 12110     1079 1988    3.5
## 12111     1080 1979    4.0
## 12112     1097 1982    3.0
## 12113     1129 1981    4.0
## 12114     1136 1975    4.5
## 12115     1148 1993    3.0
## 12116     1196 1980    4.5
## 12117     1197 1987    4.5
## 12118     1198 1981    4.0
## 12119     1199 1985    4.0
## 12120     1200 1986    4.0
## 12121     1206 1971    4.0
## 12122     1208 1979    3.5
## 12123     1210 1983    4.0
## 12124     1214 1979    3.5
## 12125     1215 1993    4.5
## 12126     1217 1985    3.5
## 12127     1220 1980    4.5
## 12128     1222 1987    3.5
## 12129     1223 1989    3.0
## 12130     1240 1984    4.5
## 12131     1258 1980    3.0
## 12132     1262 1963    4.5
## 12133     1265 1993    4.0
## 12134     1270 1985    3.5
## 12135     1274 1988    3.5
## 12136     1278 1974    3.5
## 12137     1282 1940    4.5
## 12138     1291 1989    4.0
## 12139     1321 1981    4.0
## 12140     1380 1978    3.0
## 12141     1387 1975    3.5
## 12142     1393 1996    2.0
## 12143     1517 1997    4.0
## 12144     1527 1997    4.0
## 12145     1552 1997    3.5
## 12146     1580 1997    3.5
## 12147     1584 1997    1.5
## 12148     1591 1997    2.5
## 12149     1610 1990    4.0
## 12150     1653 1997    3.5
## 12151     1676 1997    4.0
## 12152     1682 1998    3.5
## 12153     1704 1997    3.0
## 12154     1721 1997    2.0
## 12155     1732 1998    3.5
## 12156     1772 1998    2.5
## 12157     1779 1998    2.5
## 12158     1784 1997    2.5
## 12159     1917 1998    2.0
## 12160     1923 1998    2.0
## 12161     1961 1988    2.5
## 12162     1967 1986    4.5
## 12163     1968 1985    3.0
## 12164     2000 1987    3.5
## 12165     2001 1989    3.5
## 12166     2005 1985    4.0
## 12167     2011 1989    4.0
## 12168     2012 1990    3.5
## 12169     2021 1984    3.5
## 12170     2054 1989    2.5
## 12171     2081 1989    3.5
## 12172     2105 1982    4.0
## 12173     2115 1984    4.0
## 12174     2139 1982    4.0
## 12175     2140 1982    4.5
## 12176     2167 1998    4.0
## 12177     2174 1988    4.0
## 12178     2275 1998    4.5
## 12179     2291 1990    3.5
## 12180     2321 1998    4.0
## 12181     2355 1998    3.5
## 12182     2395 1998    2.0
## 12183     2450 1986    3.5
## 12184     2502 1999    4.5
## 12185     2528 1976    3.5
## 12186     2529 1968    3.5
## 12187     2541 1999    3.5
## 12188     2542 1998    4.5
## 12189     2571 1999    4.0
## 12190     2599 1999    2.5
## 12191     2600 1999    4.0
## 12192     2628 1999    1.5
## 12193     2640 1978    3.5
## 12194     2641 1980    3.0
## 12195     2671 1999    2.5
## 12196     2683 1999    4.0
## 12197     2700 1999    4.0
## 12198     2706 1999    3.5
## 12199     2709 1999    3.0
## 12200     2710 1999    1.0
## 12201     2716 1984    4.0
## 12202     2762 1999    4.0
## 12203     2788 1971    4.0
## 12204     2797 1988    3.5
## 12205     2808 1992    2.0
## 12206     2858 1999    3.0
## 12207     2916 1990    3.5
## 12208     2918 1986    4.5
## 12209     2959 1999    4.0
## 12210     2968 1981    4.0
## 12211     2985 1987    3.5
## 12212     2986 1990    2.5
## 12213     2987 1988    3.5
## 12214     3000 1997    4.0
## 12215     3033 1987    4.0
## 12216     3052 1999    4.5
## 12217     3070 1984    4.5
## 12218     3081 1999    3.0
## 12219     3114 1999    3.5
## 12220     3147 1999    4.0
## 12221     3148 1999    2.5
## 12222     3175 1999    3.5
## 12223     3196 1953    4.0
## 12224     3204 1978    4.0
## 12225     3264 1992    3.0
## 12226     3275 2000    4.5
## 12227     3396 1979    4.0
## 12228     3397 1981    3.5
## 12229     3398 1984    3.0
## 12230     3408 2000    1.5
## 12231     3418 1991    0.5
## 12232     3421 1978    4.5
## 12233     3429 1989    3.0
## 12234     3438 1990    2.5
## 12235     3439 1991    1.5
## 12236     3471 1977    4.0
## 12237     3527 1987    4.0
## 12238     3578 2000    3.0
## 12239     3623 2000    1.5
## 12240     3671 1974    4.0
## 12241     3702 1979    4.0
## 12242     3703 1981    4.0
## 12243     3704 1985    3.5
## 12244     3751 2000    3.5
## 12245     3753 2000    3.5
## 12246     3793 2000    4.0
## 12247     3882 2000    3.0
## 12248     3897 2000    3.0
## 12249     3977 2000    3.0
## 12250     3994 2000    4.5
## 12251     3996 2000    0.5
## 12252     4011 2000    4.5
## 12253     4027 2000    2.5
## 12254     4040 1991    1.0
## 12255     4092 1987    2.5
## 12256     4246 2001    2.0
## 12257     4270 2001    3.0
## 12258     4306 2001    3.5
## 12259     4446 2001    3.5
## 12260     4447 2001    3.5
## 12261     4467 1988    4.0
## 12262     4499 1988    4.5
## 12263     4533 1985    3.5
## 12264     4886 2001    4.0
## 12265     4896 2001    3.0
## 12266     4963 2001    3.0
## 12267     4979 2001    2.0
## 12268     4993 2001    3.0
## 12269     5171 2002    2.0
## 12270     5218 2002    4.0
## 12271     5254 2002    3.5
## 12272     5349 2002    4.0
## 12273     5378 2002    1.0
## 12274     5445 2002    3.0
## 12275     5502 2002    0.5
## 12276     5522 1975    4.0
## 12277     5618 2001    4.0
## 12278     5650 1983    3.5
## 12279     5669 2002    0.5
## 12280     5782 1981    4.0
## 12281     5816 2002    3.0
## 12282     5903 2002    4.0
## 12283     6093 1982    3.5
## 12284     6157 2003    3.0
## 12285     6281 2002    3.0
## 12286     6303 1971    3.5
## 12287     6305 1966    3.0
## 12288     6316 1978    3.0
## 12289     6333 2003    4.0
## 12290     6350 1986    4.0
## 12291     6365 2003    3.0
## 12292     6377 2003    0.5
## 12293     6537 2003    3.5
## 12294     6539 2003    4.0
## 12295     6541 2003    4.0
## 12296     6645 1971    3.0
## 12297     6662 1963    3.0
## 12298     6755 2002    4.5
## 12299     6807 1983    4.0
## 12300     6811 1994    4.0
## 12301     6874 2003    3.5
## 12302     6934 2003    2.5
## 12303     7099 1984    4.5
## 12304     7143 2003    2.0
## 12305     7147 2003    4.0
## 12306     7163 2003    3.5
## 12307     7236 1975    4.0
## 12308     7360 2004    4.0
## 12309     7373 2004    4.0
## 12310     7387 1978    4.5
## 12311     7438 2004    3.5
## 12312     7649 1998    4.5
## 12313     7708 1967    2.5
## 12314     7810 1999    4.0
## 12315     7811 1998    4.0
## 12316     7812 1998    4.0
## 12317     7841 2003    4.0
## 12318     7842 2000    4.0
## 12319     8157 1998    4.0
## 12320     8368 2004    3.0
## 12321     8537 2003    4.0
## 12322     8622 2004    0.5
## 12323     8636 2004    4.0
## 12324     8644 2004    2.0
## 12325     8665 2004    4.0
## 12326     8874 2004    4.5
## 12327     8958 2004    3.5
## 12328     8961 2004    4.0
## 12329    26492 1983    3.5
## 12330    26700 1990    2.0
## 12331    27685 2004    1.0
## 12332    27831 2004    4.0
## 12333    31150 1977    3.5
## 12334    31221 2005    2.5
## 12335    31658 2004    4.0
## 12336    31878 2004    3.5
## 12337    32587 2005    4.5
## 12338    33493 2005    3.0
## 12339    33794 2005    4.0
## 12340    34319 2005    2.0
## 12341    34405 2005    4.5
## 12342    36708 2005    3.5
## 12343    37729 2005    4.0
## 12344    37857 2005    4.0
## 12345    38038 2005    3.5
## 12346    40732 2005    2.5
## 12347    40819 2005    4.0
## 12348    44191 2006    4.5
## 12349    45499 2006    3.5
## 12350    45722 2006    4.0
## 12351    47423 2006    0.5
## 12352    47518 2006    4.0
## 12353    53894 2007    0.5
## 12354        2 1995    3.5
## 12355       10 1995    5.0
## 12356       16 1995    5.0
## 12357       32 1995    5.0
## 12358       34 1995    3.5
## 12359       39 1995    5.0
## 12360       47 1995    4.0
## 12361       50 1995    5.0
## 12362      110 1995    1.5
## 12363      111 1976    3.5
## 12364      141 1996    4.0
## 12365      150 1995    3.5
## 12366      172 1995    5.0
## 12367      185 1995    4.5
## 12368      193 1995    5.0
## 12369      223 1994    4.5
## 12370      253 1994    5.0
## 12371      260 1977    5.0
## 12372      296 1994    4.5
## 12373      316 1994    4.0
## 12374      318 1994    5.0
## 12375      329 1994    5.0
## 12376      345 1994    4.5
## 12377      349 1994    4.5
## 12378      356 1994    5.0
## 12379      364 1994    3.5
## 12380      377 1994    4.5
## 12381      480 1993    3.5
## 12382      500 1993    4.0
## 12383      508 1993    4.0
## 12384      540 1993    4.0
## 12385      588 1992    3.5
## 12386      589 1991    5.0
## 12387      593 1991    4.5
## 12388      648 1996    5.0
## 12389      736 1996    4.5
## 12390      778 1996    4.5
## 12391      780 1996    4.0
## 12392      788 1996    3.5
## 12393      858 1972    4.5
## 12394      919 1939    3.5
## 12395      924 1968    2.0
## 12396     1059 1996    4.5
## 12397     1089 1992    1.0
## 12398     1094 1992    4.0
## 12399     1097 1982    3.5
## 12400     1136 1975    3.0
## 12401     1196 1980    4.0
## 12402     1200 1986    4.5
## 12403     1206 1971    2.5
## 12404     1208 1979    5.0
## 12405     1210 1983    4.0
## 12406     1213 1990    4.5
## 12407     1214 1979    3.5
## 12408     1222 1987    5.0
## 12409     1240 1984    4.0
## 12410     1265 1993    2.0
## 12411     1270 1985    4.5
## 12412     1293 1982    5.0
## 12413     1320 1992    3.5
## 12414     1345 1976    4.0
## 12415     1356 1996    5.0
## 12416     1371 1979    4.0
## 12417     1374 1982    4.0
## 12418     1375 1984    5.0
## 12419     1376 1986    3.0
## 12420     1407 1996    4.5
## 12421     1513 1997    4.0
## 12422     1517 1997    3.0
## 12423     1527 1997    4.0
## 12424     1552 1997    4.0
## 12425     1580 1997    2.5
## 12426     1584 1997    5.0
## 12427     1586 1997    3.5
## 12428     1610 1990    5.0
## 12429     1625 1997    5.0
## 12430     1644 1997    4.5
## 12431     1676 1997    5.0
## 12432     1680 1998    5.0
## 12433     1682 1998    3.5
## 12434     1690 1997    4.0
## 12435     1704 1997    5.0
## 12436     1717 1997    5.0
## 12437     1721 1997    4.0
## 12438     1722 1997    4.5
## 12439     1732 1998    5.0
## 12440     1747 1997    4.0
## 12441     1805 1998    5.0
## 12442     1876 1998    5.0
## 12443     1917 1998    4.5
## 12444     1923 1998    1.5
## 12445     1968 1985    5.0
## 12446     1997 1973    4.0
## 12447     2011 1989    4.5
## 12448     2012 1990    4.0
## 12449     2028 1998    2.5
## 12450     2107 1998    3.0
## 12451     2174 1988    4.0
## 12452     2231 1998    4.5
## 12453     2297 1998    4.0
## 12454     2329 1998    5.0
## 12455     2334 1998    5.0
## 12456     2336 1998    5.0
## 12457     2353 1998    5.0
## 12458     2393 1998    4.0
## 12459     2394 1998    4.0
## 12460     2541 1999    5.0
## 12461     2542 1998    4.5
## 12462     2571 1999    5.0
## 12463     2617 1999    5.0
## 12464     2628 1999    5.0
## 12465     2657 1975    2.0
## 12466     2683 1999    3.5
## 12467     2700 1999    5.0
## 12468     2706 1999    5.0
## 12469     2710 1999    5.0
## 12470     2858 1999    4.5
## 12471     2908 1999    5.0
## 12472     2916 1990    4.0
## 12473     2947 1964    5.0
## 12474     2959 1999    5.0
## 12475     2987 1988    4.0
## 12476     2995 1999    2.5
## 12477     3052 1999    4.0
## 12478     3077 1998    5.0
## 12479     3082 1999    4.5
## 12480     3147 1999    4.5
## 12481     3256 1992    4.0
## 12482     3273 2000    5.0
## 12483     3298 2000    4.0
## 12484     3386 1991    5.0
## 12485     3418 1991    5.0
## 12486     3504 1976    3.5
## 12487     3556 1999    3.0
## 12488     3578 2000    5.0
## 12489     3617 2000    4.5
## 12490     3623 2000    5.0
## 12491     3753 2000    5.0
## 12492     3755 2000    3.0
## 12493     3785 2000    5.0
## 12494     3793 2000    4.0
## 12495     3897 2000    4.0
## 12496     3908 2000    4.5
## 12497     3949 2000    5.0
## 12498     3967 2000    3.5
## 12499     3977 2000    3.5
## 12500     3979 2000    4.0
## 12501     3986 2000    4.0
## 12502     3994 2000    3.5
## 12503     3996 2000    4.5
## 12504     4007 1987    5.0
## 12505     4011 2000    5.0
## 12506     4015 2000    3.5
## 12507     4018 2000    3.5
## 12508     4022 2000    3.5
## 12509     4025 2000    5.0
## 12510     4128 1987    5.0
## 12511     4226 2000    5.0
## 12512     4239 2001    5.0
## 12513     4270 2001    5.0
## 12514     4306 2001    1.5
## 12515     4308 2001    4.5
## 12516     4367 2001    5.0
## 12517     4369 2001    4.5
## 12518     4370 2001    4.5
## 12519     4388 2001    5.0
## 12520     4446 2001    4.5
## 12521     4641 2001    5.0
## 12522     4643 2001    5.0
## 12523     4718 2001    4.5
## 12524     4744 2001    3.5
## 12525     4878 2001    4.0
## 12526     4896 2001    2.5
## 12527     4973 2001    5.0
## 12528     4974 2001    5.0
## 12529     4993 2001    4.5
## 12530     4995 2001    4.5
## 12531     5010 2001    4.0
## 12532     5219 2002    4.5
## 12533     5378 2002    5.0
## 12534     5418 2002    5.0
## 12535     5445 2002    4.5
## 12536     5463 2002    3.5
## 12537     5502 2002    4.5
## 12538     5669 2002    5.0
## 12539     5693 1977    4.0
## 12540     5784 2002    2.5
## 12541     5872 2002    5.0
## 12542     5952 2002    5.0
## 12543     5989 2002    4.5
## 12544     5992 2002    4.0
## 12545     6016 2002    5.0
## 12546     6058 2003    4.5
## 12547     6365 2003    5.0
## 12548     6377 2003    3.0
## 12549     6502 2002    5.0
## 12550     6537 2003    3.5
## 12551     6539 2003    3.0
## 12552     6552 2002    4.0
## 12553     6564 2003    4.5
## 12554     6793 1992    4.0
## 12555     6796 1991    4.0
## 12556     6874 2003    4.0
## 12557     6888 2003    5.0
## 12558     6934 2003    5.0
## 12559     6979 1983    5.0
## 12560     7153 2003    5.0
## 12561     7254 2004    4.0
## 12562     7323 2003    4.0
## 12563     7438 2004    4.0
## 12564     7458 2004    5.0
## 12565     7566 1985    5.0
## 12566     8361 2004    4.5
## 12567     8368 2004    3.5
## 12568     8464 2004    3.5
## 12569     8533 2004    5.0
## 12570     8622 2004    5.0
## 12571     8644 2004    5.0
## 12572     8665 2004    5.0
## 12573     8861 2004    5.0
## 12574     8874 2004    4.0
## 12575     8947 2004    3.5
## 12576     8972 2004    3.5
## 12577    26614 1988    5.0
## 12578    26712 1991    5.0
## 12579    27831 2004    4.5
## 12580    33166 2004    5.0
## 12581    33493 2005    5.0
## 12582    33794 2005    4.0
## 12583    34048 2005    2.0
## 12584    36529 2005    5.0
## 12585    38499 2003    5.0
## 12586    39183 2005    5.0
## 12587    40815 2005    3.5
## 12588    43679 2006    4.5
## 12589    44191 2006    3.5
## 12590    44555 2006    4.5
## 12591    46335 2006    4.5
## 12592    46723 2006    5.0
## 12593    48774 2006    4.0
## 12594    49272 2006    3.5
## 12595    50658 2005    5.0
## 12596    50740 1964    5.0
## 12597    50742 1970    5.0
## 12598    51662 2007    5.0
## 12599    51935 2007    5.0
## 12600    52767 1977    5.0
## 12601    52952 2006    5.0
## 12602    54001 2007    4.0
## 12603    54272 2007    4.5
## 12604    54286 2007    5.0
## 12605    56174 2007    4.5
## 12606    58559 2008    5.0
## 12607    65130 2008    5.0
## 12608    68358 2009    4.0
## 12609    69757 2009    4.0
## 12610    70678 2006    4.5
## 12611    72998 2009    5.0
## 12612    79132 2010    4.5
## 12613    81834 2010    4.5
## 12614    88125 2011    4.5
## 12615    88129 2011    4.0
## 12616    97673 2012    4.5
## 12617        1 1995    2.0
## 12618        2 1995    2.5
## 12619        7 1995    0.5
## 12620      150 1995    2.5
## 12621      260 1977    3.0
## 12622      344 1994    2.0
## 12623      356 1994    4.0
## 12624      367 1994    2.5
## 12625      468 1995    0.5
## 12626      480 1993    3.0
## 12627      519 1993    2.0
## 12628      587 1990    2.5
## 12629      588 1992    2.5
## 12630      592 1989    2.5
## 12631      648 1996    2.5
## 12632      736 1996    3.0
## 12633      778 1996    3.0
## 12634      780 1996    2.5
## 12635      924 1968    2.0
## 12636     1097 1982    3.0
## 12637     1101 1986    2.5
## 12638     1196 1980    3.0
## 12639     1210 1983    3.0
## 12640     1291 1989    2.5
## 12641     1517 1997    0.5
## 12642     1580 1997    3.0
## 12643     1721 1997    2.5
## 12644     1917 1998    2.5
## 12645     2013 1972    2.5
## 12646     2150 1980    0.5
## 12647     2422 1989    2.0
## 12648     2571 1999    3.0
## 12649     2628 1999    3.0
## 12650     2640 1978    2.5
## 12651     2641 1980    2.5
## 12652     2683 1999    0.5
## 12653     2918 1986    3.5
## 12654     3478 1987    3.0
## 12655     3578 2000    3.0
## 12656     3697 1990    2.0
## 12657     3702 1979    2.5
## 12658     3793 2000    3.0
## 12659     3864 1999    2.5
## 12660     4306 2001    3.0
## 12661     4886 2001    3.0
## 12662     4993 2001    3.0
## 12663     5349 2002    3.0
## 12664     5952 2002    3.0
## 12665     6539 2003    2.5
## 12666     7153 2003    3.0
## 12667    32031 2005    3.5
## 12668    39292 2005    3.0
## 12669    42738 2006    2.5
## 12670    45081 2006    2.0
## 12671    49530 2006    3.5
## 12672        2 1995    2.0
## 12673        6 1995    4.0
## 12674        7 1995    4.0
## 12675       10 1995    3.0
## 12676       16 1995    5.0
## 12677       20 1995    1.0
## 12678       21 1995    4.0
## 12679       25 1995    4.0
## 12680       32 1995    5.0
## 12681       45 1995    4.0
## 12682       46 1995    3.0
## 12683       50 1995    3.0
## 12684       73 1995    5.0
## 12685       89 1995    3.0
## 12686       93 1995    1.0
## 12687       95 1996    2.0
## 12688      100 1996    2.0
## 12689      105 1995    3.0
## 12690      112 1995    4.0
## 12691      141 1996    3.0
## 12692      156 1995    5.0
## 12693      191 1995    2.0
## 12694      608 1996    5.0
## 12695      610 1981    3.0
## 12696      616 1970    4.0
## 12697      661 1996    4.0
## 12698      671 1996    4.0
## 12699      745 1995    5.0
## 12700      762 1996    2.0
## 12701      778 1996    5.0
## 12702      780 1996    4.0
## 12703      783 1996    5.0
## 12704      800 1996    5.0
## 12705      802 1996    3.0
## 12706      805 1996    4.0
## 12707     1084 1967    4.0
## 12708     1104 1951    4.0
## 12709      111 1976    4.0
## 12710      154 1967    4.0
## 12711      190 1995    3.0
## 12712      306 1994    4.0
## 12713      308 1994    3.5
## 12714      318 1994    3.0
## 12715      495 1976    3.5
## 12716      509 1993    3.0
## 12717      549 1993    4.5
## 12718      668 1955    5.0
## 12719      750 1964    4.0
## 12720      872 1994    5.0
## 12721      899 1952    3.5
## 12722      903 1958    4.0
## 12723      904 1954    4.0
## 12724      910 1959    5.0
## 12725      922 1950    5.0
## 12726      924 1968    4.0
## 12727     1132 1986    3.0
## 12728     1136 1975    3.5
## 12729     1173 1989    4.5
## 12730     1176 1991    4.0
## 12731     1199 1985    4.5
## 12732     1201 1966    3.5
## 12733     1206 1971    4.0
## 12734     1213 1990    3.0
## 12735     1219 1960    4.0
## 12736     1222 1987    4.0
## 12737     1230 1977    4.0
## 12738     1232 1979    4.5
## 12739     1251 1963    4.5
## 12740     1258 1980    4.0
## 12741     1295 1988    3.5
## 12742     1298 1982    4.0
## 12743     1339 1992    1.5
## 12744     1719 1997    4.5
## 12745     1913 1975    3.0
## 12746     1921 1998    4.0
## 12747     2010 1927    5.0
## 12748     2068 1982    5.0
## 12749     2131 1978    4.0
## 12750     2424 1998    2.0
## 12751     2551 1988    4.0
## 12752     2673 1998    4.5
## 12753     2712 1999    4.5
## 12754     2730 1975    4.0
## 12755     2959 1999    4.0
## 12756     2997 1999    4.0
## 12757     3000 1997    4.5
## 12758     3083 1999    4.0
## 12759     3160 1999    4.0
## 12760     3415 1975    5.0
## 12761     3578 2000    3.5
## 12762     3637 1985    4.0
## 12763     3788 1966    4.5
## 12764     3814 1975    5.0
## 12765     3910 2000    4.5
## 12766     3925 1984    4.0
## 12767     3949 2000    4.0
## 12768     3967 2000    3.0
## 12769     3993 2000    4.0
## 12770     3996 2000    4.0
## 12771     4144 2000    4.0
## 12772     4271 2000    5.0
## 12773     4312 1999    4.0
## 12774     4334 2000    4.5
## 12775     4422 1972    4.5
## 12776     4437 1977    4.0
## 12777     4470 1988    4.5
## 12778     4658 1989    5.0
## 12779     4848 2001    4.0
## 12780     4878 2001    2.0
## 12781     4928 1977    3.0
## 12782     5028 2001    5.0
## 12783     5105 1973    3.0
## 12784     5147 1957    4.0
## 12785     5269 2001    4.5
## 12786     5530 2002    2.5
## 12787     5618 2001    4.0
## 12788     5668 2002    2.5
## 12789     5686 2002    4.0
## 12790     5971 1988    4.5
## 12791     6123 1983    4.5
## 12792     6214 2002    3.5
## 12793     6301 1971    2.5
## 12794     6440 1991    4.5
## 12795     6509 1974    4.0
## 12796     6641 2000    4.5
## 12797     6643 1953    4.0
## 12798     6666 1972    4.0
## 12799     6711 2003    4.0
## 12800     6807 1983    5.0
## 12801     6993 1986    5.0
## 12802     7172 2002    4.0
## 12803     7265 2003    3.5
## 12804     7323 2003    4.0
## 12805     7327 1966    4.0
## 12806     7361 2004    4.0
## 12807     7460 2003    4.0
## 12808     7564 1964    5.0
## 12809     7574 1995    5.0
## 12810     7786 1999    3.5
## 12811     7820 1960    4.0
## 12812     7938 1963    4.0
## 12813     7979 1968    4.5
## 12814     8014 2003    3.5
## 12815     8199 1953    4.5
## 12816     8239 1961    5.0
## 12817     8327 2002    4.0
## 12818     8338 1947    4.5
## 12819     8367 2003    4.0
## 12820     8485 2001    4.0
## 12821     8533 2004    2.5
## 12822     8638 2004    5.0
## 12823     8983 2004    4.0
## 12824    26150 1969    5.0
## 12825    26228 1970    4.0
## 12826    26258 1970    5.0
## 12827    26318 1974    4.5
## 12828    26326 1973    4.5
## 12829    26578 1986    5.0
## 12830    26662 1989    4.0
## 12831    31437 2004    4.0
## 12832    31524 1972    4.0
## 12833    31930 1966    4.0
## 12834    36276 2005    4.0
## 12835    37731 2005    3.0
## 12836    40491 1990    4.5
## 12837    43899 2004    3.0
## 12838    44694 2006    3.0
## 12839    45000 1967    4.0
## 12840    47274 1971    4.0
## 12841    47610 2006    2.5
## 12842    48043 2006    3.5
## 12843    48165 1989    4.0
## 12844    52528 1970    4.0
## 12845    52617 2006    5.0
## 12846    52885 2006    4.0
## 12847    53447 2007    3.5
## 12848    56782 2007    4.0
## 12849    58425 2007    4.5
## 12850    60950 2008    3.0
## 12851    61206 2007    4.5
## 12852    64701 2008    4.0
## 12853    65130 2008    4.0
## 12854    68137 2005    2.0
## 12855    68967 2008    4.0
## 12856    69516 2009    4.0
## 12857    69757 2009    2.0
## 12858    71108 2009    4.0
## 12859    71438 2008    3.5
## 12860    72998 2009    3.0
## 12861    73344 2009    4.0
## 12862    78836 2009    4.0
## 12863    79132 2010    3.0
## 12864    80463 2010    3.0
## 12865    81054 1969    4.0
## 12866    81591 2010    2.5
## 12867    81786 2010    4.0
## 12868    82459 2010    3.5
## 12869       10 1995    3.0
## 12870       21 1995    3.0
## 12871       34 1995    5.0
## 12872       39 1995    5.0
## 12873       47 1995    5.0
## 12874       50 1995    4.0
## 12875      110 1995    5.0
## 12876      150 1995    4.0
## 12877      153 1995    3.0
## 12878      160 1995    2.0
## 12879      165 1995    3.0
## 12880      208 1995    3.0
## 12881      231 1994    4.0
## 12882      253 1994    5.0
## 12883      266 1994    4.0
## 12884      288 1994    3.0
## 12885      292 1995    3.0
## 12886      296 1994    5.0
## 12887      300 1994    4.0
## 12888      316 1994    2.0
## 12889      318 1994    5.0
## 12890      329 1994    2.0
## 12891      339 1995    4.0
## 12892      344 1994    3.0
## 12893      356 1994    5.0
## 12894      364 1994    4.0
## 12895      367 1994    3.0
## 12896      380 1994    3.0
## 12897      410 1993    3.0
## 12898      420 1994    1.0
## 12899      434 1993    3.0
## 12900      435 1993    3.0
## 12901      454 1993    3.0
## 12902      457 1993    3.0
## 12903      588 1992    4.0
## 12904      590 1990    4.0
## 12905      592 1989    3.0
## 12906      593 1991    4.0
## 12907      595 1991    5.0
## 12908        6 1995    5.0
## 12909       21 1995    1.0
## 12910       39 1995    4.0
## 12911       50 1995    5.0
## 12912       69 1995    3.5
## 12913      101 1996    3.5
## 12914      141 1996    4.0
## 12915      150 1995    5.0
## 12916      151 1995    0.5
## 12917      205 1995    4.0
## 12918      224 1995    4.0
## 12919      235 1994    4.5
## 12920      266 1994    5.0
## 12921      272 1994    4.5
## 12922      351 1994    3.5
## 12923      356 1994    4.0
## 12924      370 1994    4.0
## 12925      377 1994    2.5
## 12926      441 1993    4.0
## 12927      480 1993    3.5
## 12928      514 1994    4.0
## 12929      532 1994    3.5
## 12930      608 1996    4.5
## 12931      663 1996    5.0
## 12932      750 1964    5.0
## 12933      778 1996    4.0
## 12934      799 1996    3.5
## 12935      904 1954    4.5
## 12936      908 1959    4.5
## 12937      923 1941    4.5
## 12938     1060 1996    5.0
## 12939     1077 1973    4.5
## 12940     1078 1971    4.0
## 12941     1197 1987    5.0
## 12942     1208 1979    5.0
## 12943     1210 1983    5.0
## 12944     1230 1977    5.0
## 12945     1233 1981    5.0
## 12946     1240 1984    3.0
## 12947     1247 1967    4.5
## 12948     1257 1985    5.0
## 12949     1259 1986    4.5
## 12950     1265 1993    4.5
## 12951     1270 1985    4.0
## 12952     1276 1967    5.0
## 12953     1278 1974    5.0
## 12954     1288 1984    4.5
## 12955     1348 1922    4.0
## 12956     1358 1996    0.5
## 12957     1394 1987    5.0
## 12958     1476 1997    5.0
## 12959     1500 1997    5.0
## 12960     1590 1997    5.0
## 12961     1639 1997    4.5
## 12962     1653 1997    5.0
## 12963     1732 1998    5.0
## 12964     1747 1997    4.0
## 12965     1777 1998    4.5
## 12966     1799 1997    5.0
## 12967     1917 1998    2.0
## 12968     1920 1998    0.5
## 12969     1923 1998    2.0
## 12970     1961 1988    5.0
## 12971     2000 1987    1.5
## 12972     2109 1979    3.5
## 12973     2155 1998    4.0
## 12974     2291 1990    5.0
## 12975     2300 1968    4.0
## 12976     2302 1992    4.0
## 12977     2324 1997    4.0
## 12978     2359 1998    4.0
## 12979     2371 1985    3.5
## 12980     2395 1998    5.0
## 12981     2406 1984    4.0
## 12982     2502 1999    5.0
## 12983     2571 1999    1.0
## 12984     2599 1999    4.0
## 12985     2700 1999    4.5
## 12986     2716 1984    4.0
## 12987     2791 1980    5.0
## 12988     2795 1983    5.0
## 12989     2804 1983    4.5
## 12990     2858 1999    4.0
## 12991     2863 1964    4.0
## 12992     2918 1986    5.0
## 12993     2997 1999    5.0
## 12994     3022 1926    4.5
## 12995     3033 1987    4.0
## 12996     3037 1970    4.0
## 12997     3044 1991    4.0
## 12998     3087 1988    3.5
## 12999     3114 1999    4.0
## 13000     3160 1999    0.5
## 13001     3176 1999    4.5
## 13002     3198 1973    4.0
## 13003     3210 1982    3.5
## 13004     3252 1992    4.0
## 13005     3253 1992    3.5
## 13006     3261 1992    4.0
## 13007     3355 1999    5.0
## 13008     3359 1979    4.0
## 13009     3361 1988    4.0
## 13010     3362 1975    4.5
## 13011     3396 1979    4.0
## 13012     3398 1984    4.0
## 13013     3408 2000    4.0
## 13014     3421 1978    5.0
## 13015     3450 1993    4.0
## 13016     3481 2000    4.0
## 13017     3552 1980    4.0
## 13018     3671 1974    4.5
## 13019     3735 1973    5.0
## 13020     3751 2000    4.0
## 13021     3753 2000    1.0
## 13022     3809 1991    4.0
## 13023     3814 1975    4.5
## 13024     3868 1988    5.0
## 13025     3869 1991    3.0
## 13026     3897 2000    4.0
## 13027     3911 2000    2.0
## 13028     3950 2000    3.5
## 13029     4025 2000    3.5
## 13030     4027 2000    5.0
## 13031     4034 2000    4.5
## 13032     4066 1988    4.0
## 13033     4174 1990    4.0
## 13034     4255 2001    1.5
## 13035     4321 1991    4.5
## 13036     4322 1988    4.5
## 13037     4361 1982    4.5
## 13038     4388 2001    4.0
## 13039     4558 1988    3.5
## 13040     4571 1989    3.5
## 13041     4688 1991    4.0
## 13042     4886 2001    4.0
## 13043     4898 2001    0.5
## 13044     4963 2001    4.5
## 13045     4975 2001    0.5
## 13046     5060 1970    4.5
## 13047     5103 1993    4.0
## 13048     5135 2001    4.5
## 13049     5152 2002    5.0
## 13050     5377 2002    4.0
## 13051     5445 2002    0.5
## 13052     5602 1955    3.5
## 13053     5650 1983    3.5
## 13054     5669 2002    4.0
## 13055     5673 2002    1.0
## 13056     5902 2002    0.5
## 13057     6373 2003    3.5
## 13058     6659 1990    3.5
## 13059     6863 2003    4.5
## 13060     6947 2003    5.0
## 13061     7028 1990    4.5
## 13062     8376 2004    4.0
## 13063     8493 1990    5.0
## 13064     8528 2004    3.5
## 13065     8784 2004    4.0
## 13066     8807 2004    5.0
## 13067     8874 2004    4.5
## 13068    35836 2005    3.5
## 13069        1 1995    3.5
## 13070      110 1995    4.0
## 13071      260 1977    4.0
## 13072      296 1994    4.0
## 13073      356 1994    3.0
## 13074      589 1991    3.0
## 13075     1036 1988    4.5
## 13076     1196 1980    4.0
## 13077     1198 1981    3.5
## 13078     1210 1983    4.0
## 13079     1610 1990    3.5
## 13080     2028 1998    3.0
## 13081     2268 1992    3.5
## 13082     2329 1998    3.0
## 13083     2571 1999    5.0
## 13084     2858 1999    3.5
## 13085     2916 1990    4.0
## 13086     2959 1999    4.0
## 13087     3114 1999    3.5
## 13088     3301 2000    4.0
## 13089     3578 2000    4.0
## 13090     3623 2000    3.5
## 13091     3624 2000    4.0
## 13092     3717 2000    4.0
## 13093     3752 2000    3.5
## 13094     3753 2000    4.0
## 13095     3980 2000    4.5
## 13096     3994 2000    3.0
## 13097     4023 2000    3.0
## 13098     4148 2001    4.0
## 13099     4270 2001    3.5
## 13100     4306 2001    4.0
## 13101     4310 2001    3.5
## 13102     4701 2001    3.5
## 13103     4720 2001    4.0
## 13104     4776 2001    4.0
## 13105     4886 2001    4.0
## 13106     4896 2001    3.5
## 13107     4963 2001    4.0
## 13108     4993 2001    4.5
## 13109     4995 2001    4.5
## 13110     5010 2001    4.0
## 13111     5418 2002    3.5
## 13112     5445 2002    3.5
## 13113     5459 2002    3.5
## 13114     5481 2002    3.0
## 13115     5630 2002    3.5
## 13116     5952 2002    4.5
## 13117     5989 2002    3.5
## 13118     6016 2002    4.0
## 13119     6287 2003    3.5
## 13120     6365 2003    3.5
## 13121     6373 2003    3.5
## 13122     6377 2003    3.0
## 13123     6378 2003    3.0
## 13124     6539 2003    3.5
## 13125     6874 2003    4.0
## 13126     7153 2003    5.0
## 13127     7254 2004    3.5
## 13128     7293 2004    3.5
## 13129     7438 2004    4.0
## 13130     7458 2004    4.0
## 13131     8361 2004    3.0
## 13132     8368 2004    4.0
## 13133     8531 2004    3.5
## 13134     8644 2004    3.5
## 13135     8665 2004    3.5
## 13136     8961 2004    4.0
## 13137     8972 2004    3.5
## 13138    30825 2004    3.5
## 13139    31696 2005    4.0
## 13140    32587 2005    3.5
## 13141    33646 2005    4.0
## 13142    33794 2005    4.0
## 13143    34162 2005    3.5
## 13144    35836 2005    4.0
## 13145    36529 2005    3.5
## 13146    40815 2005    3.5
## 13147    44199 2006    3.5
## 13148    45447 2006    3.0
## 13149    45499 2006    4.0
## 13150    45722 2006    3.5
## 13151    53125 2007    3.5
## 13152    54001 2007    3.5
## 13153    54272 2007    3.0
## 13154    54286 2007    4.0
## 13155    56174 2007    3.0
## 13156    58559 2008    4.0
## 13157    58803 2008    4.0
## 13158    59315 2008    3.5
## 13159    64983 2008    4.0
## 13160    65514 2008    2.5
## 13161    68157 2009    3.5
## 13162    68358 2009    3.5
## 13163    69122 2009    4.0
## 13164    69844 2009    3.5
## 13165    72998 2009    4.0
## 13166    74458 2010    4.0
## 13167    74795 2010    4.0
## 13168    76093 2010    4.0
## 13169    81229 2010    3.5
## 13170    85342 2010    3.5
## 13171    89745 2012    4.0
## 13172    91500 2012    3.5
## 13173    91529 2012    4.0
## 13174    91658 2011    3.5
## 13175    92259 2011    4.5
## 13176    94777 2012    4.0
## 13177    96079 2012    3.0
## 13178    99114 2012    3.0
## 13179   102125 2013    3.5
## 13180   106487 2013    3.5
## 13181   106489 2013    5.0
## 13182   110102 2014    4.0
## 13183   116797 2014    4.5
## 13184   117176 2014    4.0
## 13185        2 1995    5.0
## 13186        3 1995    2.0
## 13187        5 1995    3.0
## 13188       10 1995    5.0
## 13189       19 1995    3.0
## 13190       21 1995    4.0
## 13191       23 1995    3.0
## 13192       44 1995    2.0
## 13193       58 1994    1.0
## 13194      110 1995    5.0
## 13195      153 1995    4.0
## 13196      158 1995    1.0
## 13197      160 1995    3.0
## 13198      161 1995    4.0
## 13199      165 1995    4.0
## 13200      170 1995    3.0
## 13201      172 1995    3.0
## 13202      173 1995    4.0
## 13203      177 1995    2.0
## 13204      181 1995    1.0
## 13205      185 1995    3.0
## 13206      186 1995    3.0
## 13207      188 1995    1.0
## 13208      196 1995    3.0
## 13209      203 1995    3.0
## 13210      208 1995    3.0
## 13211      216 1995    3.0
## 13212      227 1994    4.0
## 13213      230 1995    2.0
## 13214      231 1994    4.0
## 13215      234 1994    4.0
## 13216      247 1994    1.0
## 13217      253 1994    3.0
## 13218      255 1995    5.0
## 13219      256 1994    4.0
## 13220      261 1994    1.0
## 13221      275 1994    3.0
## 13222      277 1994    2.0
## 13223      282 1994    1.0
## 13224      288 1994    4.0
## 13225      291 1996    1.0
## 13226      292 1995    4.0
## 13227      293 1994    5.0
## 13228      296 1994    5.0
## 13229      315 1994    4.0
## 13230      316 1994    5.0
## 13231      317 1994    4.0
## 13232      318 1994    5.0
## 13233      327 1995    1.0
## 13234      329 1994    5.0
## 13235      333 1995    4.0
## 13236      339 1995    1.0
## 13237      344 1994    4.0
## 13238      349 1994    5.0
## 13239      350 1994    3.0
## 13240      355 1994    3.0
## 13241      356 1994    4.0
## 13242      357 1994    3.0
## 13243      364 1994    3.0
## 13244      366 1994    1.0
## 13245      367 1994    4.0
## 13246      368 1994    4.0
## 13247      370 1994    2.0
## 13248      374 1994    1.0
## 13249      377 1994    5.0
## 13250      380 1994    5.0
## 13251      405 1994    3.0
## 13252      410 1993    4.0
## 13253      415 1993    3.0
## 13254      420 1994    1.0
## 13255      432 1994    4.0
## 13256      434 1993    3.0
## 13257      437 1994    3.0
## 13258      442 1993    4.0
## 13259      454 1993    3.0
## 13260      457 1993    5.0
## 13261      466 1993    3.0
## 13262      471 1994    3.0
## 13263      480 1993    5.0
## 13264      485 1993    3.0
## 13265      500 1993    4.0
## 13266      508 1993    2.0
## 13267      519 1993    3.0
## 13268      520 1993    3.0
## 13269      527 1993    2.0
## 13270      543 1993    4.0
## 13271      546 1993    1.0
## 13272      548 1994    4.0
## 13273      551 1993    1.0
## 13274      553 1993    4.0
## 13275      555 1993    3.0
## 13276      586 1990    3.0
## 13277      587 1990    3.0
## 13278      588 1992    3.0
## 13279      589 1991    5.0
## 13280      590 1990    3.0
## 13281      592 1989    4.0
## 13282      593 1991    4.0
## 13283      594 1937    2.0
## 13284      595 1991    3.0
## 13285      597 1990    4.0
## 13286      610 1981    3.0
## 13287      616 1970    4.0
## 13288      648 1996    5.0
## 13289      688 1995    1.0
## 13290      709 1988    1.0
## 13291      733 1996    5.0
## 13292        1 1995    3.0
## 13293       11 1995    1.0
## 13294       14 1995    4.0
## 13295       17 1995    5.0
## 13296       18 1995    5.0
## 13297       19 1995    1.0
## 13298       21 1995    1.0
## 13299       25 1995    3.0
## 13300       26 1995    4.0
## 13301       28 1995    4.0
## 13302       29 1995    4.0
## 13303       30 1995    5.0
## 13304       32 1995    5.0
## 13305       34 1995    3.0
## 13306       35 1995    4.0
## 13307       36 1995    4.0
## 13308       39 1995    4.0
## 13309       41 1995    4.0
## 13310       46 1995    3.0
## 13311       47 1995    5.0
## 13312       58 1994    4.0
## 13313       62 1995    3.0
## 13314       68 1995    4.0
## 13315       72 1995    4.0
## 13316       73 1995    3.0
## 13317       81 1995    5.0
## 13318       82 1995    3.0
## 13319       85 1995    4.0
## 13320       97 1995    4.0
## 13321      105 1995    3.0
## 13322      110 1995    3.0
## 13323      116 1995    4.0
## 13324      121 1992    3.0
## 13325      124 1995    3.0
## 13326      126 1994    1.0
## 13327      141 1996    4.0
## 13328      144 1995    3.0
## 13329      147 1995    5.0
## 13330      150 1995    4.0
## 13331      151 1995    4.0
## 13332      154 1967    4.0
## 13333      159 1995    3.0
## 13334      160 1995    2.0
## 13335      162 1994    3.0
## 13336      171 1995    4.0
## 13337      172 1995    3.0
## 13338      178 1993    5.0
## 13339      180 1995    3.0
## 13340      186 1995    1.0
## 13341      194 1995    4.0
## 13342      198 1995    3.0
## 13343      203 1995    4.0
## 13344      208 1995    3.0
## 13345      213 1994    4.0
## 13346      218 1995    4.0
## 13347      223 1994    5.0
## 13348      224 1995    3.0
## 13349      229 1994    4.0
## 13350      231 1994    1.0
## 13351      232 1994    4.0
## 13352      235 1994    4.0
## 13353      242 1994    4.0
## 13354      246 1994    3.0
## 13355      247 1994    5.0
## 13356      249 1994    4.0
## 13357      252 1994    1.0
## 13358      253 1994    4.0
## 13359      254 1995    4.0
## 13360      260 1977    5.0
## 13361      261 1994    3.0
## 13362      263 1994    3.0
## 13363      265 1992    4.0
## 13364      266 1994    3.0
## 13365      269 1993    4.0
## 13366      272 1994    4.0
## 13367      273 1994    3.0
## 13368      282 1994    3.0
## 13369      287 1994    3.0
## 13370      288 1994    3.0
## 13371      290 1994    5.0
## 13372      292 1995    3.0
## 13373      296 1994    5.0
## 13374      299 1994    5.0
## 13375      300 1994    4.0
## 13376      302 1994    3.0
## 13377      305 1994    3.0
## 13378      306 1994    5.0
## 13379      307 1993    5.0
## 13380      308 1994    5.0
## 13381      314 1994    3.0
## 13382      316 1994    3.0
## 13383      318 1994    5.0
## 13384      319 1994    5.0
## 13385      321 1993    3.0
## 13386      324 1994    3.0
## 13387      329 1994    5.0
## 13388      331 1994    3.0
## 13389      332 1995    3.0
## 13390      337 1993    4.0
## 13391      342 1994    5.0
## 13392      345 1994    5.0
## 13393      348 1994    3.0
## 13394      357 1994    5.0
## 13395      362 1994    3.0
## 13396      364 1994    4.0
## 13397      365 1993    4.0
## 13398      369 1994    4.0
## 13399      372 1994    3.0
## 13400      405 1994    2.0
## 13401      419 1993    3.0
## 13402      427 1993    3.0
## 13403      435 1993    4.0
## 13404      444 1993    4.0
## 13405      446 1993    3.0
## 13406      454 1993    2.0
## 13407      461 1994    4.0
## 13408      468 1995    3.0
## 13409      469 1993    3.0
## 13410      471 1994    4.0
## 13411      475 1993    4.0
## 13412      477 1993    3.0
## 13413      480 1993    3.0
## 13414      481 1993    3.0
## 13415      482 1994    4.0
## 13416      497 1993    4.0
## 13417      500 1993    3.0
## 13418      501 1993    5.0
## 13419      508 1993    3.0
## 13420      509 1993    5.0
## 13421      515 1993    5.0
## 13422      527 1993    5.0
## 13423      531 1993    3.0
## 13424      534 1993    4.0
## 13425      535 1993    5.0
## 13426      538 1993    5.0
## 13427      539 1993    3.0
## 13428      541 1982    4.0
## 13429      550 1994    4.0
## 13430      551 1993    4.0
## 13431      555 1993    4.0
## 13432      568 1993    3.0
## 13433      585 1995    5.0
## 13434      586 1990    1.0
## 13435      587 1990    3.0
## 13436      588 1992    3.0
## 13437      589 1991    2.0
## 13438      590 1990    3.0
## 13439      592 1989    3.0
## 13440      593 1991    5.0
## 13441      594 1937    4.0
## 13442      595 1991    3.0
## 13443      596 1940    4.0
## 13444      597 1990    3.0
## 13445      608 1996    5.0
## 13446      613 1996    3.0
## 13447      616 1970    3.0
## 13448      633 1995    5.0
## 13449      640 1996    3.0
## 13450      650 1996    3.0
## 13451      661 1996    3.0
## 13452      665 1995    4.0
## 13453      671 1996    4.0
## 13454      708 1996    3.0
## 13455      720 1996    4.0
## 13456      724 1996    3.0
## 13457      728 1995    4.0
## 13458      753 1995    3.0
## 13459      756 1994    3.0
## 13460      766 1996    5.0
## 13461      778 1996    4.0
## 13462      780 1996    2.0
## 13463      783 1996    3.0
## 13464      784 1996    2.0
## 13465      828 1996    3.0
## 13466      830 1996    2.0
## 13467      844 1994    3.0
## 13468      892 1996    3.0
## 13469     1035 1965    4.0
## 13470     1036 1988    1.0
## 13471     1041 1996    5.0
## 13472     1046 1996    4.0
## 13473     1059 1996    3.0
## 13474     1073 1971    4.0
## 13475     1079 1988    4.0
## 13476     1084 1967    3.0
## 13477     1148 1993    5.0
## 13478     1161 1979    4.0
## 13479     1163 1994    3.0
## 13480     1354 1996    5.0
## 13481     1357 1996    5.0
## 13482        1 1995    3.0
## 13483        7 1995    3.0
## 13484       25 1995    4.0
## 13485       32 1995    3.0
## 13486       52 1995    4.0
## 13487       62 1995    1.0
## 13488       88 1996    3.0
## 13489       95 1996    3.0
## 13490      104 1996    4.0
## 13491      112 1995    3.0
## 13492      141 1996    4.0
## 13493      260 1977    4.0
## 13494      293 1994    5.0
## 13495      494 1996    4.0
## 13496      608 1996    5.0
## 13497      648 1996    3.0
## 13498      663 1996    3.0
## 13499      728 1995    5.0
## 13500      733 1996    3.0
## 13501      736 1996    2.0
## 13502      762 1996    3.0
## 13503      778 1996    3.0
## 13504      780 1996    3.0
## 13505      785 1996    4.0
## 13506      786 1996    3.0
## 13507      802 1996    3.0
## 13508      852 1996    1.0
## 13509     1073 1971    3.0
## 13510     1210 1983    3.0
## 13511     1357 1996    5.0
## 13512     1405 1996    2.0
## 13513        2 1995    3.5
## 13514        7 1995    4.0
## 13515       11 1995    3.5
## 13516       21 1995    3.5
## 13517       31 1995    3.0
## 13518       36 1995    4.0
## 13519       39 1995    3.0
## 13520       47 1995    4.0
## 13521       62 1995    3.5
## 13522       95 1996    2.0
## 13523      104 1996    0.5
## 13524      141 1996    4.5
## 13525      150 1995    4.0
## 13526      153 1995    2.0
## 13527      160 1995    2.0
## 13528      163 1995    3.0
## 13529      165 1995    3.0
## 13530      185 1995    3.0
## 13531      223 1994    4.5
## 13532      231 1994    0.5
## 13533      253 1994    3.0
## 13534      256 1994    0.5
## 13535      260 1977    4.0
## 13536      261 1994    3.5
## 13537      288 1994    3.0
## 13538      296 1994    3.5
## 13539      316 1994    2.5
## 13540      318 1994    4.0
## 13541      337 1993    3.5
## 13542      339 1995    4.0
## 13543      344 1994    2.0
## 13544      345 1994    3.0
## 13545      350 1994    3.0
## 13546      353 1994    4.0
## 13547      356 1994    4.0
## 13548      357 1994    5.0
## 13549      364 1994    4.0
## 13550      377 1994    3.0
## 13551      380 1994    2.0
## 13552      435 1993    1.5
## 13553      440 1993    2.5
## 13554      454 1993    2.5
## 13555      457 1993    2.5
## 13556      480 1993    3.0
## 13557      497 1993    4.0
## 13558      500 1993    2.5
## 13559      508 1993    4.0
## 13560      509 1993    5.0
## 13561      520 1993    1.5
## 13562      527 1993    4.0
## 13563      539 1993    3.5
## 13564      541 1982    4.5
## 13565      551 1993    4.5
## 13566      552 1993    2.0
## 13567      553 1993    3.0
## 13568      586 1990    2.5
## 13569      588 1992    3.0
## 13570      592 1989    3.0
## 13571      593 1991    2.0
## 13572      594 1937    4.0
## 13573      595 1991    3.5
## 13574      596 1940    4.0
## 13575      608 1996    3.5
## 13576      648 1996    3.5
## 13577      708 1996    3.5
## 13578      733 1996    3.0
## 13579      736 1996    3.5
## 13580      745 1995    3.0
## 13581      778 1996    4.5
## 13582      780 1996    3.5
## 13583      802 1996    1.0
## 13584      913 1941    4.0
## 13585      914 1964    4.0
## 13586      919 1939    4.0
## 13587      924 1968    4.0
## 13588     1028 1964    3.0
## 13589     1073 1971    3.0
## 13590     1079 1988    4.0
## 13591     1080 1979    3.5
## 13592     1097 1982    3.5
## 13593     1101 1986    4.0
## 13594     1136 1975    3.5
## 13595     1183 1996    3.0
## 13596     1193 1975    4.0
## 13597     1196 1980    3.5
## 13598     1197 1987    4.0
## 13599     1207 1962    4.0
## 13600     1225 1984    4.5
## 13601     1246 1989    5.0
## 13602     1258 1980    3.0
## 13603     1259 1986    4.5
## 13604     1265 1993    2.5
## 13605     1270 1985    3.5
## 13606     1278 1974    4.0
## 13607     1282 1940    4.0
## 13608     1291 1989    3.0
## 13609     1293 1982    4.0
## 13610     1302 1989    2.5
## 13611     1307 1989    4.0
## 13612     1380 1978    2.5
## 13613     1391 1996    3.0
## 13614     1393 1996    3.0
## 13615     1394 1987    3.5
## 13616     1407 1996    1.5
## 13617     1485 1997    0.5
## 13618     1500 1997    4.0
## 13619     1517 1997    0.5
## 13620     1527 1997    4.0
## 13621     1573 1997    3.0
## 13622     1580 1997    2.5
## 13623     1639 1997    4.5
## 13624     1641 1997    4.0
## 13625     1674 1985    3.0
## 13626     1704 1997    5.0
## 13627     1732 1998    4.0
## 13628     1777 1998    1.5
## 13629     1784 1997    3.5
## 13630     1909 1998    0.5
## 13631     1917 1998    3.0
## 13632     1961 1988    3.5
## 13633     1968 1985    3.5
## 13634     2011 1989    2.0
## 13635     2054 1989    3.0
## 13636     2100 1984    3.5
## 13637     2115 1984    2.0
## 13638     2174 1988    4.0
## 13639     2268 1992    3.0
## 13640     2291 1990    4.5
## 13641     2302 1992    3.0
## 13642     2321 1998    3.0
## 13643     2329 1998    2.5
## 13644     2353 1998    3.5
## 13645     2355 1998    3.5
## 13646     2396 1998    4.5
## 13647     2502 1999    4.0
## 13648     2571 1999    4.0
## 13649     2599 1999    4.0
## 13650     2617 1999    2.5
## 13651     2628 1999    0.5
## 13652     2640 1978    2.0
## 13653     2671 1999    4.0
## 13654     2692 1998    4.5
## 13655     2710 1999    1.0
## 13656     2712 1999    2.5
## 13657     2716 1984    3.5
## 13658     2762 1999    4.0
## 13659     2763 1999    2.5
## 13660     2791 1980    3.5
## 13661     2797 1988    4.0
## 13662     2858 1999    4.0
## 13663     2959 1999    4.0
## 13664     2962 1997    4.5
## 13665     2997 1999    4.0
## 13666     3052 1999    2.5
## 13667     3081 1999    3.0
## 13668     3147 1999    4.0
## 13669     3160 1999    4.0
## 13670     3255 1992    3.0
## 13671     3408 2000    4.5
## 13672     3418 1991    3.5
## 13673     3435 1944    3.5
## 13674     3448 1987    4.0
## 13675     3481 2000    4.5
## 13676     3578 2000    2.0
## 13677     3751 2000    3.5
## 13678     3753 2000    3.5
## 13679     3755 2000    2.5
## 13680     3793 2000    3.0
## 13681     3897 2000    4.5
## 13682     3996 2000    3.5
## 13683     4017 2000    4.0
## 13684     4022 2000    4.0
## 13685     4027 2000    4.0
## 13686     4034 2000    4.0
## 13687     4226 2000    3.0
## 13688     4246 2001    4.0
## 13689     4308 2001    3.0
## 13690     4720 2001    2.5
## 13691     4886 2001    4.0
## 13692     4896 2001    3.5
## 13693     4963 2001    4.5
## 13694     4973 2001    5.0
## 13695     4979 2001    4.0
## 13696     4993 2001    4.0
## 13697     4995 2001    3.0
## 13698     5218 2002    3.5
## 13699     5299 2002    3.5
## 13700     5349 2002    3.0
## 13701     5377 2002    4.5
## 13702     5378 2002    1.0
## 13703     5418 2002    4.0
## 13704     5445 2002    3.5
## 13705     5459 2002    2.5
## 13706     5618 2001    4.0
## 13707     5679 2002    2.0
## 13708     5952 2002    3.5
## 13709     5991 2002    3.0
## 13710     5995 2002    4.5
## 13711     6016 2002    4.0
## 13712     6373 2003    2.5
## 13713     6377 2003    4.0
## 13714     6539 2003    4.0
## 13715     6711 2003    4.5
## 13716     6807 1983    4.0
## 13717     6863 2003    3.0
## 13718     6873 2003    4.0
## 13719     6874 2003    4.0
## 13720     6881 2003    4.0
## 13721     6942 2003    4.5
## 13722     7147 2003    4.0
## 13723     7153 2003    3.5
## 13724     7285 2003    4.0
## 13725     7361 2004    4.0
## 13726     7438 2004    4.0
## 13727     8228 1931    4.5
## 13728     8368 2004    3.5
## 13729     8636 2004    3.0
## 13730     8644 2004    4.0
## 13731     8665 2004    4.0
## 13732     8784 2004    4.0
## 13733     8874 2004    3.5
## 13734    30707 2004    3.5
## 13735    30793 2005    2.5
## 13736    32587 2005    3.5
## 13737    32598 2005    3.0
## 13738    33794 2005    2.0
## 13739    34405 2005    3.0
## 13740    35836 2005    2.5
## 13741    36517 2005    4.0
## 13742    40815 2005    3.5
## 13743    40819 2005    4.5
## 13744    41566 2005    4.0
## 13745    45447 2006    3.0
## 13746    46976 2006    4.5
## 13747    50872 2007    4.0
## 13748    51705 2006    4.5
## 13749    52668 2007    4.5
## 13750    52973 2007    3.0
## 13751    54001 2007    4.0
## 13752    55269 2007    1.5
## 13753    56367 2007    5.0
## 13754    57669 2008    4.0
## 13755    59615 2008    1.0
## 13756    60684 2009    2.5
## 13757    62344 2008    4.5
## 13758    63515 2006    2.5
## 13759    63876 2008    4.5
## 13760    65261 2008    4.0
## 13761    66097 2009    4.0
## 13762    66198 2009    3.0
## 13763    67193 2009    3.0
## 13764    67799 2009    2.5
## 13765    68954 2009    4.5
## 13766    69844 2009    4.0
## 13767    70293 2009    4.5
## 13768        1 1995    5.0
## 13769      107 1996    4.0
## 13770      110 1995    5.0
## 13771      165 1995    4.0
## 13772      231 1994    5.0
## 13773      260 1977    5.0
## 13774      296 1994    5.0
## 13775      303 1995    4.0
## 13776      316 1994    4.0
## 13777      318 1994    5.0
## 13778      327 1995    2.0
## 13779      344 1994    5.0
## 13780      364 1994    5.0
## 13781      428 1993    4.0
## 13782      480 1993    5.0
## 13783      500 1993    5.0
## 13784      588 1992    4.5
## 13785      589 1991    4.0
## 13786      590 1990    5.0
## 13787      648 1996    4.0
## 13788      780 1996    4.0
## 13789     1019 1954    3.0
## 13790     1073 1971    4.5
## 13791     1214 1979    3.5
## 13792     1240 1984    4.5
## 13793     1265 1993    4.5
## 13794     1385 1992    3.0
## 13795     1617 1997    4.0
## 13796     1772 1998    5.0
## 13797     2028 1998    5.0
## 13798     2378 1984    4.0
## 13799     2571 1999    5.0
## 13800     2628 1999    5.0
## 13801     2683 1999    5.0
## 13802     2706 1999    5.0
## 13803     2762 1999    5.0
## 13804     2951 1964    5.0
## 13805     2959 1999    5.0
## 13806     2987 1988    4.0
## 13807     2991 1973    5.0
## 13808     3114 1999    4.5
## 13809     3254 1993    4.0
## 13810     3578 2000    5.0
## 13811     3638 1979    5.0
## 13812     3793 2000    5.0
## 13813     4886 2001    4.0
## 13814     4896 2001    5.0
## 13815     4963 2001    5.0
## 13816     5219 2002    4.5
## 13817     5349 2002    4.5
## 13818     5418 2002    5.0
## 13819     5952 2002    5.0
## 13820     6365 2003    5.0
## 13821     6539 2003    5.0
## 13822     6874 2003    5.0
## 13823     7153 2003    5.0
## 13824     7438 2004    5.0
## 13825     7454 2004    4.0
## 13826     8528 2004    5.0
## 13827    33794 2005    5.0
## 13828    45722 2006    5.0
## 13829    48516 2006    5.0
## 13830    49272 2006    4.0
## 13831    51662 2007    5.0
## 13832    58559 2008    5.0
## 13833    59315 2008    5.0
## 13834        1 1995    4.0
## 13835        6 1995    4.0
## 13836       25 1995    2.0
## 13837       29 1995    5.0
## 13838       32 1995    4.0
## 13839       36 1995    4.0
## 13840       79 1996    3.0
## 13841       81 1995    4.0
## 13842      141 1996    3.0
## 13843      260 1977    4.0
## 13844      608 1996    5.0
## 13845      648 1996    4.0
## 13846      661 1996    3.0
## 13847      733 1996    4.0
## 13848      736 1996    3.0
## 13849      766 1996    3.0
## 13850      778 1996    4.0
## 13851      780 1996    2.0
## 13852      783 1996    3.0
## 13853      800 1996    5.0
## 13854      802 1996    4.0
## 13855      830 1996    3.0
## 13856      832 1996    4.0
## 13857      837 1996    4.0
## 13858      866 1996    4.0
## 13859      986 1996    4.0
## 13860     1047 1996    4.0
## 13861     1061 1996    4.0
## 13862     1073 1971    3.0
## 13863     1183 1996    4.0
## 13864     1351 1996    4.0
## 13865     1356 1996    4.0
## 13866     1367 1996    4.0
## 13867     1407 1996    4.0
## 13868     1422 1997    4.0
## 13869     1438 1997    3.0
## 13870     1472 1997    4.0
## 13871     1479 1997    3.0
## 13872     1500 1997    5.0
## 13873     1513 1997    2.0
## 13874     1515 1997    3.0
## 13875     1527 1997    4.0
## 13876     1552 1997    4.0
## 13877     1554 1996    4.0
## 13878     1569 1997    4.0
## 13879     1580 1997    4.0
## 13880     1584 1997    5.0
## 13881     1590 1997    5.0
## 13882     1597 1997    4.0
## 13883     1608 1997    2.0
## 13884        1 1995    5.0
## 13885       12 1995    3.5
## 13886       19 1995    4.0
## 13887       23 1995    3.5
## 13888       34 1995    3.0
## 13889      104 1996    4.0
## 13890      110 1995    5.0
## 13891      216 1995    4.0
## 13892      231 1994    4.5
## 13893      260 1977    5.0
## 13894      267 1995    3.5
## 13895      318 1994    5.0
## 13896      356 1994    5.0
## 13897      370 1994    4.5
## 13898      380 1994    4.5
## 13899      466 1993    5.0
## 13900      527 1993    5.0
## 13901      588 1992    4.5
## 13902      589 1991    5.0
## 13903      747 1996    3.5
## 13904     1036 1988    5.0
## 13905     1047 1996    4.0
## 13906     1097 1982    5.0
## 13907     1196 1980    5.0
## 13908     1198 1981    5.0
## 13909     1200 1986    4.0
## 13910     1210 1983    5.0
## 13911     1214 1979    4.0
## 13912     1240 1984    5.0
## 13913     1265 1993    5.0
## 13914     1270 1985    5.0
## 13915     1291 1989    5.0
## 13916     1573 1997    4.0
## 13917     1682 1998    5.0
## 13918     2028 1998    5.0
## 13919     2335 1998    3.0
## 13920     2379 1985    3.0
## 13921     2380 1986    3.0
## 13922     2381 1987    3.0
## 13923     2382 1988    2.5
## 13924     2571 1999    5.0
## 13925     2706 1999    4.0
## 13926     2791 1980    5.0
## 13927     2948 1963    4.5
## 13928     3114 1999    5.0
## 13929     3146 1999    3.5
## 13930     3387 1989    3.0
## 13931     3578 2000    4.0
## 13932     3623 2000    4.0
## 13933     3821 2000    3.0
## 13934     3869 1991    4.5
## 13935     3979 2000    3.0
## 13936     3996 2000    4.0
## 13937     4015 2000    3.0
## 13938     4084 1987    3.5
## 13939     4306 2001    4.5
## 13940     4340 2001    3.0
## 13941     4718 2001    4.0
## 13942     4886 2001    5.0
## 13943     4973 2001    4.5
## 13944     4993 2001    5.0
## 13945     5218 2002    4.5
## 13946     5418 2002    5.0
## 13947     5952 2002    5.0
## 13948     6482 2003    2.0
## 13949     6550 2003    3.0
## 13950     6763 2003    3.5
## 13951     7153 2003    5.0
## 13952     7317 2004    4.0
## 13953     7346 2004    4.0
## 13954     8360 2004    4.5
## 13955     8531 2004    3.0
## 13956    30825 2004    4.0
## 13957    33679 2005    4.5
## 13958    33794 2005    5.0
## 13959    34162 2005    4.5
## 13960    35836 2005    4.0
## 13961    43836 2006    3.5
## 13962    44022 2006    4.5
## 13963    44191 2006    4.5
## 13964    44972 2006    3.0
## 13965    45186 2006    4.5
## 13966    46865 2006    2.5
## 13967    50806 2007    2.0
## 13968    52694 2007    3.5
## 13969    54272 2007    4.5
## 13970    54286 2007    5.0
## 13971    54503 2007    4.0
## 13972    54732 2007    3.0
## 13973    57532 2008    2.0
## 13974    58559 2008    5.0
## 13975    59014 2008    3.0
## 13976    59315 2008    5.0
## 13977    59369 2008    4.5
## 13978    59900 2008    3.0
## 13979    66798 2009    4.0
## 13980    68358 2009    4.5
## 13981    68954 2009    4.0
## 13982    69122 2009    4.5
## 13983    71535 2009    4.5
## 13984    73017 2009    4.5
## 13985    74851 2010    4.5
## 13986    76093 2010    5.0
## 13987    78041 2010    3.5
## 13988    78499 2010    5.0
## 13989    79132 2010    5.0
## 13990    79185 2010    4.0
## 13991    79293 2010    4.0
## 13992    79428 2010    3.0
## 13993    80549 2010    3.5
## 13994    81229 2010    5.0
## 13995    81564 2010    4.5
## 13996    82852 2010    3.5
## 13997    85414 2011    5.0
## 13998    87232 2011    5.0
## 13999    89745 2012    5.0
## 14000    91500 2012    3.5
## 14001    91542 2011    5.0
## 14002    91630 2011    4.5
## 14003    92259 2011    5.0
## 14004    92507 2012    4.5
## 14005    93326 2012    4.0
## 14006    93510 2012    4.0
## 14007    94466 2011    4.0
## 14008    96610 2012    5.0
## 14009    96616 2012    3.0
## 14010    97913 2012    4.5
## 14011    98809 2012    4.5
## 14012   103335 2013    4.5
## 14013   103341 2013    3.5
## 14014   103810 2013    5.0
## 14015   103883 2013    4.0
## 14016   104218 2013    3.5
## 14017   104374 2013    4.5
## 14018   106487 2013    3.0
## 14019   106489 2013    4.5
## 14020   106782 2013    4.5
## 14021   109374 2014    5.0
## 14022   110102 2014    5.0
## 14023   111781 2015    4.0
## 14024   112138 2014    4.0
## 14025   112175 2014    4.5
## 14026   112623 2014    4.5
## 14027   112852 2014    5.0
## 14028   115617 2014    5.0
## 14029   116977 2014    3.5
## 14030   132157 2015    2.5
## 14031   134368 2015    4.0
## 14032   134853 2015    4.0
## 14033   138036 2015    5.0
## 14034        1 1995    5.0
## 14035        2 1995    3.0
## 14036        6 1995    3.0
## 14037       10 1995    2.0
## 14038       11 1995    4.0
## 14039       19 1995    1.0
## 14040       21 1995    5.0
## 14041       32 1995    5.0
## 14042       34 1995    5.0
## 14043       39 1995    2.0
## 14044       44 1995    3.0
## 14045       45 1995    4.0
## 14046       47 1995    5.0
## 14047       50 1995    5.0
## 14048       62 1995    3.0
## 14049       76 1995    3.0
## 14050       95 1996    3.0
## 14051      110 1995    5.0
## 14052      112 1995    4.0
## 14053      141 1996    4.0
## 14054      145 1995    3.0
## 14055      150 1995    3.0
## 14056      151 1995    3.0
## 14057      153 1995    3.0
## 14058      160 1995    2.0
## 14059      161 1995    5.0
## 14060      163 1995    5.0
## 14061      165 1995    3.0
## 14062      172 1995    1.0
## 14063      173 1995    3.0
## 14064      177 1995    2.0
## 14065      181 1995    3.0
## 14066      186 1995    3.0
## 14067      188 1995    3.0
## 14068      193 1995    1.0
## 14069      196 1995    3.0
## 14070      204 1995    4.0
## 14071      208 1995    3.0
## 14072      223 1994    5.0
## 14073      224 1995    3.0
## 14074      231 1994    3.0
## 14075      235 1994    4.0
## 14076      237 1995    3.0
## 14077      247 1994    5.0
## 14078      252 1994    3.0
## 14079      253 1994    2.0
## 14080      266 1994    2.0
## 14081      273 1994    3.0
## 14082      288 1994    3.0
## 14083      292 1995    3.0
## 14084      293 1994    4.0
## 14085      296 1994    4.0
## 14086      300 1994    4.0
## 14087      315 1994    2.0
## 14088      316 1994    1.0
## 14089      317 1994    2.0
## 14090      318 1994    5.0
## 14091      319 1994    4.0
## 14092      328 1995    3.0
## 14093      329 1994    3.0
## 14094      330 1995    3.0
## 14095      332 1995    3.0
## 14096      333 1995    3.0
## 14097      339 1995    3.0
## 14098      344 1994    2.0
## 14099      349 1994    3.0
## 14100      350 1994    2.0
## 14101      353 1994    3.0
## 14102      355 1994    2.0
## 14103      356 1994    4.0
## 14104      357 1994    3.0
## 14105      362 1994    3.0
## 14106      364 1994    1.0
## 14107      366 1994    2.0
## 14108      367 1994    3.0
## 14109      368 1994    4.0
## 14110      370 1994    3.0
## 14111      377 1994    3.0
## 14112      380 1994    4.0
## 14113      413 1994    1.0
## 14114      420 1994    1.0
## 14115      426 1993    2.0
## 14116      432 1994    2.0
## 14117      434 1993    3.0
## 14118      435 1993    3.0
## 14119      440 1993    3.0
## 14120      442 1993    3.0
## 14121      454 1993    2.0
## 14122      455 1993    3.0
## 14123      457 1993    4.0
## 14124      466 1993    2.0
## 14125      471 1994    4.0
## 14126      474 1993    4.0
## 14127      480 1993    4.0
## 14128      485 1993    3.0
## 14129      497 1993    4.0
## 14130      500 1993    3.0
## 14131      508 1993    3.0
## 14132      509 1993    1.0
## 14133      520 1993    2.0
## 14134      527 1993    4.0
## 14135      529 1993    3.0
## 14136      532 1994    3.0
## 14137      539 1993    3.0
## 14138      543 1993    3.0
## 14139      551 1993    3.0
## 14140      552 1993    1.0
## 14141      553 1993    5.0
## 14142      555 1993    5.0
## 14143      587 1990    3.0
## 14144      588 1992    3.0
## 14145      589 1991    5.0
## 14146      590 1990    4.0
## 14147      592 1989    3.0
## 14148      595 1991    5.0
## 14149      597 1990    2.0
## 14150      606 1995    2.0
## 14151      608 1996    5.0
## 14152      610 1981    3.0
## 14153      648 1996    5.0
## 14154      736 1996    2.0
## 14155      778 1996    5.0
## 14156      780 1996    2.0
## 14157        1 1995    4.0
## 14158       11 1995    3.5
## 14159       17 1995    4.0
## 14160       21 1995    5.0
## 14161       25 1995    3.5
## 14162       34 1995    4.0
## 14163       39 1995    4.0
## 14164       62 1995    3.5
## 14165      150 1995    4.0
## 14166      208 1995    3.0
## 14167      260 1977    4.0
## 14168      265 1992    3.5
## 14169      266 1994    3.5
## 14170      337 1993    4.0
## 14171      339 1995    4.5
## 14172      342 1994    3.5
## 14173      357 1994    3.5
## 14174      364 1994    3.5
## 14175      368 1994    3.5
## 14176      377 1994    4.5
## 14177      457 1993    4.0
## 14178      508 1993    4.0
## 14179      515 1993    2.5
## 14180      529 1993    4.0
## 14181      539 1993    4.0
## 14182      586 1990    2.5
## 14183      587 1990    3.5
## 14184      588 1992    3.0
## 14185      590 1990    4.5
## 14186      592 1989    3.5
## 14187      595 1991    4.0
## 14188      597 1990    3.5
## 14189      648 1996    3.5
## 14190      733 1996    3.0
## 14191      858 1972    4.5
## 14192      898 1940    5.0
## 14193      902 1961    2.5
## 14194      904 1954    4.5
## 14195      908 1959    4.0
## 14196      910 1959    3.5
## 14197      912 1942    4.5
## 14198      914 1964    3.5
## 14199      919 1939    4.0
## 14200      920 1939    4.0
## 14201      923 1941    4.0
## 14202     1073 1971    3.5
## 14203     1079 1988    4.0
## 14204     1097 1982    4.0
## 14205     1193 1975    4.0
## 14206     1197 1987    4.0
## 14207     1198 1981    4.0
## 14208     1225 1984    4.0
## 14209     1234 1973    4.0
## 14210     1240 1984    3.0
## 14211     1242 1989    3.5
## 14212     1246 1989    3.5
## 14213     1247 1967    3.5
## 14214     1259 1986    4.0
## 14215     1265 1993    4.0
## 14216     1270 1985    3.5
## 14217     1278 1974    4.0
## 14218     1291 1989    3.5
## 14219     1304 1969    4.5
## 14220     1307 1989    4.0
## 14221     1380 1978    3.5
## 14222     1387 1975    3.0
## 14223     1393 1996    3.5
## 14224     1394 1987    4.0
## 14225     1580 1997    3.5
## 14226     1610 1990    4.0
## 14227     1641 1997    4.5
## 14228     1682 1998    3.5
## 14229     1704 1997    4.0
## 14230     1721 1997    4.0
## 14231     1747 1997    5.0
## 14232     1784 1997    3.5
## 14233     1912 1998    4.0
## 14234     1923 1998    3.5
## 14235     1961 1988    4.5
## 14236     1968 1985    3.5
## 14237     2011 1989    3.0
## 14238     2081 1989    2.5
## 14239     2100 1984    2.5
## 14240     2115 1984    3.5
## 14241     2194 1987    4.5
## 14242     2268 1992    4.5
## 14243     2291 1990    3.5
## 14244     2302 1992    4.0
## 14245     2321 1998    4.0
## 14246     2355 1998    3.0
## 14247     2396 1998    4.0
## 14248     2406 1984    3.5
## 14249     2470 1986    2.5
## 14250     2599 1999    4.0
## 14251     2657 1975    3.0
## 14252     2716 1984    3.5
## 14253     2797 1988    4.0
## 14254     2918 1986    4.0
## 14255     3072 1987    3.5
## 14256     3101 1987    4.0
## 14257     3114 1999    4.0
## 14258     3176 1999    3.0
## 14259     3255 1992    3.0
## 14260     3256 1992    3.5
## 14261     3317 2000    4.0
## 14262     3408 2000    3.5
## 14263     3471 1977    3.5
## 14264     3751 2000    4.0
## 14265     3897 2000    5.0
## 14266     4014 2000    3.5
## 14267     4022 2000    3.5
## 14268     4027 2000    3.5
## 14269     4029 2000    5.0
## 14270     4085 1984    3.5
## 14271     4246 2001    4.0
## 14272     4306 2001    3.0
## 14273     4361 1982    4.5
## 14274     4886 2001    3.0
## 14275     4963 2001    4.0
## 14276     4979 2001    4.5
## 14277     4993 2001    5.0
## 14278     4995 2001    4.0
## 14279     5299 2002    3.5
## 14280     5377 2002    3.5
## 14281     5952 2002    5.0
## 14282     5989 2002    4.0
## 14283     6377 2003    3.5
## 14284     6711 2003    4.0
## 14285     6863 2003    3.0
## 14286     6942 2003    3.5
## 14287     7147 2003    3.5
## 14288     7153 2003    5.0
## 14289     8360 2004    3.0
## 14290     8636 2004    3.5
## 14291     8949 2004    4.0
## 14292     8961 2004    5.0
## 14293    27790 2004    5.0
## 14294    41566 2005    4.0
## 14295    41569 2005    3.0
## 14296    44195 2006    4.0
## 14297    45722 2006    2.5
## 14298    46578 2006    4.0
## 14299    49272 2006    3.5
## 14300    50872 2007    3.5
## 14301    54328 2006    5.0
## 14302    56367 2007    5.0
## 14303    59315 2008    4.0
## 14304    59615 2008    2.5
## 14305    60069 2008    3.5
## 14306    68954 2009    5.0
## 14307    72011 2009    4.0
## 14308    72998 2009    4.0
## 14309    74789 2010    3.5
## 14310    77561 2010    4.0
## 14311    78499 2010    5.0
## 14312    79132 2010    4.0
## 14313    81845 2010    4.0
## 14314    82459 2010    4.0
## 14315    84304 2011    3.5
## 14316        1 1995    4.0
## 14317       16 1995    3.5
## 14318       50 1995    4.0
## 14319       69 1995    3.0
## 14320      104 1996    2.5
## 14321      110 1995    4.5
## 14322      111 1976    3.5
## 14323      150 1995    5.0
## 14324      161 1995    3.5
## 14325      208 1995    2.0
## 14326      231 1994    4.0
## 14327      260 1977    3.0
## 14328      292 1995    3.5
## 14329      296 1994    4.0
## 14330      316 1994    2.5
## 14331      318 1994    5.0
## 14332      344 1994    3.0
## 14333      353 1994    3.0
## 14334      356 1994    5.0
## 14335      367 1994    1.5
## 14336      442 1993    1.5
## 14337      480 1993    2.5
## 14338      527 1993    5.0
## 14339      551 1993    1.0
## 14340      590 1990    4.0
## 14341      593 1991    5.0
## 14342      733 1996    2.5
## 14343      780 1996    2.0
## 14344      858 1972    4.5
## 14345      923 1941    3.0
## 14346     1049 1996    3.0
## 14347     1089 1992    2.5
## 14348     1131 1986    4.5
## 14349     1172 1989    3.5
## 14350     1193 1975    3.5
## 14351     1198 1981    2.5
## 14352     1213 1990    4.0
## 14353     1222 1987    4.0
## 14354     1233 1981    1.5
## 14355     1246 1989    3.0
## 14356     1252 1974    3.5
## 14357     1265 1993    2.0
## 14358     1270 1985    4.0
## 14359     1393 1996    3.0
## 14360     1552 1997    2.5
## 14361     1580 1997    3.0
## 14362     1610 1990    4.0
## 14363     1617 1997    3.5
## 14364     1653 1997    4.0
## 14365     1676 1997    4.0
## 14366     1682 1998    4.0
## 14367     1704 1997    4.5
## 14368     1721 1997    4.5
## 14369     1726 1997    2.0
## 14370     1777 1998    2.5
## 14371     1784 1997    3.5
## 14372     1961 1988    4.0
## 14373     1962 1989    4.0
## 14374     2012 1990    2.5
## 14375     2028 1998    5.0
## 14376     2115 1984    1.0
## 14377     2324 1997    5.0
## 14378     2329 1998    4.5
## 14379     2423 1989    4.0
## 14380     2501 1999    4.5
## 14381     2571 1999    4.5
## 14382     2628 1999    1.0
## 14383     2692 1998    2.5
## 14384     2706 1999    3.5
## 14385     2710 1999    1.5
## 14386     2762 1999    3.0
## 14387     2795 1983    3.5
## 14388     2804 1983    4.0
## 14389     2858 1999    4.0
## 14390     2916 1990    2.0
## 14391     2959 1999    4.5
## 14392     3105 1990    4.5
## 14393     3147 1999    4.5
## 14394     3175 1999    1.5
## 14395     3178 1999    4.0
## 14396     3243 1992    1.5
## 14397     3409 2000    2.5
## 14398     3441 1984    0.5
## 14399     3450 1993    2.5
## 14400     3471 1977    3.0
## 14401     3578 2000    5.0
## 14402     3593 2000    0.5
## 14403     3753 2000    4.0
## 14404     3948 2000    3.5
## 14405     3949 2000    4.5
## 14406     4011 2000    3.0
## 14407     4014 2000    3.5
## 14408     4022 2000    4.0
## 14409     4226 2000    4.5
## 14410     4306 2001    5.0
## 14411     4878 2001    4.0
## 14412     4973 2001    4.5
## 14413     4993 2001    4.5
## 14414     4995 2001    5.0
## 14415     5010 2001    4.0
## 14416     5218 2002    3.5
## 14417     5349 2002    4.0
## 14418     5418 2002    4.0
## 14419     5445 2002    2.5
## 14420     5464 2002    3.5
## 14421     5502 2002    1.5
## 14422     5679 2002    2.5
## 14423     5952 2002    4.0
## 14424     5989 2002    4.5
## 14425     5991 2002    4.0
## 14426     6016 2002    3.0
## 14427     6365 2003    2.5
## 14428     6373 2003    2.5
## 14429     6377 2003    4.0
## 14430     6378 2003    1.0
## 14431     6539 2003    3.5
## 14432     6552 2002    3.5
## 14433     6711 2003    1.5
## 14434     6863 2003    4.0
## 14435     6870 2003    3.5
## 14436     6874 2003    3.5
## 14437     6934 2003    1.5
## 14438     7153 2003    4.5
## 14439     7254 2004    2.0
## 14440     7361 2004    3.0
## 14441     7438 2004    2.0
## 14442     8132 1992    4.5
## 14443     8360 2004    3.5
## 14444     8464 2004    3.0
## 14445     8636 2004    3.5
## 14446     8644 2004    3.0
## 14447     8645 2004    3.5
## 14448     8781 2004    3.0
## 14449     8784 2004    2.5
## 14450     8798 2004    2.5
## 14451     8873 2004    2.5
## 14452     8874 2004    2.0
## 14453     8949 2004    1.5
## 14454     8961 2004    3.0
## 14455    30707 2004    4.5
## 14456    30749 2004    4.5
## 14457    30793 2005    1.0
## 14458    32587 2005    4.0
## 14459    33166 2004    4.5
## 14460    33660 2005    4.5
## 14461    33794 2005    3.0
## 14462    34162 2005    3.5
## 14463    34405 2005    3.5
## 14464    35836 2005    4.5
## 14465    39292 2005    3.5
## 14466    40414 2005    4.0
## 14467    40819 2005    4.0
## 14468    44191 2006    4.0
## 14469    44195 2006    3.0
## 14470    44204 2005    3.0
## 14471    45722 2006    2.5
## 14472    46578 2006    4.0
## 14473    46976 2006    4.0
## 14474    47099 2006    3.5
## 14475    48394 2006    3.0
## 14476    48516 2006    4.0
## 14477    48738 2006    4.0
## 14478    48780 2006    3.5
## 14479    50068 2006    3.5
## 14480    50872 2007    3.0
## 14481    51662 2007    4.0
## 14482    53996 2007    2.5
## 14483    54272 2007    3.0
## 14484    54503 2007    3.0
## 14485    55118 2007    4.0
## 14486    55820 2007    3.0
## 14487    56174 2007    2.5
## 14488    56367 2007    3.5
## 14489    58559 2008    4.0
## 14490    58706 2007    4.0
## 14491    59315 2008    3.0
## 14492    59784 2008    5.0
## 14493    60069 2008    5.0
## 14494    63062 2008    4.0
## 14495    63082 2008    3.5
## 14496    64614 2008    4.0
## 14497    64620 2008    3.5
## 14498    64622 2008    3.5
## 14499    64957 2008    4.5
## 14500    68358 2009    3.5
## 14501    68954 2009    5.0
## 14502    69122 2009    4.5
## 14503    69481 2008    3.5
## 14504    70286 2009    4.0
## 14505    71535 2009    4.0
## 14506    72641 2009    4.5
## 14507    72998 2009    4.0
## 14508    74458 2010    2.5
## 14509    76251 2010    3.0
## 14510    78499 2010    4.0
## 14511    79132 2010    4.0
## 14512        6 1995    5.0
## 14513        9 1995    3.0
## 14514       11 1995    4.0
## 14515       16 1995    5.0
## 14516       19 1995    4.0
## 14517       24 1995    4.0
## 14518       63 1996    4.0
## 14519       70 1996    4.0
## 14520       86 1996    4.0
## 14521       88 1996    4.0
## 14522      174 1995    2.0
## 14523      196 1995    3.0
## 14524      198 1995    4.0
## 14525      222 1995    4.0
## 14526      223 1994    5.0
## 14527      236 1995    4.0
## 14528      253 1994    4.0
## 14529      260 1977    5.0
## 14530      261 1994    5.0
## 14531      266 1994    5.0
## 14532      296 1994    5.0
## 14533      328 1995    3.0
## 14534      329 1994    3.0
## 14535      332 1995    3.0
## 14536      339 1995    4.0
## 14537      357 1994    4.0
## 14538      360 1994    3.0
## 14539      364 1994    4.0
## 14540      366 1994    4.0
## 14541      382 1994    4.0
## 14542      457 1993    4.0
## 14543      480 1993    4.0
## 14544      519 1993    2.0
## 14545      553 1993    4.0
## 14546      593 1991    5.0
## 14547      610 1981    4.0
## 14548      724 1996    3.0
## 14549      733 1996    4.0
## 14550      778 1996    5.0
## 14551      780 1996    4.0
## 14552      785 1996    4.0
## 14553      879 1997    3.0
## 14554      968 1968    5.0
## 14555      999 1996    4.0
## 14556     1022 1950    4.0
## 14557     1037 1992    3.0
## 14558     1059 1996    5.0
## 14559     1088 1987    5.0
## 14560     1093 1991    4.0
## 14561     1127 1989    4.0
## 14562     1130 1980    5.0
## 14563     1198 1981    5.0
## 14564     1210 1983    5.0
## 14565     1214 1979    5.0
## 14566     1215 1993    5.0
## 14567     1219 1960    5.0
## 14568     1246 1989    4.0
## 14569     1258 1980    4.0
## 14570     1261 1987    5.0
## 14571     1268 1990    5.0
## 14572     1320 1992    4.0
## 14573     1321 1981    5.0
## 14574     1322 1992    2.0
## 14575     1327 1979    4.0
## 14576     1330 1986    4.0
## 14577     1339 1992    5.0
## 14578     1342 1992    4.0
## 14579     1345 1976    4.0
## 14580     1347 1984    5.0
## 14581     1350 1976    4.0
## 14582     1370 1990    4.0
## 14583     1377 1992    4.0
## 14584     1387 1975    5.0
## 14585     1388 1978    4.0
## 14586     1389 1983    4.0
## 14587     1393 1996    5.0
## 14588     1407 1996    4.0
## 14589     1513 1997    4.0
## 14590     1644 1997    3.0
## 14591     1645 1997    4.0
## 14592     1655 1998    2.0
## 14593     1690 1997    3.0
## 14594     1717 1997    4.0
## 14595     1762 1998    3.0
## 14596     1909 1998    4.0
## 14597     1917 1998    3.0
## 14598     1969 1985    4.0
## 14599     1970 1987    4.0
## 14600     1971 1988    4.0
## 14601     1972 1989    3.0
## 14602     1973 1991    3.0
## 14603     1974 1980    4.0
## 14604     1975 1981    3.0
## 14605     1982 1978    5.0
## 14606     1983 1981    3.0
## 14607     1984 1982    3.0
## 14608     1985 1988    2.0
## 14609     1988 1987    3.0
## 14610     1994 1982    4.0
## 14611     1995 1986    3.0
## 14612     2003 1984    5.0
## 14613     2004 1990    4.0
## 14614     2005 1985    5.0
## 14615     2013 1972    3.0
## 14616     2026 1998    3.0
## 14617     2028 1998    4.0
## 14618     2069 1985    3.0
## 14619     2081 1989    4.0
## 14620     2105 1982    3.0
## 14621     2107 1998    4.0
## 14622     2109 1979    5.0
## 14623     2113 1990    2.0
## 14624     2118 1983    4.0
## 14625     2119 1986    5.0
## 14626     2120 1993    3.0
## 14627     2121 1983    2.0
## 14628     2123 1989    4.0
## 14629     2148 1986    4.0
## 14630     2149 1987    3.0
## 14631     2160 1968    3.0
## 14632     2163 1978    3.0
## 14633     2167 1998    4.0
## 14634     2188 1998    3.0
## 14635     2193 1988    5.0
## 14636     2279 1998    4.0
## 14637     2294 1998    4.0
## 14638     2327 1990    4.0
## 14639     2336 1998    4.0
## 14640     2353 1998    4.0
## 14641     2369 1985    3.0
## 14642     2389 1998    4.0
## 14643     2394 1998    4.0
## 14644     2395 1998    5.0
## 14645     2396 1998    4.0
## 14646     2421 1986    3.0
## 14647     2428 1998    4.0
## 14648     2443 1998    4.0
## 14649     2445 1999    3.0
## 14650     2451 1987    4.0
## 14651     2455 1986    4.0
## 14652     2459 1974    5.0
## 14653     2461 1990    4.0
## 14654     2462 1994    2.0
## 14655     2465 1986    3.0
## 14656     2470 1986    5.0
## 14657     2485 1999    4.0
## 14658     2513 1989    4.0
## 14659     2541 1999    4.0
## 14660     2572 1999    5.0
## 14661     2580 1999    4.0
## 14662     2581 1999    4.0
## 14663     2599 1999    4.0
## 14664     2600 1999    5.0
## 14665     2617 1999    4.0
## 14666     2628 1999    5.0
## 14667     2641 1980    3.0
## 14668     2657 1975    4.0
## 14669     2672 1999    3.0
## 14670     2683 1999    4.0
## 14671     2694 1999    4.0
## 14672     2699 1990    5.0
## 14673     2701 1999    3.0
## 14674     2702 1999    3.0
## 14675     2706 1999    5.0
## 14676     2710 1999    4.0
## 14677     2713 1999    3.0
## 14678     2716 1984    5.0
## 14679     2717 1989    4.0
## 14680     2722 1999    3.0
## 14681     2746 1986    4.0
## 14682     2762 1999    4.0
## 14683     2787 1985    4.0
## 14684     2789 1978    3.0
## 14685     2793 1997    5.0
## 14686     2841 1999    5.0
## 14687     2858 1999    5.0
## 14688     2867 1985    4.0
## 14689     2868 1988    4.0
## 14690     2881 1999    4.0
## 14691     2888 1999    3.0
## 14692     2901 1979    4.0
## 14693     2907 1999    5.0
## 14694     2908 1999    4.0
## 14695     2928 1984    4.0
## 14696     2959 1999    5.0
## 14697     2976 1999    3.0
## 14698     2985 1987    5.0
## 14699     2987 1988    5.0
## 14700     3005 1999    4.0
## 14701     3016 1982    4.0
## 14702     3017 1987    3.0
## 14703     3018 1985    3.0
## 14704     3024 1978    3.0
## 14705     3033 1987    5.0
## 14706     3051 1999    3.0
## 14707     3081 1999    5.0
## 14708     3107 1991    4.0
## 14709     3146 1999    4.0
## 14710     3168 1969    4.0
## 14711     3185 1999    4.0
## 14712     3203 1989    4.0
## 14713     3255 1992    4.0
## 14714     3257 1992    4.0
## 14715     3258 1992    4.0
## 14716     3261 1992    4.0
## 14717     3264 1992    4.0
## 14718     3269 1992    3.0
## 14719     3273 2000    3.0
## 14720     3285 2000    4.0
## 14721     3298 2000    4.0
## 14722     3300 2000    5.0
## 14723     3391 1987    2.0
## 14724     3408 2000    5.0
## 14725     3409 2000    4.0
## 14726     3441 1984    3.0
## 14727     3448 1987    3.0
## 14728     3477 1995    4.0
## 14729     3481 2000    5.0
## 14730     3499 1990    5.0
## 14731     3510 2000    5.0
## 14732     3535 2000    3.0
## 14733     3578 2000    5.0
## 14734     3617 2000    5.0
## 14735     3623 2000    3.0
## 14736     3660 1989    4.0
## 14737     3693 1985    3.0
## 14738     3702 1979    5.0
## 14739     3709 1992    3.0
## 14740     3752 2000    4.0
## 14741     3764 1991    3.0
## 14742     3793 2000    5.0
## 14743     3826 2000    2.0
## 14744     3840 1988    3.0
## 14745     3843 1983    3.0
## 14746     3863 2000    4.0
## 14747     3877 1984    2.0
## 14748     3917 1987    5.0
## 14749     3918 1988    4.0
## 14750     3948 2000    5.0
## 14751     3961 1985    2.0
## 14752     3967 2000    4.0
## 14753     3994 2000    3.0
## 14754     4002 1987    4.0
## 14755     4008 1989    4.0
## 14756     4018 2000    3.0
## 14757     4030 2000    4.0
## 14758     4036 2000    4.0
## 14759     4081 1987    4.0
## 14760     4085 1984    4.0
## 14761     4105 1981    5.0
## 14762     4124 1987    3.0
## 14763     4128 1987    5.0
## 14764     4135 1987    4.0
## 14765     4140 1987    5.0
## 14766     4148 2001    4.0
## 14767     4205 1990    4.0
## 14768     4213 1989    4.0
## 14769     4222 1984    3.0
## 14770     4266 2001    3.0
## 14771     4321 1991    5.0
## 14772     4351 1991    5.0
## 14773     4369 2001    5.0
## 14774     4480 1988    4.0
## 14775     4490 1988    4.0
## 14776     4499 1988    5.0
## 14777     4501 1988    4.0
## 14778     4516 1988    3.0
## 14779     4520 1988    5.0
## 14780     4560 1988    3.0
## 14781     4561 1988    4.0
## 14782     4618 1989    4.0
## 14783     4636 1989    2.0
## 14784     4639 2001    3.0
## 14785     4670 1987    4.0
## 14786     4681 1989    5.0
## 14787     4682 1989    4.0
## 14788     4697 1982    3.0
## 14789     4700 2001    4.0
## 14790     4718 2001    4.0
## 14791     4734 2001    4.0
## 14792     4865 2001    4.0
## 14793     4949 1985    2.0
## 14794     4993 2001    5.0
## 14795     5025 2002    5.0
## 14796     5049 1982    3.0
## 14797     5080 2002    3.0
## 14798     5103 1993    3.0
## 14799     5203 1981    4.0
## 14800     5222 2001    4.0
## 14801     5292 1977    4.0
## 14802     5303 1990    3.0
## 14803     5308 1987    4.0
## 14804     5309 1990    3.0
## 14805     5342 1986    2.0
## 14806     5343 1993    3.0
## 14807     5346 1990    4.0
## 14808     5349 2002    4.0
## 14809     5378 2002    5.0
## 14810     5449 2002    3.0
## 14811       31 1995    2.5
## 14812       50 1995    4.0
## 14813      318 1994    2.0
## 14814      527 1993    3.5
## 14815      608 1996    4.0
## 14816      628 1996    3.0
## 14817      724 1996    3.0
## 14818      750 1964    5.0
## 14819      903 1958    5.0
## 14820      904 1954    5.0
## 14821      905 1934    5.0
## 14822      908 1959    5.0
## 14823      910 1959    4.5
## 14824      912 1942    5.0
## 14825      913 1941    5.0
## 14826      922 1950    5.0
## 14827      923 1941    5.0
## 14828      926 1950    5.0
## 14829      930 1946    4.5
## 14830      951 1940    5.0
## 14831      969 1951    5.0
## 14832     1084 1967    3.0
## 14833     1104 1951    4.0
## 14834     1212 1949    5.0
## 14835     1219 1960    5.0
## 14836     1235 1971    4.0
## 14837     1242 1989    3.5
## 14838     1247 1967    4.0
## 14839     1252 1974    5.0
## 14840     1267 1962    4.0
## 14841     1284 1946    5.0
## 14842     1285 1989    4.0
## 14843     1617 1997    4.0
## 14844     1747 1997    2.5
## 14845     1912 1998    4.0
## 14846     2186 1951    3.0
## 14847     2208 1938    5.0
## 14848     2248 1989    3.0
## 14849     2336 1998    3.0
## 14850     2692 1998    3.0
## 14851     2858 1999    2.5
## 14852     2908 1999    4.0
## 14853     3435 1944    5.0
## 14854     3730 1974    2.5
## 14855     3736 1951    4.5
## 14856     3739 1932    5.0
## 14857     4226 2000    5.0
## 14858     5008 1957    4.0
## 14859     5114 1952    5.0
## 14860     5878 2002    3.0
## 14861     6027 1991    3.0
## 14862     6254 1937    5.0
## 14863     6273 1950    5.0
## 14864     6650 1949    5.0
## 14865     7013 1955    5.0
## 14866     7056 1931    4.0
## 14867     7116 1955    5.0
## 14868     7361 2004    4.0
## 14869     7587 1967    4.0
## 14870     7831 1939    4.0
## 14871     8094 1955    4.5
## 14872     8128 1987    4.5
## 14873     8629 1998    3.0
## 14874     8765 1942    4.0
## 14875    25850 1938    5.0
## 14876    25868 1941    4.0
## 14877    25947 1948    5.0
## 14878    30712 1952    4.0
## 14879    32525 1953    5.0
## 14880    44555 2006    3.0
## 14881    47202 2005    4.0
## 14882    48394 2006    3.5
## 14883    48516 2006    4.0
## 14884    55118 2007    4.0
## 14885    55276 2007    4.0
## 14886    56367 2007    3.5
## 14887        1 1995    1.0
## 14888       32 1995    4.5
## 14889       50 1995    5.0
## 14890      110 1995    1.0
## 14891      223 1994    3.5
## 14892      293 1994    2.0
## 14893      296 1994    4.0
## 14894      318 1994    4.5
## 14895      356 1994    2.5
## 14896      364 1994    1.5
## 14897      480 1993    2.5
## 14898      527 1993    1.5
## 14899      541 1982    4.0
## 14900      588 1992    0.5
## 14901      589 1991    2.0
## 14902      593 1991    3.5
## 14903      595 1991    1.5
## 14904      597 1990    2.0
## 14905      608 1996    4.0
## 14906      750 1964    4.0
## 14907      858 1972    3.0
## 14908      899 1952    4.5
## 14909      904 1954    3.5
## 14910      908 1959    2.0
## 14911      912 1942    1.5
## 14912      923 1941    4.0
## 14913      926 1950    4.0
## 14914     1036 1988    1.5
## 14915     1084 1967    2.5
## 14916     1088 1987    2.0
## 14917     1089 1992    2.0
## 14918     1136 1975    4.0
## 14919     1193 1975    2.5
## 14920     1196 1980    4.5
## 14921     1197 1987    4.5
## 14922     1198 1981    3.5
## 14923     1200 1986    2.0
## 14924     1201 1966    4.5
## 14925     1203 1957    4.5
## 14926     1204 1962    3.0
## 14927     1207 1962    3.5
## 14928     1208 1979    3.5
## 14929     1210 1983    4.0
## 14930     1212 1949    4.0
## 14931     1213 1990    3.0
## 14932     1219 1960    2.5
## 14933     1221 1974    2.5
## 14934     1228 1980    2.0
## 14935     1240 1984    2.0
## 14936     1262 1963    4.0
## 14937     1265 1993    1.5
## 14938     1267 1962    4.0
## 14939     1270 1985    2.5
## 14940     1288 1984    4.0
## 14941     1291 1989    3.0
## 14942     1387 1975    1.5
## 14943     1527 1997    3.5
## 14944     1580 1997    2.5
## 14945     1721 1997    0.5
## 14946     1732 1998    4.0
## 14947     1884 1998    3.5
## 14948     1997 1973    0.5
## 14949     2000 1987    3.0
## 14950     2019 1954    4.0
## 14951     2028 1998    1.0
## 14952     2324 1997    4.5
## 14953     2395 1998    4.0
## 14954     2502 1999    4.0
## 14955     2542 1998    3.5
## 14956     2571 1999    2.5
## 14957     2716 1984    2.5
## 14958     2797 1988    1.0
## 14959     2918 1986    1.5
## 14960     2959 1999    1.5
## 14961     2997 1999    3.5
## 14962     3033 1987    3.5
## 14963     3253 1992    3.0
## 14964     3421 1978    1.5
## 14965     3471 1977    3.0
## 14966     3527 1987    1.0
## 14967     3552 1980    1.5
## 14968     3578 2000    0.5
## 14969     3868 1988    3.5
## 14970     3911 2000    5.0
## 14971     4226 2000    3.0
## 14972     4816 2001    4.0
## 14973     4878 2001    5.0
## 14974     4973 2001    4.5
## 14975     4979 2001    3.5
## 14976     5618 2001    4.0
## 14977     5902 2002    2.5
## 14978     5903 2002    2.0
## 14979     5952 2002    2.5
## 14980     5971 1988    4.0
## 14981     6711 2003    4.0
## 14982     6863 2003    4.0
## 14983     7153 2003    3.0
## 14984     7361 2004    3.5
## 14985     8376 2004    3.5
## 14986     8641 2004    4.0
## 14987     8784 2004    1.5
## 14988     8949 2004    3.0
## 14989     8950 2004    1.5
## 14990    30810 2004    5.0
## 14991    31658 2004    3.5
## 14992    33004 2005    3.5
## 14993    33679 2005    2.0
## 14994    34437 2005    3.0
## 14995    35836 2005    3.5
## 14996    44199 2006    4.5
## 14997    44555 2006    4.5
## 14998    46578 2006    5.0
## 14999    46970 2006    3.0
## 15000    46976 2006    4.5
## 15001    48394 2006    1.5
## 15002    48516 2006    2.0
## 15003    54503 2007    4.0
## 15004    55269 2007    4.5
## 15005    55820 2007    4.0
## 15006    56367 2007    4.0
## 15007    56782 2007    4.5
## 15008    58559 2008    2.0
## 15009    58998 2008    1.5
## 15010    61024 2008    4.0
## 15011    72226 2009    4.0
## 15012    91529 2012    1.0
## 15013    94959 2012    3.5
## 15014   114662 2014    1.0
## 15015        5 1995    3.0
## 15016       39 1995    3.0
## 15017      296 1994    4.5
## 15018      339 1995    3.5
## 15019      356 1994    4.5
## 15020      357 1994    3.5
## 15021      597 1990    5.0
## 15022      724 1996    5.0
## 15023      902 1961    5.0
## 15024      920 1939    3.5
## 15025     1197 1987    4.5
## 15026     1198 1981    5.0
## 15027     1215 1993    5.0
## 15028     1261 1987    4.0
## 15029     1527 1997    5.0
## 15030     1569 1997    5.0
## 15031     1704 1997    5.0
## 15032     1721 1997    5.0
## 15033     1732 1998    5.0
## 15034     1967 1986    4.0
## 15035     2144 1984    5.0
## 15036     2193 1988    2.5
## 15037     2321 1998    5.0
## 15038     2572 1999    5.0
## 15039     2599 1999    3.5
## 15040     2617 1999    5.0
## 15041     2724 1999    5.0
## 15042     2762 1999    4.0
## 15043     2858 1999    2.5
## 15044     3081 1999    3.0
## 15045     4014 2000    5.0
## 15046     4246 2001    5.0
## 15047     4447 2001    5.0
## 15048     4878 2001    4.0
## 15049     5620 2002    5.0
## 15050     5943 2002    3.0
## 15051     6155 2003    3.5
## 15052     6564 2003    3.0
## 15053     6593 2003    4.0
## 15054     6874 2003    5.0
## 15055     7081 1933    5.0
## 15056     7154 2003    5.0
## 15057     7438 2004    5.0
## 15058     7444 2004    5.0
## 15059     7458 2004    3.0
## 15060     8360 2004    5.0
## 15061     8522 1940    5.0
## 15062     8533 2004    5.0
## 15063     8874 2004    5.0
## 15064     8969 2004    5.0
## 15065    25801 1933    5.0
## 15066    31685 2005    5.0
## 15067    45720 2006    4.0
## 15068    55280 2007    3.5
## 15069    56949 2008    5.0
## 15070    64034 2008    5.0
## 15071    68954 2009    3.5
## 15072    71535 2009    5.0
## 15073    71745 2009    1.5
## 15074    79132 2010    3.5
## 15075    81834 2010    5.0
## 15076    84374 2011    5.0
## 15077    88163 2011    5.0
## 15078    88810 2011    5.0
## 15079   106487 2013    2.0
## 15080   106782 2013    4.5
## 15081   115617 2014    5.0
## 15082   122904 2016    5.0
## 15083   148888 2016    3.0
## 15084   149830 2016    3.0
## 15085   156025 2016    5.0
## 15086        1 1995    4.0
## 15087        2 1995    2.0
## 15088       17 1995    3.0
## 15089       28 1995    3.0
## 15090       39 1995    4.0
## 15091       47 1995    1.0
## 15092       50 1995    4.0
## 15093      105 1995    3.0
## 15094      110 1995    3.0
## 15095      154 1967    3.0
## 15096      160 1995    2.0
## 15097      170 1995    2.0
## 15098      208 1995    2.0
## 15099      296 1994    3.0
## 15100      316 1994    1.0
## 15101      318 1994    5.0
## 15102      356 1994    5.0
## 15103      357 1994    5.0
## 15104      367 1994    3.0
## 15105      377 1994    4.0
## 15106      380 1994    2.0
## 15107      455 1993    1.0
## 15108      457 1993    4.0
## 15109      468 1995    3.0
## 15110      480 1993    4.0
## 15111      497 1993    3.0
## 15112      509 1993    5.0
## 15113      527 1993    4.0
## 15114      546 1993    1.0
## 15115      588 1992    3.0
## 15116      593 1991    4.0
## 15117      595 1991    5.0
## 15118      596 1940    4.0
## 15119      608 1996    5.0
## 15120      647 1996    4.0
## 15121      720 1996    5.0
## 15122      733 1996    2.0
## 15123      736 1996    3.0
## 15124      750 1964    4.0
## 15125      838 1996    4.0
## 15126      898 1940    4.0
## 15127      899 1952    4.0
## 15128      900 1951    3.0
## 15129      902 1961    3.0
## 15130      903 1958    5.0
## 15131      904 1954    4.0
## 15132      908 1959    4.0
## 15133      909 1960    3.0
## 15134      912 1942    5.0
## 15135      913 1941    4.0
## 15136      914 1964    4.0
## 15137      918 1944    5.0
## 15138      923 1941    4.0
## 15139      924 1968    3.0
## 15140      928 1940    4.0
## 15141      951 1940    4.0
## 15142      953 1946    5.0
## 15143      968 1968    4.0
## 15144      969 1951    5.0
## 15145     1012 1957    4.0
## 15146     1014 1960    2.0
## 15147     1016 1959    2.0
## 15148     1017 1960    1.0
## 15149     1019 1954    2.0
## 15150     1022 1950    3.0
## 15151     1025 1963    2.0
## 15152     1028 1964    5.0
## 15153     1029 1941    3.0
## 15154     1032 1951    3.0
## 15155     1035 1965    3.0
## 15156     1083 1965    2.0
## 15157     1084 1967    4.0
## 15158     1103 1955    4.0
## 15159     1183 1996    3.0
## 15160     1204 1962    5.0
## 15161     1207 1962    4.0
## 15162     1210 1983    4.0
## 15163     1219 1960    3.0
## 15164     1233 1981    5.0
## 15165     1247 1967    3.0
## 15166     1250 1957    4.0
## 15167     1276 1967    4.0
## 15168     1282 1940    3.0
## 15169     1284 1946    3.0
## 15170     1304 1969    5.0
## 15171     1333 1963    4.0
## 15172     1334 1958    2.0
## 15173     1358 1996    3.0
## 15174     1393 1996    3.0
## 15175     1580 1997    3.0
## 15176     1586 1997    2.0
## 15177     1589 1997    3.0
## 15178     1591 1997    1.0
## 15179     1617 1997    5.0
## 15180     1619 1997    5.0
## 15181     1670 1997    4.0
## 15182     1676 1997    1.0
## 15183     1721 1997    5.0
## 15184     1732 1998    3.0
## 15185     1735 1998    4.0
## 15186     1748 1998    4.0
## 15187     1777 1998    3.0
## 15188     1909 1998    4.0
## 15189     1920 1998    3.0
## 15190     1937 1944    3.0
## 15191     1945 1954    4.0
## 15192     1947 1961    4.0
## 15193     1948 1963    4.0
## 15194     1949 1966    3.0
## 15195     1950 1967    4.0
## 15196     1951 1968    2.0
## 15197     1952 1969    4.0
## 15198     2006 1998    3.0
## 15199     2015 1961    1.0
## 15200     2018 1942    4.0
## 15201     2028 1998    4.0
## 15202     2067 1965    5.0
## 15203     2080 1955    4.0
## 15204     2085 1961    3.0
## 15205     2094 1991    2.0
## 15206     2096 1959    4.0
## 15207     2099 1946    4.0
## 15208     2106 1993    2.0
## 15209     2126 1998    1.0
## 15210     2132 1966    2.0
## 15211     2135 1967    1.0
## 15212     2136 1963    1.0
## 15213     2160 1968    3.0
## 15214     2324 1997    4.0
## 15215     2355 1998    4.0
## 15216     2391 1998    5.0
## 15217     2393 1998    2.0
## 15218     2396 1998    3.0
## 15219     2424 1998    3.0
## 15220     2427 1998    5.0
## 15221     2436 1999    3.0
## 15222     2442 1998    4.0
## 15223     2529 1968    1.0
## 15224     2539 1999    3.0
## 15225     2565 1956    3.0
## 15226     2599 1999    5.0
## 15227     2677 1999    4.0
## 15228     2687 1999    3.0
## 15229     2692 1998    5.0
## 15230     2761 1999    2.0
## 15231     2801 1997    3.0
## 15232     2836 1999    2.0
## 15233     2858 1999    5.0
## 15234     2908 1999    5.0
## 15235     2912 1999    4.0
## 15236     2959 1999    3.0
## 15237     2966 1999    2.0
## 15238     2997 1999    4.0
## 15239     3125 1999    3.0
## 15240     3129 1999    4.0
## 15241     3147 1999    4.0
## 15242     3160 1999    5.0
## 15243     3174 1999    2.0
## 15244     3186 1999    2.0
## 15245     3298 2000    2.0
## 15246     3408 2000    4.0
## 15247     3578 2000    1.0
## 15248     3752 2000    4.0
## 15249     3783 1998    3.0
## 15250     3897 2000    3.0
## 15251     3910 2000    5.0
## 15252     3911 2000    3.0
## 15253     3948 2000    2.0
## 15254     3967 2000    4.0
## 15255     3996 2000    4.0
## 15256     4014 2000    4.0
## 15257     4019 2000    3.0
## 15258     4022 2000    3.0
## 15259     4027 2000    3.0
## 15260     4033 2000    2.0
## 15261     4034 2000    5.0
## 15262     4226 2000    4.0
## 15263     4246 2001    4.0
## 15264     4380 2000    5.0
## 15265     4641 2001    5.0
## 15266     4881 2001    4.0
## 15267     4973 2001    5.0
## 15268     4993 2001    5.0
## 15269     4995 2001    5.0
## 15270     5013 2001    4.0
## 15271     5349 2002    4.0
## 15272     5952 2002    4.0
## 15273     5991 2002    5.0
## 15274        1 1995    4.0
## 15275        3 1995    4.0
## 15276        6 1995    3.0
## 15277        7 1995    3.0
## 15278       25 1995    4.0
## 15279       32 1995    5.0
## 15280       52 1995    3.0
## 15281       62 1995    3.0
## 15282       86 1996    3.0
## 15283       88 1996    2.0
## 15284       95 1996    3.0
## 15285      135 1996    3.0
## 15286      141 1996    3.0
## 15287      608 1996    4.0
## 15288      648 1996    3.0
## 15289      661 1996    3.0
## 15290      708 1996    3.0
## 15291      733 1996    3.0
## 15292      736 1996    3.0
## 15293      745 1995    4.0
## 15294      780 1996    3.0
## 15295      786 1996    3.0
## 15296      802 1996    4.0
## 15297     1073 1971    5.0
## 15298     1356 1996    4.0
## 15299      145 1995    3.5
## 15300      163 1995    2.5
## 15301      172 1995    2.5
## 15302      196 1995    3.5
## 15303      260 1977    4.0
## 15304      315 1994    2.0
## 15305      318 1994    4.0
## 15306      370 1994    2.5
## 15307      457 1993    3.5
## 15308      520 1993    2.5
## 15309      527 1993    4.5
## 15310      541 1982    4.0
## 15311      589 1991    4.5
## 15312      762 1996    2.5
## 15313     1036 1988    3.5
## 15314     1196 1980    4.5
## 15315     1198 1981    5.0
## 15316     1200 1986    4.5
## 15317     1210 1983    4.5
## 15318     1214 1979    3.5
## 15319     1240 1984    3.5
## 15320     1270 1985    4.5
## 15321     1291 1989    4.5
## 15322     1374 1982    4.5
## 15323     1376 1986    4.5
## 15324     1610 1990    4.0
## 15325     1909 1998    3.0
## 15326     2000 1987    3.5
## 15327     2001 1989    4.0
## 15328     2019 1954    4.0
## 15329     2028 1998    4.5
## 15330     2268 1992    3.5
## 15331     2302 1992    2.5
## 15332     2353 1998    4.0
## 15333     2571 1999    4.5
## 15334     2699 1990    3.0
## 15335     2716 1984    3.5
## 15336     2770 1999    3.0
## 15337     3147 1999    4.0
## 15338     3471 1977    4.0
## 15339     3527 1987    3.5
## 15340     4993 2001    5.0
## 15341     5952 2002    5.0
## 15342     7153 2003    4.5
## 15343    26701 1989    4.0
## 15344    27611 2003    4.5
## 15345    33794 2005    5.0
## 15346    44199 2006    4.0
## 15347    54286 2007    4.0
## 15348    56921 2007    4.0
## 15349    58559 2008    5.0
## 15350    68237 2009    4.0
## 15351    68358 2009    4.5
## 15352    70286 2009    4.5
## 15353    79132 2010    5.0
## 15354       14 1995    4.0
## 15355       25 1995    4.0
## 15356       28 1995    4.0
## 15357       34 1995    4.0
## 15358       35 1995    4.0
## 15359       36 1995    4.0
## 15360       37 1995    1.0
## 15361       45 1995    4.0
## 15362       47 1995    4.0
## 15363       50 1995    4.0
## 15364       52 1995    4.0
## 15365       58 1994    4.0
## 15366       70 1996    2.0
## 15367       78 1995    4.0
## 15368       94 1996    2.0
## 15369      111 1976    5.0
## 15370      117 1995    4.0
## 15371      125 1996    4.0
## 15372      147 1995    4.0
## 15373      150 1995    4.0
## 15374      159 1995    4.0
## 15375      162 1994    5.0
## 15376      194 1995    4.0
## 15377      202 1995    4.0
## 15378      224 1995    4.0
## 15379      235 1994    4.0
## 15380      246 1994    5.0
## 15381      247 1994    5.0
## 15382      253 1994    3.0
## 15383      260 1977    5.0
## 15384      261 1994    3.0
## 15385      272 1994    4.0
## 15386      280 1995    4.0
## 15387      296 1994    4.0
## 15388      300 1994    4.0
## 15389      303 1995    4.0
## 15390      314 1994    2.0
## 15391      318 1994    3.0
## 15392      334 1994    4.0
## 15393      337 1993    5.0
## 15394      342 1994    4.0
## 15395      345 1994    4.0
## 15396      346 1993    3.0
## 15397      348 1994    4.0
## 15398      352 1994    4.0
## 15399      382 1994    3.0
## 15400      410 1993    3.0
## 15401      417 1994    4.0
## 15402      434 1993    4.0
## 15403      441 1993    4.0
## 15404      457 1993    3.0
## 15405      471 1994    5.0
## 15406      474 1993    3.0
## 15407      492 1993    4.0
## 15408      501 1993    4.0
## 15409      506 1992    3.0
## 15410      507 1993    3.0
## 15411      508 1993    2.0
## 15412      527 1993    4.0
## 15413      529 1993    4.0
## 15414      532 1994    4.0
## 15415      535 1993    4.0
## 15416      538 1993    4.0
## 15417      541 1982    4.0
## 15418      549 1993    4.0
## 15419      551 1993    4.0
## 15420      555 1993    3.0
## 15421      556 1993    4.0
## 15422      562 1995    5.0
## 15423      574 1994    4.0
## 15424      581 1995    4.0
## 15425      590 1990    2.0
## 15426      592 1989    4.0
## 15427      593 1991    4.0
## 15428      594 1937    5.0
## 15429      596 1940    4.0
## 15430      599 1969    5.0
## 15431      608 1996    5.0
## 15432      616 1970    4.0
## 15433      661 1996    5.0
## 15434      745 1995    4.0
## 15435      750 1964    5.0
## 15436      766 1996    4.0
## 15437      778 1996    4.0
## 15438      780 1996    2.0
## 15439      799 1996    3.0
## 15440      800 1996    4.0
## 15441      802 1996    3.0
## 15442      858 1972    5.0
## 15443      898 1940    5.0
## 15444      899 1952    5.0
## 15445      902 1961    4.0
## 15446      903 1958    5.0
## 15447      904 1954    5.0
## 15448      905 1934    4.0
## 15449      908 1959    5.0
## 15450      909 1960    4.0
## 15451      910 1959    4.0
## 15452      912 1942    5.0
## 15453      913 1941    4.0
## 15454      914 1964    5.0
## 15455      918 1944    4.0
## 15456      919 1939    4.0
## 15457      920 1939    5.0
## 15458      921 1982    4.0
## 15459      922 1950    5.0
## 15460      923 1941    5.0
## 15461      924 1968    5.0
## 15462      926 1950    5.0
## 15463      927 1939    4.0
## 15464      928 1940    4.0
## 15465      930 1946    5.0
## 15466      931 1945    4.0
## 15467      945 1935    4.0
## 15468      948 1956    5.0
## 15469      949 1955    4.0
## 15470      950 1934    5.0
## 15471      953 1946    5.0
## 15472      954 1939    4.0
## 15473      955 1938    4.0
## 15474      965 1935    4.0
## 15475      968 1968    5.0
## 15476      969 1951    4.0
## 15477      971 1958    4.0
## 15478      973 1941    5.0
## 15479      982 1955    4.0
## 15480      994 1996    4.0
## 15481     1009 1975    3.0
## 15482     1010 1969    4.0
## 15483     1012 1957    5.0
## 15484     1019 1954    4.0
## 15485     1028 1964    5.0
## 15486     1029 1941    5.0
## 15487     1035 1965    5.0
## 15488     1036 1988    4.0
## 15489     1046 1996    4.0
## 15490     1057 1996    5.0
## 15491     1061 1996    2.0
## 15492     1073 1971    4.0
## 15493     1077 1973    4.0
## 15494     1078 1971    4.0
## 15495     1079 1988    5.0
## 15496     1080 1979    4.0
## 15497     1081 1982    4.0
## 15498     1082 1972    4.0
## 15499     1084 1967    4.0
## 15500     1086 1954    5.0
## 15501     1089 1992    4.0
## 15502     1090 1986    2.0
## 15503     1093 1991    3.0
## 15504     1094 1992    4.0
## 15505     1095 1992    4.0
## 15506     1096 1982    4.0
## 15507     1097 1982    4.0
## 15508     1103 1955    4.0
## 15509     1104 1951    5.0
## 15510     1120 1996    4.0
## 15511     1124 1981    4.0
## 15512     1125 1975    5.0
## 15513     1128 1980    4.0
## 15514     1131 1986    4.0
## 15515     1132 1986    4.0
## 15516     1136 1975    5.0
## 15517     1147 1996    4.0
## 15518     1148 1993    4.0
## 15519     1171 1992    4.0
## 15520     1172 1989    4.0
## 15521     1173 1989    5.0
## 15522     1175 1991    5.0
## 15523     1178 1957    5.0
## 15524     1179 1990    5.0
## 15525     1185 1989    4.0
## 15526     1186 1989    4.0
## 15527     1188 1992    3.0
## 15528     1189 1988    4.0
## 15529     1192 1990    5.0
## 15530     1193 1975    4.0
## 15531     1196 1980    5.0
## 15532     1197 1987    5.0
## 15533     1198 1981    4.0
## 15534     1200 1986    5.0
## 15535     1201 1966    5.0
## 15536     1203 1957    4.0
## 15537     1204 1962    5.0
## 15538     1207 1962    5.0
## 15539     1208 1979    5.0
## 15540     1209 1968    5.0
## 15541     1210 1983    3.0
## 15542     1211 1987    5.0
## 15543     1212 1949    5.0
## 15544     1213 1990    5.0
## 15545     1214 1979    4.0
## 15546     1217 1985    5.0
## 15547     1218 1989    5.0
## 15548     1219 1960    5.0
## 15549     1220 1980    4.0
## 15550     1221 1974    5.0
## 15551     1222 1987    5.0
## 15552     1224 1989    4.0
## 15553     1225 1984    4.0
## 15554     1227 1984    5.0
## 15555     1228 1980    5.0
## 15556     1230 1977    5.0
## 15557     1231 1983    4.0
## 15558     1233 1981    5.0
## 15559     1234 1973    4.0
## 15560     1235 1971    4.0
## 15561     1237 1957    4.0
## 15562     1238 1983    4.0
## 15563     1240 1984    4.0
## 15564     1242 1989    4.0
## 15565     1243 1990    4.0
## 15566     1244 1979    5.0
## 15567     1245 1990    5.0
## 15568     1246 1989    3.0
## 15569     1247 1967    5.0
## 15570     1248 1958    5.0
## 15571     1249 1990    4.0
## 15572     1250 1957    4.0
## 15573     1251 1963    5.0
## 15574     1252 1974    5.0
## 15575     1253 1951    5.0
## 15576     1256 1933    4.0
## 15577     1258 1980    5.0
## 15578     1259 1986    4.0
## 15579     1260 1931    5.0
## 15580     1262 1963    4.0
## 15581     1263 1978    5.0
## 15582     1264 1981    4.0
## 15583     1265 1993    5.0
## 15584     1266 1992    5.0
## 15585     1267 1962    5.0
## 15586     1268 1990    3.0
## 15587     1270 1985    3.0
## 15588     1272 1970    5.0
## 15589     1273 1986    4.0
## 15590     1276 1967    5.0
## 15591     1278 1974    4.0
## 15592     1279 1991    4.0
## 15593     1281 1940    5.0
## 15594     1282 1940    4.0
## 15595     1283 1952    5.0
## 15596     1284 1946    5.0
## 15597     1285 1989    4.0
## 15598     1287 1959    4.0
## 15599     1288 1984    5.0
## 15600     1289 1983    4.0
## 15601     1292 1979    5.0
## 15602     1293 1982    5.0
## 15603     1296 1986    4.0
## 15604     1299 1984    4.0
## 15605     1300 1985    4.0
## 15606     1302 1989    3.0
## 15607     1304 1969    5.0
## 15608     1307 1989    3.0
## 15609     1320 1992    3.0
## 15610     1321 1981    4.0
## 15611     1323 1983    2.0
## 15612     1327 1979    4.0
## 15613     1333 1963    5.0
## 15614     1339 1992    3.0
## 15615     1340 1935    5.0
## 15616     1341 1976    4.0
## 15617     1342 1992    3.0
## 15618     1345 1976    5.0
## 15619     1346 1982    3.0
## 15620     1347 1984    5.0
## 15621     1348 1922    4.0
## 15622     1350 1976    5.0
## 15623     1357 1996    4.0
## 15624     1358 1996    3.0
## 15625     1361 1996    5.0
## 15626     1366 1996    4.0
## 15627     1374 1982    4.0
## 15628     1377 1992    2.0
## 15629     1380 1978    4.0
## 15630     1384 1996    4.0
## 15631     1387 1975    4.0
## 15632     1389 1983    2.0
## 15633     1393 1996    2.0
## 15634     1394 1987    4.0
## 15635     1405 1996    4.0
## 15636     1407 1996    4.0
## 15637     1411 1996    5.0
## 15638     1420 1996    5.0
## 15639     1449 1996    5.0
## 15640     1466 1997    4.0
## 15641     1516 1996    4.0
## 15642     1517 1997    4.0
## 15643     1535 1997    4.0
## 15644     1554 1996    4.0
## 15645     1584 1997    2.0
## 15646     1594 1997    2.0
## 15647     1610 1990    3.0
## 15648     1611 1991    4.0
## 15649     1617 1997    5.0
## 15650     1644 1997    2.0
## 15651     1648 1997    5.0
## 15652     1663 1981    4.0
## 15653     1673 1997    4.0
## 15654     1690 1997    4.0
## 15655     1701 1997    4.0
## 15656     1704 1997    2.0
## 15657     1717 1997    4.0
## 15658     1719 1997    4.0
## 15659     1729 1997    4.0
## 15660     1732 1998    5.0
## 15661     1734 1997    4.0
## 15662     1788 1997    4.0
## 15663     1797 1998    4.0
## 15664     1836 1998    4.0
## 15665     1841 1998    4.0
## 15666     1856 1998    2.0
## 15667     1883 1998    4.0
## 15668     1884 1998    3.0
## 15669     1888 1998    1.0
## 15670     1895 1998    2.0
## 15671     1923 1998    3.0
## 15672     1924 1959    5.0
## 15673     1927 1930    4.0
## 15674     1929 1932    4.0
## 15675     1931 1935    4.0
## 15676     1939 1946    5.0
## 15677     1941 1948    4.0
## 15678     1944 1953    5.0
## 15679     1945 1954    5.0
## 15680     1946 1955    4.0
## 15681     1947 1961    5.0
## 15682     1950 1967    5.0
## 15683     1952 1969    5.0
## 15684     1953 1971    5.0
## 15685     1954 1976    5.0
## 15686     1955 1979    4.0
## 15687     1956 1980    4.0
## 15688     1957 1981    4.0
## 15689     1958 1983    4.0
## 15690     1960 1987    5.0
## 15691     1961 1988    4.0
## 15692     1962 1989    3.0
## 15693     1965 1984    4.0
## 15694     1966 1990    5.0
## 15695     1968 1985    4.0
## 15696     1969 1985    4.0
## 15697     1974 1980    5.0
## 15698     1982 1978    4.0
## 15699     1987 1980    4.0
## 15700     1994 1982    4.0
## 15701     1997 1973    5.0
## 15702     1999 1990    3.0
## 15703     2000 1987    2.0
## 15704     2001 1989    2.0
## 15705     2003 1984    2.0
## 15706     2010 1927    4.0
## 15707     2014 1977    4.0
## 15708     2018 1942    4.0
## 15709     2019 1954    4.0
## 15710     2020 1988    4.0
## 15711     2021 1984    4.0
## 15712     2023 1990    2.0
## 15713     2043 1959    3.0
## 15714     2064 1989    4.0
## 15715     2065 1985    4.0
## 15716     2067 1965    4.0
## 15717     2068 1982    5.0
## 15718     2069 1985    4.0
## 15719     2070 1983    4.0
## 15720     2075 1981    4.0
## 15721     2076 1986    5.0
## 15722     2078 1967    4.0
## 15723     2080 1955    4.0
## 15724     2085 1961    4.0
## 15725     2087 1953    4.0
## 15726     2088 1980    4.0
## 15727     2090 1977    4.0
## 15728     2097 1983    4.0
## 15729     2099 1946    5.0
## 15730     2100 1984    4.0
## 15731     2105 1982    3.0
## 15732     2107 1998    3.0
## 15733     2109 1979    4.0
## 15734     2110 1982    3.0
## 15735     2112 1991    2.0
## 15736     2118 1983    4.0
## 15737     2121 1983    2.0
## 15738     2124 1991    4.0
## 15739     2130 1980    5.0
## 15740     2132 1966    5.0
## 15741     2135 1967    4.0
## 15742     2137 1973    5.0
## 15743     2138 1978    4.0
## 15744     2140 1982    3.0
## 15745     2144 1984    3.0
## 15746     2145 1986    3.0
## 15747     2146 1985    3.0
## 15748     2160 1968    5.0
## 15749     2163 1978    4.0
## 15750     2174 1988    4.0
## 15751     2186 1951    5.0
## 15752     2193 1988    3.0
## 15753     2194 1987    4.0
## 15754     2202 1944    4.0
## 15755     2203 1943    4.0
## 15756     2208 1938    4.0
## 15757     2219 1930    4.0
## 15758     2227 1927    4.0
## 15759     2240 1980    1.0
## 15760     2243 1987    3.0
## 15761     2248 1989    4.0
## 15762     2268 1992    4.0
## 15763     2282 1998    4.0
## 15764     2289 1992    4.0
## 15765     2290 1980    4.0
## 15766     2291 1990    4.0
## 15767     2300 1968    5.0
## 15768     2301 1981    4.0
## 15769     2303 1975    5.0
## 15770     2312 1986    3.0
## 15771     2313 1980    5.0
## 15772     2318 1998    5.0
## 15773     2321 1998    3.0
## 15774     2333 1998    4.0
## 15775     2336 1998    4.0
## 15776     2344 1985    4.0
## 15777     2345 1986    3.0
## 15778     2351 1957    5.0
## 15779     2352 1983    3.0
## 15780     2356 1998    4.0
## 15781     2361 1972    5.0
## 15782     2362 1953    4.0
## 15783     2366 1933    4.0
## 15784     2367 1976    3.0
## 15785     2391 1998    4.0
## 15786     2395 1998    4.0
## 15787     2396 1998    4.0
## 15788     2397 1984    3.0
## 15789     2406 1984    3.0
## 15790     2407 1985    3.0
## 15791     2420 1984    3.0
## 15792     2423 1989    3.0
## 15793     2439 1997    4.0
## 15794     2453 1986    3.0
## 15795     2454 1958    5.0
## 15796     2455 1986    3.0
## 15797     2459 1974    5.0
## 15798     2517 1983    3.0
## 15799     2520 1970    4.0
## 15800     2524 1974    4.0
## 15801     2527 1973    4.0
## 15802     2541 1999    1.0
## 15803     2548 1999    1.0
## 15804     2599 1999    4.0
## 15805     2616 1990    3.0
## 15806     2628 1999    4.0
## 15807     2639 1981    4.0
## 15808     2644 1931    4.0
## 15809     2657 1975    5.0
## 15810     2662 1953    4.0
## 15811     2664 1956    5.0
## 15812     2672 1999    3.0
## 15813     2683 1999    4.0
## 15814     2692 1998    4.0
## 15815     2702 1999    3.0
## 15816     2710 1999    3.0
## 15817     2712 1999    4.0
## 15818     2716 1984    4.0
## 15819     2717 1989    2.0
## 15820     2725 1999    4.0
## 15821     2726 1956    5.0
## 15822     2728 1960    4.0
## 15823     2729 1962    5.0
## 15824     2730 1975    4.0
## 15825     2731 1959    4.0
## 15826     2734 1986    4.0
## 15827     2739 1985    4.0
## 15828     2746 1986    4.0
## 15829     2747 1960    4.0
## 15830     2749 1986    4.0
## 15831     2750 1987    4.0
## 15832     2757 1982    4.0
## 15833     2762 1999    4.0
## 15834     2764 1968    4.0
## 15835     2779 1978    4.0
## 15836     2784 1964    4.0
## 15837     2791 1980    4.0
## 15838     2793 1997    4.0
## 15839     2795 1983    4.0
## 15840     2797 1988    3.0
## 15841     2804 1983    4.0
## 15842     2820 1964    4.0
## 15843     2844 1999    4.0
## 15844     2852 1984    4.0
## 15845     2857 1968    4.0
## 15846     2858 1999    5.0
## 15847     2859 1984    3.0
## 15848     2863 1964    3.0
## 15849     2866 1978    4.0
## 15850     2871 1972    4.0
## 15851     2872 1981    3.0
## 15852     2883 1999    4.0
## 15853     2890 1999    4.0
## 15854     2902 1983    2.0
## 15855     2915 1983    4.0
## 15856     2917 1981    4.0
## 15857     2918 1986    4.0
## 15858     2919 1982    4.0
## 15859     2920 1945    5.0
## 15860     2921 1973    4.0
## 15861     2922 1968    4.0
## 15862     2925 1970    5.0
## 15863     2926 1988    4.0
## 15864     2929 1981    5.0
## 15865     2932 1978    5.0
## 15866     2944 1967    5.0
## 15867     2947 1964    4.0
## 15868     2948 1963    4.0
## 15869     2949 1962    4.0
## 15870     2951 1964    5.0
## 15871     2966 1999    4.0
## 15872     2968 1981    4.0
## 15873     2970 1982    5.0
## 15874     2973 1989    5.0
## 15875     2987 1988    3.0
## 15876     2993 1965    4.0
## 15877     2997 1999    4.0
## 15878     3006 1999    4.0
## 15879     3007 1999    5.0
## 15880     3011 1969    4.0
## 15881     3018 1985    4.0
## 15882     3019 1989    4.0
## 15883     3022 1926    5.0
## 15884     3037 1970    4.0
## 15885     3039 1983    3.0
## 15886     3060 1991    3.0
## 15887     3061 1942    4.0
## 15888     3062 1962    5.0
## 15889     3066 1970    4.0
## 15890     3067 1988    4.0
## 15891     3068 1982    4.0
## 15892     3071 1988    3.0
## 15893     3072 1987    4.0
## 15894     3081 1999    4.0
## 15895     3088 1950    5.0
## 15896     3089 1948    4.0
## 15897     3093 1971    5.0
## 15898     3095 1940    5.0
## 15899     3098 1984    4.0
## 15900     3129 1999    4.0
## 15901     3130 1990    3.0
## 15902     3134 1937    5.0
## 15903     3145 1999    4.0
## 15904     3147 1999    2.0
## 15905     3152 1971    5.0
## 15906     3163 1999    4.0
## 15907     3168 1969    5.0
## 15908     3169 1985    3.0
## 15909     3176 1999    2.0
## 15910     3179 1999    2.0
## 15911     3196 1953    4.0
## 15912     3198 1973    4.0
## 15913     3201 1970    4.0
## 15914     3203 1989    4.0
## 15915     3210 1982    4.0
## 15916     3218 1991    4.0
## 15917     3223 1985    4.0
## 15918     3224 1964    4.0
## 15919     3246 1992    4.0
## 15920     3250 1993    4.0
## 15921     3251 1985    3.0
## 15922     3253 1992    3.0
## 15923     3255 1992    4.0
## 15924     3262 1992    3.0
## 15925     3264 1992    4.0
## 15926     3265 1992    4.0
## 15927     3266 1992    4.0
## 15928     3273 2000    3.0
## 15929     3285 2000    2.0
## 15930     3301 2000    2.0
## 15931     3307 1931    5.0
## 15932     3308 1984    2.0
## 15933     3317 2000    2.0
## 15934     3324 2000    2.0
## 15935     3327 1999    2.0
## 15936     3329 1987    4.0
## 15937     3342 1984    3.0
## 15938     3350 1961    4.0
## 15939     3354 2000    1.0
## 15940     3358 1991    4.0
## 15941     3360 1986    4.0
## 15942     3361 1988    3.0
## 15943     3362 1975    5.0
## 15944     3363 1973    4.0
## 15945     3365 1956    5.0
## 15946     3386 1991    3.0
## 15947     3396 1979    4.0
## 15948     3408 2000    2.0
## 15949     3418 1991    4.0
## 15950     3420 1979    4.0
## 15951     3421 1978    3.0
## 15952     3422 1986    4.0
## 15953     3424 1989    5.0
## 15954     3426 1991    4.0
## 15955     3428 1979    4.0
## 15956     3435 1944    5.0
## 15957     3441 1984    2.0
## 15958     3448 1987    3.0
## 15959     3451 1967    5.0
## 15960     3461 1963    4.0
## 15961     3462 1936    5.0
## 15962     3468 1961    4.0
## 15963     3469 1960    4.0
## 15964     3471 1977    4.0
## 15965     3478 1987    3.0
## 15966     3479 1985    4.0
## 15967     3481 2000    4.0
## 15968     3484 2000    1.0
## 15969     3499 1990    4.0
## 15970     3503 1972    5.0
## 15971     3504 1976    5.0
## 15972     3508 1976    5.0
## 15973     3511 2000    1.0
## 15974     3519 1978    4.0
## 15975     3521 1989    4.0
## 15976     3526 1989    2.0
## 15977     3528 1991    2.0
## 15978     3529 1981    4.0
## 15979     3538 1999    3.0
## 15980     3543 1982    4.0
## 15981     3544 1992    4.0
## 15982     3545 1972    4.0
## 15983     3546 1962    5.0
## 15984     3547 1987    4.0
## 15985     3548 1958    4.0
## 15986     3549 1955    5.0
## 15987     3550 1983    5.0
## 15988     3551 1976    5.0
## 15989     3552 1980    4.0
## 15990     3564 2000    2.0
## 15991     3565 2000    3.0
## 15992     3566 2000    4.0
## 15993     3588 1972    4.0
## 15994     3590 1974    4.0
## 15995     3591 1983    3.0
## 15996     3606 1949    5.0
## 15997     3608 1985    4.0
## 15998     3609 1998    4.0
## 15999     3614 1992    4.0
## 16000     3618 2000    4.0
## 16001     3633 1969    4.0
## 16002     3635 1977    4.0
## 16003     3639 1974    4.0
## 16004     3655 1973    5.0
## 16005     3668 1968    4.0
## 16006     3671 1974    4.0
## 16007     3675 1954    4.0
## 16008     3676 1977    5.0
## 16009     3678 1955    4.0
## 16010     3679 1981    4.0
## 16011     3680 1988    4.0
## 16012     3681 1965    4.0
## 16013     3683 1984    5.0
## 16014     3685 1985    4.0
## 16015     3698 1987    3.0
## 16016     3700 1984    4.0
## 16017     3702 1979    4.0
## 16018     3703 1981    4.0
## 16019     3704 1985    3.0
## 16020     3706 1987    3.0
## 16021     3708 1984    3.0
## 16022     3724 1978    4.0
## 16023     3729 1971    4.0
## 16024     3730 1974    5.0
## 16025     3733 1973    4.0
## 16026     3734 1981    4.0
## 16027     3735 1973    5.0
## 16028     3740 1986    3.0
## 16029     3741 1973    5.0
## 16030     3742 1925    4.0
## 16031     5060 1970    5.0
## 16032       29 1995    5.0
## 16033       32 1995    5.0
## 16034       47 1995    4.5
## 16035       71 1995    1.0
## 16036      196 1995    1.5
## 16037      293 1994    4.5
## 16038      393 1994    1.0
## 16039      519 1993    1.0
## 16040      541 1982    4.5
## 16041      589 1991    3.0
## 16042      592 1989    3.0
## 16043      593 1991    5.0
## 16044      671 1996    4.0
## 16045      735 1994    4.0
## 16046      736 1996    2.5
## 16047      741 1995    4.5
## 16048      778 1996    4.5
## 16049      780 1996    2.0
## 16050      866 1996    4.5
## 16051     1037 1992    1.0
## 16052     1101 1986    2.0
## 16053     1129 1981    2.5
## 16054     1199 1985    4.0
## 16055     1200 1986    4.0
## 16056     1214 1979    5.0
## 16057     1215 1993    3.5
## 16058     1240 1984    4.0
## 16059     1241 1992    3.5
## 16060     1255 1987    3.0
## 16061     1261 1987    4.5
## 16062     1274 1988    3.5
## 16063     1320 1992    3.0
## 16064     1339 1992    3.5
## 16065     1385 1992    1.5
## 16066     1389 1983    1.0
## 16067     1527 1997    4.0
## 16068     1552 1997    2.0
## 16069     1562 1997    1.5
## 16070     1580 1997    3.0
## 16071     1584 1997    3.5
## 16072     1599 1997    1.0
## 16073     1645 1997    3.5
## 16074     1653 1997    3.5
## 16075     1676 1997    4.0
## 16076     1690 1997    1.5
## 16077     1721 1997    3.0
## 16078     1805 1998    2.0
## 16079     2021 1984    1.5
## 16080     2232 1997    4.0
## 16081     2329 1998    4.5
## 16082     2405 1985    3.0
## 16083     2549 1999    1.0
## 16084     2571 1999    4.0
## 16085     2605 1999    3.0
## 16086     2701 1999    2.0
## 16087     2858 1999    4.0
## 16088     2916 1990    3.5
## 16089     2959 1999    5.0
## 16090     2985 1987    3.0
## 16091     3033 1987    4.0
## 16092     3175 1999    4.0
## 16093     3527 1987    3.5
## 16094     3578 2000    4.0
## 16095     3697 1990    2.0
## 16096     3793 2000    4.0
## 16097     3863 2000    3.0
## 16098     4105 1981    3.5
## 16099     4226 2000    4.5
## 16100     4370 2001    4.0
## 16101     4475 1988    4.0
## 16102     4848 2001    5.0
## 16103     4896 2001    4.0
## 16104     4973 2001    5.0
## 16105     5349 2002    4.0
## 16106     5445 2002    4.0
## 16107     5528 2002    3.5
## 16108     5700 1980    1.0
## 16109     5816 2002    4.0
## 16110     6242 1998    4.5
## 16111     6333 2003    4.0
## 16112     6502 2002    4.0
## 16113     6790 2001    4.0
## 16114     6857 1995    3.0
## 16115     6874 2003    5.0
## 16116     6996 1991    1.5
## 16117     7022 2000    5.0
## 16118     7090 2002    4.5
## 16119     7235 2001    4.5
## 16120     7438 2004    5.0
## 16121     7481 1985    2.0
## 16122     8019 2002    4.5
## 16123     8093 1999    3.5
## 16124     8157 1998    4.0
## 16125     8636 2004    3.5
## 16126      110 1995    4.5
## 16127      150 1995    4.0
## 16128      260 1977    4.0
## 16129      293 1994    4.5
## 16130      296 1994    4.0
## 16131      318 1994    5.0
## 16132      589 1991    5.0
## 16133      733 1996    4.5
## 16134     1036 1988    4.0
## 16135     1196 1980    3.5
## 16136     1573 1997    3.5
## 16137     2571 1999    3.5
## 16138     3578 2000    4.0
## 16139     4993 2001    4.0
## 16140     4995 2001    4.0
## 16141     5628 2001    3.5
## 16142     5952 2002    5.0
## 16143     5956 2002    4.0
## 16144     6365 2003    3.5
## 16145     6539 2003    4.5
## 16146     6754 2003    4.0
## 16147     7153 2003    4.0
## 16148     7458 2004    3.5
## 16149     8371 2004    3.5
## 16150     8636 2004    4.0
## 16151     8644 2004    4.0
## 16152     8972 2004    3.5
## 16153    27611 2003    3.5
## 16154    33794 2005    4.5
## 16155    42738 2006    3.5
## 16156    47099 2006    4.0
## 16157    48043 2006    4.5
## 16158    48780 2006    4.0
## 16159    51662 2007    4.0
## 16160    53125 2007    3.5
## 16161    53972 2007    4.0
## 16162    57640 2008    3.5
## 16163    58559 2008    4.5
## 16164    59315 2008    4.5
## 16165    60069 2008    4.5
## 16166    64614 2008    4.0
## 16167    64957 2008    4.0
## 16168    65682 2009    3.5
## 16169    68358 2009    4.0
## 16170    70286 2009    4.0
## 16171    71135 2009    3.5
## 16172    71535 2009    4.5
## 16173    72998 2009    4.5
## 16174    73017 2009    4.0
## 16175    74458 2010    4.5
## 16176    76093 2010    4.5
## 16177    77561 2010    4.0
## 16178    79132 2010    4.5
## 16179    80219 2010    4.0
## 16180    82461 2010    3.0
## 16181    84152 2011    4.5
## 16182    84844 2000    4.0
## 16183    86644 2011    4.0
## 16184    88140 2011    3.5
## 16185    88744 2011    4.0
## 16186    89745 2012    4.5
## 16187    91529 2012    4.5
## 16188    92259 2011    4.5
## 16189    94777 2012    3.5
## 16190   103228 2013    4.0
## 16191   106072 2013    3.5
## 16192   106489 2013    4.0
## 16193   109487 2014    4.5
## 16194   111362 2014    4.0
## 16195   112171 2014    3.0
## 16196   112556 2014    4.0
## 16197   112852 2014    5.0
## 16198   115617 2014    4.5
## 16199   122882 2015    4.5
## 16200   122892 2015    4.5
## 16201   129354 2015    3.5
## 16202        6 1995    3.0
## 16203       10 1995    3.5
## 16204       11 1995    3.5
## 16205       16 1995    5.0
## 16206       19 1995    2.0
## 16207       21 1995    3.5
## 16208       22 1995    2.5
## 16209       25 1995    4.0
## 16210       32 1995    4.0
## 16211       36 1995    3.0
## 16212       47 1995    4.0
## 16213       50 1995    4.5
## 16214       52 1995    4.0
## 16215       95 1996    2.5
## 16216      104 1996    3.5
## 16217      105 1995    3.5
## 16218      110 1995    3.5
## 16219      111 1976    4.0
## 16220      150 1995    3.0
## 16221      151 1995    3.5
## 16222      153 1995    3.0
## 16223      164 1995    4.0
## 16224      165 1995    3.5
## 16225      168 1995    2.0
## 16226      173 1995    2.0
## 16227      196 1995    2.5
## 16228      198 1995    4.0
## 16229      208 1995    2.5
## 16230      253 1994    3.5
## 16231      260 1977    3.0
## 16232      272 1994    3.5
## 16233      288 1994    3.5
## 16234      290 1994    2.5
## 16235      292 1995    3.5
## 16236      293 1994    4.0
## 16237      296 1994    4.0
## 16238      300 1994    3.0
## 16239      305 1994    2.0
## 16240      316 1994    3.0
## 16241      318 1994    3.0
## 16242      339 1995    3.0
## 16243      344 1994    3.0
## 16244      348 1994    3.5
## 16245      349 1994    3.0
## 16246      356 1994    3.0
## 16247      357 1994    4.0
## 16248      364 1994    3.5
## 16249      367 1994    3.5
## 16250      368 1994    3.0
## 16251      370 1994    3.0
## 16252      377 1994    3.0
## 16253      380 1994    3.5
## 16254      381 1994    2.5
## 16255      382 1994    4.0
## 16256      383 1994    3.0
## 16257      410 1993    3.0
## 16258      420 1994    2.5
## 16259      427 1993    3.0
## 16260      431 1993    4.0
## 16261      432 1994    1.5
## 16262      434 1993    3.5
## 16263      435 1993    2.5
## 16264      440 1993    3.0
## 16265      442 1993    3.5
## 16266      454 1993    3.5
## 16267      457 1993    3.5
## 16268      458 1993    3.0
## 16269      459 1994    3.0
## 16270      468 1995    3.0
## 16271      471 1994    4.0
## 16272      474 1993    3.5
## 16273      480 1993    3.0
## 16274      481 1993    3.5
## 16275      497 1993    2.5
## 16276      500 1993    3.0
## 16277      508 1993    3.5
## 16278      509 1993    4.0
## 16279      522 1992    3.5
## 16280      535 1993    4.0
## 16281      539 1993    3.0
## 16282      541 1982    4.0
## 16283      555 1993    3.5
## 16284      586 1990    3.0
## 16285      587 1990    3.5
## 16286      589 1991    3.5
## 16287      590 1990    3.0
## 16288      592 1989    4.0
## 16289      593 1991    4.0
## 16290      597 1990    3.5
## 16291      608 1996    4.0
## 16292      648 1996    3.0
## 16293      653 1996    4.0
## 16294      688 1995    2.5
## 16295      733 1996    3.0
## 16296      736 1996    2.5
## 16297      762 1996    3.5
## 16298      778 1996    4.0
## 16299      780 1996    2.5
## 16300      784 1996    2.5
## 16301      785 1996    4.0
## 16302      788 1996    2.5
## 16303      832 1996    3.0
## 16304      852 1996    2.5
## 16305      858 1972    4.5
## 16306      866 1996    3.5
## 16307      912 1942    3.5
## 16308      923 1941    4.0
## 16309      996 1996    3.0
## 16310     1020 1993    3.0
## 16311     1027 1991    3.0
## 16312     1036 1988    4.0
## 16313     1047 1996    4.0
## 16314     1057 1996    2.5
## 16315     1061 1996    4.0
## 16316     1079 1988    3.5
## 16317     1080 1979    3.5
## 16318     1088 1987    3.0
## 16319     1089 1992    4.0
## 16320     1090 1986    4.0
## 16321     1094 1992    4.0
## 16322     1101 1986    3.0
## 16323     1120 1996    4.0
## 16324     1127 1989    2.5
## 16325     1129 1981    3.5
## 16326     1136 1975    3.0
## 16327     1147 1996    4.5
## 16328     1173 1989    3.5
## 16329     1175 1991    4.0
## 16330     1179 1990    3.5
## 16331     1183 1996    4.0
## 16332     1185 1989    3.0
## 16333     1186 1989    4.0
## 16334     1187 1992    3.0
## 16335     1193 1975    4.0
## 16336     1196 1980    3.0
## 16337     1198 1981    4.0
## 16338     1199 1985    4.0
## 16339     1200 1986    3.5
## 16340     1202 1987    4.0
## 16341     1206 1971    4.0
## 16342     1208 1979    3.5
## 16343     1210 1983    3.0
## 16344     1213 1990    4.5
## 16345     1214 1979    4.0
## 16346     1216 1988    3.5
## 16347     1220 1980    3.5
## 16348     1221 1974    4.0
## 16349     1222 1987    4.5
## 16350     1225 1984    3.5
## 16351     1227 1984    3.5
## 16352     1233 1981    5.0
## 16353     1234 1973    3.5
## 16354     1238 1983    4.0
## 16355     1240 1984    4.0
## 16356     1246 1989    1.5
## 16357     1247 1967    5.0
## 16358     1249 1990    4.0
## 16359     1252 1974    4.5
## 16360     1258 1980    4.5
## 16361     1259 1986    3.0
## 16362     1263 1978    4.0
## 16363     1265 1993    4.0
## 16364     1270 1985    3.0
## 16365     1275 1986    3.0
## 16366     1277 1990    3.5
## 16367     1278 1974    4.0
## 16368     1291 1989    3.0
## 16369     1298 1982    3.5
## 16370     1299 1984    4.0
## 16371     1300 1985    3.0
## 16372     1305 1984    4.0
## 16373     1307 1989    4.0
## 16374     1320 1992    3.5
## 16375     1321 1981    3.5
## 16376     1333 1963    3.5
## 16377     1346 1982    3.0
## 16378     1367 1996    2.5
## 16379     1370 1990    3.5
## 16380     1377 1992    4.0
## 16381     1378 1988    2.5
## 16382     1380 1978    3.0
## 16383     1387 1975    4.5
## 16384     1391 1996    3.5
## 16385     1392 1996    3.0
## 16386     1393 1996    3.5
## 16387     1394 1987    3.5
## 16388     1395 1987    3.5
## 16389     1407 1996    3.0
## 16390     1438 1997    3.0
## 16391     1466 1997    4.0
## 16392     1480 1997    3.5
## 16393     1499 1997    2.0
## 16394     1500 1997    4.0
## 16395     1503 1997    3.0
## 16396     1527 1997    3.5
## 16397     1544 1997    3.0
## 16398     1552 1997    3.0
## 16399     1573 1997    3.5
## 16400     1580 1997    4.0
## 16401     1586 1997    2.0
## 16402     1589 1997    4.0
## 16403     1608 1997    3.0
## 16404     1610 1990    3.5
## 16405     1617 1997    5.0
## 16406     1625 1997    4.0
## 16407     1635 1997    4.0
## 16408     1641 1997    3.5
## 16409     1673 1997    4.0
## 16410     1682 1998    3.5
## 16411     1721 1997    3.0
## 16412     1727 1998    3.0
## 16413     1729 1997    4.5
## 16414     1732 1998    4.0
## 16415     1784 1997    4.0
## 16416     1801 1998    3.0
## 16417     1810 1998    3.0
## 16418     1846 1997    4.0
## 16419     1882 1998    2.0
## 16420     1884 1998    3.5
## 16421     1889 1997    4.0
## 16422     1913 1975    4.0
## 16423     1917 1998    3.0
## 16424     1923 1998    4.0
## 16425     1953 1971    3.5
## 16426     1961 1988    4.0
## 16427     1962 1989    3.0
## 16428     1965 1984    4.0
## 16429     1968 1985    3.0
## 16430     1997 1973    4.0
## 16431     2000 1987    3.5
## 16432     2001 1989    3.0
## 16433     2002 1992    3.0
## 16434     2006 1998    2.5
## 16435     2011 1989    2.5
## 16436     2020 1988    4.0
## 16437     2023 1990    3.0
## 16438     2028 1998    3.0
## 16439     2058 1998    3.0
## 16440     2115 1984    3.5
## 16441     2116 1978    2.0
## 16442     2124 1991    3.5
## 16443     2126 1998    3.0
## 16444     2159 1986    4.0
## 16445     2167 1998    3.0
## 16446     2174 1988    4.5
## 16447     2194 1987    3.0
## 16448     2231 1998    4.0
## 16449     2243 1987    4.0
## 16450     2247 1988    3.0
## 16451     2268 1992    3.5
## 16452     2288 1982    4.0
## 16453     2291 1990    4.0
## 16454     2294 1998    3.5
## 16455     2329 1998    4.0
## 16456     2352 1983    3.5
## 16457     2353 1998    2.5
## 16458     2394 1998    3.0
## 16459     2395 1998    3.0
## 16460     2396 1998    3.0
## 16461     2405 1985    3.0
## 16462     2406 1984    3.5
## 16463     2423 1989    3.0
## 16464     2427 1998    3.0
## 16465     2455 1986    3.0
## 16466     2467 1986    3.5
## 16467     2478 1986    3.5
## 16468     2502 1999    4.0
## 16469     2513 1989    2.0
## 16470     2529 1968    3.0
## 16471     2539 1999    3.0
## 16472     2542 1998    4.0
## 16473     2551 1988    4.0
## 16474     2571 1999    3.0
## 16475     2580 1999    4.0
## 16476     2616 1990    2.5
## 16477     2617 1999    3.5
## 16478     2640 1978    1.5
## 16479     2671 1999    3.0
## 16480     2683 1999    3.0
## 16481     2692 1998    3.5
## 16482     2699 1990    3.0
## 16483     2701 1999    1.0
## 16484     2710 1999    2.5
## 16485     2712 1999    3.0
## 16486     2716 1984    4.0
## 16487     2717 1989    3.0
## 16488     2746 1986    2.0
## 16489     2762 1999    3.5
## 16490     2763 1999    3.0
## 16491     2790 1981    3.0
## 16492     2793 1997    2.0
## 16493     2797 1988    3.0
## 16494     2822 1992    2.5
## 16495     2858 1999    4.0
## 16496     2862 1979    2.5
## 16497     2890 1999    3.0
## 16498     2916 1990    4.0
## 16499     2917 1981    4.0
## 16500     2919 1982    4.0
## 16501     2942 1983    3.0
## 16502     2959 1999    3.5
## 16503     2968 1981    4.0
## 16504     2985 1987    3.0
## 16505     2987 1988    3.0
## 16506     2997 1999    4.0
## 16507     3006 1999    4.0
## 16508     3019 1989    3.5
## 16509     3020 1993    4.0
## 16510     3037 1970    4.0
## 16511     3072 1987    3.0
## 16512     3081 1999    3.0
## 16513     3082 1999    3.0
## 16514     3104 1988    4.5
## 16515     3127 1999    3.0
## 16516     3130 1990    3.5
## 16517     3141 1990    2.5
## 16518     3147 1999    3.0
## 16519     3157 1999    3.0
## 16520     3168 1969    3.5
## 16521     3176 1999    3.5
## 16522     3185 1999    3.5
## 16523     3198 1973    3.5
## 16524     3201 1970    4.0
## 16525     3210 1982    3.0
## 16526     3246 1992    3.0
## 16527     3253 1992    2.5
## 16528     3255 1992    2.5
## 16529     3257 1992    3.5
## 16530     3263 1992    3.0
## 16531     3271 1992    3.0
## 16532     3285 2000    2.5
## 16533     3324 2000    2.5
## 16534     3328 1999    3.0
## 16535     3386 1991    3.0
## 16536     3408 2000    3.5
## 16537     3418 1991    3.5
## 16538     3421 1978    4.0
## 16539     3424 1989    4.0
## 16540     3426 1991    3.0
## 16541     3448 1987    3.0
## 16542     3450 1993    3.0
## 16543     3471 1977    4.0
## 16544     3476 1990    4.0
## 16545     3481 2000    4.0
## 16546     3489 1991    2.5
## 16547     3498 1978    4.0
## 16548     3499 1990    4.0
## 16549     3503 1972    2.0
## 16550     3527 1987    3.5
## 16551     3529 1981    3.0
## 16552     3552 1980    3.5
## 16553     3557 1992    3.0
## 16554     3578 2000    4.5
## 16555     3584 1983    3.5
## 16556     3614 1992    4.0
## 16557     3676 1977    2.0
## 16558     3682 1973    4.0
## 16559     3683 1984    4.0
## 16560     3685 1985    4.0
## 16561     3686 1990    3.0
## 16562     3697 1990    3.0
## 16563     3702 1979    4.0
## 16564     3703 1981    3.5
## 16565     3717 2000    2.5
## 16566     3735 1973    4.0
## 16567     3740 1986    3.0
## 16568     3744 2000    3.0
## 16569     3752 2000    3.0
## 16570     3753 2000    3.0
## 16571     3755 2000    3.0
## 16572     3783 1998    3.0
## 16573     3793 2000    3.0
## 16574     3809 1991    4.0
## 16575     3825 2000    2.0
## 16576     3826 2000    2.5
## 16577     3831 2000    3.0
## 16578     3836 1970    3.0
## 16579     3917 1987    4.0
## 16580     3918 1988    3.0
## 16581     3946 2000    2.0
## 16582     3967 2000    3.0
## 16583     3980 2000    2.0
## 16584     3996 2000    3.5
## 16585     4002 1987    3.5
## 16586     4007 1987    3.5
## 16587     4011 2000    4.0
## 16588     4027 2000    3.5
## 16589     4034 2000    4.0
## 16590     4041 1982    3.5
## 16591     4056 2001    4.0
## 16592     4084 1987    3.0
## 16593     4148 2001    3.5
## 16594     4161 2001    3.0
## 16595     4203 1991    2.0
## 16596     4210 1986    4.0
## 16597     4218 1986    4.0
## 16598     4223 2001    3.5
## 16599     4226 2000    4.0
## 16600     4234 2001    3.0
## 16601     4235 2000    4.5
## 16602     4239 2001    4.0
## 16603     4246 2001    3.0
## 16604     4251 2000    4.0
## 16605     4262 1983    3.5
## 16606     4280 1982    3.0
## 16607     4321 1991    3.5
## 16608     4326 1988    4.0
## 16609     4361 1982    3.0
## 16610     4367 2001    2.0
## 16611     4407 1986    4.5
## 16612     4448 2001    3.0
## 16613     4467 1988    3.5
## 16614     4479 1988    4.0
## 16615     4482 1988    3.0
## 16616     4487 1988    3.0
## 16617     4557 1988    3.0
## 16618     4558 1988    3.0
## 16619     4572 1989    3.0
## 16620     4643 2001    2.5
## 16621     4654 1989    3.0
## 16622     4673 1989    2.5
## 16623     4679 1989    4.0
## 16624     4681 1989    3.5
## 16625     4719 2001    3.5
## 16626     4772 2000    4.0
## 16627     4776 2001    3.0
## 16628     4837 1980    3.5
## 16629     4855 1971    3.5
## 16630     4878 2001    3.0
## 16631     4896 2001    3.0
## 16632     4901 2001    3.0
## 16633     4958 2001    3.0
## 16634     4963 2001    3.0
## 16635     4979 2001    3.5
## 16636     4993 2001    5.0
## 16637     4995 2001    2.5
## 16638     5003 1974    3.0
## 16639     5013 2001    3.0
## 16640     5026 2001    4.0
## 16641     5049 1982    4.0
## 16642     5060 1970    4.0
## 16643     5180 1980    3.0
## 16644     5218 2002    4.0
## 16645     5299 2002    3.0
## 16646     5302 1975    3.5
## 16647     5308 1987    2.0
## 16648     5309 1990    1.5
## 16649     5334 1990    3.5
## 16650     5349 2002    2.5
## 16651     5377 2002    4.0
## 16652     5388 2002    4.0
## 16653     5400 2002    2.5
## 16654     5418 2002    4.0
## 16655     5419 2002    1.5
## 16656     5445 2002    3.0
## 16657     5447 2002    4.0
## 16658     5464 2002    4.0
## 16659     5630 2002    3.0
## 16660     5669 2002    3.0
## 16661     5693 1977    4.0
## 16662     5747 1981    3.5
## 16663     5816 2002    3.0
## 16664     5867 1981    3.5
## 16665     5878 2002    3.5
## 16666     5900 2002    3.0
##                                                                                                                                                          title
## 1                                                                                                                                              Dangerous Minds
## 2                                                                                                                                                        Dumbo
## 3                                                                                                                                                     Sleepers
## 4                                                                                                                                         Escape from New York
## 5                                                                                                                      Cinema Paradiso (Nuovo cinema Paradiso)
## 6                                                                                                                                             Deer Hunter, The
## 7                                                                                                                                                      Ben-Hur
## 8                                                                                                                                                       Gandhi
## 9                                                                                                                              Dracula (Bram Stoker's Dracula)
## 10                                                                                                                                                   Cape Fear
## 11                                                                                                                               Star Trek: The Motion Picture
## 12                                                                                                                             Beavis and Butt-Head Do America
## 13                                                                                                                                      French Connection, The
## 14                                                                                                                                                        Tron
## 15                                                                                                                                     Gods Must Be Crazy, The
## 16                                                                                                                                                      Willow
## 17                                                                                                                                                        Antz
## 18                                                                                                                                                    Fly, The
## 19                                                                                                                                                Time Bandits
## 20                                                                                                                                             Blazing Saddles
## 21                                                                                                                                                   GoldenEye
## 22                                                                                                                                       Sense and Sensibility
## 23                                                                                                                                                    Clueless
## 24                                                                                                                                        Seven (a.k.a. Se7en)
## 25                                                                                                                                         Usual Suspects, The
## 26                                                                                                                                            Mighty Aphrodite
## 27                                                                                                                                          Mr. Holland's Opus
## 28                                                                                                                                                  Braveheart
## 29                                                                                                                                      Brothers McMullen, The
## 30                                                                                                                                                   Apollo 13
## 31                                                                                                                                              Batman Forever
## 32                                                                                                                                                Crimson Tide
## 33                                                                                                                                  Die Hard: With a Vengeance
## 34                                                                                                                                                First Knight
## 35                                                                                                                                                    Net, The
## 36                                                                                                                                                 Nine Months
## 37                                                                                                                                                  Waterworld
## 38                                                                                                                                           Circle of Friends
## 39                                                                                                                                                      Clerks
## 40                                                                                                                                                  Disclosure
## 41                                                                                                                                                     Ed Wood
## 42                                                                                                                                                  Houseguest
## 43                                                                                                          Interview with the Vampire: The Vampire Chronicles
## 44                                                                                                                                                Little Women
## 45                                                                                                         Like Water for Chocolate (Como agua para chocolate)
## 46                                                                                                                                         Legends of the Fall
## 47                                                                                                                                 Madness of King George, The
## 48                                                                                                                  Mary Shelley's Frankenstein (Frankenstein)
## 49                                                                                                                                                    Outbreak
## 50                                                                                                                                                Pulp Fiction
## 51                                                                                                                                                   Quiz Show
## 52                                                                                                                                   Secret of Roan Inish, The
## 53                                                                                                                                           Santa Clause, The
## 54                                                                                                                                               Shallow Grave
## 55                                                                                                                                     While You Were Sleeping
## 56                                                                                                                                    Clear and Present Danger
## 57                                                                                                                                                 Client, The
## 58                                                                                                                                                Forrest Gump
## 59                                                                                                                                 Four Weddings and a Funeral
## 60                                                                                                                                              Lion King, The
## 61                                                                                                                                                   Mask, The
## 62                                                                                                                          Naked Gun 33 1/3: The Final Insult
## 63                                                                                                                                                  Paper, The
## 64                                                                                                                                               Reality Bites
## 65                                                                                                                                                       Speed
## 66                                                                                                                                                        Wolf
## 67                                                                                       Highlander III: The Sorcerer (a.k.a. Highlander: The Final Dimension)
## 68                                                                                                                                        Addams Family Values
## 69                                                                                                                                                   Firm, The
## 70                                                                                                                                               Fugitive, The
## 71                                                                                                 Englishman Who Went Up a Hill But Came Down a Mountain, The
## 72                                                                                                                                         In the Line of Fire
## 73                                                                                                                                               Jurassic Park
## 74                                                                                                                                            Last Action Hero
## 75                                                                                                                                      Much Ado About Nothing
## 76                                                                                                                                              Mrs. Doubtfire
## 77                                                                                                                                                Philadelphia
## 78                                                                                                                                                  Piano, The
## 79                                                                                                                                     Remains of the Day, The
## 80                                                                                                                                            Schindler's List
## 81                                                                                                                                                      Sirens
## 82                                                                                                                                        Sleepless in Seattle
## 83                                                                                                                                                   Threesome
## 84                                                                                                                             Nightmare Before Christmas, The
## 85                                                                                                                                       Three Musketeers, The
## 86                                                                                                                                      Brady Bunch Movie, The
## 87                                                                                                                                                  Home Alone
## 88                                                                                                                                                       Ghost
## 89                                                                                                                                                     Aladdin
## 90                                                                                                                                  Terminator 2: Judgment Day
## 91                                                                                                                                          Dances with Wolves
## 92                                                                                                                                                      Batman
## 93                                                                                                                                   Silence of the Lambs, The
## 94                                                                                                                                             Aristocats, The
## 95                                                                                                                                   James and the Giant Peach
## 96                                                                                                             Wallace & Gromit: The Best of Aardman Animation
## 97                                                                                                                                 Indian in the Cupboard, The
## 98                                                                                                                                                  Braveheart
## 99                                                                                                                                          Heavenly Creatures
## 100                                                                                                                                                Major Payne
## 101                                                                                                                                               Pulp Fiction
## 102                                                                                                                                  Shawshank Redemption, The
## 103                                                                                                                                           Flintstones, The
## 104                                                                                                                                               Forrest Gump
## 105                                                                                                                                                      Speed
## 106                                                                                                                                           Schindler's List
## 107                                                                                                                                                    Aladdin
## 108                                                                                                                                                     Batman
## 109                                                                                                                                  Silence of the Lambs, The
## 110                                                                                                                                       Beauty and the Beast
## 111                                                                                                                                                    Twister
## 112                                                                                                                                              Trainspotting
## 113                                                                                                                                                      Bound
## 114                                                                                                                                        Princess Bride, The
## 115                                                                                                                 Star Wars: Episode VI - Return of the Jedi
## 116                                                                                                                                           Harold and Maude
## 117                                                                                                                                       Fried Green Tomatoes
## 118                                                                                                                                                 Young Guns
## 119                                                                                                                                  Men in Black (a.k.a. MIB)
## 120                                                                                                                                                    Titanic
## 121                                                                                                                             Fear and Loathing in Las Vegas
## 122                                                                                                                                        Saving Private Ryan
## 123                                                                                                                                                  Happiness
## 124                                                                                                                                               Pet Sematary
## 125                                                                                                                                                  Big Daddy
## 126                                                                                                                                              Summer of Sam
## 127                                                                                                                        Ghostbusters (a.k.a. Ghost Busters)
## 128                                                                                                                                           Sixth Sense, The
## 129                                                                                                                                             Stir of Echoes
## 130                                                                                                                                            American Beauty
## 131                                                                                                                                                 Fight Club
## 132                                                                                                                                                 Encino Man
## 133                                                                                                                                                  Frequency
## 134                                                                                                                                        Requiem for a Dream
## 135                                                                                                                                                 Spider-Man
## 136                                                                                                                                      Bowling for Columbine
## 137                                                                                                                                               Finding Nemo
## 138                                                                                                             Lord of the Rings: The Return of the King, The
## 139                                                                                                                      Eternal Sunshine of the Spotless Mind
## 140                                                                                                                                            Fahrenheit 9/11
## 141                                                                                                                                               Spider-Man 2
## 142                                                                                                                                     Daria: Is It Fall Yet?
## 143                                                                                                                                             V for Vendetta
## 144                                                                                                                                       Flags of Our Fathers
## 145                                                                                                                                      Letters from Iwo Jima
## 146                                                                                                                                           Dark Knight, The
## 147                                                                                                       White Stripes Under Great White Northern Lights, The
## 148                                                                                                                                                  GoldenEye
## 149                                                                                                                                                       Babe
## 150                                                                                                                        Rumble in the Bronx (Hont faan kui)
## 151                                                                                                                                              Birdcage, The
## 152                                                                                                                                             Batman Forever
## 153                                                                                                                                                Judge Dredd
## 154                                                                                                                                                   Net, The
## 155                                                                                                                         Star Wars: Episode IV - A New Hope
## 156                                                                                                                                                   Only You
## 157                                                                                                                                               Pulp Fiction
## 158                                                                                                                                     Star Trek: Generations
## 159                                                                                                                                   Clear and Present Danger
## 160                                                                                                                                               Forrest Gump
## 161                                                                                                                                Four Weddings and a Funeral
## 162                                                                                                                                             Lion King, The
## 163                                                                                                                                                  Mask, The
## 164                                                                                                                                                  True Lies
## 165                                                                                                                                       Addams Family Values
## 166                                                                                                                                              Carlito's Way
## 167                                                                                                                                                Cliffhanger
## 168                                                                                                                                                  Coneheads
## 169                                                                                                                                                       Dave
## 170                                                                                                                                             Demolition Man
## 171                                                                                                                                                Hard Target
## 172                                                                                                                                              Jurassic Park
## 173                                                                                                                                               Blade Runner
## 174                                                                                                                                                    Aladdin
## 175                                                                                                                                 Terminator 2: Judgment Day
## 176                                                                                                                                         Dances with Wolves
## 177                                                                                                                            Snow White and the Seven Dwarfs
## 178                                                                                                                                                  Pinocchio
## 179                                                                                                                                                Heavy Metal
## 180                                                                                                                                            Aristocats, The
## 181                                                                                                                                             Godfather, The
## 182                                                                                                                                                    Vertigo
## 183                                                                                                                                           Some Like It Hot
## 184                                                                                                                                        Maltese Falcon, The
## 185                                                                                                                                          Wizard of Oz, The
## 186                                                                                                                                         Herbie Rides Again
## 187                                                                                                                                            Shaggy Dog, The
## 188                                                                                                                                                 Cinderella
## 189                                                                                                                                               Mary Poppins
## 190                                                                                                                                              Pete's Dragon
## 191                                                                                                                                   Bedknobs and Broomsticks
## 192                                                                                                                                        Alice in Wonderland
## 193                                                                                                                                     Fox and the Hound, The
## 194                                                                                                                                                   Die Hard
## 195                                                                                                                        Willy Wonka & the Chocolate Factory
## 196                                                                                                                                       Fish Called Wanda, A
## 197                                                                                                                                             Reservoir Dogs
## 198                                                                                                                                 E.T. the Extra-Terrestrial
## 199                                                                                                                            Return of the Pink Panther, The
## 200                                                                                                                                                 Abyss, The
## 201                                                                                                                            Monty Python and the Holy Grail
## 202                                                                                                                             Cheech and Chong's Up in Smoke
## 203                                                                                                             Star Wars: Episode V - The Empire Strikes Back
## 204                                                                                                                                        Princess Bride, The
## 205                                                                                    Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 206                                                                                                                                                     Aliens
## 207                                                                                                                                        Clockwork Orange, A
## 208                                                                                                                                             Apocalypse Now
## 209                                                                                                                 Star Wars: Episode VI - Return of the Jedi
## 210                                                                                                                                                 Goodfellas
## 211                                                                                                                                                      Alien
## 212                                                                                                                                                     Psycho
## 213                                                                                                                                        Blues Brothers, The
## 214                                                                                                                                          Full Metal Jacket
## 215                                                                                                                                                    Amadeus
## 216                                                                                                                                                 Annie Hall
## 217                                                                                                                                            Terminator, The
## 218                                                                                                                      Rosencrantz and Guildenstern Are Dead
## 219                                                                                                                                         Better Off Dead...
## 220                                                                                                                                               Shining, The
## 221                                                                                                                                                Stand by Me
## 222                                                                                                                                              Groundhog Day
## 223                                                                                                                                         Back to the Future
## 224                                                                                                                                         Young Frankenstein
## 225                                                                                                                                                   Fantasia
## 226                                                                                                                                                   Heathers
## 227                                                                                                                                         This Is Spinal Tap
## 228                                                                                                                         Indiana Jones and the Last Crusade
## 229                                                                                                                                       Pink Floyd: The Wall
## 230                                                                                                                                    When Harry Met Sally...
## 231                                                                                                                                             Believers, The
## 232                                                                                                                                                  Blob, The
## 233                                                                                                                                                  Cape Fear
## 234                                                                                                                                   Star Trek: First Contact
## 235                                                                                                                              Star Trek: The Motion Picture
## 236                                                                                                                     Star Trek VI: The Undiscovered Country
## 237                                                                                                                            Star Trek II: The Wrath of Khan
## 238                                                                                                                              Star Trek IV: The Voyage Home
## 239                                                                                                                                             Batman Returns
## 240                                                                                                                                                     Grease
## 241                                                                                                                                                       Jaws
## 242                                                                                                                                                     Jaws 2
## 243                                                                                                                                                   Sneakers
## 244                                                                                                                             Lost World: Jurassic Park, The
## 245                                                                                                                                  Men in Black (a.k.a. MIB)
## 246                                                                                                                                                    Stripes
## 247                                                                                                                                                    Witness
## 248                                                                                                                                                Wild Things
## 249                                                                                                                              Mr. Nice Guy (Yat goh ho yan)
## 250                                                                                                                                                 Armageddon
## 251                                                                                                                                            Lethal Weapon 4
## 252                                                                                                                                     French Connection, The
## 253                                                                                                                                                      Rocky
## 254                                                                                                                                                   Rain Man
## 255                                                                                                                                                  Labyrinth
## 256                                                                                                                                        Breakfast Club, The
## 257                                                                                                                                                Poltergeist
## 258                                                                                                                                              Lethal Weapon
## 259                                                                                                                                            Lethal Weapon 3
## 260                                                                                                                                                   Gremlins
## 261                                                                                                                                               Goonies, The
## 262                                                                                                                                              Freaky Friday
## 263                                                                                                                                                      Bambi
## 264                                                                                                                                         Dangerous Liaisons
## 265                                                                                                                                                       Dune
## 266                                                                                                                                        Black Cauldron, The
## 267                                                                                                                                            Black Hole, The
## 268                                                                                                                                    Flight of the Navigator
## 269                                                                                                                                   Honey, I Shrunk the Kids
## 270                                                                                                                                                 Roger & Me
## 271                                                                                                                                           Jungle Book, The
## 272                                                                                                                                         Lady and the Tramp
## 273                                                                                                                                        Little Mermaid, The
## 274                                                                                                            101 Dalmatians (One Hundred and One Dalmatians)
## 275                                                                                                                                        One Magic Christmas
## 276                                                                                                                                                  Peter Pan
## 277                                                                                                                                 Return from Witch Mountain
## 278                                                                                                                                             Rocketeer, The
## 279                                                                                                                                            Sleeping Beauty
## 280                                                                                                                                                     Splash
## 281                                                                                                                                           Steamboat Willie
## 282                                                                                                                                                       Tron
## 283                                                                                                                                                  Jerk, The
## 284                                                                                                                                  Dead Men Don't Wear Plaid
## 285                                                                                                                                             Outsiders, The
## 286                                                                                                                       Indiana Jones and the Temple of Doom
## 287                                                                                                                                         Addams Family, The
## 288                                                                                                                                          Dark Crystal, The
## 289                                                                                                                                          American Tail, An
## 290                                                                                                                                                     Legend
## 291                                                                                                                                            Sixteen Candles
## 292                                                                                                                                     NeverEnding Story, The
## 293                                                                                                                                                Beetlejuice
## 294                                                                                                                                                     Willow
## 295                                                                                                                                          Untouchables, The
## 296                                                                                                                                            Say Anything...
## 297                                                                                                                                          Seventh Sign, The
## 298                                                                                                                                            Few Good Men, A
## 299                                                                                                                                                Player, The
## 300                                                                                                                                              Sid and Nancy
## 301                                                                                                                                                     Fletch
## 302                                                                                                                           First Blood (Rambo: First Blood)
## 303                                                                                                                                        Romancing the Stone
## 304                                                                                                                                                   Rocky II
## 305                                                                                                                                                   Fly, The
## 306                                                                                                                 Name of the Rose, The (Name der Rose, Der)
## 307                                                                                                                                               Dead Ringers
## 308                                                                                                                                                 Dick Tracy
## 309                                                                                                                  Star Wars: Episode I - The Phantom Menace
## 310                                                                                                                                                   Superman
## 311                                                                                                                                     It Came from Hollywood
## 312                                                                                                                      Austin Powers: The Spy Who Shagged Me
## 313                                                                                                                                              Arachnophobia
## 314                                                                                                                        Ghostbusters (a.k.a. Ghost Busters)
## 315                                                                                                                                                Mystery Men
## 316                                                                                                                                        Mosquito Coast, The
## 317                                                                                                                                                  Bowfinger
## 318                                                                                                  Monty Python's And Now for Something Completely Different
## 319                                                                                                                                                  Airplane!
## 320                                                                                                                                National Lampoon's Vacation
## 321                                                                                                                                                        Big
## 322                                                                                                                                         Christmas Story, A
## 323                                                                                                                                               Medicine Man
## 324                                                                                                                                               Fright Night
## 325                                                                                                                                                  Excalibur
## 326                                                                                                                                                      Tommy
## 327                                                                                                                                                  Psycho II
## 328                                                                                                                                                 Psycho III
## 329                                                                                                                                               Total Recall
## 330                                                                                                                                   Ferris Bueller's Day Off
## 331                                                                                                                                               Time Bandits
## 332                                                                                                                                                  RoboCop 2
## 333                                                                                                                                   Who Framed Roger Rabbit?
## 334                                                                                                                                           Live and Let Die
## 335                                                                                                                                                  Creepshow
## 336                                                                                                                                                 Robin Hood
## 337                                                                                                                                             Trading Places
## 338                                                                                                                                                  Meatballs
## 339                                                                                                                                           Commitments, The
## 340                                                                                                                                          Stand and Deliver
## 341                                                                                                                                           Fatal Attraction
## 342                                                                                                                                               Midnight Run
## 343                                                                                                                                           Fisher King, The
## 344                                                                                                                                 The Falcon and the Snowman
## 345                                                                                                       Loaded Weapon 1 (National Lampoon's Loaded Weapon 1)
## 346                                                                                                                               Fast Times at Ridgemont High
## 347                                                                                                                                               Agnes of God
## 348                                                                                                                                     League of Their Own, A
## 349                                                                                                                                       White Men Can't Jump
## 350                                                                                                                             Hard-Boiled (Lat sau san taam)
## 351                                                                                                                                    Transformers: The Movie
## 352                                                                                                                                           Grumpier Old Men
## 353                                                                                                                                                   Clueless
## 354                                                                                                                                              Happy Gilmore
## 355                                                                                                                                              Birdcage, The
## 356                                                                                                                                                  Apollo 13
## 357                                                                                                                            Dumb & Dumber (Dumb and Dumber)
## 358                                                                                                                                     Miracle on 34th Street
## 359                                                                                                                                 Ace Ventura: Pet Detective
## 360                                                                                                                                               Forrest Gump
## 361                                                                                                                                             Lion King, The
## 362                                                                                                                                                  Mask, The
## 363                                                                                                                                                      Speed
## 364                                                                                                                                                       Dave
## 365                                                                                                                                             Mrs. Doubtfire
## 366                                                                                                                                                 Home Alone
## 367                                                                                                                                                    Aladdin
## 368                                                                                                                                       Beauty and the Beast
## 369                                                                                                                                               Pretty Woman
## 370                                                                                                                                       Nutty Professor, The
## 371                                                                                                                                             Godfather, The
## 372                                                                                                                                                    Vertigo
## 373                                                                                                                                          Wizard of Oz, The
## 374                                                                                                                                                 Cinderella
## 375                                                                                                                                        Sound of Music, The
## 376                                                                                                                            One Flew Over the Cuckoo's Nest
## 377                                                                                                                                    Godfather: Part II, The
## 378                                                                                                                                              Graduate, The
## 379                                                                                                                                    When Harry Met Sally...
## 380                                                                                                                                                     Grease
## 381                                                                                                                                              Jerry Maguire
## 382                                                                                                                                                  Liar Liar
## 383                                                                                                                             Lost World: Jurassic Park, The
## 384                                                                                                                                           Truman Show, The
## 385                                                                                                                                                    Titanic
## 386                                                                                                                                        Wedding Singer, The
## 387                                                                                                                                         As Good as It Gets
## 388                                                                                                                               There's Something About Mary
## 389                                                                                                                                                   Rain Man
## 390                                                                                                                                        Breakfast Club, The
## 391                                                                                                                                              Exorcist, The
## 392                                                                                                                                   Godfather: Part III, The
## 393                                                                                                                                        Little Mermaid, The
## 394                                                                                                                                                  Rush Hour
## 395                                                                                                                                                       Antz
## 396                                                                                                                                              Bug's Life, A
## 397                                                                                                                                            You've Got Mail
## 398                                                                                                                                               Office Space
## 399                                                                                                                      Austin Powers: The Spy Who Shagged Me
## 400                                                                                                                                                  Big Daddy
## 401                                                                                                                                               American Pie
## 402                                                                                                                                           Sixth Sense, The
## 403                                                                                                                                                  Bowfinger
## 404                                                                                                                                   Ferris Bueller's Day Off
## 405                                                                                                                                       Being John Malkovich
## 406                                                                                                                                                Toy Story 2
## 407                                                                                                                                   Talented Mr. Ripley, The
## 408                                                                                                                                            Erin Brockovich
## 409                                                                                                                                               Patriot, The
## 410                                                                                                                                              Almost Famous
## 411                                                                                                                                           Meet the Parents
## 412                                                                                                                                                   Chocolat
## 413                                                                                                                                            What Women Want
## 414                                                                                                                                                  Cast Away
## 415                                                                                                                                          Miss Congeniality
## 416                                                                                                                                                      Shrek
## 417                                                                                                                                               Moulin Rouge
## 418                                                                                                                                             Legally Blonde
## 419                                                                                                                                             American Pie 2
## 420                                                                                                                                             Ocean's Eleven
## 421                                                                                                                                          Beautiful Mind, A
## 422                                                                                                                                                 Panic Room
## 423                                                                                                                                   My Big Fat Greek Wedding
## 424                                                                                                                                                 Spider-Man
## 425                                                                                                                                          Road to Perdition
## 426                                                                                                                                      Bowling for Columbine
## 427                                                                                                                                                  Ring, The
## 428                                                                                                                    Harry Potter and the Chamber of Secrets
## 429                                                                                                                                               Pianist, The
## 430                                                                                                                                       Bend It Like Beckham
## 431                                                                                                                                             Bruce Almighty
## 432                                                                                                                                               Finding Nemo
## 433                                                                                                                                              28 Days Later
## 434                                                                                                                                        Lost in Translation
## 435                                                                                                                                              Love Actually
## 436                                                                                                                                          Napoleon Dynamite
## 437                                                                                                                                              Super Size Me
## 438                                                                                                                                            Fahrenheit 9/11
## 439                                                                                                                                               Spider-Man 2
## 440                                                                                                                                                   I, Robot
## 441                                                                                                                                        Million Dollar Baby
## 442                                                                                                                                               Hotel Rwanda
## 443                                                                                                                          Charlie and the Chocolate Factory
## 444                                                                                                                                                      Crash
## 445                                                                                                                                           Mr. & Mrs. Smith
## 446                                                                                                                                           Wedding Crashers
## 447                                                                                                                                    40-Year-Old Virgin, The
## 448                                                                                                                                              Walk the Line
## 449                                                                                            Chronicles of Narnia: The Lion, the Witch and the Wardrobe, The
## 450                                                                                                                                                  King Kong
## 451                                                                        Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan
## 452                                                                                                                                                Taxi Driver
## 453                                                                                                                                                     Casper
## 454                                                                                                                                                Judge Dredd
## 455                                                                                                    Léon: The Professional (a.k.a. The Professional) (Léon)
## 456                                                                                                                                                  Pinocchio
## 457                                                                                                                                                    Vertigo
## 458                                                                                                                                         Lawrence of Arabia
## 459                                                                                                                              Bridge on the River Kwai, The
## 460                                                                                                                                                Stand by Me
## 461                                                                                                                                             Cool Hand Luke
## 462                                                                                                                                                   Heathers
## 463                                                                                                                                                Sling Blade
## 464                                                                                                                                                Chasing Amy
## 465                                                                                                                                                Jackal, The
## 466                                                                                                                                                Wag the Dog
## 467                                                                                                                                                Deep Impact
## 468                                                                                                                             X-Files: Fight the Future, The
## 469                                                                                                                                            Lethal Weapon 2
## 470                                                                                                                       Seven Samurai (Shichinin no samurai)
## 471                                                                                                                                                'burbs, The
## 472                                                                                                                                                Beetlejuice
## 473                                                                                                                                               Office Space
## 474                                                                                                                                                Logan's Run
## 475                                                                                                                                         Planet of the Apes
## 476                                                                                                                                                Matrix, The
## 477                                                                                                                             Rocky Horror Picture Show, The
## 478                                                                                                                                  Run Lola Run (Lola rennt)
## 479                                                                                                                                                Mystery Men
## 480                                                                                                                                            Iron Giant, The
## 481                                                                                                                                                Three Kings
## 482                                                                                                                                                      Dogma
## 483                                                                                                                                                Toy Story 2
## 484                                                                                                                                                Pitch Black
## 485                                                                                                                                                Chicken Run
## 486                                                                                                                                                Ghost World
## 487                                                                                                                                                Vanilla Sky
## 488                                                                                                                     Lord of the Rings: The Two Towers, The
## 489                                                                                                                                          Hero (Ying xiong)
## 490                                                                                                             Lord of the Rings: The Return of the King, The
## 491                                                                                                                      Eternal Sunshine of the Spotless Mind
## 492                                                                                                                   Harry Potter and the Prisoner of Azkaban
## 493                                                                                                                                               Spider-Man 2
## 494                                                                                                                                               Garden State
## 495                                                                                                                                          Shaun of the Dead
## 496                                                                                                                                                  Toy Story
## 497                                                                                                                                                  GoldenEye
## 498                                                                                                                                                 Get Shorty
## 499                                                                                                                                            Dangerous Minds
## 500                                                                                                                                                       Babe
## 501                                                                                                                                   Cry, the Beloved Country
## 502                                                                                                                                              Happy Gilmore
## 503                                                                                                                                                 Braveheart
## 504                                                                                                                        Rumble in the Bronx (Hont faan kui)
## 505                                                                                                                                              Birdcage, The
## 506                                                                                                                                                    Rob Roy
## 507                                                                                                                                               Strange Days
## 508                                                                                                                                      Walk in the Clouds, A
## 509                                                                                                                         Star Wars: Episode IV - A New Hope
## 510                                                                                                                                Madness of King George, The
## 511                                                                                                                                                   Stargate
## 512                                                                                                                                  Shawshank Redemption, The
## 513                                                                                                                                     Star Trek: Generations
## 514                                                                                                                                                  Tommy Boy
## 515                                                                                                          Adventures of Priscilla, Queen of the Desert, The
## 516                                                                                                                                           Flintstones, The
## 517                                                                                                                                               Forrest Gump
## 518                                                                                                                                Four Weddings and a Funeral
## 519                                                                                                                                             Lion King, The
## 520                                                                                                                                                  Mask, The
## 521                                                                                                                                                      Speed
## 522                                                                                                                                                  True Lies
## 523                                                                                                                                              Jurassic Park
## 524                                                                                                                                             Mrs. Doubtfire
## 525                                                                                                                                                Shadowlands
## 526                                                                                                                                       Sleepless in Seattle
## 527                                                                                                                                               Blade Runner
## 528                                                                                                                            Nightmare Before Christmas, The
## 529                                                                                                                                                    Aladdin
## 530                                                                                                                                 Terminator 2: Judgment Day
## 531                                                                                                                                         Dances with Wolves
## 532                                                                                                                                                     Batman
## 533                                                                                                                            Snow White and the Seven Dwarfs
## 534                                                                                                                                       Beauty and the Beast
## 535                                                                                                                                                Heavy Metal
## 536                                                                                                                    Mystery Science Theater 3000: The Movie
## 537                                                                                                                               Truth About Cats & Dogs, The
## 538                                                                                                            Wallace & Gromit: The Best of Aardman Animation
## 539                                                                                                                                                 Craft, The
## 540                                                                                                                                                    Twister
## 541                                                                                                                                                  Barb Wire
## 542                                                                                                                            Wallace & Gromit: A Close Shave
## 543                                                                                                                              Independence Day (a.k.a. ID4)
## 544                                                                                                                                                     Eraser
## 545                                                                                                                                      2001: A Space Odyssey
## 546                                                                                                                                                   Die Hard
## 547                                                                                                                        Willy Wonka & the Chocolate Factory
## 548                                                                                                                                       Fish Called Wanda, A
## 549                                                                                                                               Monty Python's Life of Brian
## 550                                                                                                                                 E.T. the Extra-Terrestrial
## 551                                                                                                                            Return of the Pink Panther, The
## 552                                                                                                                                       Escape from New York
## 553                                                                                                                            Monty Python and the Holy Grail
## 554                                                                                                                       Wallace & Gromit: The Wrong Trousers
## 555                                                                                                             Star Wars: Episode V - The Empire Strikes Back
## 556                                                                                                                                        Princess Bride, The
## 557                                                                                    Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 558                                                                                                                 Star Wars: Episode VI - Return of the Jedi
## 559                                                                                                                                        Blues Brothers, The
## 560                                                                                                                   Grand Day Out with Wallace and Gromit, A
## 561                                                                                                                                                    Amadeus
## 562                                                                                                                                           Right Stuff, The
## 563                                                                                                                                            Terminator, The
## 564                                                                                                                                                      Glory
## 565                                                                                                                                         Back to the Future
## 566                                                                                                                                                 Highlander
## 567                                                                                                                                         Young Frankenstein
## 568                                                                                                                                                    Ben-Hur
## 569                                                                                                                                         This Is Spinal Tap
## 570                                                                                                                         Indiana Jones and the Last Crusade
## 571                                                                                                                                       Pink Floyd: The Wall
## 572                                                                                                                                            Field of Dreams
## 573                                                                                                                                    When Harry Met Sally...
## 574                                                                                                                                  Mirror Has Two Faces, The
## 575                                                                                                                              Star Trek: The Motion Picture
## 576                                                                                                                     Star Trek VI: The Undiscovered Country
## 577                                                                                                                            Star Trek V: The Final Frontier
## 578                                                                                                                            Star Trek II: The Wrath of Khan
## 579                                                                                                                        Star Trek III: The Search for Spock
## 580                                                                                                                              Star Trek IV: The Voyage Home
## 581                                                                                                                                            Raising Arizona
## 582                                                                                                                            Beavis and Butt-Head Do America
## 583                                                                                                                                  Last of the Mohicans, The
## 584                                                                                                                         Twelve Monkeys (a.k.a. 12 Monkeys)
## 585                                                                                                                                                 To Die For
## 586                                                                                                                                       Seven (a.k.a. Se7en)
## 587                                                                                                                                        Usual Suspects, The
## 588                                                                                                                                                 Braveheart
## 589                                                                                                                         Star Wars: Episode IV - A New Hope
## 590                                                                                                                                                       Nell
## 591                                                                                                                                               Pulp Fiction
## 592                                                                                                                                  Shawshank Redemption, The
## 593                                                                                                                                               Forrest Gump
## 594                                                                                                                                              Fugitive, The
## 595                                                                                                                                  Robin Hood: Men in Tights
## 596                                                                                                                                                       Rudy
## 597                                                                                                                                           Schindler's List
## 598                                                                                                                               So I Married an Axe Murderer
## 599                                                                                                                                 Terminator 2: Judgment Day
## 600                                                                                                                                  Silence of the Lambs, The
## 601                                                                                                                                                Primal Fear
## 602                                                                                                                                            Time to Kill, A
## 603                                                                                                                                             Godfather, The
## 604                                                                                                             Star Wars: Episode V - The Empire Strikes Back
## 605                                                                                                                                        Princess Bride, The
## 606                                                                                    Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 607                                                                                                                 Star Wars: Episode VI - Return of the Jedi
## 608                                                                                                                                                     Psycho
## 609                                                                                                                                                    Amadeus
## 610                                                                                                                                               Shining, The
## 611                                                                                                                                                Stand by Me
## 612                                                                                                                                              Groundhog Day
## 613                                                                                                                                         Back to the Future
## 614                                                                                                                         Indiana Jones and the Last Crusade
## 615                                                                                                                                            Field of Dreams
## 616                                                                                                                                                Sling Blade
## 617                                                                                                                                                       Jaws
## 618                                                                                                                                              Jerry Maguire
## 619                                                                                                                                        Grosse Pointe Blank
## 620                                                                                                                                                    Con Air
## 621                                                                                                                                          L.A. Confidential
## 622                                                                                                                                                  Game, The
## 623                                                                                                                                                    Witness
## 624                                                                                                                                          Good Will Hunting
## 625                                                                                                                                                     Fallen
## 626                                                                                                                                        Wedding Singer, The
## 627                                                                                                                                                Deep Impact
## 628                                                                                                                                                   Rain Man
## 629                                                                                                                                        Saving Private Ryan
## 630                                                                                                                                                     Splash
## 631                                                                                                                                        Secret of NIMH, The
## 632                                                                                                                                          Untouchables, The
## 633                                                                                                                                            My Cousin Vinny
## 634                                                                                                                        Life Is Beautiful (La Vita è bella)
## 635                                                                                                                                         American History X
## 636                                                                                                                                         Enemy of the State
## 637                                                                                                 Christmas Vacation (National Lampoon's Christmas Vacation)
## 638                                                                                                                                               Office Space
## 639                                                                                                                                                Matrix, The
## 640                                                                                                                        Ghostbusters (a.k.a. Ghost Busters)
## 641                                                                                                                                           Sixth Sense, The
## 642                                                                                                                                                  Bowfinger
## 643                                                                                                                                                  Airplane!
## 644                                                                                                                                                        Big
## 645                                                                                                                                         Christmas Story, A
## 646                                                                                                                                             Stir of Echoes
## 647                                                                                                                                            American Beauty
## 648                                                                                                                                   Ferris Bueller's Day Off
## 649                                                                                                                                                 Fight Club
## 650                                                                                                                                            Green Mile, The
## 651                                                                                                                                                  Gladiator
## 652                                                                                                                                        Remember the Titans
## 653                                                                                                                                           Meet the Parents
## 654                                                                                                           Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 655                                                                                                                                                     Snatch
## 656                                                                                                                                          Finding Forrester
## 657                                                                                                                                                    Traffic
## 658                                                                                                                                                    Memento
## 659                                                                                                                                                   Scarface
## 660                                                                                                                                                 Score, The
## 661                                                                                                                                             Monsters, Inc.
## 662                                                                    Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 663                                                                                                                                             Ocean's Eleven
## 664                                                                                                              Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 665                                                                                                         Lord of the Rings: The Fellowship of the Ring, The
## 666                                                                                                                                          Beautiful Mind, A
## 667                                                                                                                                  The Count of Monte Cristo
## 668                                                                                                               Star Wars: Episode II - Attack of the Clones
## 669                                                                                                                                            Minority Report
## 670                                                                                                                                          Road to Perdition
## 671                                                                                                                                                 Red Dragon
## 672                                                                                                                                               Strange Brew
## 673                                                                                                                                      Bowling for Columbine
## 674                                                                                                                     Lord of the Rings: The Two Towers, The
## 675                                                                                                                                        Catch Me If You Can
## 676                                                                                                                                               Finding Nemo
## 677                                                                                                                                           Italian Job, The
## 678                                                                                                                                               Mystic River
## 679                                                                                                                                          Kill Bill: Vol. 1
## 680                                                                                                                                               Runaway Jury
## 681                                                                                                                                          Last Samurai, The
## 682                                                                                                             Lord of the Rings: The Return of the King, The
## 683                                                                                                                      Eternal Sunshine of the Spotless Mind
## 684                                                                                                                                          Kill Bill: Vol. 2
## 685                                                                                                                                              Notebook, The
## 686                                                                                                                                               Garden State
## 687                                                                                                           Motorcycle Diaries, The (Diarios de motocicleta)
## 688                                                                                                                                          Shaun of the Dead
## 689                                                                                                                                                   Sin City
## 690                                                                                                                                                      Crash
## 691                                                                                                               Star Wars: Episode III - Revenge of the Sith
## 692                                                                                                                                              Batman Begins
## 693                                                                                                                                           Wedding Crashers
## 694                                                                                                                                                    Syriana
## 695                                                                                                                                              Walk the Line
## 696                                                                                                                                            Rumor Has It...
## 697                                                                                                                                                  Annapolis
## 698                                                                                                                                                   Firewall
## 699                                                                                                                                          Failure to Launch
## 700                                                                                                                                                  Toy Story
## 701                                                                                                                                      Sense and Sensibility
## 702                                                                                                                                                    Othello
## 703                                                                                                                                           Dead Man Walking
## 704                                                                                                                                       Seven (a.k.a. Se7en)
## 705                                                                                                                                  Shawshank Redemption, The
## 706                                                                                                                                     Much Ado About Nothing
## 707                                                                                                                                    Remains of the Day, The
## 708                                                                                                                                           Schindler's List
## 709                                                                                                                                                Shadowlands
## 710                                                                                                                                  Silence of the Lambs, The
## 711                                                                                                                                                      Fargo
## 712                                                                                                                                                  Rock, The
## 713                                                                                                                       William Shakespeare's Romeo + Juliet
## 714                                                                                                                                            Enchanted April
## 715                                                                                                                                                      Shine
## 716                                                                                                                                                Sling Blade
## 717                                                                                                                                                     Hamlet
## 718                                                                                                                                           Addicted to Love
## 719                                                                                                                                                    Contact
## 720                                                                                                                                              Sliding Doors
## 721                                                                                                                                           Truman Show, The
## 722                                                                                                                                          Good Will Hunting
## 723                                                                                                                                                    Titanic
## 724                                                                                                                                         As Good as It Gets
## 725                                                                                                                                        Saving Private Ryan
## 726                                                                                                                             Ever After: A Cinderella Story
## 727                                                                                                                                          Dark Crystal, The
## 728                                                                                                                                             My Blue Heaven
## 729                                                                                                                                            Few Good Men, A
## 730                                                                                                                                                  Rush Hour
## 731                                                                                                                                                      Ronin
## 732                                                                                                                                        Edward Scissorhands
## 733                                                                                                                                                       Antz
## 734                                                                                                                                            My Cousin Vinny
## 735                                                                                                                                             Simple Plan, A
## 736                                                                                                                                        Shakespeare in Love
## 737                                                                                                                                         Thin Red Line, The
## 738                                                                                                                                                    Payback
## 739                                                                                                                                                October Sky
## 740                                                                                                                                               Analyze This
## 741                                                                                                                                                Matrix, The
## 742                                                                                                                  Star Wars: Episode I - The Phantom Menace
## 743                                                                                                                                           Sixth Sense, The
## 744                                                                                                                                           Yellow Submarine
## 745                                                                                                                                        Usual Suspects, The
## 746                                                                                                                                             Addiction, The
## 747                                                                                                                                  Shawshank Redemption, The
## 748                                                                                                                                 Ace Ventura: Pet Detective
## 749                                                                                                          Adventures of Priscilla, Queen of the Desert, The
## 750                                                                                                                                                     Batman
## 751                                                                                                                        Cemetery Man (Dellamorte Dellamore)
## 752                                                                                                                                                   Die Hard
## 753                                                                                                                                             Reservoir Dogs
## 754                                                                                                                                                    Top Gun
## 755                                                                                                                                                 Abyss, The
## 756                                                                                                             Star Wars: Episode V - The Empire Strikes Back
## 757                                                                                                                                        Princess Bride, The
## 758                                                                                    Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 759                                                                                                                                                     Aliens
## 760                                                                                                                 Star Wars: Episode VI - Return of the Jedi
## 761                                                                                                                                        Blues Brothers, The
## 762                                                                                                                                            Terminator, The
## 763                                                                                                                         Indiana Jones and the Last Crusade
## 764                                                                                                                                                Sling Blade
## 765                                                                                                                                           Hearts and Minds
## 766                                                                                                                                             Absolute Power
## 767                                                                                                                                                   Anaconda
## 768                                                                                                                                       My Own Private Idaho
## 769                                                                                                                                        Alien: Resurrection
## 770                                                                                                                                          Good Will Hunting
## 771                                                                                                                                       Sweet Hereafter, The
## 772                                                                                                                                              Almost Heroes
## 773                                                                                                                               There's Something About Mary
## 774                                                                                                                                                 L.A. Story
## 775                                                                                                                                              Runaway Train
## 776                                                                                                                                        Romancing the Stone
## 777                                                                                                                                                  Rocky III
## 778                                                                                                                                               Analyze This
## 779                                                                                                                                                Matrix, The
## 780                                                                                                                                          13th Warrior, The
## 781                                                                                                                                      Astronaut's Wife, The
## 782                                                                                                                                                   Stigmata
## 783                                                                                                                                             Stir of Echoes
## 784                                                                                                                                            Double Jeopardy
## 785                                                                                                                                                Three Kings
## 786                                                                                                                                                  Superstar
## 787                                                                                                                                                  Hairspray
## 788                                                                                                                                      House on Haunted Hill
## 789                                                                                                                                        Bone Collector, The
## 790                                                                                                                                           Drugstore Cowboy
## 791                                                                                                                                        Usual Suspects, The
## 792                                                                                                                                        From Dusk Till Dawn
## 793                                                                                                                                 NeverEnding Story III, The
## 794                                                                                                                           Free Willy 2: The Adventure Home
## 795                                                                                                                                               Pulp Fiction
## 796                                                                                                                                              Trainspotting
## 797                                                                                                                                                    Kingpin
## 798                                                                                                                                               Citizen Kane
## 799                                                                                                                              Robin Hood: Prince of Thieves
## 800                                                                                         Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il)
## 801                                                                                                                                  Last of the Mohicans, The
## 802                                                                                                                                            Lethal Weapon 4
## 803                                                                                                                                       D2: The Mighty Ducks
## 804                                                                                                                                                  SLC Punk!
## 805                                                                                                                                           Sixth Sense, The
## 806                                                                                                                                         Do the Right Thing
## 807                                                                                                                                      Bowling for Columbine
## 808                                                                                                                                           Step Into Liquid
## 809                                                                                                                                       Bourne Identity, The
## 810                                                                                                                                              Departed, The
## 811                                                                                                                                           Music and Lyrics
## 812                                                                                                                                              Bank Job, The
## 813                                                                                                                                            Informant!, The
## 814                                                                                                                                 Exit Through the Gift Shop
## 815                                                                                                                                                  Inception
## 816                                                                                                                                                  Town, The
## 817                                                                                                                                                 Inside Job
## 818                                                                                                                                                   Restrepo
## 819                                                                                                                                                  127 Hours
## 820                                                                                                                                                      Drive
## 821                                                                                                                                           The Hunger Games
## 822                                                                                                                                     Dark Knight Rises, The
## 823                                                                                                                                              Life in a Day
## 824                                                                                                                                                    Skyfall
## 825                                                                                                                                                    Taken 2
## 826                                                                                                                                                 Life of Pi
## 827                                                                                                                                                    Gravity
## 828                                                                                                                            The Hunger Games: Catching Fire
## 829                                                                                                         Interview with the Vampire: The Vampire Chronicles
## 830                                                                                                                                Searching for Bobby Fischer
## 831                                                                                                                                  Six Degrees of Separation
## 832                                                                                                                                                      Fargo
## 833                                                                                                                                                  Space Jam
## 834                                                                                                                                                    Twister
## 835                                                                                                                                                  Barb Wire
## 836                                                                                                                                               Mary Poppins
## 837                                                                                                                                        Alice in Wonderland
## 838                                                                                                                                                    Sleeper
## 839                                                                                                                                        Princess Bride, The
## 840                                                                                                                                           Army of Darkness
## 841                                                                                                                                        Blues Brothers, The
## 842                                                                                                                                                 Annie Hall
## 843                                                                                                                                           Harold and Maude
## 844                                                                                                                         Unbearable Lightness of Being, The
## 845                                                                                                                            Star Trek II: The Wrath of Khan
## 846                                                                                                                                                       Jaws
## 847                                                                                                                                                Chasing Amy
## 848                                                                                                                                          Big Lebowski, The
## 849                                                                                                                                            Blame It on Rio
## 850                                                                                                                                              Bug's Life, A
## 851                                                                                                                             Texas Chainsaw Massacre 2, The
## 852                                                                                                                                         Planet of the Apes
## 853                                                                                                                                                Swamp Thing
## 854                                                                                                                                                 Fight Club
## 855                                                                                                                                 Deuce Bigalow: Male Gigolo
## 856                                                                                                                                     Cider House Rules, The
## 857                                                                                                                                   Talented Mr. Ripley, The
## 858                                                                                                                                             Angela's Ashes
## 859                                                                                                                                                Boiler Room
## 860                                                                                                                                              Drowning Mona
## 861                                                                                                                                            Erin Brockovich
## 862                                                                                                                                                Retroactive
## 863                                                                                                                                                 Dreamscape
## 864                                                                                                                                                House Party
## 865                                                                                                                                             Rocketship X-M
## 866                                                                                                                                                  Footloose
## 867                                                                                                                                                      X-Men
## 868                                                                                                                                               Chuck & Buck
## 869                                                                                                                                          What Lies Beneath
## 870                                                                                                                                     Pokémon the Movie 2000
## 871                                                                                                                                        Anatomy of a Murder
## 872                                                                                                                                            What About Bob?
## 873                                                                                                                                                Coyote Ugly
## 874                                                                                                                                              Space Cowboys
## 875                                                                                                                                            Mad About Mambo
## 876                                                                                                                                               Saving Grace
## 877                                                                                                                                                Air America
## 878                                                                                                                                            Steel Magnolias
## 879                                                                                                                                          Replacements, The
## 880                                                                                                                                                  Cell, The
## 881                                                                                                                    Godzilla 2000 (Gojira ni-sen mireniamu)
## 882                                                                                                                              Original Kings of Comedy, The
## 883                                                                                                                    Naked Gun 2 1/2: The Smell of Fear, The
## 884                                                                                                                                                      Shane
## 885                                                                                                                                                 Cat Ballou
## 886                                                                                                                                            Art of War, The
## 887                                                                                                                                                 Love & Sex
## 888                                                                                                                                          Steal This Movie!
## 889                                                                                                                                 Man Who Fell to Earth, The
## 890                                                                                                                                                  Toy Story
## 891                                                                                                                                       Seven (a.k.a. Se7en)
## 892                                                                                                                                                 Braveheart
## 893                                                                                                                                     Miracle on 34th Street
## 894                                                                                                                                               Pulp Fiction
## 895                                                                                                                                  Shawshank Redemption, The
## 896                                                                                                                                               Forrest Gump
## 897                                                                                                                                           Jungle Book, The
## 898                                                                                                                                              Jurassic Park
## 899                                                                                                                                                       Rudy
## 900                                                                                                                                           Schindler's List
## 901                                                                                                                                         Secret Garden, The
## 902                                                                                                                                                      Ghost
## 903                                                                                                                                         Dances with Wolves
## 904                                                                                                                                               My Fair Lady
## 905                                                                                                                                          Wizard of Oz, The
## 906                                                                                                                              Robin Hood: Prince of Thieves
## 907                                                                                                                                                Stand by Me
## 908                                                                                                                                              Groundhog Day
## 909                                                                                                                                            Lethal Weapon 4
## 910                                                                                                                                                   Rain Man
## 911                                                                                                                                              Bug's Life, A
## 912                                                                                                                                                Matrix, The
## 913                                                                                                                                 10 Things I Hate About You
## 914                                                                                                                                            Iron Giant, The
## 915                                                                                                                                           Sixth Sense, The
## 916                                                                                                                                         Christmas Story, A
## 917                                                                                                                                             Boys Don't Cry
## 918                                                                                                                                   Ferris Bueller's Day Off
## 919                                                                                                                                                Toy Story 2
## 920                                                                                                                                            Green Mile, The
## 921                                                                                                                                     League of Their Own, A
## 922                                                                                                                                          Muppet Movie, The
## 923                                                                                                                                              Shanghai Noon
## 924                                                                                                                                                      Shrek
## 925                                                                                                                                               Pearl Harbor
## 926                                                                                                                                              City Slickers
## 927                                                                                                                                             American Pie 2
## 928                                                                                                                                               Donnie Darko
## 929                                                                                                                                             Monsters, Inc.
## 930                                                                                                         Lord of the Rings: The Fellowship of the Ring, The
## 931                                                                                                                                        Catch Me If You Can
## 932                                                                                                                                               Finding Nemo
## 933                                                                                                                      Eternal Sunshine of the Spotless Mind
## 934                                                                                                                                           Band of Brothers
## 935                                                                                                                                      Bourne Ultimatum, The
## 936                                                                                                                                           Dark Knight, The
## 937                                                                                                                                                Gran Torino
## 938                                                                                                                                       (500) Days of Summer
## 939                                                                                                                                                Toy Story 3
## 940                                                                                                               Harry Potter and the Deathly Hallows: Part 1
## 941                                                                                                               Harry Potter and the Deathly Hallows: Part 2
## 942                                                                                                                                                John Carter
## 943                                                                                                                            Snow White and the Seven Dwarfs
## 944                                                                                                             Star Wars: Episode V - The Empire Strikes Back
## 945                                                                                                                                                    Titanic
## 946                                                                                                                                  Cat from Outer Space, The
## 947                                                                                                                                              Bug's Life, A
## 948                                                                                                                                       Prince of Egypt, The
## 949                                                                                                                  Star Wars: Episode I - The Phantom Menace
## 950                                                                                                                      Austin Powers: The Spy Who Shagged Me
## 951                                                                                                                        Ghostbusters (a.k.a. Ghost Busters)
## 952                                                                                                                                           Inspector Gadget
## 953                                                                                                                                              Runaway Bride
## 954                                                                                                                                       For Love of the Game
## 955                                                                                                                                                Toy Story 2
## 956                                                                                                                                              Stuart Little
## 957                                                                                                                                               Galaxy Quest
## 958                                                                                                                                            Mission to Mars
## 959                                                                                                                                     Mission: Impossible II
## 960                                                                                                                                                Chicken Run
## 961                                                                                                                                               6th Day, The
## 962                                                                                                         How the Grinch Stole Christmas (a.k.a. The Grinch)
## 963                                                                                                                                                  Toy Story
## 964                                                                                                                                                    Jumanji
## 965                                                                                                                                Father of the Bride Part II
## 966                                                                                                                                                       Heat
## 967                                                                                                                                                  GoldenEye
## 968                                                                                                                                    American President, The
## 969                                                                                                                                                      Nixon
## 970                                                                                                                                                     Casino
## 971                                                                                                                                      Sense and Sensibility
## 972                                                                                                                             Ace Ventura: When Nature Calls
## 973                                                                                                                                                 Get Shorty
## 974                                                                                                                                                    Copycat
## 975                                                                                                                                          Leaving Las Vegas
## 976                                                                                                                         Twelve Monkeys (a.k.a. 12 Monkeys)
## 977                                                                                                                                                       Babe
## 978                                                                                                                                           Dead Man Walking
## 979                                                                                                                                                   Clueless
## 980                                                                                                                                              Mortal Kombat
## 981                                                                                                                                       Seven (a.k.a. Se7en)
## 982                                                                                                                                        Usual Suspects, The
## 983                                                                                                                                           Mighty Aphrodite
## 984                                                                                                                                         Mr. Holland's Opus
## 985                                                                                                                                        From Dusk Till Dawn
## 986                                                                                                                                   Antonia's Line (Antonia)
## 987                                                                                                                                            Beautiful Girls
## 988                                                                                                                                               Broken Arrow
## 989                                                                                                                                              Bottle Rocket
## 990                                                                                                                                              Happy Gilmore
## 991                                                                                                                                     Muppet Treasure Island
## 992                                                                                                                                                 Braveheart
## 993                                                                                                                                                Taxi Driver
## 994                                                                                                                        Rumble in the Bronx (Hont faan kui)
## 995                                                                                                                     Chungking Express (Chung Hing sam lam)
## 996                                                                                                                                     Flirting With Disaster
## 997                                                                                                                                                   Bad Boys
## 998                                                                                                                                                    Amateur
## 999                                                                                                                                                  Apollo 13
## 1000                                                                                                                                            Batman Forever
## 1001                                                                                                                                            Canadian Bacon
## 1002                                                                                                                                                     Congo
## 1003                                                                                                                                              Crimson Tide
## 1004                                                                                                                                                     Crumb
## 1005                                                                                                                                                 Desperado
## 1006                                                                                                                                     Devil in a Blue Dress
## 1007                                                                                                                                Die Hard: With a Vengeance
## 1008                                                                                                                                                   Hackers
## 1009                                                                                                                                           Johnny Mnemonic
## 1010                                                                                                                                                      Kids
## 1011                                                                                                                                        Living in Oblivion
## 1012                                                                                                                                                  Mallrats
## 1013                                                                                                                                                  Net, The
## 1014                                                                                                                                                 Showgirls
## 1015                                                                                                                                                   Species
## 1016                                                                                                                                              Strange Days
## 1017                                                                                                                                                Waterworld
## 1018                                                                                                                            Before the Rain (Pred dozhdot)
## 1019                                                                                                                                            Before Sunrise
## 1020                                                                                                                                             Billy Madison
## 1021                                                                                                                                                    Clerks
## 1022                                                                                                                                                Disclosure
## 1023                                                                                                                                         Dolores Claiborne
## 1024                                                                                                                           Dumb & Dumber (Dumb and Dumber)
## 1025                                                                                                                      Eat Drink Man Woman (Yin shi nan nu)
## 1026                                                                                                                                                   Exotica
## 1027                                                                                                                                                   Ed Wood
## 1028                                                                                                                                              Forget Paris
## 1029                                                                                                                                               Hoop Dreams
## 1030                                                                                                                                        Heavenly Creatures
## 1031                                                                                                                                                      I.Q.
## 1032                                                                                                        Interview with the Vampire: The Vampire Chronicles
## 1033                                                                                                                        Star Wars: Episode IV - A New Hope
## 1034                                                                                                       Like Water for Chocolate (Como agua para chocolate)
## 1035                                                                                                                                      Natural Born Killers
## 1036                                                                                                                                                  Outbreak
## 1037                                                                                                   Léon: The Professional (a.k.a. The Professional) (Léon)
## 1038                                                                                                                                              Pulp Fiction
## 1039                                                                                                                                                 Quiz Show
## 1040                                                                                                                 Three Colors: Red (Trois couleurs: Rouge)
## 1041                                                                                                                 Three Colors: Blue (Trois couleurs: Bleu)
## 1042                                                                                                                  Three Colors: White (Trzy kolory: Bialy)
## 1043                                                                                                                                                  Stargate
## 1044                                                                                                                                         Santa Clause, The
## 1045                                                                                                                                 Shawshank Redemption, The
## 1046                                                                                                                                      Swimming with Sharks
## 1047                                                                                                                                    Star Trek: Generations
## 1048                                                                                                                                                Underneath
## 1049                                                                                                                                   While You Were Sleeping
## 1050                                                                                                                                          Muriel's Wedding
## 1051                                                                                                                                Ace Ventura: Pet Detective
## 1052                                                                                                                                  Clear and Present Danger
## 1053                                                                                                                                                 Crow, The
## 1054                                                                                                                                          Flintstones, The
## 1055                                                                                                                                              Forrest Gump
## 1056                                                                                                                               Four Weddings and a Funeral
## 1057                                                                                                                                            Lion King, The
## 1058                                                                                                                                                 Mask, The
## 1059                                                                                                                        Naked Gun 33 1/3: The Final Insult
## 1060                                                                                                                                                Paper, The
## 1061                                                                                                                                             Reality Bites
## 1062                                                                                                                                             Red Rock West
## 1063                                                                                                                                                     Speed
## 1064                                                                                                                                                 True Lies
## 1065                                                                                                                                                      Wolf
## 1066                                                                                                                                                 Cabin Boy
## 1067                                                                                                                                             Carlito's Way
## 1068                                                                                                                                               Cliffhanger
## 1069                                                                                                                                                 Coneheads
## 1070                                                                                                                                                      Dave
## 1071                                                                                                                                        Dazed and Confused
## 1072                                                                                                                                            Demolition Man
## 1073                                                                                                                                                 Firm, The
## 1074                                                                                                                                             Fugitive, The
## 1075                                                                                                                                      Hot Shots! Part Deux
## 1076                                                                                                                                      Hudsucker Proxy, The
## 1077                                                                                                                                       In the Line of Fire
## 1078                                                                                                                                             Jurassic Park
## 1079                                                                                                                                                Kalifornia
## 1080                                                                                                                                          King of the Hill
## 1081                                                                                                                                          Last Action Hero
## 1082                                                                                                                                        Executive Decision
## 1083                                                                                                                                            Mrs. Doubtfire
## 1084                                                                                                                                              Philadelphia
## 1085                                                                                                                                                Piano, The
## 1086                                                                                                                                 Robin Hood: Men in Tights
## 1087                                                                                                                                                      Rudy
## 1088                                                                                                                                          Schindler's List
## 1089                                                                                                                                                Short Cuts
## 1090                                                                                                                                      Sleepless in Seattle
## 1091                                                                                                                                                    Sliver
## 1092                                                                                                                                              Blade Runner
## 1093                                                                                                                              So I Married an Axe Murderer
## 1094                                                                                                                  Thirty-Two Short Films About Glenn Gould
## 1095                                                                                                                           Nightmare Before Christmas, The
## 1096                                                                                                                                              True Romance
## 1097                                                                                                                                             War Room, The
## 1098                                                                                                                                  Welcome to the Dollhouse
## 1099                                                                                                                                       Spanking the Monkey
## 1100                                                                                                                                                Home Alone
## 1101                                                                                                                                                     Ghost
## 1102                                                                                                                                                   Aladdin
## 1103                                                                                                                                Terminator 2: Judgment Day
## 1104                                                                                                                                        Dances with Wolves
## 1105                                                                                                                                                    Batman
## 1106                                                                                                                                 Silence of the Lambs, The
## 1107                                                                                                                           Snow White and the Seven Dwarfs
## 1108                                                                                                                                              Pretty Woman
## 1109                                                                                                                                                     Fargo
## 1110                                                                                                                                               Heavy Metal
## 1111                                                                                                                                               Primal Fear
## 1112                                                                                                                                        Courage Under Fire
## 1113                                                                                                                                       Mission: Impossible
## 1114                                                                                                                             Kids in the Hall: Brain Candy
## 1115                                                                                                                                               Underground
## 1116                                                                                                                                                Barbarella
## 1117                                                                                            Alphaville (Alphaville, une étrange aventure de Lemmy Caution)
## 1118                                                                                                                              Truth About Cats & Dogs, The
## 1119                                                                                                           Wallace & Gromit: The Best of Aardman Animation
## 1120                                                                                                                                                Craft, The
## 1121                                                                                                                                                 Rock, The
## 1122                                                                                                                                                   Twister
## 1123                                                                                                                           Wallace & Gromit: A Close Shave
## 1124                                                                                                                                              Arrival, The
## 1125                                                                                      Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb
## 1126                                                                                                                                                Striptease
## 1127                                                                                                                                             Trainspotting
## 1128                                                                                                                             Independence Day (a.k.a. ID4)
## 1129                                                                                                                                            Cable Guy, The
## 1130                                                                                                                                                   Kingpin
## 1131                                                                                                                                                    Eraser
## 1132                                                                                                                                      Nutty Professor, The
## 1133                                                                                                                                          Frighteners, The
## 1134                                                                                                                                                 Lone Star
## 1135                                                                                                                                                Phenomenon
## 1136                                                                                                                                       Walking and Talking
## 1137                                                                                                                                             She's the One
## 1138                                                                                                                                                    Ransom
## 1139                                                                                                                                            Chain Reaction
## 1140                                                                                                                                                  Basquiat
## 1141                                                                                                                                            Godfather, The
## 1142                                                                                                                                                     Bound
## 1143                                                                                                                                       Singin' in the Rain
## 1144                                                                                                                                                   Vertigo
## 1145                                                                                                                                               Rear Window
## 1146                                                                                                                                        North by Northwest
## 1147                                                                                                                                            Apartment, The
## 1148                                                                                                                                          Some Like It Hot
## 1149                                                                                                                                                   Charade
## 1150                                                                                                                                                Casablanca
## 1151                                                                                                                                       Maltese Falcon, The
## 1152                                                                                                                                              My Fair Lady
## 1153                                                                                                                                             Roman Holiday
## 1154                                                                                                                                         Wizard of Oz, The
## 1155                                                                                                                                        Gone with the Wind
## 1156                                                                                                                    Sunset Blvd. (a.k.a. Sunset Boulevard)
## 1157                                                                                                                                              Citizen Kane
## 1158                                                                                                                                     2001: A Space Odyssey
## 1159                                                                                                                                             All About Eve
## 1160                                                                                                                                                Spellbound
## 1161                                                                                                                                     It's a Wonderful Life
## 1162                                                                                                                                                 Big Night
## 1163                                                                                                                                             Cool Runnings
## 1164                                                                                                                                       Sound of Music, The
## 1165                                                                                                                                                  Die Hard
## 1166                                                                                                                                            Secrets & Lies
## 1167                                                                                                                                  Long Kiss Goodnight, The
## 1168                                                                                                                      William Shakespeare's Romeo + Juliet
## 1169                                                                                                                                                  Swingers
## 1170                                                                                                                       Willy Wonka & the Chocolate Factory
## 1171                                                                                                                                      Fish Called Wanda, A
## 1172                                                                                                                                          Bonnie and Clyde
## 1173                                                                                                                                             Dirty Dancing
## 1174                                                                                                                                            Reservoir Dogs
## 1175                                                                                                                                            Basic Instinct
## 1176                                                                                                                                                Doors, The
## 1177                                                                                                                                          Crying Game, The
## 1178                                                                                                                                       Glengarry Glen Ross
## 1179                                                                                                                                E.T. the Extra-Terrestrial
## 1180                                                                                                                                           Days of Thunder
## 1181                                                                                                                                                   Top Gun
## 1182                                                                                                                               People vs. Larry Flynt, The
## 1183                                                                                                                                                Abyss, The
## 1184                                                                                                                                          Jean de Florette
## 1185                                                                                                                           Monty Python and the Holy Grail
## 1186                                                                                                                                        When We Were Kings
## 1187                                                                                                                      Wallace & Gromit: The Wrong Trousers
## 1188                                                                                                                                               Bob Roberts
## 1189                                                                                                                  Cook the Thief His Wife & Her Lover, The
## 1190                                                                                               Double Life of Veronique, The (Double Vie de Véronique, La)
## 1191                                                                                                                                            Paths of Glory
## 1192                                                                                                                                             Grifters, The
## 1193                                                                                                                                      English Patient, The
## 1194                                                                                                                                  Sex, Lies, and Videotape
## 1195                                                                                                                                       Thin Blue Line, The
## 1196                                                                                                                           One Flew Over the Cuckoo's Nest
## 1197                                                                                                            Star Wars: Episode V - The Empire Strikes Back
## 1198                                                                                                                                       Princess Bride, The
## 1199                                                                                   Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 1200                                                                                                                                                    Brazil
## 1201                                                                                                                                                    Aliens
## 1202                                                                                        Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il)
## 1203                                                                                                                                              12 Angry Men
## 1204                                                                                                                                        Lawrence of Arabia
## 1205                                                                                                                                       Clockwork Orange, A
## 1206                                                                                                                                     To Kill a Mockingbird
## 1207                                                                                                                                            Apocalypse Now
## 1208                                                                                                    Once Upon a Time in the West (C'era una volta il West)
## 1209                                                                                                                Star Wars: Episode VI - Return of the Jedi
## 1210                                                                                                                 Wings of Desire (Himmel über Berlin, Der)
## 1211                                                                                                                                            Third Man, The
## 1212                                                                                                                                                Goodfellas
## 1213                                                                                                                                                     Alien
## 1214                                                                                                                                          Army of Darkness
## 1215                                                                                                                                                       Ran
## 1216                                                                                                                        Killer, The (Die xue shuang xiong)
## 1217                                                                                                                                                    Psycho
## 1218                                                                                                                                       Blues Brothers, The
## 1219                                                                                                                                   Godfather: Part II, The
## 1220                                                                                                                                         Full Metal Jacket
## 1221                                                                                                                  Grand Day Out with Wallace and Gromit, A
## 1222                                                                                                                                                   Amadeus
## 1223                                                                                                                                               Raging Bull
## 1224                                                                                                                                                Annie Hall
## 1225                                                                                                                                          Right Stuff, The
## 1226                                                                                                                                     Boot, Das (Boat, The)
## 1227                                                                                                                                                Sting, The
## 1228                                                                                                                                          Harold and Maude
## 1229                                                                                                                                           Terminator, The
## 1230                                                                                                                     Rosencrantz and Guildenstern Are Dead
## 1231                                                                                                                                                 Manhattan
## 1232                                                                                                                                        Dead Poets Society
## 1233                                                                                                                                             Graduate, The
## 1234                                                                                                                                             Touch of Evil
## 1235                                                                                                                                 Femme Nikita, La (Nikita)
## 1236                                                                                                                             Bridge on the River Kwai, The
## 1237                                                                                                                                                8 1/2 (8½)
## 1238                                                                                                                                                 Chinatown
## 1239                                                                                                                         Treasure of the Sierra Madre, The
## 1240                                                                                                                                              Shining, The
## 1241                                                                                                                                               Stand by Me
## 1242                                                                                                                                                         M
## 1243                                                                                                                                         Great Escape, The
## 1244                                                                                                                                          Deer Hunter, The
## 1245                                                                                                                                                      Diva
## 1246                                                                                                                                             Groundhog Day
## 1247                                                                                                                                                Unforgiven
## 1248                                                                                                                                 Manchurian Candidate, The
## 1249                                                                                                                                        Back to the Future
## 1250                                                                                                                                                    Patton
## 1251                                                                                                                                            Cool Hand Luke
## 1252                                                                                                     Raise the Red Lantern (Da hong deng long gao gao gua)
## 1253                                                                                                                                       Great Dictator, The
## 1254                                                                                                                                                 High Noon
## 1255                                                                                                                                            Big Sleep, The
## 1256                                                                                                                                                   Ben-Hur
## 1257                                                                                                                                        This Is Spinal Tap
## 1258                                                                                                 Koyaanisqatsi (a.k.a. Koyaanisqatsi: Life Out of Balance)
## 1259                                                                                                                                    Some Kind of Wonderful
## 1260                                                                                                                        Indiana Jones and the Last Crusade
## 1261                                                                                                                                                    Gandhi
## 1262                                                                                                                                               Real Genius
## 1263                                                                                                                                           Field of Dreams
## 1264                                                                                                                                Man Who Would Be King, The
## 1265                                                                                                                        Butch Cassidy and the Sundance Kid
## 1266                                                                                                                                   When Harry Met Sally...
## 1267                                                                                                                                   Alien³ (a.k.a. Alien 3)
## 1268                                                                                                                                                Birds, The
## 1269                                                                                                                                                 Blob, The
## 1270                                                                                                                           Dracula (Bram Stoker's Dracula)
## 1271                                                                                                                                                  Candyman
## 1272                                                                                                                                  Star Trek: First Contact
## 1273                                                                                                                                               Sling Blade
## 1274                                                                                                      Paradise Lost: The Child Murders at Robin Hood Hills
## 1275                                                                                                                                                Die Hard 2
## 1276                                                                                                                                            Batman Returns
## 1277                                                                                                                                                    Grease
## 1278                                                                                                                                               Under Siege
## 1279                                                                                                                                                      Jaws
## 1280                                                                                                                                             Mars Attacks!
## 1281                                                                                                                                             Jerry Maguire
## 1282                                                                                                                                           Raising Arizona
## 1283                                                                                                                                                  Sneakers
## 1284                                                                                                                           Beavis and Butt-Head Do America
## 1285                                                                                                                                                    Scream
## 1286                                                                                                                                       Waiting for Guffman
## 1287                                                                                                                                              Lost Highway
## 1288                                                                                                                                             Donnie Brasco
## 1289                                                                                                                                             Private Parts
## 1290                                                                                                                                                Saint, The
## 1291                                                                                                                                                     Crash
## 1292                                                                                                                                          Daytrippers, The
## 1293                                                                                                                                                 Liar Liar
## 1294                                                                                                                                       Grosse Pointe Blank
## 1295                                                                                                                                                    Kissed
## 1296                                                                                                                                   8 Heads in a Duffel Bag
## 1297                                                                                                                    Romy and Michele's High School Reunion
## 1298                                                                                                               Austin Powers: International Man of Mystery
## 1299                                                                                                                                        Fifth Element, The
## 1300                                                                                                                                                   Nowhere
## 1301                                                                                                                            Lost World: Jurassic Park, The
## 1302                                                                                                                                               Schizopolis
## 1303                                                                                                                                                   Con Air
## 1304                                                                                                                                   Speed 2: Cruise Control
## 1305                                                                                                                                            Batman & Robin
## 1306                                                                                                                                  My Best Friend's Wedding
## 1307                                                                                                                                                  Face/Off
## 1308                                                                                                                                 Men in Black (a.k.a. MIB)
## 1309                                                                                                                                                   Contact
## 1310                                                                                                                                                  Cop Land
## 1311                                                                                                                                         Conspiracy Theory
## 1312                                                                                                                                             Air Force One
## 1313                                                                                                                                 Hunt for Red October, The
## 1314                                                                                                                                                 Edge, The
## 1315                                                                                                                                           Peacemaker, The
## 1316                                                                                                                                         L.A. Confidential
## 1317                                                                                                                                                 Game, The
## 1318                                                                                                                                            Ice Storm, The
## 1319                                                                                                                                               Chasing Amy
## 1320                                                                                                                           I Know What You Did Last Summer
## 1321                                                                                                                                      The Devil's Advocate
## 1322                                                                                                                              Fast, Cheap & Out of Control
## 1323                                                                                                                                                   Gattaca
## 1324                                                                                                                                                   Stripes
## 1325                                                                                                                                             Boogie Nights
## 1326                                                                                                                                         Starship Troopers
## 1327                                                                                                                                             Sliding Doors
## 1328                                                                                                                                          Truman Show, The
## 1329                                                                                                                              Man Who Knew Too Little, The
## 1330                                                                                                                                       Alien: Resurrection
## 1331                                                                                                                                              Apostle, The
## 1332                                                                                                                                         Good Will Hunting
## 1333                                                                                                                                                  Scream 2
## 1334                                                                                                                                      Sweet Hereafter, The
## 1335                                                                                                                                                   Titanic
## 1336                                                                                                                                       Tomorrow Never Dies
## 1337                                                                                                                                              Jackie Brown
## 1338                                                                                                                                         Big Lebowski, The
## 1339                                                                                                                                        Great Expectations
## 1340                                                                                                                                               Wag the Dog
## 1341                                                                                                                                                 Dark City
## 1342                                                                                                                                                 Hard Rain
## 1343                                                                                                                                                Half Baked
## 1344                                                                                                                                                    Fallen
## 1345                                                                                                                                       Wedding Singer, The
## 1346                                                                                                                                                    Sphere
## 1347                                                                                                                                        As Good as It Gets
## 1348                                                                                                                                             U.S. Marshals
## 1349                                                                                                                                               Wild Things
## 1350                                                                                                                                        Cool, Dry Place, A
## 1351                                                                                                                                            Primary Colors
## 1352                                                                                                                                       Two Girls and a Guy
## 1353                                                                                                                                              Big One, The
## 1354                                                                                                                                             Lost in Space
## 1355                                                                                                                                     Spanish Prisoner, The
## 1356                                                                                                                                   Last Days of Disco, The
## 1357                                                                                                                                               Zero Effect
## 1358                                                                                                                          Taste of Cherry (Ta'm e guilass)
## 1359                                                                                                                                      Character (Karakter)
## 1360                                                                                                                                                Species II
## 1361                                                                                                                                               Deep Impact
## 1362                                                                                                                                                  Godzilla
## 1363                                                                                                                                                  Bulworth
## 1364                                                                                                                                                  Insomnia
## 1365                                                                                                                                         Can't Hardly Wait
## 1366                                                                                                                                                  High Art
## 1367                                                                                                                                                Henry Fool
## 1368                                                                                                                            X-Files: Fight the Future, The
## 1369                                                                                                                                              Out of Sight
## 1370                                                                                                                                             Smoke Signals
## 1371                                                                                                                                                Armageddon
## 1372                                                                                                                                                        Pi
## 1373                                                                                                                              There's Something About Mary
## 1374                                                                                                                                         On the Waterfront
## 1375                                                                                                                                  In the Heat of the Night
## 1376                                                                                                                                           Midnight Cowboy
## 1377                                                                                                                                    French Connection, The
## 1378                                                                                                                                                     Rocky
## 1379                                                                                                                                         Kramer vs. Kramer
## 1380                                                                                                                                           Ordinary People
## 1381                                                                                                                                                  Rain Man
## 1382                                                                                                                                        Driving Miss Daisy
## 1383                                                                                                                                                     Klute
## 1384                                                                                                                                       Breakfast Club, The
## 1385                                                                                                                                               Poltergeist
## 1386                                                                                                                                             Exorcist, The
## 1387                                                                                                                                             Lethal Weapon
## 1388                                                                                                                                                  Gremlins
## 1389                                                                                                                                              Goonies, The
## 1390                                                                                                                                        Mask of Zorro, The
## 1391                                                                                                                                                Metropolis
## 1392                                                                                                                                Back to the Future Part II
## 1393                                                                                                                               Back to the Future Part III
## 1394                                                                                                                                                     Bambi
## 1395                                                                                                                      Seven Samurai (Shichinin no samurai)
## 1396                                                                                                                                        Dangerous Liaisons
## 1397                                                                                                                                                    Lolita
## 1398                                                                                                                                       Saving Private Ryan
## 1399                                                                                                                                                 Condorman
## 1400                                                                                                                                  Honey, I Shrunk the Kids
## 1401                                                                                                                                           Negotiator, The
## 1402                                                                                                                                               BASEketball
## 1403                                                                                                                                                Roger & Me
## 1404                                                                                                                                               Blue Velvet
## 1405                                                                                                                                                    Splash
## 1406                                                                                                                                                      Tron
## 1407                                                                                                                                                L.A. Story
## 1408                                                                                                                      Indiana Jones and the Temple of Doom
## 1409                                                                                                                                        Addams Family, The
## 1410                                                                                                                                                Snake Eyes
## 1411                                                                                                                                 Adventures in Babysitting
## 1412                                                                                                                                             Weird Science
## 1413                                                                                                                                         Dark Crystal, The
## 1414                                                                                                                                            Pretty in Pink
## 1415                                                                                                                                   Gods Must Be Crazy, The
## 1416                                                                                                                                           Rosemary's Baby
## 1417                                                                                                                                    NeverEnding Story, The
## 1418                                                                                                                                                     Blade
## 1419                                                                                                                                               Beetlejuice
## 1420                                                                                                                                      Strangers on a Train
## 1421                                                                                                                                         Untouchables, The
## 1422                                                                                                                                                  Rounders
## 1423                                                                                                                                                      Cube
## 1424                                                                                                                                            Broadcast News
## 1425                                                                                                                                           Say Anything...
## 1426                                                                                                                                           Few Good Men, A
## 1427                                                                                                                                         Indecent Proposal
## 1428                                                                                                                                                 Rush Hour
## 1429                                                                                                                                                     Ronin
## 1430                                                                                                                                                    Pecker
## 1431                                                                                                                                                Thing, The
## 1432                                                                                                                                               Player, The
## 1433                                                                                                                                       Edward Scissorhands
## 1434                                                                                                                                                      Antz
## 1435                                                                                                                                           My Cousin Vinny
## 1436                                                                                                                                                 Nashville
## 1437                                                                                                                            2010: The Year We Make Contact
## 1438                                                                                                                                         Elephant Man, The
## 1439                                                                                                                                                 Happiness
## 1440                                                                                                                                             Pleasantville
## 1441                                                                                                                       Life Is Beautiful (La Vita è bella)
## 1442                                                                                                                                        American History X
## 1443                                                                                                                                         Gods and Monsters
## 1444                                                                                                                                                Siege, The
## 1445                                                                                                                                                 Elizabeth
## 1446                                                                                                                                            Meet Joe Black
## 1447                                                                                                                  Nights of Cabiria (Notti di Cabiria, Le)
## 1448                                                                                                                                        Enemy of the State
## 1449                                                                                                                                             Bug's Life, A
## 1450                                                                                                                       Central Station (Central do Brasil)
## 1451                                                                                                                                 Celebration, The (Festen)
## 1452                                                                                                                                                 King Kong
## 1453                                                                                                                                 Desperately Seeking Susan
## 1454                                                                                                                                                    Fletch
## 1455                                                                                                                                            Police Academy
## 1456                                                                                                                                           Very Bad Things
## 1457                                                                                                                                            Simple Plan, A
## 1458                                                                                                                                                  Rushmore
## 1459                                                                                                                                       Shakespeare in Love
## 1460                                                                                                                                    Jewel of the Nile, The
## 1461                                                                                                                                       Romancing the Stone
## 1462                                                                                                                                                    Cocoon
## 1463                                                                                                                                                      Clue
## 1464                                                                                                                                           You've Got Mail
## 1465                                                                                                                                        Thin Red Line, The
## 1466                                                                                                                                              Faculty, The
## 1467                                                                                                                                                Affliction
## 1468                                                                                                                                             Varsity Blues
## 1469                                                                                                                                                  Fly, The
## 1470                                                                                                                Name of the Rose, The (Name der Rose, Der)
## 1471                                                                                                                                            ¡Three Amigos!
## 1472                                                                                                                                                   Payback
## 1473                                                                                                                                               October Sky
## 1474                                                                                                                                              Office Space
## 1475                                                                                                                                                       8MM
## 1476                                                                                                                                               Logan's Run
## 1477                                                                                                                                              Analyze This
## 1478                                                                                                                                          Cruel Intentions
## 1479                                                                                                                         Lock, Stock & Two Smoking Barrels
## 1480                                                                                                                                                  Ravenous
## 1481                                                                                                                                            Mod Squad, The
## 1482                                                                                                                                               Matrix, The
## 1483                                                                                                                                10 Things I Hate About You
## 1484                                                                                                                                       Out-of-Towners, The
## 1485                                                                                                        Dreamlife of Angels, The (Vie rêvée des anges, La)
## 1486                                                                                                                                                 Following
## 1487                                                                                                                                                        Go
## 1488                                                                                                                                         Never Been Kissed
## 1489                                                                                          Lovers of the Arctic Circle, The (Los Amantes del Círculo Polar)
## 1490                                                                                                                            Open Your Eyes (Abre los ojos)
## 1491                                                                                                                                               Pushing Tin
## 1492                                                                                                                                                  Election
## 1493                                                                                                                                                  eXistenZ
## 1494                                                                                                                                                Entrapment
## 1495                                                                                                                                                Mummy, The
## 1496                                                                                                                              After Life (Wandafuru raifu)
## 1497                                                                                                                 Star Wars: Episode I - The Phantom Menace
## 1498                                                                                                                                                  Superman
## 1499                                                                                                                                              Frankenstein
## 1500                                                                                                                            Rocky Horror Picture Show, The
## 1501                                                                                                                                              Notting Hill
## 1502                                                                                                                                               Desert Blue
## 1503                                                                                                                     Austin Powers: The Spy Who Shagged Me
## 1504                                                                                                                        Red Violin, The (Violon rouge, Le)
## 1505                                                                                                                                 Run Lola Run (Lola rennt)
## 1506                                                                                                                                             Arachnophobia
## 1507                                                                                                                      South Park: Bigger, Longer and Uncut
## 1508                                                                                                                                            Wild Wild West
## 1509                                                                                                                                             Summer of Sam
## 1510                                                                                                                                              American Pie
## 1511                                                                                                                                            Arlington Road
## 1512                                                                                                                                        Muppets From Space
## 1513                                                                                                                                  Blair Witch Project, The
## 1514                                                                                                                                            Eyes Wide Shut
## 1515                                                                                                                                               Lake Placid
## 1516                                                                                                                       Ghostbusters (a.k.a. Ghost Busters)
## 1517                                                                                                                                           Ghostbusters II
## 1518                                                                                                                                        Drop Dead Gorgeous
## 1519                                                                                                                                             Deep Blue Sea
## 1520                                                                                                                                               Mystery Men
## 1521                                                                                                                                              Killing, The
## 1522                                                                                                                                                    Lolita
## 1523                                                                                                                                                      Dick
## 1524                                                                                                                                           Iron Giant, The
## 1525                                                                                                                                          Sixth Sense, The
## 1526                                                                                                                                  Thomas Crown Affair, The
## 1527                                                                                                                                                Yards, The
## 1528                                                                                                                                                 Bowfinger
## 1529                                                                                                                                                 Airplane!
## 1530                                                                                                                               National Lampoon's Vacation
## 1531                                                                                                                                                       Big
## 1532                                                                                                                                        Pelican Brief, The
## 1533                                                                                                           Three Days of the Condor (3 Days of the Condor)
## 1534                                                                                                                                                  Stigmata
## 1535                                                                                                                                            Stir of Echoes
## 1536                                                                                                                                           American Beauty
## 1537                                                                                                                                               Deliverance
## 1538                                                                                                                                           Double Jeopardy
## 1539                                                                                                                                               Three Kings
## 1540                                                                                                                                 Sanjuro (Tsubaki Sanjûrô)
## 1541                                                                                                                                            Boys Don't Cry
## 1542                                                                                                                                                Limey, The
## 1543                                                                                                                                            Risky Business
## 1544                                                                                                                                              Total Recall
## 1545                                                                                                                                  Ferris Bueller's Day Off
## 1546                                                                                                                         Conformist, The (Conformista, Il)
## 1547                                                                                                                                                Goldfinger
## 1548                                                                                                                                                    Dr. No
## 1549                                                                                                                                       Sydney (Hard Eight)
## 1550                                                                                                                                                Fight Club
## 1551                                                                                                                                   Crimes and Misdemeanors
## 1552                                                                                                                                     Bringing Out the Dead
## 1553                                                                                                                                         Ipcress File, The
## 1554                                                                                                                                                   RoboCop
## 1555                                                                                                                                  Who Framed Roger Rabbit?
## 1556                                                                                                                                           Licence to Kill
## 1557                                                                                                                                               Thunderball
## 1558                                                                                                                                      Being John Malkovich
## 1559                                                                                                                         Princess Mononoke (Mononoke-hime)
## 1560                                                                                                                                             Bachelor, The
## 1561                                                                                                                                       Bone Collector, The
## 1562                                                                                                                                              Insider, The
## 1563                                                                                                                                            American Movie
## 1564                                                                                                                                                Last Night
## 1565                                                                                                                                                   Rosetta
## 1566                                                                                                                                          Drugstore Cowboy
## 1567                                                                                                                                              Falling Down
## 1568                                                                                                                                                   Yojimbo
## 1569                                                                                                                                                Spaceballs
## 1570                                                                                                                                            Trading Places
## 1571                                                                                                                                                Dead Again
## 1572                                                                                                                                                     Dogma
## 1573                                                                                                                                          Commitments, The
## 1574                                                                                                                                                     42 Up
## 1575                                                                                                                                             Sleepy Hollow
## 1576                                                                                                                                  World Is Not Enough, The
## 1577                                                                                                                 All About My Mother (Todo sobre mi madre)
## 1578                                                             Bicycle Thieves (a.k.a. The Bicycle Thief) (a.k.a. The Bicycle Thieves) (Ladri di biciclette)
## 1579                                                                                                                                          Fatal Attraction
## 1580                                                                                                                                              Midnight Run
## 1581                                                                                                                                                 Backdraft
## 1582                                                                                                                                          Fisher King, The
## 1583                                                                                                                                               End of Days
## 1584                                                                                                                                               Toy Story 2
## 1585                                                                                                                                       Map of the World, A
## 1586                                                                                                                                         Sweet and Lowdown
## 1587                                                                                                                       Grand Illusion (La grande illusion)
## 1588                                                                                                                                Deuce Bigalow: Male Gigolo
## 1589                                                                                                                                           Green Mile, The
## 1590                                                                                                                                    Cider House Rules, The
## 1591                                                                                                                                             War Zone, The
## 1592                                                                                                                                    Last Picture Show, The
## 1593                                                                                                                                             Stuart Little
## 1594                                                                                                                                                  Magnolia
## 1595                                                                                                                                                Easy Rider
## 1596                                                                                                                                          Any Given Sunday
## 1597                                                                                                                                           Man on the Moon
## 1598                                                                                                                                              Galaxy Quest
## 1599                                                                                                                                  Talented Mr. Ripley, The
## 1600                                                                                                                                                     Titus
## 1601                                                                                                     Mr. Death: The Rise and Fall of Fred A. Leuchter, Jr.
## 1602                                                                                                                                    Snow Falling on Cedars
## 1603                                                                                                                              Fast Times at Ridgemont High
## 1604                                                                                                                                           Pacific Heights
## 1605                                                                                                                                               Down to You
## 1606                                                                                                                                                 Malcolm X
## 1607                                                                                                                                                     Alive
## 1608                                                                                                                                             Wayne's World
## 1609                                                                                                                                    League of Their Own, A
## 1610                                                                                                                                             Patriot Games
## 1611                                                                                                                                                   Singles
## 1612                                                                                                                             Twin Peaks: Fire Walk with Me
## 1613                                                                                                                            Hard-Boiled (Lat sau san taam)
## 1614                                                                                                            Man Bites Dog (C'est arrivé près de chez vous)
## 1615                                                                                                                                              Mariachi, El
## 1616                                                                                                                                            Bad Lieutenant
## 1617                                                                                                                                                  Scream 3
## 1618                                                                                                                                      Boondock Saints, The
## 1619                                                                                                                                                Beach, The
## 1620                                                                                                                                                  Snow Day
## 1621                                                                                                                                               Boiler Room
## 1622                                                                                                                                               Pitch Black
## 1623                                                                                                                                     Whole Nine Yards, The
## 1624                                                                                                                                               City Lights
## 1625                                                                                                                                            Reindeer Games
## 1626                                                                                                                                               Wonder Boys
## 1627                                                                                                                                                Deterrence
## 1628                                                                                                                  Mifune's Last Song (Mifunes sidste sang)
## 1629                                                                                                                         Ghost Dog: The Way of the Samurai
## 1630                                                                                                                                       Defending Your Life
## 1631                                                                                                                                               Bull Durham
## 1632                                                                                                                                         Dog Day Afternoon
## 1633                                                                                                                                                       JFK
## 1634                                                                                                                                         Shanghai Surprise
## 1635                                                                                                                                           Erin Brockovich
## 1636                                                                                                                                         Final Destination
## 1637                                                                                                                                           Thelma & Louise
## 1638                                                                                                                                              Animal House
## 1639                                                                                                                                         Creature Comforts
## 1640                                                                                                                                          Double Indemnity
## 1641                                                                                                                                     Good Morning, Vietnam
## 1642                                                                                                                                         Lord of the Flies
## 1643                                                                                                                                              Modern Times
## 1644                                                                                                                        Close Encounters of the Third Kind
## 1645                                                                                                                                            Jacob's Ladder
## 1646                                                                                                                                            Empire Records
## 1647                                                                                                                                             High Fidelity
## 1648                                                                                                                                               Skulls, The
## 1649                                                                                                                                                      Hook
## 1650                                                                                                                                                    Misery
## 1651                                                                                                                                                   Network
## 1652                                                                                                                                                No Way Out
## 1653                                                                                                                                                 Frequency
## 1654                                                                                                                                              Return to Me
## 1655                                                                                                                                                  Predator
## 1656                                                                                                                                                   28 Days
## 1657                                                                                                                                           American Psycho
## 1658                                                                                                                                         Keeping the Faith
## 1659                                                                                                                                              East is East
## 1660                                                                                                                                                     Diner
## 1661                                                                                                                                                Caddyshack
## 1662                                                                                                                                                     U-571
## 1663                                                                                                                                      Virgin Suicides, The
## 1664                                                                                                                                           Big Kahuna, The
## 1665                                                                                                                                   Idiots, The (Idioterne)
## 1666                                                                                                                                                 Time Code
## 1667                                                                                                                                         Two Moon Junction
## 1668                                                                                                                                                 Gladiator
## 1669                                                                                                                                                    Hamlet
## 1670                                                                                                                                                 Road Trip
## 1671                                                                                                                                         Small Time Crooks
## 1672                                                                                                                                    Mission: Impossible II
## 1673                                                                                                                                             Shanghai Noon
## 1674                                                                                            8 ½ Women (a.k.a. 8 1/2 Women) (a.k.a. Eight and a Half Women)
## 1675                                                                                                                           On Her Majesty's Secret Service
## 1676                                                                                                                                         Seven Days in May
## 1677                                                                                                                                     Spy Who Loved Me, The
## 1678                                                                                                                                                 Moonraker
## 1679                                                                                                                              Man with the Golden Gun, The
## 1680                                                                                                                                           Blazing Saddles
## 1681                                                                                                                                              Blood Simple
## 1682                                                                                                                              9 1/2 Weeks (Nine 1/2 Weeks)
## 1683                                                                                                                                        Gone in 60 Seconds
## 1684                                                                                                                                            One False Move
## 1685                                                                                                                                         Conversation, The
## 1686                                                                                                                                                   Serpico
## 1687                                                                                                                                       Battleship Potemkin
## 1688                                                                                                                                                Titan A.E.
## 1689                                                                                                                                                Jesus' Son
## 1690                                                                                                                                               Chicken Run
## 1691                                                                                                                                        Me, Myself & Irene
## 1692                                                                                                                                        Perfect Storm, The
## 1693                                                                                                                                                       F/X
## 1694                                                                                                                                                  Croupier
## 1695                                                                                                                                               Scary Movie
## 1696                                                                                                                                     But I'm a Cheerleader
## 1697                                                                                                                                            Shower (Xizao)
## 1698                                                                                                                                          Blow-Up (Blowup)
## 1699                                                                                                                                                     X-Men
## 1700                                                                                                                                              Chuck & Buck
## 1701                                                                                                                                         What Lies Beneath
## 1702                                                                                                                                           Criminal Lovers
## 1703                                                                                                                                       Anatomy of a Murder
## 1704                                                                                                                                                Wonderland
## 1705                                                                                                                                               Coyote Ugly
## 1706                                                                                                                                                Hollow Man
## 1707                                                                                                                                             Space Cowboys
## 1708                                                                                                                                         Tao of Steve, The
## 1709                                                                                                                                            Aimée & Jaguar
## 1710                                                                                                                                         Replacements, The
## 1711                                                                                                                                                 Cell, The
## 1712                                                                                                           Naked Gun: From the Files of Police Squad!, The
## 1713                                                                                                                                               Bring It On
## 1714                                                                                                                                        Anatomy (Anatomie)
## 1715                                                                                                                                               Nurse Betty
## 1716                                                                                                                                       Way of the Gun, The
## 1717                                                                                                                                             Almost Famous
## 1718                                                                                                                                        Dancer in the Dark
## 1719                                                                                                                                              Best in Show
## 1720                                                                                                                                                 Girlfight
## 1721                                                                                                                                                Bamboozled
## 1722                                                                                                                                          Meet the Parents
## 1723                                                                                                                                       Requiem for a Dream
## 1724                                                                                                                                            Contender, The
## 1725                                                                                                                                                Lost Souls
## 1726                                                                                                                                              Billy Elliot
## 1727                                                                                                                                                 Bedazzled
## 1728                                                                                                                                            Pay It Forward
## 1729                                                                                                                                          Charlie's Angels
## 1730                                                                                                                                              Little Nicky
## 1731                                                                                                                                                Red Planet
## 1732                                                                                                                                       You Can Count on Me
## 1733                                                                                                                                      Diamonds Are Forever
## 1734                                                                                                                                              6th Day, The
## 1735                                                                                                                                                    Bounce
## 1736                                                                                                        How the Grinch Stole Christmas (a.k.a. The Grinch)
## 1737                                                                                                                                      One Day in September
## 1738                                                                                                                               Rugrats in Paris: The Movie
## 1739                                                                                                                                                    Quills
## 1740                                                                                                                                               Unbreakable
## 1741                                                                                                          Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 1742                                                                                                                                             Proof of Life
## 1743                                                                                                                                            Vertical Limit
## 1744                                                                                                                                     Living Daylights, The
## 1745                                                                                                                                   Transformers: The Movie
## 1746                                                                                                                                               Wall Street
## 1747                                                                                                                                       Brewster's Millions
## 1748                                                                                                                                                    Snatch
## 1749                                                                                                                                                  Chocolat
## 1750                                                                                                                                     Dude, Where's My Car?
## 1751                                                                                                                                                   Pollock
## 1752                                                                                                                                           What Women Want
## 1753                                                                                                                                         Finding Forrester
## 1754                                                                                                                                                 Gift, The
## 1755                                                                                                                                        Before Night Falls
## 1756                                                                                                                                                 Cast Away
## 1757                                                                                                                                           Family Man, The
## 1758                                                                                                                                         Miss Congeniality
## 1759                                                                                                                                O Brother, Where Art Thou?
## 1760                                                                                                                                            State and Main
## 1761                                                                                                                                              Dracula 2000
## 1762                                                                                                                                             Thirteen Days
## 1763                                                                                                                                                   Traffic
## 1764                                                                                                                                     Shadow of the Vampire
## 1765                                                                                                                                            House of Games
## 1766                                                                                                                                                 Antitrust
## 1767                                                                                                                                                     Panic
## 1768                                                                                                                                               Pledge, The
## 1769                                                                                                                                   I'm Gonna Git You Sucka
## 1770                                                                                                                                  Amazon Women on the Moon
## 1771                                                                                                                                                    Barfly
## 1772                                                                                                                                         Beverly Hills Cop
## 1773                                                                                                                                                Innerspace
## 1774                                                                                                                    In the Mood For Love (Fa yeung nin wa)
## 1775                                                                                                                                                  Hannibal
## 1776                                                                                                                             Saving Silverman (Evil Woman)
## 1777                                                                                                                                                Monkeybone
## 1778                                                                                                                                              Mexican, The
## 1779                                                                                                                                                15 Minutes
## 1780                                                                                                                                               Get Over It
## 1781                                                                                                                                                 Manhunter
## 1782                                                                                                                                        Enemy at the Gates
## 1783                                                                                                                                                 Dish, The
## 1784                                                                                                                                                   Memento
## 1785                                                                                                                                                  Spy Kids
## 1786                                                                                                                            Amores Perros (Love's a Bitch)
## 1787                                                                                                                                       Along Came a Spider
## 1788                                                                                                                                                      Blow
## 1789                                                                                                                                     Bridget Jones's Diary
## 1790                                                                                                                                                  Joe Dirt
## 1791                                                                                                                                                  Scarface
## 1792                                                                                                                                        Mummy Returns, The
## 1793                                                                                                                                           Eureka (Yurîka)
## 1794                                                                                                                                          Knight's Tale, A
## 1795                                                                                                                                        King Is Alive, The
## 1796                                                                                                                                                     Shrek
## 1797                                                                                                                                              Moulin Rouge
## 1798                                                                                                                                              Pearl Harbor
## 1799                                                                                                                                             City Slickers
## 1800                                                                                                                                             Eight Men Out
## 1801                                                                                                                                                 Evolution
## 1802                                                                                                                                                 Swordfish
## 1803                                                                                                                                               Point Break
## 1804                                                                                                                                                   Tootsie
## 1805                                                                                                                                   Lara Croft: Tomb Raider
## 1806                                                                                                                                 Fast and the Furious, The
## 1807                                                                                                                              A.I. Artificial Intelligence
## 1808                                                                                                                                           Crazy/Beautiful
## 1809                                                                                                                                                Sexy Beast
## 1810                                                                                             Princess and the Warrior, The (Krieger und die Kaiserin, Der)
## 1811                                                                                                                                 Closet, The (Placard, Le)
## 1812                                                                                                              Crimson Rivers, The (Rivières pourpres, Les)
## 1813                                                                                                                                               Cats & Dogs
## 1814                                                                                                                                             Scary Movie 2
## 1815                                                                                                                                            Something Wild
## 1816                                                                                                                         Final Fantasy: The Spirits Within
## 1817                                                                                                                                            Legally Blonde
## 1818                                                                                                                                                Score, The
## 1819                                                                                                                                                     Bully
## 1820                                                                                                                                             Jump Tomorrow
## 1821                                                                                                                                         Coming to America
## 1822                                                                                                                                Vanishing, The (Spoorloos)
## 1823                                                                                                                          Bill & Ted's Excellent Adventure
## 1824                                                                                                                                        Look Who's Talking
## 1825                                                                                                                                              Major League
## 1826                                                                                                                                         Jurassic Park III
## 1827                                                                                                                                     America's Sweethearts
## 1828                                                                                                                                               Ghost World
## 1829                                                                                                                                 Hedwig and the Angry Inch
## 1830                                                                                                                                        Planet of the Apes
## 1831                                                                                                                                                Road House
## 1832                                                                                                                                              Santa Sangre
## 1833                                                                                                                                                 Skin Deep
## 1834                                                                                                                                           Three Fugitives
## 1835                                                                                                                                                       UHF
## 1836                                                                                                                                                Uncle Buck
## 1837                                                                                                                                     Princess Diaries, The
## 1838                                                                                                                                               Rush Hour 2
## 1839                                                                                                                                            Altered States
## 1840                                                                                                                                            American Pie 2
## 1841                                                                                                                                             Osmosis Jones
## 1842                                                                                                                                               Others, The
## 1843                                                                                                                                             Deep End, The
## 1844                                                                                                                                Captain Corelli's Mandolin
## 1845                                                                                                                                                  Rat Race
## 1846                                                                                                                                                 Innocence
## 1847                                                                                                                            Jay and Silent Bob Strike Back
## 1848                                                                                                                                           Happy Accidents
## 1849                                                                                                                                          Jeepers Creepers
## 1850                                                                                                                                              Training Day
## 1851                                                                                                                                                 Zoolander
## 1852                                                                                                                                               Serendipity
## 1853                                                                                                                                                   Bandits
## 1854                                                                                                                                          Mulholland Drive
## 1855                                                                                                                                               Waking Life
## 1856                                                                                                                                              Donnie Darko
## 1857                                                                                                                                 Man Who Wasn't There, The
## 1858                                                                                                                                            Monsters, Inc.
## 1859                                                                                                                                                      Tape
## 1860                                                                                                                                               Shallow Hal
## 1861                                                                   Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 1862                                                                                                                                                  Spy Game
## 1863                                                                                                           Devil's Backbone, The (Espinazo del diablo, El)
## 1864                                                                                                                                            In the Bedroom
## 1865                                                                                                                            Breathless (À bout de souffle)
## 1866                                                                                                                                        Behind Enemy Lines
## 1867                                                                                                                                            Ocean's Eleven
## 1868                                                                                                             Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 1869                                                                                                                                    Not Another Teen Movie
## 1870                                                                                                                                               Vanilla Sky
## 1871                                                                                                                                     Royal Tenenbaums, The
## 1872                                                                                                                                            Kate & Leopold
## 1873                                                                                                        Lord of the Rings: The Fellowship of the Ring, The
## 1874                                                                                                                                         Beautiful Mind, A
## 1875                                                                                                                                               Medium Cool
## 1876                                                                                                                               Witness for the Prosecution
## 1877                                                                                                                                           Black Hawk Down
## 1878                                                                                                                                              Gosford Park
## 1879                                                                                                                                            Monster's Ball
## 1880                                                                                                             Brotherhood of the Wolf (Pacte des loups, Le)
## 1881                                                                                                                                     M*A*S*H (a.k.a. MASH)
## 1882                                                                                                                                       Walk to Remember, A
## 1883                                                                                                                                                 Maelström
## 1884                                                                                                                                              Storytelling
## 1885                                                                                                                                               Waydowntown
## 1886                                                                                                                                            Super Troopers
## 1887                                                                                                                                                    Sleuth
## 1888                                                                                                                                       Queen of the Damned
## 1889                                                                                                                                           Monsoon Wedding
## 1890                                                                                                                                   All About the Benjamins
## 1891                                                                                                                                         Time Machine, The
## 1892                                                                                                                                                   Ice Age
## 1893                                                                                                                                             Resident Evil
## 1894                                                                                                                                                  Showtime
## 1895                                                                                                                                     Kissing Jessica Stein
## 1896                                                                                                                   And Your Mother Too (Y tu mamá también)
## 1897                                                                                                                                                  Blade II
## 1898                                                                                                                                                Panic Room
## 1899                                                                                                                          Piano Teacher, The (La pianiste)
## 1900                                                                                                                                                 Impromptu
## 1901                                                                                                                             National Lampoon's Van Wilder
## 1902                                                                                                                                       Rashomon (Rashômon)
## 1903                                                                                                                                            Changing Lanes
## 1904                                                                                                                                       Sweetest Thing, The
## 1905                                                                                                                                              Human Nature
## 1906                                                                                                                                  My Big Fat Greek Wedding
## 1907                                                                                                                                      Three Men and a Baby
## 1908                                                                                                                                         The Scorpion King
## 1909                                                                                                                                Nine Queens (Nueve reinas)
## 1910                                                                                                                                        Husbands and Wives
## 1911                                                                                                                                               Wild Orchid
## 1912                                                                                                                                                Spider-Man
## 1913                                                                                                                                              New Guy, The
## 1914                                                                                                                                                Unfaithful
## 1915                                                                                                                                               About a Boy
## 1916                                                                                                              Star Wars: Episode II - Attack of the Clones
## 1917                                                                                                                                                  Insomnia
## 1918                                                                                          Thirteen Conversations About One Thing (a.k.a. 13 Conversations)
## 1919                                                                                                                                     Sum of All Fears, The
## 1920                                                                                                                                            Silent Running
## 1921                                                                                                                                                   Cherish
## 1922                                                                                                                                      Bourne Identity, The
## 1923                                                                                                                                                Scooby-Doo
## 1924                                                                                                                                             Lilo & Stitch
## 1925                                                                                                                                           Minority Report
## 1926                                                                                                                                                 Mr. Deeds
## 1927                                                                                                                                                 Like Mike
## 1928                                                                                                              Men in Black II (a.k.a. MIIB) (a.k.a. MIB 2)
## 1929                                                                                                                                             Reign of Fire
## 1930                                                                                                                                         Road to Perdition
## 1931                                                                                                                           Sex and Lucia (Lucía y el sexo)
## 1932                                                                                                                                       Eight Legged Freaks
## 1933                                                                                                                               Austin Powers in Goldmember
## 1934                                                                                                                                               Top Secret!
## 1935                                                                                                                                                     Signs
## 1936                                                                                                                     Spy Kids 2: The Island of Lost Dreams
## 1937                                                                                                                                                       xXx
## 1938                                                                                                                                      24 Hour Party People
## 1939                                                                                                  Songs From the Second Floor (Sånger från andra våningen)
## 1940                                                                                                                                                Blue Crush
## 1941                                                                                                                                            One Hour Photo
## 1942                                                                                                                                                Hot Shots!
## 1943                                                                                                                                                  Stakeout
## 1944                                                                                                                                        Johnny Dangerously
## 1945                                                                                                                                            Igby Goes Down
## 1946                                                                                                                                                 Secretary
## 1947                                                                                                             Spirited Away (Sen to Chihiro no kamikakushi)
## 1948                                                                                                                                        Sweet Home Alabama
## 1949                                                                                                                                                Red Dragon
## 1950                                                                                                                                              Strange Brew
## 1951                                                                                                                                            Wrong Guy, The
## 1952                                                                                                                                     Bowling for Columbine
## 1953                                                                                                                                          Punch-Drunk Love
## 1954                                                                                                                                                 Ring, The
## 1955                                                                                                                                                     Frida
## 1956                                                                                                                                              Roger Dodger
## 1957                                                                                                                                              Femme Fatale
## 1958                                                                                                                   Harry Potter and the Chamber of Secrets
## 1959                                                                                                                                           Die Another Day
## 1960                                                                                                                              Talk to Her (Hable con Ella)
## 1961                                                                                                                                       Last Seduction, The
## 1962                                                                                                                                                Adaptation
## 1963                                                                                                                                               Equilibrium
## 1964                                                                                                                                      Visitor Q (Bizita Q)
## 1965                                                                                                                                             About Schmidt
## 1966                                                                                                                    Lord of the Rings: The Two Towers, The
## 1967                                                                                                                                                 25th Hour
## 1968                                                                                                                                         Gangs of New York
## 1969                                                                                                                                          Two Weeks Notice
## 1970                                                                                                                                                      Narc
## 1971                                                                                                                                               Miami Blues
## 1972                                                                                                                                       Catch Me If You Can
## 1973                                                                                                                                                   Chicago
## 1974                                                                                                                                              Pianist, The
## 1975                                                                                                                           Confessions of a Dangerous Mind
## 1976                                                                                                                              City of God (Cidade de Deus)
## 1977                                                                                                                                           CB4 - The Movie
## 1978                                                                                                                                             Summer Lovers
## 1979                                                                                                                                              Recruit, The
## 1980                                                                                                                              How to Lose a Guy in 10 Days
## 1981                                                                                                                                                 Daredevil
## 1982                                                                                                                                                     Q & A
## 1983                                                                                                                                                Old School
## 1984                                                                                                                                               Life Stinks
## 1985                                                                                                                                      Bend It Like Beckham
## 1986                                                                                                                        Day for Night (La Nuit Américaine)
## 1987                                                                                                                                               Phone Booth
## 1988                                                                                                 Cowboy Bebop: The Movie (Cowboy Bebop: Tengoku no Tobira)
## 1989                                                                                                                                          Anger Management
## 1990                                                                                                                                            Mighty Wind, A
## 1991                                                                                                                   Winged Migration (Peuple migrateur, Le)
## 1992                                                                                                                                     Andromeda Strain, The
## 1993                                                                                                                             Decade Under the Influence, A
## 1994                                                                                                                                                Spellbound
## 1995                                                                                                                                          X2: X-Men United
## 1996                                                                                                                                      Matrix Reloaded, The
## 1997                                                                                                                                            Bruce Almighty
## 1998                                                                                                                                              Finding Nemo
## 1999                                                                                                                                          Italian Job, The
## 2000                                                                                                                                   Capturing the Friedmans
## 2001                                                                                                                                               Whale Rider
## 2002                                                                                                Man with the Movie Camera, The (Chelovek s kino-apparatom)
## 2003                                                                                                                                               Barton Fink
## 2004                                                                                                                                              Belle époque
## 2005                                                                                                                                               Good Burger
## 2006                                                                                                                                             28 Days Later
## 2007                                                                                                                           Charlie's Angels: Full Throttle
## 2008                                                                                                                                                      Hulk
## 2009                                                                                                                        Terminator 3: Rise of the Machines
## 2010                                                                                                    Pirates of the Caribbean: The Curse of the Black Pearl
## 2011                                                                                                                                                 Northfork
## 2012                                                                                                                                       Dirty Pretty Things
## 2013                                                                                                                         American Wedding (American Pie 3)
## 2014                                                                                                                                             Freaky Friday
## 2015                                                                                                                                         American Splendor
## 2016                                                                                            Code Unknown (Code inconnu: Récit incomplet de divers voyages)
## 2017                                                                                                                                  Kind Hearts and Coronets
## 2018                                                                                                                                            Matchstick Men
## 2019                                                                                                                                       Lost in Translation
## 2020                                                                                                                                                Underworld
## 2021                                                                                                Triplets of Belleville, The (Les triplettes de Belleville)
## 2022                                                                                                                  Rules of the Game, The (La règle du jeu)
## 2023                                                                                                                                   All the President's Men
## 2024                                                                                                                                        Three O'Clock High
## 2025                                                                                                                                              Ginger Snaps
## 2026                                                                                                                                            School of Rock
## 2027                                                                                                                                        Station Agent, The
## 2028                                                                                                                                              Mystic River
## 2029                                                                                                                                       Intolerable Cruelty
## 2030                                                                                                                                         Kill Bill: Vol. 1
## 2031                                                                                                                                                  Dopamine
## 2032                                                                                                                                              Runaway Jury
## 2033                                                                                                                                                In the Cut
## 2034                                                                                                                                           Shattered Glass
## 2035                                                                                                                                   Matrix Revolutions, The
## 2036                                                                                                                                                       Elf
## 2037                                                                                                                                             Love Actually
## 2038                                                                                                                                       Father of the Bride
## 2039                                                                                                           Master and Commander: The Far Side of the World
## 2040                                                                                                                                                  21 Grams
## 2041                                                                                                                                                 Bad Santa
## 2042                                                                                                                                           Damage (Fatale)
## 2043                                                                                                                                               Funny Games
## 2044                                                                                                                                                   Slacker
## 2045                                                                                                                                                  WarGames
## 2046                                                                                                                                                Gorky Park
## 2047                                                                                                                                                     Kafka
## 2048                                                                                                                                          Kindergarten Cop
## 2049                                                                                                               Last Tango in Paris (Ultimo tango a Parigi)
## 2050                                                                                                                                    Lover, The (Amant, L')
## 2051                                                                                                                                              Quick Change
## 2052                                                                                                                               Show Me Love (Fucking Åmål)
## 2053                                                                                                                                         Hero (Ying xiong)
## 2054                                                                                                                                               Naked Lunch
## 2055                                                                                                                                     Night at the Opera, A
## 2056                                                                                                                                         Last Samurai, The
## 2057                                                                                                                                                  Big Fish
## 2058                                                                                                            Lord of the Rings: The Return of the King, The
## 2059                                                                                       Fog of War: Eleven Lessons from the Life of Robert S. McNamara, The
## 2060                                                                                                                                             Cold Mountain
## 2061                                                                                                                                          Along Came Polly
## 2062                                                                                                                                     Melvin Goes to Dinner
## 2063                                                                                                                                      The Butterfly Effect
## 2064                                                                                                                                             Dreamers, The
## 2065                                                                                                                                            50 First Dates
## 2066                                                                                                                                                  EuroTrip
## 2067                                                                                                                                          Good bye, Lenin!
## 2068                                                                                                                                           Starsky & Hutch
## 2069                                                                                                                                                   Persona
## 2070                                                                                                                                       Girl Next Door, The
## 2071                                                                                                                                                   Spartan
## 2072                                                                                                                     Eternal Sunshine of the Spotless Mind
## 2073                                                                                                                                                  Dogville
## 2074                                                                                                                                                   Hellboy
## 2075                                                                                                                                         Kill Bill: Vol. 2
## 2076                                                                                                                                            13 Going on 30
## 2077                                                                                                                                               Man on Fire
## 2078                                                                                                                                                Mean Girls
## 2079                                                                                                                                                      Troy
## 2080                                                                                                                                             Gimme Shelter
## 2081                                                                                                                                              Henry & June
## 2082                                                                                                                                                 Fail-Safe
## 2083                                                                                                                                       You Only Live Twice
## 2084                                                                                                                                     Never Say Never Again
## 2085                                                                                                                                       China Syndrome, The
## 2086                                                                                                                                        Parallax View, The
## 2087                                                                                                       Hidden Fortress, The (Kakushi-toride no san-akunin)
## 2088                                                                                                                                  Weather Underground, The
## 2089                                                                                                                                              Grey Gardens
## 2090                                                                                                                                                   Shrek 2
## 2091                                                                                                                                   Day After Tomorrow, The
## 2092                                                                                                                                                    Saved!
## 2093                                                                                                                  Harry Potter and the Prisoner of Azkaban
## 2094                                                                                                                                         Napoleon Dynamite
## 2095                                                                                                                                             Super Size Me
## 2096                                                                                                                          Dodgeball: A True Underdog Story
## 2097                                                                                                                                             Terminal, The
## 2098                                                                                                                                              White Chicks
## 2099                                                                                                                                 Pirates of Silicon Valley
## 2100                                                                                                         Manufacturing Consent: Noam Chomsky and the Media
## 2101                                                                                                                                           Fahrenheit 9/11
## 2102                                                                                                                                                   Roxanne
## 2103                                                                                                                                              Spider-Man 2
## 2104                                                                                                                                             Before Sunset
## 2105                                                                                                                     Anchorman: The Legend of Ron Burgundy
## 2106                                                                                                                                                  I, Robot
## 2107                                                                                                         Maria Full of Grace (Maria, Llena eres de gracia)
## 2108                                                                                                                                     Bourne Supremacy, The
## 2109                                                                                                                                 Manchurian Candidate, The
## 2110                                                                                                                                              Garden State
## 2111                                                                                                                                                Collateral
## 2112                                                                                                                       Harold and Kumar Go to White Castle
## 2113                                                                                                                     Sky Captain and the World of Tomorrow
## 2114                                                                                                                                         Shaun of the Dead
## 2115                                                                                                                                         I Heart Huckabees
## 2116                                                                                                                                                    Primer
## 2117                                                                                                                                Team America: World Police
## 2118                                                                                                                 Five Obstructions, The (Fem benspænd, De)
## 2119                                                                                                                                                     Alfie
## 2120                                                                                                                                                  Sideways
## 2121                                                                                                                                             The Machinist
## 2122                                                                                                                                                       Saw
## 2123                                                                                                                                                       Ray
## 2124                                                                                                                                          Incredibles, The
## 2125                                                                                                                                         Finding Neverland
## 2126                                                                                                                                         National Treasure
## 2127                                                                                                                          SpongeBob SquarePants Movie, The
## 2128                                                                                                                                            Ocean's Twelve
## 2129                                                                                                           Battle of Algiers, The (La battaglia di Algeri)
## 2130                                                                                                                                                    Batman
## 2131                                                                                                                                  Decalogue, The (Dekalog)
## 2132                                                                                                               Hearts of Darkness: A Filmmakers Apocalypse
## 2133                                                                                                                                             Bad Boy Bubby
## 2134                                                                                                                                                       Gia
## 2135                                                                                                                                           Ali G Indahouse
## 2136                                                                                                                                            Animatrix, The
## 2137                                                                                                                                                   Old Boy
## 2138                                                                                                                                          Interpreter, The
## 2139                                                                                                                                          Corporation, The
## 2140                                                                                                                                         Scanner Darkly, A
## 2141                                                                                                                                       Million Dollar Baby
## 2142                                                                                                                                              Hotel Rwanda
## 2143                                                                                                                       Life Aquatic with Steve Zissou, The
## 2144                                                                                                                                              Aviator, The
## 2145                                                                                                                                          Meet the Fockers
## 2146                                                                                                                                                     Hitch
## 2147                                                                                                                                               Constantine
## 2148                                                                                                                                                  Sin City
## 2149                                                                                                                     Hitchhiker's Guide to the Galaxy, The
## 2150                                                                                                                      Enron: The Smartest Guys in the Room
## 2151                                                                                                                                                     Crash
## 2152                                                                                                              Star Wars: Episode III - Revenge of the Sith
## 2153                                                                                                                                          Mr. & Mrs. Smith
## 2154                                                                                                                                             Batman Begins
## 2155                                                                                                                                         War of the Worlds
## 2156                                                                                                          March of the Penguins (Marche de l'empereur, La)
## 2157                                                                                                                                            Fantastic Four
## 2158                                                                                                                                          Wedding Crashers
## 2159                                                                                                                                               Island, The
## 2160                                                                                                                                                   Stealth
## 2161                                                                                                                                                  Serenity
## 2162                                                                                                                                               Grizzly Man
## 2163                                                                                                                                   40-Year-Old Virgin, The
## 2164                                                                                                                                                   Red Eye
## 2165                                                                                                                                    Constant Gardener, The
## 2166                                                                                                                                               Lord of War
## 2167                                                                                                                                                 Aeon Flux
## 2168                                                                                                                                              Corpse Bride
## 2169                                                                                                                                                    Capote
## 2170                                                                                                                                       Kiss Kiss Bang Bang
## 2171                                                                                                                                  Squid and the Whale, The
## 2172                                                                                                                                Good Night, and Good Luck.
## 2173                                                                                                                                                   Syriana
## 2174                                                                                                                       Harry Potter and the Goblet of Fire
## 2175                                                                                                                                                    Munich
## 2176                                                                                                                                 District 13 (Banlieue 13)
## 2177                                                                                                                                         Failure to Launch
## 2178                                                                                                                                            V for Vendetta
## 2179                                                                                                                                     Thank You for Smoking
## 2180                                                                                                                                                Inside Man
## 2181                                                                                                              Lives of Others, The (Das leben der Anderen)
## 2182                                                                                                                      Youth of the Beast (Yaju no seishun)
## 2183                                                                                                                                       Lucky Number Slevin
## 2184                                                                                                                                                     Brick
## 2185                                                                                                                                This Film Is Not Yet Rated
## 2186                                                                                                                                   Mission: Impossible III
## 2187                                                                                                                                        Da Vinci Code, The
## 2188                                                                                                                                     X-Men: The Last Stand
## 2189                                                                                                                                                      Cars
## 2190                                                                                                                                               Nacho Libre
## 2191                                                                                                                                                     Click
## 2192                                                                                                                                    Devil Wears Prada, The
## 2193                                                                                                                Pirates of the Caribbean: Dead Man's Chest
## 2194                                                                                                                                                 Clerks II
## 2195                                                                                                                                    Inconvenient Truth, An
## 2196                                                                                                                                          Superman Returns
## 2197                                                                                                                                      Little Miss Sunshine
## 2198                                                                                                                                                     Babel
## 2199                                                                                                               Talladega Nights: The Ballad of Ricky Bobby
## 2200                                                                                                                                       Night at the Museum
## 2201                                                                                                                                     Stranger than Fiction
## 2202                                                                                                                                          Illusionist, The
## 2203                                                                                                                                                Jesus Camp
## 2204                                                                                                                                             Fountain, The
## 2205                                                                                                              Science of Sleep, The (La science des rêves)
## 2206                                                                       Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan
## 2207                                                                                                                 Pan's Labyrinth (Laberinto del fauno, El)
## 2208                                                                                                                                             Departed, The
## 2209                                                                                                                                           Children of Men
## 2210                                                                                                                                             Prestige, The
## 2211                                                                                                                                             Casino Royale
## 2212                                                                                                                                         Déjà Vu (Deja Vu)
## 2213                                                                                                                                              Holiday, The
## 2214                                                                                                                                           Cocaine Cowboys
## 2215                                                                                                                                               Ratatouille
## 2216                                                                                                                                                    Breach
## 2217                                                                                                                                                  Hot Fuzz
## 2218                                                                                                                                                    Zodiac
## 2219                                                                                                                                                       300
## 2220                                                                                                                                           Blades of Glory
## 2221                                                                                                                                                  Sunshine
## 2222                                                                                                                                                  Fracture
## 2223                                                                                                                                              Spider-Man 3
## 2224                                                                                                                                                Knocked Up
## 2225                                                                                                                                          Ocean's Thirteen
## 2226                                                                                                                 Fantastic Four: Rise of the Silver Surfer
## 2227                                                                                                                                                     Sicko
## 2228                                                                                                                                     Live Free or Die Hard
## 2229                                                                                                                                              Transformers
## 2230                                                                                                                 Harry Potter and the Order of the Phoenix
## 2231                                                                                                                                       Simpsons Movie, The
## 2232                                                                                                                                     Bourne Ultimatum, The
## 2233                                                                                                                        Tell No One (Ne le dis à personne)
## 2234                                                                                                                                                  Superbad
## 2235                                                                                                                                         King of Kong, The
## 2236                                                                                                                                             Into the Wild
## 2237                                                                                                                                   Darjeeling Limited, The
## 2238                                                                                                                                           Michael Clayton
## 2239                                                                                                                                                Persepolis
## 2240                                                                                                                                         American Gangster
## 2241                                                                                                                                    No Country for Old Men
## 2242                                                                                                                                            Be Kind Rewind
## 2243                                                                                                                                               I Am Legend
## 2244                                                                                                                                                      Juno
## 2245                                                                                                                                                 Helvetica
## 2246                                                                                                                        National Treasure: Book of Secrets
## 2247                                                                                                                                       There Will Be Blood
## 2248                                                                                                                                               Cloverfield
## 2249                                                                                                                               Hellboy II: The Golden Army
## 2250                                                                                                                                                 In Bruges
## 2251                                                                                                                                                    Jumper
## 2252                                                                                                                                             Bank Job, The
## 2253                                                                                                                                          Dark Knight, The
## 2254                                                                                                                                 Forgetting Sarah Marshall
## 2255                                                                                                                                                Religulous
## 2256                                                                                                                                                  Iron Man
## 2257                                                                                                                                                     Taken
## 2258                                                                                                                                                   Reprise
## 2259                                                                                                        Indiana Jones and the Kingdom of the Crystal Skull
## 2260                                                                                                                                             Kung Fu Panda
## 2261                                                                                                                             You Don't Mess with the Zohan
## 2262                                                                                                                                            Happening, The
## 2263                                                                                                                                      Incredible Hulk, The
## 2264                                                                                                                                                    WALL·E
## 2265                                                                                                                                                    Wanted
## 2266                                                                                                                                                   Hancock
## 2267                                                                                                                                                 Get Smart
## 2268                                                                                                                                            Up the Yangtze
## 2269                                                                                                                                                  Watchmen
## 2270                                                                                                                                               Man on Wire
## 2271                                                                                                                                         Pineapple Express
## 2272                                                                                                                                            Tropic Thunder
## 2273                                                                                                                                        Burn After Reading
## 2274                                                                                                                                          Onion Movie, The
## 2275                                                                                                                                              Body of Lies
## 2276                                                                                                                                Zack and Miri Make a Porno
## 2277                                                                                                                                      Synecdoche, New York
## 2278                                                                                                                                       Slumdog Millionaire
## 2279                                                                                                                                         Quantum of Solace
## 2280                                                                                                                                               Role Models
## 2281                                                                                                                                                      Bolt
## 2282                                                                                                                                               Frost/Nixon
## 2283                                                                                                                                             Wrestler, The
## 2284                                                                                                                      Curious Case of Benjamin Button, The
## 2285                                                                                                                           Timecrimes (Cronocrímenes, Los)
## 2286                                                                                                                                      Paul Blart: Mall Cop
## 2287                                                                                                                                                  Coraline
## 2288                                                                                                                                                 Chocolate
## 2289                                                                                                                               He's Just Not That Into You
## 2290                                                                                                                                              Mystery Team
## 2291                                                                                                                                                Away We Go
## 2292                                                                                                                            Dr. Horrible's Sing-Along Blog
## 2293                                                                                                                                           I Love You, Man
## 2294                                                                                                                                                 Duplicity
## 2295                                                                                                                                 Anvil! The Story of Anvil
## 2296                                                                                                                                             Adventureland
## 2297                                                                                                                                               In the Loop
## 2298                                                                                                                                      Inglourious Basterds
## 2299                                                                                                                                             State of Play
## 2300                                                                                                                                                      Moon
## 2301                                                                                                                                  X-Men Origins: Wolverine
## 2302                                                                                                                                Girlfriend Experience, The
## 2303                                                                                                                                                 Star Trek
## 2304                                                                                                                                      Terminator Salvation
## 2305                                                                                                            Night at the Museum: Battle of the Smithsonian
## 2306                                                                                                                                                        Up
## 2307                                                                                                                                             Hangover, The
## 2308                                                                                                                               Taking of Pelham 1 2 3, The
## 2309                                                                                                                                             Proposal, The
## 2310                                                                                                                                                  Year One
## 2311                                                                                                                                          Hurt Locker, The
## 2312                                                                                                                   Raiders of the Lost Ark: The Adaptation
## 2313                                                                                                                       Transformers: Revenge of the Fallen
## 2314                                                                                                                                                District 9
## 2315                                                                                                                                             Julie & Julia
## 2316                                                                                                                               G.I. Joe: The Rise of Cobra
## 2317                                                                                                                                                   G-Force
## 2318                                                                                                                                         It Might Get Loud
## 2319                                                                                                                                           Informant!, The
## 2320                                                                                                                         Cloudy with a Chance of Meatballs
## 2321                                                                                                                                                Food, Inc.
## 2322                                                                                                                                                 Cove, The
## 2323                                                                                                                                            Serious Man, A
## 2324                                                                                                                                                Zombieland
## 2325                                                                                                                                       Law Abiding Citizen
## 2326                                                                                                                                             Up in the Air
## 2327                                                                                                                                         Fantastic Mr. Fox
## 2328                                                                                                                                                      2012
## 2329                                                                                                                                                    Avatar
## 2330                                                                                                                                           Sherlock Holmes
## 2331                                                                                                                                  Prophet, A (Un Prophète)
## 2332                                                                                                                                            Shutter Island
## 2333                                                                                                                                             Shades of Ray
## 2334                                                                                                                                                Green Zone
## 2335                                                                                                                                      From Paris with Love
## 2336                                                                                                                                      Hot Tub Time Machine
## 2337                                                                                                                                  How to Train Your Dragon
## 2338                                                                                                                                                  Kick-Ass
## 2339                                                                                                                                                Date Night
## 2340                                                                                                                             Steam of Life (Miesten vuoro)
## 2341                                                                                                                                               Losers, The
## 2342                                                                                                                                Exit Through the Gift Shop
## 2343                                                                                                                                                Iron Man 2
## 2344                                                                                                                                      Get Him to the Greek
## 2345                                                                                                                                               A-Team, The
## 2346                                                                                                                                               Toy Story 3
## 2347                                                                                                                                             Winter's Bone
## 2348                                                                                                                                                 Predators
## 2349                                                                                                                                                 Inception
## 2350                                                                                                                                            Knight and Day
## 2351                                                                                                                                   Kids Are All Right, The
## 2352                                                                                                                                                      Salt
## 2353                                                                                                                                       Dinner for Schmucks
## 2354                                                                                                                                          Expendables, The
## 2355                                                                                                                               Scott Pilgrim vs. the World
## 2356                                                                                                                                             American, The
## 2357                                                                                                                                                   GasLand
## 2358                                                                                                                                       Social Network, The
## 2359                                                                                                                                                 Town, The
## 2360                                                                                                                                                   Catfish
## 2361                                                                                                                                                Inside Job
## 2362                                                                                                                                                  Restrepo
## 2363                                                                                                                                    Waiting for 'Superman'
## 2364                                                                                                                                                       Red
## 2365                                                                                                                                                Black Swan
## 2366                                                                                                                                               Unstoppable
## 2367                                                                                                              Harry Potter and the Deathly Hallows: Part 1
## 2368                                                                                                                                        King's Speech, The
## 2369                                                                                                                                                   Tangled
## 2370                                                                                                                                              Fighter, The
## 2371                                                                                                                                              Tron: Legacy
## 2372                                                                                                                                        Gulliver's Travels
## 2373                                                                                                                                          Made in Dagenham
## 2374                                                                                                                                                Waste Land
## 2375                                                                                                                                         Green Hornet, The
## 2376                                                                                                                                          Cowboys & Aliens
## 2377                                                                                                                                                 Marwencol
## 2378                                                                                                                                                 Limitless
## 2379                                                                                                                                       No Strings Attached
## 2380                                                                                                                                       Lincoln Lawyer, The
## 2381                                                                                                                                    Adjustment Bureau, The
## 2382                                                                                                                                               Source Code
## 2383                                                                                                                                                     Senna
## 2384                                                                                                                                                     Hanna
## 2385                                                                                                                                                      Thor
## 2386                                                                                                                   Fast Five (Fast and the Furious 5, The)
## 2387                                                                                                                                                 Incendies
## 2388                                                                                                                                               Bridesmaids
## 2389                                                                                                                                         Midnight in Paris
## 2390                                                                                                                                         Tree of Life, The
## 2391                                                                                                                                     Hangover Part II, The
## 2392                                                                                                                                           Kung Fu Panda 2
## 2393                                                                                                                                        X-Men: First Class
## 2394                                                                                                                                                 Beginners
## 2395                                                                                                                                                   Super 8
## 2396                                                                                                                                             Green Lantern
## 2397                                                                                                                                               Bad Teacher
## 2398                                                                                                                            Transformers: Dark of the Moon
## 2399                                                                                                                                           Horrible Bosses
## 2400                                                                                                                       Page One: Inside the New York Times
## 2401                                                                                                              Harry Potter and the Deathly Hallows: Part 2
## 2402                                                                                                                                                     Drive
## 2403                                                                                                                        Captain America: The First Avenger
## 2404                                                                                                                                      Crazy, Stupid, Love.
## 2405                                                                                                                                               Smurfs, The
## 2406                                                                                                                            Rise of the Planet of the Apes
## 2407                                                                                                                                          Conspirator, The
## 2408                                                                                                                                  Bill Cunningham New York
## 2409                                                                                                                                         Interrupters, The
## 2410                                                                                                                                                 Contagion
## 2411                                                                                                                                                 Moneyball
## 2412                                                                                                                                             Avengers, The
## 2413                                                                                                                                              Killer Elite
## 2414                                                                                                                                                Real Steel
## 2415                                                                                                                                                      Buck
## 2416                                                                                                                                                  Margaret
## 2417                                                                                                                                               Margin Call
## 2418                                                                                                                                                     Shame
## 2419                                                                                                                                 Headhunters (Hodejegerne)
## 2420                                                                                                                                          Batman: Year One
## 2421                                                                                                                                             Puss in Boots
## 2422                                                                                                                                 Adventures of Tintin, The
## 2423                                                                                                                                                      Hugo
## 2424                                                                                                                                                  Trespass
## 2425                                                                                                                                          The Hunger Games
## 2426                                                                                                                                              Clone (Womb)
## 2427                                                                                                                                    Dark Knight Rises, The
## 2428                                                                                                                                        Bourne Legacy, The
## 2429                                                                                                                        Sherlock Holmes: A Game of Shadows
## 2430                                                                                                                      Mission: Impossible - Ghost Protocol
## 2431                                                                                                                                           We Bought a Zoo
## 2432                                                                                                                          Girl with the Dragon Tattoo, The
## 2433                                                                                                                                                Contraband
## 2434                                                                                                                         Being Elmo: A Puppeteer's Journey
## 2435                                                                                                                                                 Chronicle
## 2436                                                                                                                                                Safe House
## 2437                                                                                                                                            This Means War
## 2438                                                                                                                                               John Carter
## 2439                                                                                                                                            21 Jump Street
## 2440                                                                                                                                      Jiro Dreams of Sushi
## 2441                                                                                                                         American Reunion (American Pie 4)
## 2442                                                                                                                                   Cabin in the Woods, The
## 2443                                                                                                                                             Mirror Mirror
## 2444                                                                                                                                                Battleship
## 2445                                                                                                                                              Dark Shadows
## 2446                                                                                                                                             Dictator, The
## 2447                                                                                                                     Men in Black III (M.III.B.) (M.I.B.³)
## 2448                                                                                                                               Snow White and the Huntsman
## 2449                                                                                                                             Pirates! Band of Misfits, The
## 2450                                                                                                                                                Prometheus
## 2451                                                                                                                                          Moonrise Kingdom
## 2452                                                                                                                        Madagascar 3: Europe's Most Wanted
## 2453                                                                                                                                                     Brave
## 2454                                                                                                                      What to Expect When You're Expecting
## 2455                                                                                                                                                    Presto
## 2456                                                                                                                                 Giant Mechanical Man, The
## 2457                                                                                                                                   Amazing Spider-Man, The
## 2458                                                                                                                               Beasts of the Southern Wild
## 2459                                                                                                                                              Total Recall
## 2460                                                                                                                                                   Skyfall
## 2461                                                                                                                                  Queen of Versailles, The
## 2462                                                                                                                                   Searching for Sugar Man
## 2463                                                                                                                                                    Looper
## 2464                                                                                                                                    Ai Weiwei: Never Sorry
## 2465                                                                                                                                                     Dredd
## 2466                                                                                                                                                      Argo
## 2467                                                                                                                                      House I Live In, The
## 2468                                                                                                                                             Imposter, The
## 2469                                                                                                                                            Wreck-It Ralph
## 2470                                                                                                                                                    Flight
## 2471                                                                                                                                                Life of Pi
## 2472                                                                                                                                     Indie Game: The Movie
## 2473                                                                                                                                                   Lincoln
## 2474                                                                                                                        Hobbit: An Unexpected Journey, The
## 2475                                                                                                                                          Zero Dark Thirty
## 2476                                                                                                                                               Warm Bodies
## 2477                                                                                                                                              Jack Reacher
## 2478                                                                                                                                          Django Unchained
## 2479                                                                                                                                           Misérables, Les
## 2480                                                                                                                                    Central Park Five, The
## 2481                                                                                                                                       Beware of Mr. Baker
## 2482                                                                                                                                    Beauty Is Embarrassing
## 2483                                                                                                                                                  Movie 43
## 2484                                                                                                                                             Call Me Kuchu
## 2485                                                                                                                                              Side Effects
## 2486                                                                                                                                     World Before Her, The
## 2487                                                                                                                                       Act of Killing, The
## 2488                                                                                                                                                  Room 237
## 2489                                                                                                                                           Before Midnight
## 2490                                                                                                                TPB AFK: The Pirate Bay Away from Keyboard
## 2491                                                                                                                                     G.I. Joe: Retaliation
## 2492                                                                                                                                 Oz the Great and Powerful
## 2493                                                                                                                                        Olympus Has Fallen
## 2494                                                                                                                                                  Oblivion
## 2495                                                                                                                                                        42
## 2496                                                                                                                                           This Is the End
## 2497                                                                                                                                                Iron Man 3
## 2498                                                                                                                                   Star Trek Into Darkness
## 2499                                                                                                                                                Frances Ha
## 2500                                                                                                                                               After Earth
## 2501                                                                                                                                            Now You See Me
## 2502                                                                                                                                              Man of Steel
## 2503                                                                                                                                               Pacific Rim
## 2504                                                                                                                                               World War Z
## 2505                                                                                                                                                   Elysium
## 2506                                                                                                                                                 Heat, The
## 2507                                                                                                                                                     Red 2
## 2508                                                                                                                                         We're the Millers
## 2509                                                                                                                                                Kick-Ass 2
## 2510                                                                                                                                                 Blackfish
## 2511                                                                                                                                                      Koch
## 2512                                                                                                                                                   Gravity
## 2513                                                                                                                                                 Prisoners
## 2514                                                                                                                                          Captain Phillips
## 2515                                                                                                                                      Thor: The Dark World
## 2516                                                                                                                                   Marc Maron: Thinky Pain
## 2517                                                                                                                                             Muscle Shoals
## 2518                                                                                                                      Hobbit: The Desolation of Smaug, The
## 2519                                                                                                                                  Wolf of Wall Street, The
## 2520                                                                                                                                           American Hustle
## 2521                                                                                                                                                       Her
## 2522                                                                                                                         Anchorman 2: The Legend Continues
## 2523                                                                                                                                               Snowpiercer
## 2524                                                                                                                                         I Know That Voice
## 2525                                                                                                                                 Jack Ryan: Shadow Recruit
## 2526                                                                                                                                                 Divergent
## 2527                                                                                                                                           I, Frankenstein
## 2528                                                                                                                                                     Enemy
## 2529                                                                                                                                            The Lego Movie
## 2530                                                                                                                                                   RoboCop
## 2531                                                                                                                                         Zero Theorem, The
## 2532                                                                                                                                 Grand Budapest Hotel, The
## 2533                                                                                                                                              Interstellar
## 2534                                                                                                                                    300: Rise of an Empire
## 2535                                                                                                                                            Particle Fever
## 2536                                                                                                                                            Under the Skin
## 2537                                                                                                                       Captain America: The Winter Soldier
## 2538                                                                                                                                                      Noah
## 2539                                                                                                                                  The Amazing Spider-Man 2
## 2540                                                                                                                                             Transcendence
## 2541                                                                                                                                          Other Woman, The
## 2542                                                                               Fragile Trust: Plagiarism, Power, and Jayson Blair at the New York Times, A
## 2543                                                                                                                                                      Lucy
## 2544                                                                                                                                X-Men: Days of Future Past
## 2545                                                                                                                                                  Godzilla
## 2546                                                                                                                                                      Chef
## 2547                                                                                                                                               Begin Again
## 2548                                                                                                                                          Edge of Tomorrow
## 2549                                                                                                                        Mission: Impossible - Rogue Nation
## 2550                                                                                                                                            22 Jump Street
## 2551                                                                                                                                            Equalizer, The
## 2552                                                                                                          Birdman: Or (The Unexpected Virtue of Ignorance)
## 2553                                                                                                                           Transformers: Age of Extinction
## 2554                                                                                                                                                  Whiplash
## 2555                                                                                                                                                 Gone Girl
## 2556                                                                                                                            Dawn of the Planet of the Apes
## 2557                                                                                                                                                  Sex Tape
## 2558                                                                                                                                   Guardians of the Galaxy
## 2559                                                                                                                                         A Most Wanted Man
## 2560                                                                                                                                         Jupiter Ascending
## 2561                                                                                                                              Teenage Mutant Ninja Turtles
## 2562                                                                                                                                                Giver, The
## 2563                                                                                                                                                 Coherence
## 2564                                                                                                                                          Maze Runner, The
## 2565                                                                                                                                      Look of Silence, The
## 2566                                                                                                                                                 John Wick
## 2567                                                                                                                                              Rewrite, The
## 2568                                                                                                                                              Nightcrawler
## 2569                                                                                                                                                Big Hero 6
## 2570                                                                                                                                                Ex Machina
## 2571                                                                                                                                                Foxcatcher
## 2572                                                                                                                                        The Imitation Game
## 2573                                                                                                                                             Inherent Vice
## 2574                                                                                                                     The Hunger Games: Mockingjay - Part 1
## 2575                                                                                                                                                Wild Tales
## 2576                                                                                                                                  The Theory of Everything
## 2577                                                                                                                                            Jurassic World
## 2578                                                                                                                                               Citizenfour
## 2579                                                                                                                 The Hobbit: The Battle of the Five Armies
## 2580                                                                                                                                             The Interview
## 2581                                                                                                                              Kingsman: The Secret Service
## 2582                                                                                                                                                   Chappie
## 2583                                                                                                                                        Terminator Genisys
## 2584                                                                                                                                                  Red Army
## 2585                                                                                                                                                It Follows
## 2586                                                                                                                                        Mad Max: Fury Road
## 2587                                                                                                                Star Wars: Episode VII - The Force Awakens
## 2588                                                                                                                                                  Warcraft
## 2589                                                                                                                                   Avengers: Age of Ultron
## 2590                                                                                                                                                   Ant-Man
## 2591                                                                                                                                            Fantastic Four
## 2592                                                                                                                                                  Deadpool
## 2593                                                                                                                                Captain America: Civil War
## 2594                                                                                                                                         X-Men: Apocalypse
## 2595                                                                                                                                                True Story
## 2596                                                                                                                                         The Hateful Eight
## 2597                                                                                                                                             Run All Night
## 2598                                                                                                                                         While We're Young
## 2599                                                                                                                                                 Insurgent
## 2600                                                                                                                                          Midnight Special
## 2601                                                                                                                                                 Furious 7
## 2602                                                                                                                                                  Get Hard
## 2603                                                                                                                                              Tomorrowland
## 2604                                                                                                                                        The Age of Adaline
## 2605                                                                                                                                               San Andreas
## 2606                                                                                                                                Far from the Madding Crowd
## 2607                                                                                                                                               The Martian
## 2608                                                                                                                                                       Spy
## 2609                                                                                                                                                Trainwreck
## 2610                                                                                                                                                Inside Out
## 2611                                                                                                                     The Hunger Games: Mockingjay - Part 2
## 2612                                                                                                                                   The Secret Life of Pets
## 2613                                                                                                                              Independence Day: Resurgence
## 2614                                                                                                                                               Star Trek 3
## 2615                                                                                                                                                   Spectre
## 2616                                                                                                                                                Steve Jobs
## 2617                                                                                                                        Batman v Superman: Dawn of Justice
## 2618                                                                                                                                                       Amy
## 2619                                                                                                                                           The Jungle Book
## 2620                                                                                                                                   The Man from U.N.C.L.E.
## 2621                                                                                                                                              The Revenant
## 2622                                                                                                                                                   Sicario
## 2623                                                                                                                                           Best of Enemies
## 2624                                                                                                                                                 Anomalisa
## 2625                                                                                                                                                The Intern
## 2626                                                                                                                                                      Room
## 2627                                                                                                                                                 The Witch
## 2628                                                                                                                                            American Ultra
## 2629                                                                                                                                                       Joy
## 2630                                                                                                                                                 Spotlight
## 2631                                                                                                                                            Pawn Sacrifice
## 2632                                                                                                                                           Bridge of Spies
## 2633                                                                                                                                                Concussion
## 2634                                                                                                                                        Peanuts Movie, The
## 2635                                                                                                                                                     Creed
## 2636                                                                                                                                            Big Short, The
## 2637                                                                                                                                              Daddy's Home
## 2638                                                                                                                                                   Sisters
## 2639                                                                                                                                           Kung Fu Panda 3
## 2640                                                                                                                                               Miles Ahead
## 2641                                                                                                                                       10 Cloverfield Lane
## 2642                                                                                                                                         London Has Fallen
## 2643                                                                                                                                                  Zootopia
## 2644                                                                                                                                                     Keanu
## 2645                                                                                                                                 The Huntsman Winter's War
## 2646                                                                                                                              Neighbors 2: Sorority Rising
## 2647                                                                                                                                             Money Monster
## 2648                                                                                                                                              Finding Dory
## 2649                                                                                                                                              Mother's Day
## 2650                                                                                                                                             The Nice Guys
## 2651                                                                                                                                              The Shallows
## 2652                                                                                                                                          Now You See Me 2
## 2653                                                                                                          Teenage Mutant Ninja Turtles: Out of the Shadows
## 2654                                                                                                                        Popstar: Never Stop Never Stopping
## 2655                                                                                                                                           The Conjuring 2
## 2656                                                                                                                                   Approaching the Unknown
## 2657                                                                                                                                              Ghostbusters
## 2658                                                                                                                                      Central Intelligence
## 2659                                                                                                                                      The Legend of Tarzan
## 2660                                                                                                                                  The Purge: Election Year
## 2661                                                                                                                            Mike & Dave Need Wedding Dates
## 2662                                                                                                                                                 Sunspring
## 2663                                                                                                                                       Usual Suspects, The
## 2664                                                                                                                                 Shawshank Redemption, The
## 2665                                                                                                                               What's Eating Gilbert Grape
## 2666                                                                                                                                          Schindler's List
## 2667                                                                                      Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb
## 2668                                                                                                                                                   Gattaca
## 2669                                                                                                                                         Good Will Hunting
## 2670                                                                                                                                                  Rain Man
## 2671                                                                                                                               Back to the Future Part III
## 2672                                                                                                                                                     Ronin
## 2673                                                                                                                                              Analyze This
## 2674                                                                                                                                              American Pie
## 2675                                                                                                                                                       Big
## 2676                                                                                                                                           American Beauty
## 2677                                                                                                                                    Mission: Impossible II
## 2678                                                                                                                                                  Chocolat
## 2679                                                                                                                                          Someone Like You
## 2680                                                                                                                                     Bridget Jones's Diary
## 2681                                                                                                                                            American Pie 2
## 2682                                                                                                                                           Happy Accidents
## 2683                                                                                                                                               Dinner Rush
## 2684                                                                                                                                               Serendipity
## 2685                                                                                                                                         Beautiful Mind, A
## 2686                                                                                                                                                Spider-Man
## 2687                                                                                                                                           Minority Report
## 2688                                                                                                                              City of God (Cidade de Deus)
## 2689                                                                                                                                       Lost in Translation
## 2690                                                                                                                                         Kill Bill: Vol. 1
## 2691                                                                                                                                       Girl Next Door, The
## 2692                                                                                                                                                      Heat
## 2693                                                                                                                                         Leaving Las Vegas
## 2694                                                                                                  City of Lost Children, The (Cité des enfants perdus, La)
## 2695                                                                                                                        Twelve Monkeys (a.k.a. 12 Monkeys)
## 2696                                                                                                                                          Dead Man Walking
## 2697                                                                                                                                      Seven (a.k.a. Se7en)
## 2698                                                                                                                                       Usual Suspects, The
## 2699                                                                                                                                               Taxi Driver
## 2700                                                                                                                                                   Hackers
## 2701                                                                                                                                           Johnny Mnemonic
## 2702                                                                                                                                                  Net, The
## 2703                                                                                                                                                     Smoke
## 2704                                                                                                                                              Strange Days
## 2705                                                                                                                                                    Clerks
## 2706                                                                                                                                                   Ed Wood
## 2707                                                                                                                                        Heavenly Creatures
## 2708                                                                                                                        Star Wars: Episode IV - A New Hope
## 2709                                                                                                                                      Natural Born Killers
## 2710                                                                                                   Léon: The Professional (a.k.a. The Professional) (Léon)
## 2711                                                                                                                                              Pulp Fiction
## 2712                                                                                                                 Three Colors: Blue (Trois couleurs: Bleu)
## 2713                                                                                                                                 Shawshank Redemption, The
## 2714                                                                                                                                     Bullets Over Broadway
## 2715                                                                                                                                              Forrest Gump
## 2716                                                                                                                                                     Speed
## 2717                                                                                                                                             Carlito's Way
## 2718                                                                                                                                             Jurassic Park
## 2719                                                                                                                                               Killing Zoe
## 2720                                                                                                                                  Manhattan Murder Mystery
## 2721                                                                                                                                          Schindler's List
## 2722                                                                                                                                              Blade Runner
## 2723                                                                                                                                              True Romance
## 2724                                                                                                                                        Dances with Wolves
## 2725                                                                                                                                 Silence of the Lambs, The
## 2726                                                                                                                                                     Fargo
## 2727                                                                                            Alphaville (Alphaville, une étrange aventure de Lemmy Caution)
## 2728                                                                                                                                                  Dead Man
## 2729                                                                                                                                                   Twister
## 2730                                                                                                                                             Trainspotting
## 2731                                                                                                                                            Godfather, The
## 2732                                                                                                                                                     Bound
## 2733                                                                                                                                                   Vertigo
## 2734                                                                                                                                               Rear Window
## 2735                                                                                                                                        North by Northwest
## 2736                                                                                                                                          Some Like It Hot
## 2737                                                                                                                                                Casablanca
## 2738                                                                                                                                       Maltese Falcon, The
## 2739                                                                                                                    Sunset Blvd. (a.k.a. Sunset Boulevard)
## 2740                                                                                                                                              Citizen Kane
## 2741                                                                                                                                     2001: A Space Odyssey
## 2742                                                                                                                                                   Rebecca
## 2743                                                                                                                                                 Notorious
## 2744                                                                                                                                                Spellbound
## 2745                                                                                                                                                     Laura
## 2746                                                                                                                                             39 Steps, The
## 2747                                                                                                                                                  Die Hard
## 2748                                                                                                                                                   Sleeper
## 2749                                                                                                                                      Fish Called Wanda, A
## 2750                                                                                                                                            Reservoir Dogs
## 2751                                                                                                                                            Basic Instinct
## 2752                                                                                                                                       Glengarry Glen Ross
## 2753                                                                                                                                 Streetcar Named Desire, A
## 2754                                                                                                                           Monty Python and the Holy Grail
## 2755                                                                                                                  Cook the Thief His Wife & Her Lover, The
## 2756                                                                                                                                              Delicatessen
## 2757                                                                                                                           One Flew Over the Cuckoo's Nest
## 2758                                                                                                                                                    Brazil
## 2759                                                                                                                                       Clockwork Orange, A
## 2760                                                                                                                Star Wars: Episode VI - Return of the Jedi
## 2761                                                                                                                                            Third Man, The
## 2762                                                                                                                                                Goodfellas
## 2763                                                                                                                        Killer, The (Die xue shuang xiong)
## 2764                                                                                                                                       Blues Brothers, The
## 2765                                                                                                                                   Godfather: Part II, The
## 2766                                                                                                                                                Annie Hall
## 2767                                                                                                                                                   Stalker
## 2768                                                                                                                                          Harold and Maude
## 2769                                                                                                                  Seventh Seal, The (Sjunde inseglet, Det)
## 2770                                                                                                                                           Terminator, The
## 2771                                                                                                                                    Dead Alive (Braindead)
## 2772                                                                                                                                                 Manhattan
## 2773                                                                                                                                         Miller's Crossing
## 2774                                                                                                                                        Dead Poets Society
## 2775                                                                                                                                             Touch of Evil
## 2776                                                                                                                                 Femme Nikita, La (Nikita)
## 2777                                                                                                                                                8 1/2 (8½)
## 2778                                                                                                                                                 Chinatown
## 2779                                                                                                                                                 Bad Taste
## 2780                                                                                                                                              Shining, The
## 2781                                                                                                                                          Deer Hunter, The
## 2782                                                                                                                                             Groundhog Day
## 2783                                                                                                                                 Manchurian Candidate, The
## 2784                                                                                                                                        Back to the Future
## 2785                                                                                                                                      Pink Floyd: The Wall
## 2786                                                                                                                                                Birds, The
## 2787                                                                                                         Nosferatu (Nosferatu, eine Symphonie des Grauens)
## 2788                                                                                                                                                  Sneakers
## 2789                                                                                                                                                    Hamlet
## 2790                                                                                                                                              Lost Highway
## 2791                                                                                                                                             Donnie Brasco
## 2792                                                                                                               Austin Powers: International Man of Mystery
## 2793                                                                                                                                    Tetsuo II: Body Hammer
## 2794                                                                                                                                 Men in Black (a.k.a. MIB)
## 2795                                                                                                                                         Conspiracy Theory
## 2796                                                                                                                                         L.A. Confidential
## 2797                                                                                                                                                 Game, The
## 2798                                                                                                                                                    U Turn
## 2799                                                                                                                                      The Devil's Advocate
## 2800                                                                                                                                                   Gattaca
## 2801                                                                                                                                             Boogie Nights
## 2802                                                                                                                                                   Witness
## 2803                                                                                                                                         Good Will Hunting
## 2804                                                                                                                                                   Titanic
## 2805                                                                                                                                              Jackie Brown
## 2806                                                                                                                                         Big Lebowski, The
## 2807                                                                                                                                                 Dark City
## 2808                                                                                                                                       Fireworks (Hana-bi)
## 2809                                                                                                                                     Spanish Prisoner, The
## 2810                                                                                                                            Fear and Loathing in Las Vegas
## 2811                                                                                                                                                        Pi
## 2812                                                                                                                              There's Something About Mary
## 2813                                                                                                                                             Exorcist, The
## 2814                                                                                                                                                Metropolis
## 2815                                                                                                                                Back to the Future Part II
## 2816                                                                                                                               Back to the Future Part III
## 2817                                                                                                                                                      Dune
## 2818                                                                                                                                  Godfather: Part III, The
## 2819                                                                                                                                       Saving Private Ryan
## 2820                                                                                                                                           Out of the Past
## 2821                                                                                                                                            Doctor Zhivago
## 2822                                                                                                                                               Blue Velvet
## 2823                                                                                                                                 Dead Men Don't Wear Plaid
## 2824                                                                                                                               1984 (Nineteen Eighty-Four)
## 2825                                                                                                                                            Dead Zone, The
## 2826                                                                                                                        Henry: Portrait of a Serial Killer
## 2827                                                                                                                                           Rosemary's Baby
## 2828                                                                                                                                                     Blade
## 2829                                                                                                                                                  Saboteur
## 2830                                                                                                                                                      Cube
## 2831                                                                                                                                                     Ronin
## 2832                                                                                                                       Life Is Beautiful (La Vita è bella)
## 2833                                                                                                                                        American History X
## 2834                                                                                                                                        Enemy of the State
## 2835                                                                                                                                       Shakespeare in Love
## 2836                                                                                                                                                  Fly, The
## 2837                                                                                                                Name of the Rose, The (Name der Rose, Der)
## 2838                                                                                                                                                   Payback
## 2839                                                                                                                                              Office Space
## 2840                                                                                                                                              Analyze This
## 2841                                                                                                                                              Dead Ringers
## 2842                                                                                                                                               Matrix, The
## 2843                                                                                                                                                 Following
## 2844                                                                                                                            Open Your Eyes (Abre los ojos)
## 2845                                                                                                                                                  eXistenZ
## 2846                                                                                                                                                Idle Hands
## 2847                                                                                                                            Rocky Horror Picture Show, The
## 2848                                                                                                                                     Thirteenth Floor, The
## 2849                                                                                                                                   Buena Vista Social Club
## 2850                                                                                                                     Austin Powers: The Spy Who Shagged Me
## 2851                                                                                                                                 Run Lola Run (Lola rennt)
## 2852                                                                                                                                            Arlington Road
## 2853                                                                                                                                  Blair Witch Project, The
## 2854                                                                                                                                            Eyes Wide Shut
## 2855                                                                                                                                              Killing, The
## 2856                                                                                                                                          Sixth Sense, The
## 2857                                                                                                                                                 Airplane!
## 2858                                                                                                                                           American Beauty
## 2859                                                                                                                                            New Rose Hotel
## 2860                                                                                                                                              Total Recall
## 2861                                                                                                                                  Ferris Bueller's Day Off
## 2862                                                                                                                                       Sydney (Hard Eight)
## 2863                                                                                                                                                Fight Club
## 2864                                                                                                                                   Crimes and Misdemeanors
## 2865                                                                                                                                      Being John Malkovich
## 2866                                                                                                                                               Re-Animator
## 2867                                                                                                                       Grand Illusion (La grande illusion)
## 2868                                                                                                                                           Green Mile, The
## 2869                                                                                                                                                  Magnolia
## 2870                                                                                                                                             Wayne's World
## 2871                                                                                                                             Twin Peaks: Fire Walk with Me
## 2872                                                                                                                                              Mariachi, El
## 2873                                                                                                                         Ghost Dog: The Way of the Samurai
## 2874                                                                                                                                                       JFK
## 2875                                                                                                                                           Erin Brockovich
## 2876                                                                                                                                          Double Indemnity
## 2877                                                                                                                                            Jacob's Ladder
## 2878                                                                                                                                        Solaris (Solyaris)
## 2879                                                                                                                                                   Network
## 2880                                                                                                                                           American Psycho
## 2881                                                                                                                                                 Gladiator
## 2882                                                                                                                                                    Hamlet
## 2883                                                                                                                                                Eraserhead
## 2884                                                                                                                                         Conversation, The
## 2885                                                                                                                                                   Serpico
## 2886                                                                                                                                       Battleship Potemkin
## 2887                                                                                                                                               Scary Movie
## 2888                                                                                                                                          Blow-Up (Blowup)
## 2889                                                                                                                                                 Cell, The
## 2890                                                                                                                                       Requiem for a Dream
## 2891                                                                                                                                          Charlie's Angels
## 2892                                                                                                                                               Unbreakable
## 2893                                                                                                          Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 2894                                                                                                                                O Brother, Where Art Thou?
## 2895                                                                                                                                                   Traffic
## 2896                                                                                                                                            House of Games
## 2897                                                                                                                                                 Manhunter
## 2898                                                                                                                                                   Memento
## 2899                                                                                                                                                      Blow
## 2900                                                                                                                                     Bridget Jones's Diary
## 2901                                                                                                                                                  Scarface
## 2902                                                                                                                                                     Shrek
## 2903                                                                                                                                                     Faust
## 2904                                                                                                                                                  Suspiria
## 2905                                                                                                                                Vanishing, The (Spoorloos)
## 2906                                                                                                                              Tetsuo, the Ironman (Tetsuo)
## 2907                                                                                                                                                      Cure
## 2908                                                                                                                                                 Session 9
## 2909                                                                                                                                          Mulholland Drive
## 2910                                                                                                                                              Donnie Darko
## 2911                                                                                                                                            Monsters, Inc.
## 2912                                                                   Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 2913                                                                                                                            Breathless (À bout de souffle)
## 2914                                                                                                                                            Ocean's Eleven
## 2915                                                                                                             Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 2916                                                                                                                                               Vanilla Sky
## 2917                                                                                                        Lord of the Rings: The Fellowship of the Ring, The
## 2918                                                                                                                                         Beautiful Mind, A
## 2919                                                                                                                                            Monster's Ball
## 2920                                                                                                                                             Big Heat, The
## 2921                                                                                                                                                Brainstorm
## 2922                                                                                                                                     M*A*S*H (a.k.a. MASH)
## 2923                                                                                                                                                   Seconds
## 2924                                                                                                                                                Metropolis
## 2925                                                                                                                                            Don't Look Now
## 2926                                                                                                                                                   Scratch
## 2927                                                                                                                                                  Blade II
## 2928                                                                                                                                                Panic Room
## 2929                                                                                                                                  My Big Fat Greek Wedding
## 2930                                                                                                                                                    Enigma
## 2931                                                                                                                                                Spider-Man
## 2932                                                                                                                                                  Insomnia
## 2933                                                                                                                                      Bourne Identity, The
## 2934                                                                                                                                           Minority Report
## 2935                                                                                                                                         Road to Perdition
## 2936                                                                                                                                                     Signs
## 2937                                                                                                                                          Transporter, The
## 2938                                                                                                                          Das Experiment (Experiment, The)
## 2939                                                                                                                                                Red Dragon
## 2940                                                                                                                                     Bowling for Columbine
## 2941                                                                                                                                                 Ring, The
## 2942                                                                                                                             Russian Ark (Russkiy Kovcheg)
## 2943                                                                                                                      Professional, The (Le professionnel)
## 2944                                                                                                                                              Femme Fatale
## 2945                                                                                                                                                  Scanners
## 2946                                                                                                                                                     Thief
## 2947                                                                                                                                                   Solaris
## 2948                                                                                                                                       Last Seduction, The
## 2949                                                                                                                                               Equilibrium
## 2950                                                                                                                                          Intact (Intacto)
## 2951                                                                                                                    Lord of the Rings: The Two Towers, The
## 2952                                                                                                                              City of God (Cidade de Deus)
## 2953                                                                                                                                              Recruit, The
## 2954                                                                                                                                                   Tenebre
## 2955                                                                                                                                                    Spider
## 2956                                                                                                                               Irreversible (Irréversible)
## 2957                                                                                                                                              Ringu (Ring)
## 2958                                                                                                                                               Phone Booth
## 2959                                                                                                                                          Anger Management
## 2960                                                                                                                                          Bulletproof Monk
## 2961                                                                                                                                                Confidence
## 2962                                                                                                                                                  Identity
## 2963                                                                                                                                      Matrix Reloaded, The
## 2964                                                                                                                                          Italian Job, The
## 2965                                                                                                            2 Fast 2 Furious (Fast and the Furious 2, The)
## 2966                                                                                                                                               Whale Rider
## 2967                                                                                                                                             28 Days Later
## 2968                                                                                                                           Charlie's Angels: Full Throttle
## 2969                                                                                                                               Tenant, The (Locataire, Le)
## 2970                                                                                                                                             Swimming Pool
## 2971                                                                                                                                    What's Up, Tiger Lily?
## 2972                                                                                                                            Tokyo Story (Tôkyô monogatari)
## 2973                                                                             Discreet Charm of the Bourgeoisie, The (Charme discret de la bourgeoisie, Le)
## 2974                                                                                                                                            Matchstick Men
## 2975                                                                                                                                       Lost in Translation
## 2976                                                                                                                                                Demonlover
## 2977                                                                                                                                                Videodrome
## 2978                                                                                                                                     Judgment at Nuremberg
## 2979                                                                                                                                                    Avalon
## 2980                                                                                                                         Knife in the Water (Nóz w wodzie)
## 2981                                                                                                                                         Kill Bill: Vol. 1
## 2982                                                                                                                                         Europa (Zentropa)
## 2983                                                                                                                                               Funny Games
## 2984                                                                                                                                                  WarGames
## 2985                                                                                             Cabinet of Dr. Caligari, The (Cabinet des Dr. Caligari., Das)
## 2986                                                                                                                                    Hannah and Her Sisters
## 2987                                                                                                                                                     Kafka
## 2988                                                                                                                                  Night of the Hunter, The
## 2989                                                                                                                           Battle Royale (Batoru rowaiaru)
## 2990                                                                                                                                             Wild at Heart
## 2991                                                                                                     Last Year at Marienbad (L'Année dernière à Marienbad)
## 2992                                                                                                                  Macbeth (a.k.a. Tragedy of Macbeth, The)
## 2993                                                                                                                                        Play It Again, Sam
## 2994                                                                                                                                         Hero (Ying xiong)
## 2995                                                                                                                                 Deep Red (Profondo rosso)
## 2996                                                                                                                              Diabolique (Les diaboliques)
## 2997                                                                                                                                               Naked Lunch
## 2998                                                                                                            Shoot the Piano Player (Tirez sur le pianiste)
## 2999                                                                                                            Lord of the Rings: The Return of the King, The
## 3000                                                                                                                                                  Paycheck
## 3001                                                                                                                                                    D.O.A.
## 3002                                                                                                                                      The Butterfly Effect
## 3003                                                                                                                     Eternal Sunshine of the Spotless Mind
## 3004                                                                                                                                                  Dogville
## 3005                                                                                                                                         Kill Bill: Vol. 2
## 3006                                                                                                                                               Man on Fire
## 3007                                                                                                                                Samouraï, Le (Godson, The)
## 3008                                                                                                               Wages of Fear, The (Salaire de la peur, Le)
## 3009                                                                                                                           Postman Always Rings Twice, The
## 3010                                                                                                                           Zorba the Greek (Alexis Zorbas)
## 3011                                                                                                                                        Parallax View, The
## 3012                                                                                                                                                    Cypher
## 3013                                                                                                                           Infernal Affairs (Mou gaan dou)
## 3014                                                                                                               Tale of Two Sisters, A (Janghwa, Hongryeon)
## 3015                                                                                                                                           Death Race 2000
## 3016                                                                                                                            Avventura, L' (Adventure, The)
## 3017                                                                                                             Maltese Falcon, The (a.k.a. Dangerous Female)
## 3018                                                                                                                                                   Shrek 2
## 3019                                                                                                                 Blind Swordsman: Zatoichi, The (Zatôichi)
## 3020                                                                                                                                                 Jetée, La
## 3021                                                                                                                                   Angels with Dirty Faces
## 3022                                                                                                         Exterminating Angel, The (Ángel exterminador, El)
## 3023                                                                                                                                           Fahrenheit 9/11
## 3024                                                                                                                                                  I, Robot
## 3025                                                                                                                                     Bourne Supremacy, The
## 3026                                                                                                                                       Slaughterhouse-Five
## 3027                                                                                                                                 Manchurian Candidate, The
## 3028                                                                                                                                              Village, The
## 3029                                                                                                                                                Collateral
## 3030                                                                                                                     Sky Captain and the World of Tomorrow
## 3031                                                                                                                                         Shaun of the Dead
## 3032                                                                                                                                                    Primer
## 3033                                                                                                                             Fearless Vampire Killers, The
## 3034                                                                                                                                             The Machinist
## 3035                                                                                                                                                       Saw
## 3036                                                                                                                                                       Ray
## 3037                                                                                                                         Bad Education (La mala educación)
## 3038                                                                                                                 House of Flying Daggers (Shi mian mai fu)
## 3039                                                                                                                                                      2046
## 3040                                                                                                                                        Audition (Ôdishon)
## 3041                                                                                                                            Suicide Club (Jisatsu saakuru)
## 3042                                                                                                 Very Long Engagement, A (Un long dimanche de fiançailles)
## 3043                                                                                                                                                   Old Boy
## 3044                                                                                                                                               Jacket, The
## 3045                                                                                                                             Return, The (Vozvrashcheniye)
## 3046                                                                                                                                 Downfall (Untergang, Der)
## 3047                                                                                                                                  Kung Fu Hustle (Gong fu)
## 3048                                                                                                                                        Control (Kontroll)
## 3049                                                                                                                                                  Sin City
## 3050                                                                                                                     Hitchhiker's Guide to the Galaxy, The
## 3051                                                                                                                                                Madagascar
## 3052                                                                                                        High Tension (Haute tension) (Switchblade Romance)
## 3053                                                                                                                                         War of the Worlds
## 3054                                                                                                                                            Broken Flowers
## 3055                                                                                                                               Father of the Bride Part II
## 3056                                                                                                                                                      Heat
## 3057                                                                                                                                                   Sabrina
## 3058                                                                                                                                              Sudden Death
## 3059                                                                                                                                                     Nixon
## 3060                                                                                                                                     Sense and Sensibility
## 3061                                                                                                                                                Four Rooms
## 3062                                                                                                                                         Leaving Las Vegas
## 3063                                                                                                                        Twelve Monkeys (a.k.a. 12 Monkeys)
## 3064                                                                                                                                          Dead Man Walking
## 3065                                                                                                                                          Mighty Aphrodite
## 3066                                                                                                                                        Mr. Holland's Opus
## 3067                                                                                                                                              Bed of Roses
## 3068                                                                                                                                                 Screamers
## 3069                                                                                                                                                Juror, The
## 3070                                                                                                                   Things to Do in Denver When You're Dead
## 3071                                                                                                                                        Angels and Insects
## 3072                                                                                                                                              White Squall
## 3073                                                                                                                                               Mary Reilly
## 3074                                                                                                                                              Broken Arrow
## 3075                                                                                                                                                 City Hall
## 3076                                                                                                                                     Up Close and Personal
## 3077                                                                                                                                             Birdcage, The
## 3078                                                                                                                        Star Wars: Episode IV - A New Hope
## 3079                                                                                                                                           River Wild, The
## 3080                                                                                                                                        Executive Decision
## 3081                                                                                                                                                     Fargo
## 3082                                                                                                                                               Primal Fear
## 3083                                                                                                                                                Diabolique
## 3084                                                                                                                                       Mission: Impossible
## 3085                                                                                                                                               Dragonheart
## 3086                                                                                                                                          Mulholland Falls
## 3087                                                                                                                              Truth About Cats & Dogs, The
## 3088                                                                                                                                              Multiplicity
## 3089                                                                                                                                                 Rock, The
## 3090                                                                                                                                                   Twister
## 3091                                                                                                                                                  Spy Hard
## 3092                                                                                                                                              Arrival, The
## 3093                                                                                                                                                Striptease
## 3094                                                                                                                                                      Jack
## 3095                                                                                                                             Independence Day (a.k.a. ID4)
## 3096                                                                                                                                                   Kingpin
## 3097                                                                                                                                                    Eraser
## 3098                                                                                                                                      Nutty Professor, The
## 3099                                                                                                                                                Phenomenon
## 3100                                                                                                                                           Time to Kill, A
## 3101                                                                                                                                      Very Brady Sequel, A
## 3102                                                                                                                                                    Ransom
## 3103                                                                                                                                          Escape from L.A.
## 3104                                                                                                                                                   Tin Cup
## 3105                                                                                                                                 Island of Dr. Moreau, The
## 3106                                                                                                                                                 Toy Story
## 3107                                                                                                                                                   Jumanji
## 3108                                                                                                                                          Grumpier Old Men
## 3109                                                                                                                                         Waiting to Exhale
## 3110                                                                                                                                                      Heat
## 3111                                                                                                                                                   Sabrina
## 3112                                                                                                                                              Sudden Death
## 3113                                                                                                                                                 GoldenEye
## 3114                                                                                                                                   American President, The
## 3115                                                                                                                                                     Nixon
## 3116                                                                                                                                                    Casino
## 3117                                                                                                                                                Get Shorty
## 3118                                                                                                                                                   Copycat
## 3119                                                                                                                                                 Assassins
## 3120                                                                                                                                         Leaving Las Vegas
## 3121                                                                                                  City of Lost Children, The (Cité des enfants perdus, La)
## 3122                                                                                                                        Twelve Monkeys (a.k.a. 12 Monkeys)
## 3123                                                                                                                                                      Babe
## 3124                                                                                                                                                Carrington
## 3125                                                                                                                                          Dead Man Walking
## 3126                                                                                                                                                  Clueless
## 3127                                                                                                                                           Dead Presidents
## 3128                                                                                                                                                To Die For
## 3129                                                                                                                                      Seven (a.k.a. Se7en)
## 3130                                                                                                                                                Pocahontas
## 3131                                                                                                                                       Usual Suspects, The
## 3132                                                                                                                                          Mighty Aphrodite
## 3133                                                                                                                                     Home for the Holidays
## 3134                                                                                                                                Postman, The (Postino, Il)
## 3135                                                                                  Don't Be a Menace to South Central While Drinking Your Juice in the Hood
## 3136                                                                                                                                             Two if by Sea
## 3137                                                                                                                                       From Dusk Till Dawn
## 3138                                                                                                                                              Bed of Roses
## 3139                                                                                                                                              Nick of Time
## 3140                                                                                                                                           Beautiful Girls
## 3141                                                                                                                                              Broken Arrow
## 3142                                                                                                                                          Hate (Haine, La)
## 3143                                                                                                                                             Bottle Rocket
## 3144                                                                                                                            Bridges of Madison County, The
## 3145                                                                                                                                                Braveheart
## 3146                                                                                                                                               Taxi Driver
## 3147                                                                                                                       Rumble in the Bronx (Hont faan kui)
## 3148                                                                                                                                                 Boomerang
## 3149                                                                                                                                    Flirting With Disaster
## 3150                                                                                                                                             Birdcage, The
## 3151                                                                                                                                                  Bad Boys
## 3152                                                                                                                                                 Apollo 13
## 3153                                                                                                                                            Batman Forever
## 3154                                                                                                                         Beauty of the Day (Belle de jour)
## 3155                                                                                                                                                  Clockers
## 3156                                                                                                                                                     Congo
## 3157                                                                                                                                                     Crumb
## 3158                                                                                                                                Die Hard: With a Vengeance
## 3159                                                                                                                                      Doom Generation, The
## 3160                                                                                                                                           Johnny Mnemonic
## 3161                                                                                                                                        Living in Oblivion
## 3162                                                                                                                                         Lord of Illusions
## 3163                                                                                                                                                  Mad Love
## 3164                                                                                                                                                  Mallrats
## 3165                                                                                                                                                     Smoke
## 3166                                                                                                                                                   Species
## 3167                                                                                                                                              Strange Days
## 3168                                                                                                                                             Total Eclipse
## 3169                                                                                                                                                  Unzipped
## 3170                                                                                                                                                Waterworld
## 3171                                                                                                                                        White Man's Burden
## 3172                                                                                                                                            Before Sunrise
## 3173                                                                                                                                                    Clerks
## 3174                                                                                                                                      Death and the Maiden
## 3175                                                                                                                                         Dolores Claiborne
## 3176                                                                                                                           Dumb & Dumber (Dumb and Dumber)
## 3177                                                                                                                                                   Ed Wood
## 3178                                                                                                                                               Hoop Dreams
## 3179                                                                                                                                        Heavenly Creatures
## 3180                                                                                                                                          Immortal Beloved
## 3181                                                                                                        Interview with the Vampire: The Vampire Chronicles
## 3182                                                                                                                        Star Wars: Episode IV - A New Hope
## 3183                                                                                                                                              Little Women
## 3184                                                                                                                                        Little Princess, A
## 3185                                                                                                                                       Legends of the Fall
## 3186                                                                                                                              My Crazy Life (Mi vida loca)
## 3187                                                                                                                                                Milk Money
## 3188                                                                                                                                             Nobody's Fool
## 3189                                                                                                                                          New Jersey Drive
## 3190                                                                                                                                      Natural Born Killers
## 3191                                                                                                                                                  Outbreak
## 3192                                                                                                   Léon: The Professional (a.k.a. The Professional) (Léon)
## 3193                                                                                                                                              Pulp Fiction
## 3194                                                                                                                                                 Quiz Show
## 3195                                                                                                                 Three Colors: Red (Trois couleurs: Rouge)
## 3196                                                                                                                 Three Colors: Blue (Trois couleurs: Bleu)
## 3197                                                                                                                  Three Colors: White (Trzy kolory: Bialy)
## 3198                                                                                                                                                  Stargate
## 3199                                                                                                                                 Shawshank Redemption, The
## 3200                                                                                                                                          To Live (Huozhe)
## 3201                                                                                                               Tales from the Crypt Presents: Demon Knight
## 3202                                                                                                                                    Star Trek: Generations
## 3203                                                                                                                                     Village of the Damned
## 3204                                                                                                                                                 Tommy Boy
## 3205                                                                                                                                      Vanya on 42nd Street
## 3206                                                                                                                               What's Eating Gilbert Grape
## 3207                                                                                                                                   While You Were Sleeping
## 3208                                                                                                                                                  War, The
## 3209                                                                                                                                Ace Ventura: Pet Detective
## 3210                                                                                                         Adventures of Priscilla, Queen of the Desert, The
## 3211                                                                                                                                                  Backbeat
## 3212                                                                                                                                     Bullets Over Broadway
## 3213                                                                                                                                  Clear and Present Danger
## 3214                                                                                                                                               Client, The
## 3215                                                                                                                                                 Crow, The
## 3216                                                                                                                                                      Cobb
## 3217                                                                                                                                              Forrest Gump
## 3218                                                                                                                               Four Weddings and a Funeral
## 3219                                                                                                                                    It Could Happen to You
## 3220                                                                                                                                            Lion King, The
## 3221                                                                                                                                             Little Buddha
## 3222                                                                           Wes Craven's New Nightmare (Nightmare on Elm Street Part 7: Freddy's Finale, A)
## 3223                                                                                                                                                 Mask, The
## 3224                                                                                                                        Mrs. Parker and the Vicious Circle
## 3225                                                                                                                                                Paper, The
## 3226                                                                                                                                             Reality Bites
## 3227                                                                                                                                             Red Rock West
## 3228                                                                                                                                           River Wild, The
## 3229                                                                                                                                                     Speed
## 3230                                                                                                                                                   Timecop
## 3231                                                                                                                                                 True Lies
## 3232                                                                                                                                                      Wolf
## 3233                                                                                                                                                Wyatt Earp
## 3234                                                                                                                                   In the Mouth of Madness
## 3235                                                                                                                                     Age of Innocence, The
## 3236                                                                                                                                                Blown Away
## 3237                                                                                                                                             Bronx Tale, A
## 3238                                                                                                                                                 Cabin Boy
## 3239                                                                                                                                             Carlito's Way
## 3240                                                                                                                                               Cliffhanger
## 3241                                                                                                                                                      Dave
## 3242                                                                                                                                        Dazed and Confused
## 3243                                                                                                                                            Fatal Instinct
## 3244                                                                                                                                                  Fearless
## 3245                                                                                                                                               With Honors
## 3246                                                                                                                                            Flesh and Bone
## 3247                                                                                                                                                 Firm, The
## 3248                                                                                                                                                     Fresh
## 3249                                                                                                                                             Fugitive, The
## 3250                                                                                                                                               Hard Target
## 3251                                                                                                                                            Heaven & Earth
## 3252                                                                                               Englishman Who Went Up a Hill But Came Down a Mountain, The
## 3253                                                                                                                                      Hudsucker Proxy, The
## 3254                                                                                                                                       In the Line of Fire
## 3255                                                                                                                                 In the Name of the Father
## 3256                                                                                                                                            Judgment Night
## 3257                                                                                                                                             Jurassic Park
## 3258                                                                                                                                                Kalifornia
## 3259                                                                                                                                               Killing Zoe
## 3260                                                                                                                                          Last Action Hero
## 3261                                                                                                                                   Man Without a Face, The
## 3262                                                                                                                                         Menace II Society
## 3263                                                                                                                                        Executive Decision
## 3264                                                                                                                                            Mrs. Doubtfire
## 3265                                                                                                                                                     Naked
## 3266                                                                                                                                                 No Escape
## 3267                                                                                                                                          Perfect World, A
## 3268                                                                                                                                              Philadelphia
## 3269                                                                                                                                                Piano, The
## 3270                                                                                                                                         Radioland Murders
## 3271                                                                                                                                   Remains of the Day, The
## 3272                                                                                                                                                Rising Sun
## 3273                                                                                                                                                 RoboCop 3
## 3274                                                                                                                                 Robin Hood: Men in Tights
## 3275                                                                                                                                            Romper Stomper
## 3276                                                                                                                                          Schindler's List
## 3277                                                                                                                               Searching for Bobby Fischer
## 3278                                                                                                                                        Secret Garden, The
## 3279                                                                                                                                               Shadowlands
## 3280                                                                                                                                                Short Cuts
## 3281                                                                                                                                                    Sirens
## 3282                                                                                                                                              Blade Runner
## 3283                                                                                                                                        Surviving the Game
## 3284                                                                                                                                                 Threesome
## 3285                                                                                                                           Nightmare Before Christmas, The
## 3286                                                                                                                                              True Romance
## 3287                                                                                                                                  Welcome to the Dollhouse
## 3288                                                                                                                                          Princess Caraboo
## 3289                                                                                                                                                Home Alone
## 3290                                                                                                                                                   Aladdin
## 3291                                                                                                                                Terminator 2: Judgment Day
## 3292                                                                                                                                        Dances with Wolves
## 3293                                                                                                                                                    Batman
## 3294                                                                                                                                 Silence of the Lambs, The
## 3295                                                                                                                           Snow White and the Seven Dwarfs
## 3296                                                                                                                                      Beauty and the Beast
## 3297                                                                                                                                                 Pinocchio
## 3298                                                                                                                                              Pretty Woman
## 3299                                                                                                                                           Wild Bunch, The
## 3300                                                                                                                                                     Fargo
## 3301                                                                                                                                               Heavy Metal
## 3302                                                                                                                                           Pallbearer, The
## 3303                                                                                                                                               Primal Fear
## 3304                                                                                                                                       Mission: Impossible
## 3305                                                                                                                                               Dragonheart
## 3306                                                                                                                                 James and the Giant Peach
## 3307                                                                                                                                                      Fear
## 3308                                                                                                                             Kids in the Hall: Brain Candy
## 3309                                                                                                                                                Barbarella
## 3310                                                                                                                                                      Boys
## 3311                                                                                                                                                Craft, The
## 3312                                                                                                                                                 Rock, The
## 3313                                                                                                                                                   Twister
## 3314                                                                                                                                              Arrival, The
## 3315                                                                                      Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb
## 3316                                                                                                                             Independence Day (a.k.a. ID4)
## 3317                                                                                                                                            Cable Guy, The
## 3318                                                                                                                                                   Kingpin
## 3319                                                                                                                                                    Eraser
## 3320                                                                                                                                      Nutty Professor, The
## 3321                                                                                                                                          Frighteners, The
## 3322                                                                                                                                                 Lone Star
## 3323                                                                                                                                                Phenomenon
## 3324                                                                                                                                           Time to Kill, A
## 3325                                                                                                                                            Godfather, The
## 3326                                                                                                                                 Island of Dr. Moreau, The
## 3327                                                                           Halloween: The Curse of Michael Myers (Halloween 6: The Curse of Michael Myers)
## 3328                                                                                                                                   Philadelphia Story, The
## 3329                                                                                                                                    Breakfast at Tiffany's
## 3330                                                                                                                                                   Vertigo
## 3331                                                                                                                                               Rear Window
## 3332                                                                                                                                        North by Northwest
## 3333                                                                                                                                                   Charade
## 3334                                                                                                                                                Casablanca
## 3335                                                                                                                                       Maltese Falcon, The
## 3336                                                                                                                                              My Fair Lady
## 3337                                                                                                                                                   Sabrina
## 3338                                                                                                                                             Roman Holiday
## 3339                                                                                                                                      Little Princess, The
## 3340                                                                                                                                        Gone with the Wind
## 3341                                                                                                                                              Citizen Kane
## 3342                                                                                                                                     2001: A Space Odyssey
## 3343                                                                                                                                                   Rebecca
## 3344                                                                                                                                     Foreign Correspondent
## 3345                                                                                                                                                 Notorious
## 3346                                                                                                                                                Spellbound
## 3347                                                                                                                                          To Catch a Thief
## 3348                                                                                                                             Adventures of Robin Hood, The
## 3349                                                                                                                                             Thin Man, The
## 3350                                                                                                                                           His Girl Friday
## 3351                                                                                                                                     It's a Wonderful Life
## 3352                                                                                                                              Mr. Smith Goes to Washington
## 3353                                                                                                                                          Bringing Up Baby
## 3354                                                                                                                                             39 Steps, The
## 3355                                                                                                                                         A Walk in the Sun
## 3356                                                                                                                                  Night of the Living Dead
## 3357                                                                                                                                        African Queen, The
## 3358                                                                                                                                                    Picnic
## 3359                                                                                                                                          Parent Trap, The
## 3360                                                                                                                              20,000 Leagues Under the Sea
## 3361                                                                                                                                                Cinderella
## 3362                                                                                                                      Winnie the Pooh and the Blustery Day
## 3363                                                                                                                                              Mary Poppins
## 3364                                                                                                                                                     Dumbo
## 3365                                                                                                                                       Sound of Music, The
## 3366                                                                                                                                                  Die Hard
## 3367                                                                                                                                            Secrets & Lies
## 3368                                                                                                                                        That Thing You Do!
## 3369                                                                                                                                                  Swingers
## 3370                                                                                                                                                  Sleepers
## 3371                                                                                                                       Willy Wonka & the Chocolate Factory
## 3372                                                                                                                                                   Sleeper
## 3373                                                                                                                                      Fish Called Wanda, A
## 3374                                                                                                                              Monty Python's Life of Brian
## 3375                                                                                                                                            Candidate, The
## 3376                                                                                                                                          Bonnie and Clyde
## 3377                                                                                                                                         Dial M for Murder
## 3378                                                                                                                                             Dirty Dancing
## 3379                                                                                                                                            Reservoir Dogs
## 3380                                                                                                                                                   Platoon
## 3381                                                                                                                                       Weekend at Bernie's
## 3382                                                                                                                                            Basic Instinct
## 3383                                                                                                                                                Doors, The
## 3384                                                                                                                                          Crying Game, The
## 3385                                                                                                                                       Glengarry Glen Ross
## 3386                                                                                                                                E.T. the Extra-Terrestrial
## 3387                                                                                                                                                   Top Gun
## 3388                                                                                                                                     Rebel Without a Cause
## 3389                                                                                                                                 Streetcar Named Desire, A
## 3390                                                                                                                                            On Golden Pond
## 3391                                                                                                                                            Drop Dead Fred
## 3392                                                                                                                                                Abyss, The
## 3393                                                                                                                                                  Fog, The
## 3394                                                                                                                                      Escape from New York
## 3395                                                                                                                                              Howling, The
## 3396                                                                                                                           Monty Python and the Holy Grail
## 3397                                                                                                                      Wallace & Gromit: The Wrong Trousers
## 3398                                                                                                                         Tin Drum, The (Blechtrommel, Die)
## 3399                                                                                                                                               Bob Roberts
## 3400                                                                                                                                              Delicatessen
## 3401                                                                                               Double Life of Veronique, The (Double Vie de Véronique, La)
## 3402                                                                                                                                            Paths of Glory
## 3403                                                                                                                                             Grifters, The
## 3404                                                                                                                                      English Patient, The
## 3405                                                                                                                                              My Left Foot
## 3406                                                                                                                           One Flew Over the Cuckoo's Nest
## 3407                                                                                                            Star Wars: Episode V - The Empire Strikes Back
## 3408                                                                                                                                       Princess Bride, The
## 3409                                                                                   Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 3410                                                                                                                                                    Brazil
## 3411                                                                                                                                                    Aliens
## 3412                                                                                        Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il)
## 3413                                                                                                                                              12 Angry Men
## 3414                                                                                                                                        Lawrence of Arabia
## 3415                                                                                                                                       Clockwork Orange, A
## 3416                                                                                                                                     To Kill a Mockingbird
## 3417                                                                                                                                            Apocalypse Now
## 3418                                                                                                                Star Wars: Episode VI - Return of the Jedi
## 3419                                                                                                                 Wings of Desire (Himmel über Berlin, Der)
## 3420                                                                                                                                            Third Man, The
## 3421                                                                                                                                                Goodfellas
## 3422                                                                                                                                                     Alien
## 3423                                                                                                                                          Army of Darkness
## 3424                                                                                                                            Big Blue, The (Grand bleu, Le)
## 3425                                                                                                                                                       Ran
## 3426                                                                                                                        Killer, The (Die xue shuang xiong)
## 3427                                                                                                                                                    Psycho
## 3428                                                                                                                                       Blues Brothers, The
## 3429                                                                                                                                   Godfather: Part II, The
## 3430                                                                                                                                         Full Metal Jacket
## 3431                                                                                                                                                   Amadeus
## 3432                                                                                                                               Once Upon a Time in America
## 3433                                                                                                                                               Raging Bull
## 3434                                                                                                                                                Annie Hall
## 3435                                                                                                                                          Right Stuff, The
## 3436                                                                                                                                     Boot, Das (Boat, The)
## 3437                                                                                                                  Seventh Seal, The (Sjunde inseglet, Det)
## 3438                                                                                                                                                Local Hero
## 3439                                                                                                                                           Terminator, The
## 3440                                                                                                                                                     Glory
## 3441                                                                                                                                                 Manhattan
## 3442                                                                                                                                        Dead Poets Society
## 3443                                                                                                                                             Graduate, The
## 3444                                                                                                                                             Touch of Evil
## 3445                                                                                                                                 Femme Nikita, La (Nikita)
## 3446                                                                                                                             Bridge on the River Kwai, The
## 3447                                                                                                                                                 Chinatown
## 3448                                                                                                                            Day the Earth Stood Still, The
## 3449                                                                                                                         Treasure of the Sierra Madre, The
## 3450                                                                                                                                        Better Off Dead...
## 3451                                                                                                                                              Shining, The
## 3452                                                                                                                                               Stand by Me
## 3453                                                                                                                                                         M
## 3454                                                                                                                               Evil Dead II (Dead by Dawn)
## 3455                                                                                                                                         Great Escape, The
## 3456                                                                                                                                          Deer Hunter, The
## 3457                                                                                                                                             Groundhog Day
## 3458                                                                                                                                                Unforgiven
## 3459                                                                                                                                 Manchurian Candidate, The
## 3460                                                                                                                                        Pump Up the Volume
## 3461                                                                                                                                      Arsenic and Old Lace
## 3462                                                                                                                                        Back to the Future
## 3463                                                                                                                                      Fried Green Tomatoes
## 3464                                                                                                                                                    Patton
## 3465                                                                                                                                                     Akira
## 3466                                                                                                                                                Highlander
## 3467                                                                                                                                            Cool Hand Luke
## 3468                                                                                                                                        Young Frankenstein
## 3469                                                                                                                                                  Fantasia
## 3470                                                                                                                                                 High Noon
## 3471                                                                                                                                            Big Sleep, The
## 3472                                                                                                                                                  Heathers
## 3473                                                                                                                                         Somewhere in Time
## 3474                                                                                                                                                   Ben-Hur
## 3475                                                                                                                                        This Is Spinal Tap
## 3476                                                                                                                                    Some Kind of Wonderful
## 3477                                                                                                                        Indiana Jones and the Last Crusade
## 3478                                                                                                                                               Being There
## 3479                                                                                                                                               Real Genius
## 3480                                                                                                                                      Pink Floyd: The Wall
## 3481                                                                                                                                       Killing Fields, The
## 3482                                                                                                                                           Field of Dreams
## 3483                                                                                                                        Butch Cassidy and the Sundance Kid
## 3484                                                                                                        Until the End of the World (Bis ans Ende der Welt)
## 3485                                                                                                                                   When Harry Met Sally...
## 3486                                                                                                                                   Alien³ (a.k.a. Alien 3)
## 3487                                                                                                                           American Werewolf in London, An
## 3488                                                                                                                                    Amityville Horror, The
## 3489                                                                                                                                            Believers, The
## 3490                                                                                                                                                Birds, The
## 3491                                                                                                                                                 Blob, The
## 3492                                                                                                                                                Body Parts
## 3493                                                                                                                           Dracula (Bram Stoker's Dracula)
## 3494                                                                                                                                                  Candyman
## 3495                                                                                                                                                 Cape Fear
## 3496                                                                                                                                                 Cape Fear
## 3497                                                                                                                                                    Carrie
## 3498                                                                                                                                Nightmare on Elm Street, A
## 3499                                                                                                         Nosferatu (Nosferatu, eine Symphonie des Grauens)
## 3500                                                                                                                                                 Omen, The
## 3501                                                                                                                                        Breaking the Waves
## 3502                                                                                                                                  Star Trek: First Contact
## 3503                                                                                                                                                     Shine
## 3504                                                                                                                                                Die Hard 2
## 3505                                                                                                                             Star Trek: The Motion Picture
## 3506                                                                                                                    Star Trek VI: The Undiscovered Country
## 3507                                                                                                                           Star Trek V: The Final Frontier
## 3508                                                                                                                           Star Trek II: The Wrath of Khan
## 3509                                                                                                                       Star Trek III: The Search for Spock
## 3510                                                                                                                             Star Trek IV: The Voyage Home
## 3511                                                                                                                                            Batman Returns
## 3512                                                                                                                                                Young Guns
## 3513                                                                                                                                                    Grease
## 3514                                                                                                                                                  Grease 2
## 3515                                                                                                                                          Marked for Death
## 3516                                                                                                                                               Under Siege
## 3517                                                                                                                                                      Jaws
## 3518                                                                                                                                                    Jaws 2
## 3519                                                                                                                                                  Jaws 3-D
## 3520                                                                                                                                             Mars Attacks!
## 3521                                                                                                                                             Jerry Maguire
## 3522                                                                                                                                           Raising Arizona
## 3523                                                                                                                                                  Sneakers
## 3524                                                                                                                           Beavis and Butt-Head Do America
## 3525                                                                                                                                 Last of the Mohicans, The
## 3526                                                                                                                                              Benny & Joon
## 3527                                                                                                                      Seven Samurai (Shichinin no samurai)
## 3528                                                                                                                        Blue Angel, The (Blaue Engel, Der)
## 3529                                                                                                                                                 Toy Story
## 3530                                                                                                                        Twelve Monkeys (a.k.a. 12 Monkeys)
## 3531                                                                                                                                                      Babe
## 3532                                                                                                                                    Muppet Treasure Island
## 3533                                                                                                                                                Braveheart
## 3534                                                                                                                                                 Apollo 13
## 3535                                                                                                                                            Batman Forever
## 3536                                                                                                                                     Walk in the Clouds, A
## 3537                                                                                                                           Dumb & Dumber (Dumb and Dumber)
## 3538                                                                                                                        Star Wars: Episode IV - A New Hope
## 3539                                                                                                                                              Pulp Fiction
## 3540                                                                                                                                                  Stargate
## 3541                                                                                                                                 Shawshank Redemption, The
## 3542                                                                                                                                Ace Ventura: Pet Detective
## 3543                                                                                                                                              Forrest Gump
## 3544                                                                                                                                            Lion King, The
## 3545                                                                                                                                                 Mask, The
## 3546                                                                                                                                                 True Lies
## 3547                                                                                                                                             Fugitive, The
## 3548                                                                                                                                             Jurassic Park
## 3549                                                                                                                                    Much Ado About Nothing
## 3550                                                                                                                                            Mrs. Doubtfire
## 3551                                                                                                                                          Schindler's List
## 3552                                                                                                                                                   Aladdin
## 3553                                                                                                                                        Dances with Wolves
## 3554                                                                                                                                                    Batman
## 3555                                                                                                                                 Silence of the Lambs, The
## 3556                                                                                                                                      Beauty and the Beast
## 3557                                                                                                                                              Pretty Woman
## 3558                                                                                                                                                     Fargo
## 3559                                                                                                                   Mystery Science Theater 3000: The Movie
## 3560                                                                                                           Wallace & Gromit: The Best of Aardman Animation
## 3561                                                                                                                                                   Twister
## 3562                                                                                                                           Wallace & Gromit: A Close Shave
## 3563                                                                                      Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb
## 3564                                                                                                                             Independence Day (a.k.a. ID4)
## 3565                                                                                                                                            Godfather, The
## 3566                                                                                                                                               Rear Window
## 3567                                                                                                                                     It Happened One Night
## 3568                                                                                                                                                Casablanca
## 3569                                                                                                                              20,000 Leagues Under the Sea
## 3570                                                                                                                                E.T. the Extra-Terrestrial
## 3571                                                                                                                                     Rebel Without a Cause
## 3572                                                                                                                           Monty Python and the Holy Grail
## 3573                                                                                                                      Wallace & Gromit: The Wrong Trousers
## 3574                                                                                                            Star Wars: Episode V - The Empire Strikes Back
## 3575                                                                                   Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 3576                                                                                                                                        Lawrence of Arabia
## 3577                                                                                                                                     To Kill a Mockingbird
## 3578                                                                                                                Star Wars: Episode VI - Return of the Jedi
## 3579                                                                                                                                             Graduate, The
## 3580                                                                                                                                      Arsenic and Old Lace
## 3581                                                                                                                                        Back to the Future
## 3582                                                                                                                                                    Gandhi
## 3583                                                                                                                                                Young Guns
## 3584                                                                                                                                              Benny & Joon
## 3585                                                                                                                                 Men in Black (a.k.a. MIB)
## 3586                                                                                                                                             Sliding Doors
## 3587                                                                                                                                                     Mulan
## 3588                                                                                                                                         Last Emperor, The
## 3589                                                                                                                                   Poseidon Adventure, The
## 3590                                                                                                                                    Jewel of the Nile, The
## 3591                                                                                                                                               Matrix, The
## 3592                                                                                                                                         Ideal Husband, An
## 3593                                                                                                                                          Sixth Sense, The
## 3594                                                                                                                                            Boys Don't Cry
## 3595                                                                                                                                                Fight Club
## 3596                                                                                                                                    Cider House Rules, The
## 3597                                                                                                                                                 Stalag 17
## 3598                                                                                                                           Captain Horatio Hornblower R.N.
## 3599                                                                                                                                                     U-571
## 3600                                                                                                                                           What About Bob?
## 3601                                                                                                        Lord of the Rings: The Fellowship of the Ring, The
## 3602                                                                                                                          Importance of Being Earnest, The
## 3603                                                                                                             Spirited Away (Sen to Chihiro no kamikakushi)
## 3604                                                                                                                                                 Gallipoli
## 3605                                                                                                                                                 Lady Jane
## 3606                                                                                                                                               Whale Rider
## 3607                                                                                                                                                 Anastasia
## 3608                                                                                                                                          Secondhand Lions
## 3609                                                                                                            Lord of the Rings: The Return of the King, The
## 3610                                                                                                                                    I Was a Male War Bride
## 3611                                                                                                                                          Children of Dune
## 3612                                                                                                                                 Anne of the Thousand Days
## 3613                                                                                                                                             Memphis Belle
## 3614                                                                                                                                    Farmer's Daughter, The
## 3615                                                                                                                                         Finding Neverland
## 3616                                                                                                                                                    Becket
## 3617                                                                                                                                             Sergeant York
## 3618                                                                                                                                           We're No Angels
## 3619                                                                                                          Wallace & Gromit in The Curse of the Were-Rabbit
## 3620                                                                                                                       Red Balloon, The (Ballon rouge, Le)
## 3621                                                                                                                                             Amazing Grace
## 3622                                                                                                                                                  Stardust
## 3623                                                                                                                                         Definitely, Maybe
## 3624                                                                                                                                       Horton Hears a Who!
## 3625                                                                                                                                             Kung Fu Panda
## 3626                                                                                                        Wallace and Gromit in 'A Matter of Loaf and Death'
## 3627                                                                                                                                                 GoldenEye
## 3628                                                                                                                                                Get Shorty
## 3629                                                                                                                        Twelve Monkeys (a.k.a. 12 Monkeys)
## 3630                                                                                                                                                      Babe
## 3631                                                                                                                                          Dead Man Walking
## 3632                                                                                                                                             Mortal Kombat
## 3633                                                                                                                                      Seven (a.k.a. Se7en)
## 3634                                                                                                                                              Broken Arrow
## 3635                                                                                                                       Rumble in the Bronx (Hont faan kui)
## 3636                                                                                                                                                   Rob Roy
## 3637                                                                                                                   Mighty Morphin Power Rangers: The Movie
## 3638                                                                                                                                                   Species
## 3639                                                                                                                                                Waterworld
## 3640                                                                                                                        Star Wars: Episode IV - A New Hope
## 3641                                                                                                                                       Legends of the Fall
## 3642                                                                                                                Mary Shelley's Frankenstein (Frankenstein)
## 3643                                                                                                                                      Natural Born Killers
## 3644                                                                                                                                              Pulp Fiction
## 3645                                                                                                                                                  Stargate
## 3646                                                                                                                                    Star Trek: Generations
## 3647                                                                                                                                                 Tommy Boy
## 3648                                                                                                                                Ace Ventura: Pet Detective
## 3649                                                                                                                                              Forrest Gump
## 3650                                                                                                                                                     Speed
## 3651                                                                                                                                                   Timecop
## 3652                                                                                                                                                 True Lies
## 3653                                                                                                                                            Street Fighter
## 3654                                                                                                                                            Demolition Man
## 3655                                                                                                                                             Fugitive, The
## 3656                                                                                                                                      Hot Shots! Part Deux
## 3657                                                                                                                                             Jurassic Park
## 3658                                                                                                                                          Last Action Hero
## 3659                                                                                                                                                Piano, The
## 3660                                                                                                                                          Schindler's List
## 3661                                                                                                                                              Blade Runner
## 3662                                                                                                                              So I Married an Axe Murderer
## 3663                                                                                                                           Nightmare Before Christmas, The
## 3664                                                                                                                                                 Tombstone
## 3665                                                                                                                                                Home Alone
## 3666                                                                                                                                Terminator 2: Judgment Day
## 3667                                                                                                                                        Dances with Wolves
## 3668                                                                                                                                                    Batman
## 3669                                                                                                                                 Silence of the Lambs, The
## 3670                                                                                                                           Snow White and the Seven Dwarfs
## 3671                                                                                                                                      Beauty and the Beast
## 3672                                                                                                                                              Pretty Woman
## 3673                                                                                                                                               Heavy Metal
## 3674                                                                                                                                       Mission: Impossible
## 3675                                                                                                                                                 Rock, The
## 3676                                                                                      Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb
## 3677                                                                                                                             Independence Day (a.k.a. ID4)
## 3678                                                                                                                                          Escape from L.A.
## 3679                                                                                                                                            Godfather, The
## 3680                                                                                                                                       Singin' in the Rain
## 3681                                                                                                                                        North by Northwest
## 3682                                                                                                                                          Some Like It Hot
## 3683                                                                                                                                                Casablanca
## 3684                                                                                                                                       Maltese Falcon, The
## 3685                                                                                                                                              My Fair Lady
## 3686                                                                                                                                      Meet Me in St. Louis
## 3687                                                                                                                                         Wizard of Oz, The
## 3688                                                                                                                                        Gone with the Wind
## 3689                                                                                                                                          My Favorite Year
## 3690                                                                                                                                              Citizen Kane
## 3691                                                                                                                                     2001: A Space Odyssey
## 3692                                                                                                                                                   Top Hat
## 3693                                                                                                                                                     Giant
## 3694                                                                                                                               Around the World in 80 Days
## 3695                                                                                                                                     It's a Wonderful Life
## 3696                                                                                                                              Mr. Smith Goes to Washington
## 3697                                                                                                                                        African Queen, The
## 3698                                                                                                                                                Old Yeller
## 3699                                                                                                                              20,000 Leagues Under the Sea
## 3700                                                                                                                                                Cinderella
## 3701                                                                                                                                              Mary Poppins
## 3702                                                                                                                                  Bedknobs and Broomsticks
## 3703                                                                                                                                       Alice in Wonderland
## 3704                                                                                                                                       Sound of Music, The
## 3705                                                                                                                                                  Die Hard
## 3706                                                                                                                                      Fish Called Wanda, A
## 3707                                                                                                                              Monty Python's Life of Brian
## 3708                                                                                                                                             Dirty Dancing
## 3709                                                                                                                                            Reservoir Dogs
## 3710                                                                                                                                                   Platoon
## 3711                                                                                                                                       Weekend at Bernie's
## 3712                                                                                                                                E.T. the Extra-Terrestrial
## 3713                                                                                                                                     Rebel Without a Cause
## 3714                                                                                                                                            On Golden Pond
## 3715                                                                                                                           Return of the Pink Panther, The
## 3716                                                                                                                                                Abyss, The
## 3717                                                                                                                                      Escape from New York
## 3718                                                                                                                                          Private Benjamin
## 3719                                                                                                                           Monty Python and the Holy Grail
## 3720                                                                                                                      Wallace & Gromit: The Wrong Trousers
## 3721                                                                                                                  Cook the Thief His Wife & Her Lover, The
## 3722                                                                                                                                              Delicatessen
## 3723                                                                                                                           One Flew Over the Cuckoo's Nest
## 3724                                                                                                            Star Wars: Episode V - The Empire Strikes Back
## 3725                                                                                   Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 3726                                                                                                                                                    Brazil
## 3727                                                                                                                                                    Aliens
## 3728                                                                                                                                              12 Angry Men
## 3729                                                                                                                                       Clockwork Orange, A
## 3730                                                                                                                                            Apocalypse Now
## 3731                                                                                                                Star Wars: Episode VI - Return of the Jedi
## 3732                                                                                                                                                     Alien
## 3733                                                                                                                                                       Ran
## 3734                                                                                                                                   Godfather: Part II, The
## 3735                                                                                                                                         Full Metal Jacket
## 3736                                                                                                                                                   Henry V
## 3737                                                                                                                                                   Amadeus
## 3738                                                                                                                                               Raging Bull
## 3739                                                                                                                                          Right Stuff, The
## 3740                                                                                                                                                Sting, The
## 3741                                                                                                                                           Terminator, The
## 3742                                                                                                                                        Dead Poets Society
## 3743                                                                                                                             Bridge on the River Kwai, The
## 3744                                                                                                                                                 Chinatown
## 3745                                                                                                                            Day the Earth Stood Still, The
## 3746                                                                                                                         Treasure of the Sierra Madre, The
## 3747                                                                                                                                                 Duck Soup
## 3748                                                                                                                                               Stand by Me
## 3749                                                                                                                                          Deer Hunter, The
## 3750                                                                                                                                             Groundhog Day
## 3751                                                                                                                                                Unforgiven
## 3752                                                                                                                                        Back to the Future
## 3753                                                                                                                                                Highlander
## 3754                                                                                                                                       Great Dictator, The
## 3755                                                                                                                                                  Fantasia
## 3756                                                                                                                                                 High Noon
## 3757                                                                                                                                                   Ben-Hur
## 3758                                                                                                                                        This Is Spinal Tap
## 3759                                                                                                                        Indiana Jones and the Last Crusade
## 3760                                                                                                                                               Being There
## 3761                                                                                                                        Unbearable Lightness of Being, The
## 3762                                                                                                                                       Room with a View, A
## 3763                                                                                                                                               Real Genius
## 3764                                                                                                                                      Pink Floyd: The Wall
## 3765                                                                                                                                          Forbidden Planet
## 3766                                                                                                                                           Field of Dreams
## 3767                                                                                                                                Man Who Would Be King, The
## 3768                                                                                                                                   Alien³ (a.k.a. Alien 3)
## 3769                                                                                                                           American Werewolf in London, An
## 3770                                                                                                                                    Amityville Horror, The
## 3771                                                                                                                                                 Blob, The
## 3772                                                                                                                                                    Carrie
## 3773                                                                                                                                                Cat People
## 3774                                                                                                                                                 Omen, The
## 3775                                                                                                                                                Die Hard 2
## 3776                                                                                                                             Star Trek: The Motion Picture
## 3777                                                                                                                    Star Trek VI: The Undiscovered Country
## 3778                                                                                                                           Star Trek V: The Final Frontier
## 3779                                                                                                                           Star Trek II: The Wrath of Khan
## 3780                                                                                                                       Star Trek III: The Search for Spock
## 3781                                                                                                                             Star Trek IV: The Voyage Home
## 3782                                                                                                                                                    Grease
## 3783                                                                                                                                                      Jaws
## 3784                                                                                                                                                    Jaws 2
## 3785                                                                                                                                           Raising Arizona
## 3786                                                                                                                                                   Tin Men
## 3787                                                                                                                                                Turbulence
## 3788                                                                                                                                     M*A*S*H (a.k.a. MASH)
## 3789                                                                                                                        Twelve Monkeys (a.k.a. 12 Monkeys)
## 3790                                                                                                                                             Mortal Kombat
## 3791                                                                                                                                      Seven (a.k.a. Se7en)
## 3792                                                                                                                                                Pocahontas
## 3793                                                                                                                                       From Dusk Till Dawn
## 3794                                                                                                                                            Batman Forever
## 3795                                                                                                                                                    Casper
## 3796                                                                                                                                                 Desperado
## 3797                                                                                                                                               Judge Dredd
## 3798                                                                                                                                                Waterworld
## 3799                                                                                                                           Dumb & Dumber (Dumb and Dumber)
## 3800                                                                                                                                                   Ed Wood
## 3801                                                                                                        Interview with the Vampire: The Vampire Chronicles
## 3802                                                                                                                        Star Wars: Episode IV - A New Hope
## 3803                                                                                                                                               Major Payne
## 3804                                                                                                                                              Pulp Fiction
## 3805                                                                                                                                           Specialist, The
## 3806                                                                                                                                          Flintstones, The
## 3807                                                                                                                                              Forrest Gump
## 3808                                                                                                                                            Demolition Man
## 3809                                                                                                                                             Fugitive, The
## 3810                                                                                                                                             Jurassic Park
## 3811                                                                                                                                          Last Action Hero
## 3812                                                                                                                                              Blade Runner
## 3813                                                                                                                           Nightmare Before Christmas, The
## 3814                                                                                                                                     Three Musketeers, The
## 3815                                                                                                                                              True Romance
## 3816                                                                                                                                                Home Alone
## 3817                                                                                                                                                   Aladdin
## 3818                                                                                                                                Terminator 2: Judgment Day
## 3819                                                                                                                                                    Batman
## 3820                                                                                                                                 Silence of the Lambs, The
## 3821                                                                                                                                       Mission: Impossible
## 3822                                                                                                                                            Cable Guy, The
## 3823                                                                                                                                                   Kingpin
## 3824                                                                                                                                            Godfather, The
## 3825                                                                                                                              Monty Python's Life of Brian
## 3826                                                                                                                                            Reservoir Dogs
## 3827                                                                                                                                E.T. the Extra-Terrestrial
## 3828                                                                                                                                                   Top Gun
## 3829                                                                                                                      Wallace & Gromit: The Wrong Trousers
## 3830                                                                                                            Star Wars: Episode V - The Empire Strikes Back
## 3831                                                                                   Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 3832                                                                                                                                                    Aliens
## 3833                                                                                        Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il)
## 3834                                                                                                                                            Apocalypse Now
## 3835                                                                                                                Star Wars: Episode VI - Return of the Jedi
## 3836                                                                                                                                                     Alien
## 3837                                                                                                                                          Army of Darkness
## 3838                                                                                                                                           Terminator, The
## 3839                                                                                                                                                 Bad Taste
## 3840                                                                                                                                          Deer Hunter, The
## 3841                                                                                                                                        Back to the Future
## 3842                                                                                                                        Indiana Jones and the Last Crusade
## 3843                                                                                                                                   Alien³ (a.k.a. Alien 3)
## 3844                                                                                                                           Dracula (Bram Stoker's Dracula)
## 3845                                                                                                                                  Star Trek: First Contact
## 3846                                                                                                                             Star Trek: The Motion Picture
## 3847                                                                                                                    Star Trek VI: The Undiscovered Country
## 3848                                                                                                                           Star Trek II: The Wrath of Khan
## 3849                                                                                                                       Star Trek III: The Search for Spock
## 3850                                                                                                                             Star Trek IV: The Voyage Home
## 3851                                                                                                                                            Batman Returns
## 3852                                                                                                                                                      Jaws
## 3853                                                                                                                                             Mars Attacks!
## 3854                                                                                                                                        Fifth Element, The
## 3855                                                                                                                            Lost World: Jurassic Park, The
## 3856                                                                                                                                 Men in Black (a.k.a. MIB)
## 3857                                                                                                                                             Air Force One
## 3858                                                                                                                                                 Game, The
## 3859                                                                                                                                           Full Monty, The
## 3860                                                                                                                                      The Devil's Advocate
## 3861                                                                                                                                          Truman Show, The
## 3862                                                                                                                                                   Amistad
## 3863                                                                                                                                                   Titanic
## 3864                                                                                                                                       Tomorrow Never Dies
## 3865                                                                                                                                  Replacement Killers, The
## 3866                                                                                                                                             Suicide Kings
## 3867                                                                                                                                               Deep Impact
## 3868                                                                                                                            Fear and Loathing in Las Vegas
## 3869                                                                                                                            X-Files: Fight the Future, The
## 3870                                                                                                                                                Armageddon
## 3871                                                                                                                              There's Something About Mary
## 3872                                                                                                                                             Exorcist, The
## 3873                                                                                                                                        Mask of Zorro, The
## 3874                                                                                                                                Back to the Future Part II
## 3875                                                                                                                                  Godfather: Part III, The
## 3876                                                                                                                                       Little Mermaid, The
## 3877                                                                                                                      Indiana Jones and the Temple of Doom
## 3878                                                                                                                                               Beetlejuice
## 3879                                                                                                                                                      Cube
## 3880                                                                                                                                                Thing, The
## 3881                                                                                                                                       Edward Scissorhands
## 3882                                                                                                                              History of the World: Part I
## 3883                                                                                                                                            Meet Joe Black
## 3884                                                                                                                                Rambo: First Blood Part II
## 3885                                                                                                                                               Patch Adams
## 3886                                                                                                                              Texas Chainsaw Massacre, The
## 3887                                                                                                                                              Office Space
## 3888                                                                                                                         Lock, Stock & Two Smoking Barrels
## 3889                                                                                                                                               Matrix, The
## 3890                                                                                                                                                Entrapment
## 3891                                                                                                                                                Dick Tracy
## 3892                                                                                                                                                Mummy, The
## 3893                                                                                                                            Rocky Horror Picture Show, The
## 3894                                                                                                                                     Thirteenth Floor, The
## 3895                                                                                                                     Austin Powers: The Spy Who Shagged Me
## 3896                                                                                                                      South Park: Bigger, Longer and Uncut
## 3897                                                                                                                                            Wild Wild West
## 3898                                                                                                                                  Blair Witch Project, The
## 3899                                                                                                                                            Eyes Wide Shut
## 3900                                                                                                                       Ghostbusters (a.k.a. Ghost Busters)
## 3901                                                                                                                                           Ghostbusters II
## 3902                                                                                                                                               Mystery Men
## 3903                                                                                                                                          Sixth Sense, The
## 3904                                                                                                                                  Thomas Crown Affair, The
## 3905                                                                                                                                           American Beauty
## 3906                                                                                                                                           Double Jeopardy
## 3907                                                                                                                            Home Alone 2: Lost in New York
## 3908                                                                                                                                                Fight Club
## 3909                                                                                                                                                   RoboCop
## 3910                                                                                                                                  Who Framed Roger Rabbit?
## 3911                                                                                                                                           Licence to Kill
## 3912                                                                                                                                                Spaceballs
## 3913                                                                                                                                                     Dogma
## 3914                                                                                                                                             Sleepy Hollow
## 3915                                                                                                                                  World Is Not Enough, The
## 3916                                                                                                                                           Green Mile, The
## 3917                                                                                                                                  Talented Mr. Ripley, The
## 3918                                                                                                                              Batman: Mask of the Phantasm
## 3919                                                                                                                                             Wayne's World
## 3920                                                                                                                                                Beach, The
## 3921                                                                                                                                               Pitch Black
## 3922                                                                                                                                           Mission to Mars
## 3923                                                                                                                                           Ninth Gate, The
## 3924                                                                                                                                           Erin Brockovich
## 3925                                                                                                                              Teenage Mutant Ninja Turtles
## 3926                                                                                                                                                  Predator
## 3927                                                                                                                                           American Psycho
## 3928                                                                                                                                                 Gladiator
## 3929                                                                                                                                    Mission: Impossible II
## 3930                                                                                                                                                Predator 2
## 3931                                                                                                                                               Chicken Run
## 3932                                                                                                                                                     X-Men
## 3933                                                                                                                                           What About Bob?
## 3934                                                                                                                                                Hollow Man
## 3935                                                                                                           Naked Gun: From the Files of Police Squad!, The
## 3936                                                                                                                                          Charlie's Angels
## 3937                                                                                                                                               Unbreakable
## 3938                                                                                                          Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 3939                                                                                                                                            Vertical Limit
## 3940                                                                                                                                                    Snatch
## 3941                                                                                                                                     Dude, Where's My Car?
## 3942                                                                                                                                O Brother, Where Art Thou?
## 3943                                                                                                                                            Evil Dead, The
## 3944                                                                                                                                                   Memento
## 3945                                                                                                                                                      Blow
## 3946                                                                                                                                                  Scarface
## 3947                                                                                                                                                     Shrek
## 3948                                                                                                                              A.I. Artificial Intelligence
## 3949                                                                                                              Crimson Rivers, The (Rivières pourpres, Les)
## 3950                                                                                                                                        Planet of the Apes
## 3951                                                                                                                                               Rush Hour 2
## 3952                                                                                                                                               Others, The
## 3953                                                                                                                                              Training Day
## 3954                                                                                                                                            Monsters, Inc.
## 3955                                                                   Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 3956                                                                                                                                            Ocean's Eleven
## 3957                                                                                                                                               Vanilla Sky
## 3958                                                                                                        Lord of the Rings: The Fellowship of the Ring, The
## 3959                                                                                                                                           Black Hawk Down
## 3960                                                                                                             Brotherhood of the Wolf (Pacte des loups, Le)
## 3961                                                                                                                                             Resident Evil
## 3962                                                                                                                                                Panic Room
## 3963                                                                                                                                                Spider-Man
## 3964                                                                                                                                     Sum of All Fears, The
## 3965                                                                                                                                           Minority Report
## 3966                                                                                                              Men in Black II (a.k.a. MIIB) (a.k.a. MIB 2)
## 3967                                                                                                                                         Road to Perdition
## 3968                                                                                                                                                Red Dragon
## 3969                                                                                                                                                 Ring, The
## 3970                                                                                                                   Harry Potter and the Chamber of Secrets
## 3971                                                                                                                                           Die Another Day
## 3972                                                                                                                                               Equilibrium
## 3973                                                                                                                    Lord of the Rings: The Two Towers, The
## 3974                                                                                                                                       Catch Me If You Can
## 3975                                                                                                        Man Without a Past, The (Mies vailla menneisyyttä)
## 3976                                                                                                                                          X2: X-Men United
## 3977                                                                                                                                      Matrix Reloaded, The
## 3978                                                                                                                                            Bruce Almighty
## 3979                                                                                                                                             28 Days Later
## 3980                                                                                                    Pirates of the Caribbean: The Curse of the Black Pearl
## 3981                                                                                                       League of Extraordinary Gentlemen, The (a.k.a. LXG)
## 3982                                                                                                                                                Underworld
## 3983                                                                                                                                         Kill Bill: Vol. 1
## 3984                                                                                                                                          Italian Job, The
## 3985                                                                                                                                   Matrix Revolutions, The
## 3986                                                                                                                                         Last Samurai, The
## 3987                                                                                                                                                  Big Fish
## 3988                                                                                                            Lord of the Rings: The Return of the King, The
## 3989                                                                                                                                          Dawn of the Dead
## 3990                                                                                                                                                   Hellboy
## 3991                                                                                                                                         Kill Bill: Vol. 2
## 3992                                                                                                                                               Van Helsing
## 3993                                                                                                                                          Enter the Dragon
## 3994                                                                                                                                                   Shrek 2
## 3995                                                                                                                  Harry Potter and the Prisoner of Azkaban
## 3996                                                                                                                                              Spider-Man 2
## 3997                                                                                                                                                Collateral
## 3998                                                                                                                                               Grudge, The
## 3999                                                                                                                                             The Machinist
## 4000                                                                                                                                                       Saw
## 4001                                                                                                                                          Incredibles, The
## 4002                                                                                                                         Charlie and the Chocolate Factory
## 4003                                                                                                                                   Appleseed (Appurushîdo)
## 4004                                                                                                                                               Constantine
## 4005                                                                                                                                                  Sin City
## 4006                                                                                                              Star Wars: Episode III - Revenge of the Sith
## 4007                                                                                                                                             Batman Begins
## 4008                                                                                                                                              Corpse Bride
## 4009                                                                                                                                                 Toy Story
## 4010                                                                                                                                                      Heat
## 4011                                                                                                                                   American President, The
## 4012                                                                                                                                                    Casino
## 4013                                                                                                                            Ace Ventura: When Nature Calls
## 4014                                                                                                                                               Money Train
## 4015                                                                                                                                                    Powder
## 4016                                                                                                                        Twelve Monkeys (a.k.a. 12 Monkeys)
## 4017                                                                                                                                                      Babe
## 4018                                                                                                                                      Seven (a.k.a. Se7en)
## 4019                                                                                                                                       Usual Suspects, The
## 4020                                                                                                                                Postman, The (Postino, Il)
## 4021                                                                                                                                        Mr. Holland's Opus
## 4022                                                                                                                                              Nick of Time
## 4023                                                                                                                                             Happy Gilmore
## 4024                                                                                                                                                Braveheart
## 4025                                                                                                                                               Taxi Driver
## 4026                                                                                                                                                 Apollo 13
## 4027                                                                                                                                            Batman Forever
## 4028                                                                                                                         Beauty of the Day (Belle de jour)
## 4029                                                                                                                                           Johnny Mnemonic
## 4030                                                                                                                                                  Net, The
## 4031                                                                                                                                          Don Juan DeMarco
## 4032                                                                                                                                                   Ed Wood
## 4033                                                                                                                                               French Kiss
## 4034                                                                                                                                               Hoop Dreams
## 4035                                                                                                                                        Heavenly Creatures
## 4036                                                                                                                                                      I.Q.
## 4037                                                                                                        Interview with the Vampire: The Vampire Chronicles
## 4038                                                                                                                        Star Wars: Episode IV - A New Hope
## 4039                                                                                                                                        Little Princess, A
## 4040                                                                                                       Like Water for Chocolate (Como agua para chocolate)
## 4041                                                                                                                                                  Outbreak
## 4042                                                                                                   Léon: The Professional (a.k.a. The Professional) (Léon)
## 4043                                                                                                                                              Pulp Fiction
## 4044                                                                                                                                                 Quiz Show
## 4045                                                                                                                 Three Colors: Red (Trois couleurs: Rouge)
## 4046                                                                                                                 Three Colors: Blue (Trois couleurs: Bleu)
## 4047                                                                                                                                                  Stargate
## 4048                                                                                                                                 Shawshank Redemption, The
## 4049                                                                                                                                             Shallow Grave
## 4050                                                                                                                               What's Eating Gilbert Grape
## 4051                                                                                                                                Ace Ventura: Pet Detective
## 4052                                                                                                         Adventures of Priscilla, Queen of the Desert, The
## 4053                                                                                                                                              Forrest Gump
## 4054                                                                                                                                                 True Lies
## 4055                                                                                                                                                  Blue Sky
## 4056                                                                                                                                             Carlito's Way
## 4057                                                                                                                                            Demolition Man
## 4058                                                                                                                                             Fugitive, The
## 4059                                                                                                                                            Heaven & Earth
## 4060                                                                                                                                      Hudsucker Proxy, The
## 4061                                                                                                                                             Jurassic Park
## 4062                                                                                                                                          Last Action Hero
## 4063                                                                                                                                  Manhattan Murder Mystery
## 4064                                                                                                                                    Much Ado About Nothing
## 4065                                                                                                                                              Philadelphia
## 4066                                                                                                                                                Piano, The
## 4067                                                                                                                                          Schindler's List
## 4068                                                                                                                                                Serial Mom
## 4069                                                                                                                                                Short Cuts
## 4070                                                                                                                                      Sleepless in Seattle
## 4071                                                                                                                                              Blade Runner
## 4072                                                                                                                                                Home Alone
## 4073                                                                                                                                                   Aladdin
## 4074                                                                                                                                Terminator 2: Judgment Day
## 4075                                                                                                                                        Dances with Wolves
## 4076                                                                                                                                                    Batman
## 4077                                                                                                                                 Silence of the Lambs, The
## 4078                                                                                                                                      Beauty and the Beast
## 4079                                                                                                                                              Pretty Woman
## 4080                                                                                                                                              One Fine Day
## 4081                                                                                                                                                     Fargo
## 4082                                                                                                                                       Mission: Impossible
## 4083                                                                                                                                               Dragonheart
## 4084                                                                                                                 Song of the Little Road (Pather Panchali)
## 4085                                                                                                                           World of Apu, The (Apur Sansar)
## 4086                                                                                                                           Wallace & Gromit: A Close Shave
## 4087                                                                                      Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb
## 4088                                                                                                                                             Trainspotting
## 4089                                                                                                                             Independence Day (a.k.a. ID4)
## 4090                                                                                                                                      Nutty Professor, The
## 4091                                                                                                                                                Phenomenon
## 4092                                                                                                                                           Time to Kill, A
## 4093                                                                                                               Eyes Without a Face (Yeux sans visage, Les)
## 4094                                                                                                                                            Godfather, The
## 4095                                                                                                                                   Philadelphia Story, The
## 4096                                                                                                                                       Singin' in the Rain
## 4097                                                                                                                                     American in Paris, An
## 4098                                                                                                                                                   Vertigo
## 4099                                                                                                                                               Rear Window
## 4100                                                                                                                                     It Happened One Night
## 4101                                                                                                                                        North by Northwest
## 4102                                                                                                                                            Apartment, The
## 4103                                                                                                                                          Some Like It Hot
## 4104                                                                                                                                                   Charade
## 4105                                                                                                                                                Casablanca
## 4106                                                                                                                                       Maltese Falcon, The
## 4107                                                                                                                                              My Fair Lady
## 4108                                                                                                                                        Gone with the Wind
## 4109                                                                                                                    Sunset Blvd. (a.k.a. Sunset Boulevard)
## 4110                                                                                                                                              Citizen Kane
## 4111                                                                                                                                     2001: A Space Odyssey
## 4112                                                                                                                                             All About Eve
## 4113                                                                                                                                                   Rebecca
## 4114                                                                                                                                                 Notorious
## 4115                                                                                                                                                Spellbound
## 4116                                                                                                                                          To Catch a Thief
## 4117                                                                                                                                                     Laura
## 4118                                                                                                                                                     Giant
## 4119                                                                                                                                              East of Eden
## 4120                                                                                                                               Around the World in 80 Days
## 4121                                                                                                                                     It's a Wonderful Life
## 4122                                                                                                                              Mr. Smith Goes to Washington
## 4123                                                                                                                                          Bringing Up Baby
## 4124                                                                                                                                             39 Steps, The
## 4125                                                                                                                                        African Queen, The
## 4126                                                                                                                                     Cat on a Hot Tin Roof
## 4127                                                                                                                                       Sound of Music, The
## 4128                                                                                                                                                  Die Hard
## 4129                                                                                                                                            Secrets & Lies
## 4130                                                                                                                      William Shakespeare's Romeo + Juliet
## 4131                                                                                                                                                  Sleepers
## 4132                                                                                                                                                   Sleeper
## 4133                                                                                                                                                   Bananas
## 4134                                                                                                                              Monty Python's Life of Brian
## 4135                                                                                                                                          Bonnie and Clyde
## 4136                                                                                                                                            Reservoir Dogs
## 4137                                                                                                                                                   Platoon
## 4138                                                                                                                                           Sophie's Choice
## 4139                                                                                                                                E.T. the Extra-Terrestrial
## 4140                                                                                                                                                   Top Gun
## 4141                                                                                                                                     Rebel Without a Cause
## 4142                                                                                                                                 Streetcar Named Desire, A
## 4143                                                                                                                           Monty Python and the Holy Grail
## 4144                                                                                                                   Cinema Paradiso (Nuovo cinema Paradiso)
## 4145                                                                                                                                              Delicatessen
## 4146                                                                                               Double Life of Veronique, The (Double Vie de Véronique, La)
## 4147                                                                                                                                            Paths of Glory
## 4148                                                                                                                                      English Patient, The
## 4149                                                                                                                                              My Left Foot
## 4150                                                                                                                                         Strictly Ballroom
## 4151                                                                                                                           One Flew Over the Cuckoo's Nest
## 4152                                                                                                            Star Wars: Episode V - The Empire Strikes Back
## 4153                                                                                                                                       Princess Bride, The
## 4154                                                                                   Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 4155                                                                                                                                                    Brazil
## 4156                                                                                        Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il)
## 4157                                                                                                                                              Withnail & I
## 4158                                                                                                                                              12 Angry Men
## 4159                                                                                                                                        Lawrence of Arabia
## 4160                                                                                                                                       Clockwork Orange, A
## 4161                                                                                                                                     To Kill a Mockingbird
## 4162                                                                                                                                            Apocalypse Now
## 4163                                                                                                                Star Wars: Episode VI - Return of the Jedi
## 4164                                                                                                                 Wings of Desire (Himmel über Berlin, Der)
## 4165                                                                                                                                            Third Man, The
## 4166                                                                                                                                                Goodfellas
## 4167                                                                                                                                                       Ran
## 4168                                                                                                                        Killer, The (Die xue shuang xiong)
## 4169                                                                                                                                                    Psycho
## 4170                                                                                                                                   Godfather: Part II, The
## 4171                                                                                                                                         Full Metal Jacket
## 4172                                                                                                                                                   Amadeus
## 4173                                                                                                                               Once Upon a Time in America
## 4174                                                                                                                                               Raging Bull
## 4175                                                                                                                                                Annie Hall
## 4176                                                                                                                                          Right Stuff, The
## 4177                                                                                                                                                   Stalker
## 4178                                                                                                                                     Boot, Das (Boat, The)
## 4179                                                                                                                                                Sting, The
## 4180                                                                                                                                          Harold and Maude
## 4181                                                                                                                  Seventh Seal, The (Sjunde inseglet, Det)
## 4182                                                                                                                                           Terminator, The
## 4183                                                                                                                                    Dead Alive (Braindead)
## 4184                                                                                                                     Rosencrantz and Guildenstern Are Dead
## 4185                                                                                                                                                 Manhattan
## 4186                                                                                                                                        Dead Poets Society
## 4187                                                                                                                                             Graduate, The
## 4188                                                                                                                                             Touch of Evil
## 4189                                                                                                                             Bridge on the River Kwai, The
## 4190                                                                                                                                                8 1/2 (8½)
## 4191                                                                                                                                                 Chinatown
## 4192                                                                                                                         Treasure of the Sierra Madre, The
## 4193                                                                                                                                                 Duck Soup
## 4194                                                                                                                                              Shining, The
## 4195                                                                                                                                                         M
## 4196                                                                                                                                         Great Escape, The
## 4197                                                                                                                                          Deer Hunter, The
## 4198                                                                                                                                             Groundhog Day
## 4199                                                                                                                                                Unforgiven
## 4200                                                                                                                                 Manchurian Candidate, The
## 4201                                                                                                                                      Arsenic and Old Lace
## 4202                                                                                                                                        Back to the Future
## 4203                                                                                                                                                    Patton
## 4204                                                                                                                                        Cyrano de Bergerac
## 4205                                                                                                     Raise the Red Lantern (Da hong deng long gao gao gua)
## 4206                                                                                                                                       Great Dictator, The
## 4207                                                                                                                                            Big Sleep, The
## 4208                                                                                                                                                   Ben-Hur
## 4209                                                                                                                                        This Is Spinal Tap
## 4210                                                                                                                        Indiana Jones and the Last Crusade
## 4211                                                                                                                                                    Gandhi
## 4212                                                                                                                        Butch Cassidy and the Sundance Kid
## 4213                                                                                                                                              Paris, Texas
## 4214                                                                                                                                   When Harry Met Sally...
## 4215                                                                                                                                                Birds, The
## 4216                                                                                                                                                 Cape Fear
## 4217                                                                                                         Nosferatu (Nosferatu, eine Symphonie des Grauens)
## 4218                                                                                                                                        Breaking the Waves
## 4219                                                                                                                                  Star Trek: First Contact
## 4220                                                                                                                                            Batman Returns
## 4221                                                                                                                                                    Grease
## 4222                                                                                                                                                      Jaws
## 4223                                                                                                                                             Mars Attacks!
## 4224                                                                                                                                             Jerry Maguire
## 4225                                                                                                                                           Raising Arizona
## 4226                                                                                                                                 Last of the Mohicans, The
## 4227                                                                                                                                                    Hamlet
## 4228                                                                                                                                              Dante's Peak
## 4229                                                                                                                                              Lost Highway
## 4230                                                                                                                                                  Anaconda
## 4231                                                                                                                                       Grosse Pointe Blank
## 4232                                                                                                                                                   Volcano
## 4233                                                                                                                                        Fifth Element, The
## 4234                                                                                                                            Lost World: Jurassic Park, The
## 4235                                                                                                                                                   Con Air
## 4236                                                                                                                                   Speed 2: Cruise Control
## 4237                                                                                                                                            Batman & Robin
## 4238                                                                                                                                 Men in Black (a.k.a. MIB)
## 4239                                                                                                                                                   Contact
## 4240                                                                                                                                             Air Force One
## 4241                                                                                                                                         L.A. Confidential
## 4242                                                                                                                                                 Game, The
## 4243                                                                                                                                             Boogie Nights
## 4244                                                                                                                                          Truman Show, The
## 4245                                                                                                                                                   Amistad
## 4246                                                                                                                                         Good Will Hunting
## 4247                                                                                                                                                   Titanic
## 4248                                                                                                                                       Tomorrow Never Dies
## 4249                                                                                                                                         Big Lebowski, The
## 4250                                                                                                                                        Great Expectations
## 4251                                                                                                                                                 Dark City
## 4252                                                                                                                                             U.S. Marshals
## 4253                                                                                                                                                   Everest
## 4254                                                                                                                                            City of Angels
## 4255                                                                                                                                      Character (Karakter)
## 4256                                                                                                                                           Misérables, Les
## 4257                                                                                                                                               Deep Impact
## 4258                                                                                                               Children of Heaven, The (Bacheha-Ye Aseman)
## 4259                                                                                                                                                     Mulan
## 4260                                                                                                                                                Armageddon
## 4261                                                                                                                            All Quiet on the Western Front
## 4262                                                                                                                                      Mutiny on the Bounty
## 4263                                                                                                                                       Great Ziegfeld, The
## 4264                                                                                                                                   How Green Was My Valley
## 4265                                                                                                                                                    Hamlet
## 4266                                                                                                                                     From Here to Eternity
## 4267                                                                                                                                         On the Waterfront
## 4268                                                                                                                                                     Marty
## 4269                                                                                                                                           West Side Story
## 4270                                                                                                                                    Man for All Seasons, A
## 4271                                                                                                                                  In the Heat of the Night
## 4272                                                                                                                                                   Oliver!
## 4273                                                                                                                                           Midnight Cowboy
## 4274                                                                                                                                    French Connection, The
## 4275                                                                                                                                                     Rocky
## 4276                                                                                                                                         Kramer vs. Kramer
## 4277                                                                                                                                           Ordinary People
## 4278                                                                                                                                          Chariots of Fire
## 4279                                                                                                                                       Terms of Endearment
## 4280                                                                                                                                             Out of Africa
## 4281                                                                                                                                         Last Emperor, The
## 4282                                                                                                                                                  Rain Man
## 4283                                                                                                                                        Driving Miss Daisy
## 4284                                                                                                                                             Exorcist, The
## 4285                                                                                                                                           Lethal Weapon 3
## 4286                                                                                                                                                Metropolis
## 4287                                                                                                                                Back to the Future Part II
## 4288                                                                                                                               Back to the Future Part III
## 4289                                                                                                                      Seven Samurai (Shichinin no samurai)
## 4290                                                                                                                            Last Temptation of Christ, The
## 4291                                                                                                                                  Godfather: Part III, The
## 4292                                                                                                                                      Jane Austen's Mafia!
## 4293                                                                                                                                       Saving Private Ryan
## 4294                                                                                                                                            Doctor Zhivago
## 4295                                                                                                                 Fanny and Alexander (Fanny och Alexander)
## 4296                                                                                                                      Indiana Jones and the Temple of Doom
## 4297                                                                                                                                                Snake Eyes
## 4298                                                                                                                           Who's Afraid of Virginia Woolf?
## 4299                                                                                                                                                    Legend
## 4300                                                                                                                                               Beetlejuice
## 4301                                                                                                                                                      Rope
## 4302                                                                                                                                                    Frenzy
## 4303                                                                                                                                                    Marnie
## 4304                                                                                                                                Man Who Knew Too Much, The
## 4305                                                                                                                                      Strangers on a Train
## 4306                                                                                                                                         Untouchables, The
## 4307                                                                                                                                         Shadow of a Doubt
## 4308                                                                                                                                          Mr. & Mrs. Smith
## 4309                                                                                                                                                  Rounders
## 4310                                                                                                                                           Say Anything...
## 4311                                                                                                                                                 Rush Hour
## 4312                                                                                                                                                     Ronin
## 4313                                                                                                                                               Player, The
## 4314                                                                                                                                       Edward Scissorhands
## 4315                                                                                                                                         Elephant Man, The
## 4316                                                                                                                                             Pleasantville
## 4317                                                                                                                       Life Is Beautiful (La Vita è bella)
## 4318                                                                                                                                        American History X
## 4319                                                                                                                                         Gods and Monsters
## 4320                                                                                                                                                Siege, The
## 4321                                                                                                                                                 Elizabeth
## 4322                                                                                                                  Nights of Cabiria (Notti di Cabiria, Le)
## 4323                                                                                                                                        Enemy of the State
## 4324                                                                                                                       Central Station (Central do Brasil)
## 4325                                                                                                                                 Celebration, The (Festen)
## 4326                                                                                                                                            Pink Flamingos
## 4327                                                                                                                                      Prince of Egypt, The
## 4328                                                                                                                                       Shakespeare in Love
## 4329                                                                                                                                       Romancing the Stone
## 4330                                                                                                                                           You've Got Mail
## 4331                                                                                                                Name of the Rose, The (Name der Rose, Der)
## 4332                                                                                                                                       Color of Money, The
## 4333                                                                                                                                               October Sky
## 4334                                                                                                                                              Office Space
## 4335                                                                                                                                              Analyze This
## 4336                                                                                                                         Lock, Stock & Two Smoking Barrels
## 4337                                                                                                                                               Matrix, The
## 4338                                                                                                        Dreamlife of Angels, The (Vie rêvée des anges, La)
## 4339                                                                                                                                                        Go
## 4340                                                                                                                                                  Election
## 4341                                                                                                                                                  eXistenZ
## 4342                                                                                                                                                Mummy, The
## 4343                                                                                                                 Star Wars: Episode I - The Phantom Menace
## 4344                                                                                                                                                  Superman
## 4345                                                                                                                                                   Dracula
## 4346                                                                                                                                              Frankenstein
## 4347                                                                                                                            Rocky Horror Picture Show, The
## 4348                                                                                                                                 Run Lola Run (Lola rennt)
## 4349                                                                                                                                             Arachnophobia
## 4350                                                                                                                                             Summer of Sam
## 4351                                                                                                                                            Eyes Wide Shut
## 4352                                                                                                                       Ghostbusters (a.k.a. Ghost Busters)
## 4353                                                                                                                                                     Trick
## 4354                                                                                                                                             Runaway Bride
## 4355                                                                                                                                              Killing, The
## 4356                                                                                                                                                 Spartacus
## 4357                                                                                                                                                    Lolita
## 4358                                                                                                                                              Barry Lyndon
## 4359                                                                                                                   400 Blows, The (Les quatre cents coups)
## 4360                                                                                                                                         Color Purple, The
## 4361                                                                                                                                    Little Shop of Horrors
## 4362                                                                                                                                          Sixth Sense, The
## 4363                                                                                                                                          Mickey Blue Eyes
## 4364                                                                                                                                           American Beauty
## 4365                                                                                                                                               Deliverance
## 4366                                                                                                                                               Three Kings
## 4367                                                                                                                                 Sanjuro (Tsubaki Sanjûrô)
## 4368                                                                                                                                            Boys Don't Cry
## 4369                                                                                                                                  Ferris Bueller's Day Off
## 4370                                                                                                                                            Days of Heaven
## 4371                                                                                                                                                Goldfinger
## 4372                                                                                                                                       Sydney (Hard Eight)
## 4373                                                                                                                            Home Alone 2: Lost in New York
## 4374                                                                                                                                                Fight Club
## 4375                                                                                                                                              Fitzcarraldo
## 4376                                                                                                                                     Bringing Out the Dead
## 4377                                                                                                                                  Who Framed Roger Rabbit?
## 4378                                                                                                                                      Being John Malkovich
## 4379                                                                                                                                              Insider, The
## 4380                                                                                                                                          Drugstore Cowboy
## 4381                                                                                                                                              Falling Down
## 4382                                                                                                                                                     Dogma
## 4383                                                                                                                  Messenger: The Story of Joan of Arc, The
## 4384                                                                      Women on the Verge of a Nervous Breakdown (Mujeres al borde de un ataque de nervios)
## 4385                                                                                                                                             Sleepy Hollow
## 4386                                                                                                                                  World Is Not Enough, The
## 4387                                                                                                                 All About My Mother (Todo sobre mi madre)
## 4388                                                                                                                                                    Harvey
## 4389                                                             Bicycle Thieves (a.k.a. The Bicycle Thief) (a.k.a. The Bicycle Thieves) (Ladri di biciclette)
## 4390                                                                                                                                      Grapes of Wrath, The
## 4391                                                                                                                                  River Runs Through It, A
## 4392                                                                                                                                               Toy Story 2
## 4393                                                                                                                                           Green Mile, The
## 4394                                                                                                                                    Last Picture Show, The
## 4395                                                                                                                                         Anna and the King
## 4396                                                                                                                                             Fantasia 2000
## 4397                                                                                                                                                  Magnolia
## 4398                                                                                                                                                Easy Rider
## 4399                                                                                                                                  Talented Mr. Ripley, The
## 4400                                                                                                                                          Five Easy Pieces
## 4401                                                                                                                              I Am Cuba (Soy Cuba/Ya Kuba)
## 4402                                                                                                                                                 Malcolm X
## 4403                                                                                                                           Sister Act 2: Back in the Habit
## 4404                                                                                                                                          Scent of a Woman
## 4405                                                                                                                                              Mariachi, El
## 4406                                                                                                                                               City Lights
## 4407                                                                                                                                                  Kid, The
## 4408                                                                                                                                               Wonder Boys
## 4409                                                                                                                                            Searchers, The
## 4410                                                                                                                                           Bound for Glory
## 4411                                                                                                                                                       JFK
## 4412                                                                                                                                      Night to Remember, A
## 4413                                                                                                                                           Erin Brockovich
## 4414                                                                                                                                     Mirror, The (Zerkalo)
## 4415                                                                                                                                        Do the Right Thing
## 4416                                                                                                                                          Double Indemnity
## 4417                                                                                                                                     Good Morning, Vietnam
## 4418                                                                                                                                              Modern Times
## 4419                                                                                                                                              Hustler, The
## 4420                                                                                                                        Close Encounters of the Third Kind
## 4421                                                                                                                                       Place in the Sun, A
## 4422                                                                                                                                             High Fidelity
## 4423                                                                                                                                                      Hook
## 4424                                                                                                                                          Midnight Express
## 4425                                                                                                                                        Solaris (Solyaris)
## 4426                                                                                                                                                   Network
## 4427                                                                                                                                                 Frequency
## 4428                                                                                                                                           American Psycho
## 4429                                                                                                                          What Ever Happened to Baby Jane?
## 4430                                                                                                                                                 Limelight
## 4431                                                                                                                                   Idiots, The (Idioterne)
## 4432                                                                                                                                                 Gladiator
## 4433                                                                                                                                         Small Time Crooks
## 4434                                                                                                                                    Mission: Impossible II
## 4435                                                                                                                                            Gold Rush, The
## 4436                                                                                                                                          Romeo and Juliet
## 4437                                                                                                                                           Blazing Saddles
## 4438                                                                                                       For a Few Dollars More (Per qualche dollaro in più)
## 4439                                                                                                                                         Conversation, The
## 4440                                                                                                                       Ace in the Hole (Big Carnival, The)
## 4441                                                                                                                                                  Badlands
## 4442                                                                                                                                               Chicken Run
## 4443                                                                                                                                              Patriot, The
## 4444                                                                                                                                          Blow-Up (Blowup)
## 4445                                                                                                                                       Anatomy of a Murder
## 4446                                                                                                                                           Steel Magnolias
## 4447                                                                                                                                                     Shane
## 4448                                                                                                                                             Almost Famous
## 4449                                                                                                                                        Dancer in the Dark
## 4450                                                                                                                                       Requiem for a Dream
## 4451                                                                                                                                       You Can Count on Me
## 4452                                                                                                                                      One Day in September
## 4453                                                                                                                                                    Malèna
## 4454                                                                                                                                               Unbreakable
## 4455                                                                                                          Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 4456                                                                                                                                               Wall Street
## 4457                                                                                                                                Born on the Fourth of July
## 4458                                                                                                                                                    Snatch
## 4459                                                                                                                                                  Chocolat
## 4460                                                                                                                                                 Cast Away
## 4461                                                                                                                                O Brother, Where Art Thou?
## 4462                                                                                                                                                   Traffic
## 4463                                                                                                                                            House of Games
## 4464                                                                                                                                         Empire of the Sun
## 4465                                                                                                                                                  Hannibal
## 4466                                                                                                                                                15 Minutes
## 4467                                                                                                                                        Enemy at the Gates
## 4468                                                                                                                                                 Dish, The
## 4469                                                                                                                                                   Memento
## 4470                                                                                                                            Amores Perros (Love's a Bitch)
## 4471                                                                                                                                     One Night at McCool's
## 4472                                                                                                                 Triumph of the Will (Triumph des Willens)
## 4473                                                                                                                                         Fellini Satyricon
## 4474                                                                                                                     Pelle the Conqueror (Pelle erobreren)
## 4475                                                                                                                                              Moulin Rouge
## 4476                                                                                                                                              Pearl Harbor
## 4477                                                                                                                 Himalaya (Himalaya - l'enfance d'un chef)
## 4478                                                                                                                                                 Evolution
## 4479                                                                                                                                                 Swordfish
## 4480                                                                                                                                      Seven Year Itch, The
## 4481                                                                                                                              A.I. Artificial Intelligence
## 4482                                                                                                                                                Sexy Beast
## 4483                                                                                                                                    Sweet Smell of Success
## 4484                                                                                                                                            Legally Blonde
## 4485                                                                                                                                     Africa: The Serengeti
## 4486                                                                                                                                                    Always
## 4487                                                                                                                          Bill & Ted's Excellent Adventure
## 4488                                                                                                                                               Ghost World
## 4489                                                                                                                                               Others, The
## 4490                                                                                                                                                 Zoolander
## 4491                                                                                                                                               Serendipity
## 4492                                                                                                                                          Mulholland Drive
## 4493                                                                                                                                       Fiddler on the Roof
## 4494                                                                                                                                                 From Hell
## 4495                                                                                                                                              Donnie Darko
## 4496                                                                                                                                 Man Who Wasn't There, The
## 4497                                                                                                                                            Monsters, Inc.
## 4498                                                                   Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 4499                                                                                                                                                  Spy Game
## 4500                                                                                                                            Breathless (À bout de souffle)
## 4501                                                                                                                                            Ocean's Eleven
## 4502                                                                                                                                             No Man's Land
## 4503                                                                                                             Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 4504                                                                                                                                               Vanilla Sky
## 4505                                                                                                                                                      Iris
## 4506                                                                                                                                                   Lantana
## 4507                                                                                                                                     Royal Tenenbaums, The
## 4508                                                                                                        Lord of the Rings: The Fellowship of the Ring, The
## 4509                                                                                                                                         Beautiful Mind, A
## 4510                                                                                                                                              Gosford Park
## 4511                                                                                                                                                  I Am Sam
## 4512                                                                                                                                            Monster's Ball
## 4513                                                                                                                                     M*A*S*H (a.k.a. MASH)
## 4514                                                                                                                   Son's Room, The (Stanza del figlio, La)
## 4515                                                                                                                                            Baby's Day Out
## 4516                                                                                                                                Bad and the Beautiful, The
## 4517                                                                                                                                           Monsoon Wedding
## 4518                                                                                                                       Wild Strawberries (Smultronstället)
## 4519                                                                                                                                Magnificent Ambersons, The
## 4520                                                                                                                                     Kissing Jessica Stein
## 4521                                                                                                                   And Your Mother Too (Y tu mamá también)
## 4522                                                                                                                                                Panic Room
## 4523                                                                                                                                       Rashomon (Rashômon)
## 4524                                                                                                                                  My Big Fat Greek Wedding
## 4525                                                                                                   Rome, Open City (a.k.a. Open City) (Roma, città aperta)
## 4526                                                                                                                                          Hollywood Ending
## 4527                                                                                                                                                Spider-Man
## 4528                                                                                                                                   My Beautiful Laundrette
## 4529                                                                                                                  Cranes Are Flying, The (Letyat zhuravli)
## 4530                                                                                                                                               About a Boy
## 4531                                                                                                              Star Wars: Episode II - Attack of the Clones
## 4532                                                                                                                                           Last Waltz, The
## 4533                                                                                                                                                  Insomnia
## 4534                                                                                                                                           Minority Report
## 4535                                                                                                                                        Rabbit-Proof Fence
## 4536                                                                                                                                             Reign of Fire
## 4537                                                                                                                                         Road to Perdition
## 4538                                                                                                                           The Importance of Being Earnest
## 4539                                                                                                      Nosferatu the Vampyre (Nosferatu: Phantom der Nacht)
## 4540                                                                                                                                                     Signs
## 4541                                                                                                                           Tabu: A Story of the South Seas
## 4542                                                                                                             Spirited Away (Sen to Chihiro no kamikakushi)
## 4543                                                                                                                                                    Heaven
## 4544                                                                                                                                     Bowling for Columbine
## 4545                                                                                                                                          Punch-Drunk Love
## 4546                                                                                                                                                 Ring, The
## 4547                                                                                                                                            Grey Zone, The
## 4548                                                                                                                                                    8 Mile
## 4549                                                                                                                   Harry Potter and the Chamber of Secrets
## 4550                                                                                                                              Talk to Her (Hable con Ella)
## 4551                                                                                                                                                   Solaris
## 4552                                                                                                                                           Treasure Planet
## 4553                                                                                                                                                Adaptation
## 4554                                                                                                                                              Eating Raoul
## 4555                                                                                                                                          Intact (Intacto)
## 4556                                                                                                                    Lord of the Rings: The Two Towers, The
## 4557                                                                                                                                                 25th Hour
## 4558                                                                                                                                         Gangs of New York
## 4559                                                                                                                     My Neighbor Totoro (Tonari no Totoro)
## 4560                                                                                                                                       Catch Me If You Can
## 4561                                                                                                                                                   Chicago
## 4562                                                                                                                                                Hours, The
## 4563                                                                                                                                              Pianist, The
## 4564                                                                                                                                       King of Comedy, The
## 4565                                                                                                                                        Son, The (Le fils)
## 4566                                                                                                                              City of God (Cidade de Deus)
## 4567                                                                                                                                                     Gerry
## 4568                                                                                                                                                    Spider
## 4569                                                                                                                               Irreversible (Irréversible)
## 4570                                                                                                                                      Bend It Like Beckham
## 4571                                                                                                                       Europa Europa (Hitlerjunge Salomon)
## 4572                                                                                                                                               Phone Booth
## 4573                                                                                                                                                  Identity
## 4574                                                                                                                                          X2: X-Men United
## 4575                                                                                                                                      Matrix Reloaded, The
## 4576                                                                                                                                              Finding Nemo
## 4577                                                                                                                     White Sheik, The (Sceicco bianco, Lo)
## 4578                                                                                                                                                Intervista
## 4579                                                                                                                                               Barton Fink
## 4580                                                                                                                        Terminator 3: Rise of the Machines
## 4581                                                                                                    Pirates of the Caribbean: The Curse of the Black Pearl
## 4582                                                                                                                                       Dirty Pretty Things
## 4583                                                                                                                                    Magdalene Sisters, The
## 4584                                                                                                                                                 Accattone
## 4585                                                                                                                                                Umberto D.
## 4586                                                                                                                                         American Splendor
## 4587                                                                                            Code Unknown (Code inconnu: Récit incomplet de divers voyages)
## 4588                                                                                                                            Tokyo Story (Tôkyô monogatari)
## 4589                                                                             Discreet Charm of the Bourgeoisie, The (Charme discret de la bourgeoisie, Le)
## 4590                                                                                                                                                     Ikiru
## 4591                                                                                                                                            Matchstick Men
## 4592                                                                                                                                Once Upon a Time in Mexico
## 4593                                                                                                                                       Lost in Translation
## 4594                                                                                                                  Rules of the Game, The (La règle du jeu)
## 4595                                                                                                                                   All the President's Men
## 4596                                                                                                                                           Boyz N the Hood
## 4597                                                                                                                        Monty Python's The Meaning of Life
## 4598                                                                                                                                        Station Agent, The
## 4599                                                                                                                                              Mystic River
## 4600                                                                                                                                       Intolerable Cruelty
## 4601                                                                                                                                         Kill Bill: Vol. 1
## 4602                                                                                                                                           Pieces of April
## 4603                                                                                                                                                  Elephant
## 4604                                                                                                                             Unvanquished, The (Aparajito)
## 4605                                                                                                                                           Shattered Glass
## 4606                                                                                                                                   Matrix Revolutions, The
## 4607                                                                                                                                       Father of the Bride
## 4608                                                                                                           Master and Commander: The Far Side of the World
## 4609                                                                                                                                                  21 Grams
## 4610                                                                                                         Barbarian Invasions, The (Les invasions barbares)
## 4611                                                                                                                                               Funny Games
## 4612                                                                                                                                         Ordet (Word, The)
## 4613                                                                                                                          Forbidden Games (Jeux interdits)
## 4614                                                                                                 Passion of Joan of Arc, The (Passion de Jeanne d'Arc, La)
## 4615                                                                                             Cabinet of Dr. Caligari, The (Cabinet des Dr. Caligari., Das)
## 4616                                                                                                                                    Hannah and Her Sisters
## 4617                                                                                                                                          Kindergarten Cop
## 4618                                                                                                               Last Tango in Paris (Ultimo tango a Parigi)
## 4619                                                                                                                                  Night of the Hunter, The
## 4620                                                                                                                Things You Can Tell Just by Looking at Her
## 4621                                                                                                                                Betty Blue (37°2 le matin)
## 4622                                                                                                      Aguirre: The Wrath of God (Aguirre, der Zorn Gottes)
## 4623                                                                                                                                                 Red River
## 4624                                                                                                                                                Stagecoach
## 4625                                                                                                                               Black Orpheus (Orfeu Negro)
## 4626                                                                                                                                         Hero (Ying xiong)
## 4627                                                                                                                                                      1941
## 4628                                                                                                                                     Night at the Opera, A
## 4629                                                                                                                             Stolen Kisses (Baisers volés)
## 4630                                                                                                                                                In America
## 4631                                                                                                                                                  Big Fish
## 4632                                                                                                            Lord of the Rings: The Return of the King, The
## 4633                                                                                                                                                   Monster
## 4634                                                                                                                                      Cheaper by the Dozen
## 4635                                                                                                                                             Cold Mountain
## 4636                                                                                                                                                Strada, La
## 4637                                                                                                                                             Dreamers, The
## 4638                                                                                                                                          Good bye, Lenin!
## 4639                                                                                                                                             Secret Window
## 4640                                                                                                                     Eternal Sunshine of the Spotless Mind
## 4641                                                                                                                                                  Dogville
## 4642                                                                                                                                               After Hours
## 4643                                                                                                                                         Kill Bill: Vol. 2
## 4644                                                                                                                                                      Troy
## 4645                                                                                                                                       You Only Live Twice
## 4646                                                                                                                                Samouraï, Le (Godson, The)
## 4647                                                                                                                                                Cat People
## 4648                                                                                                                                            Pierrot le fou
## 4649                                                                                                                                                Nostalghia
## 4650                                                                                                                             Throne of Blood (Kumonosu jô)
## 4651                                                                                                                           Zorba the Greek (Alexis Zorbas)
## 4652                                                                                                                  Summer with Monika (Sommaren med Monika)
## 4653                                                                                                                  Dark Water (Honogurai mizu no soko kara)
## 4654                                                                                                                                              Mean Streets
## 4655                                                                                                                             Sunrise: A Song of Two Humans
## 4656                                                                                                                                            Dolce Vita, La
## 4657                                                                                                                            Avventura, L' (Adventure, The)
## 4658                                                                                                                                                 Viridiana
## 4659                                                                                                                                           Black Narcissus
## 4660                                                                                                                  Harry Potter and the Prisoner of Azkaban
## 4661                                                                                                                                         Napoleon Dynamite
## 4662                                                                                                                                             Super Size Me
## 4663                                                                                                                                                    Freaks
## 4664                                                                                                                                             Terminal, The
## 4665                                                                                                                                              Spider-Man 2
## 4666                                                                                                     Short Film About Killing, A (Krótki film o zabijaniu)
## 4667                                                                                                          Motorcycle Diaries, The (Diarios de motocicleta)
## 4668                                                                                                                                         I Heart Huckabees
## 4669                                                                                                                                                  Sideways
## 4670                                                                                                                                                  Undertow
## 4671                                                                                                                                                       Ray
## 4672                                                                                                                                                    Kinsey
## 4673                                                                                                                                         Finding Neverland
## 4674                                                                                                                         Bad Education (La mala educación)
## 4675                                                                                                                                            Ocean's Twelve
## 4676                                                                                                                                                     Greed
## 4677                                                                                                                                       Steamboat Bill, Jr.
## 4678                                                                                                                                              Atalante, L'
## 4679                                                                                                                                                Pickpocket
## 4680                                                                                                           Battle of Algiers, The (La battaglia di Algeri)
## 4681                                                                                                                                                      Duel
## 4682                                                                                                               Hearts of Darkness: A Filmmakers Apocalypse
## 4683                                                                                                                                                      2046
## 4684                                                                                                                                        Audition (Ôdishon)
## 4685                                                                                                 Very Long Engagement, A (Un long dimanche de fiançailles)
## 4686                                                                                                                             Sea Inside, The (Mar adentro)
## 4687                                                                                                                                       Million Dollar Baby
## 4688                                                                                                                                              Hotel Rwanda
## 4689                                                                                                                         Charlie and the Chocolate Factory
## 4690                                                                                                                                              Aviator, The
## 4691                                                                                                                                             Woodsman, The
## 4692                                                                                                                                                   Stander
## 4693                                                                                                               Howl's Moving Castle (Hauru no ugoku shiro)
## 4694                                                                                                                                                  Sin City
## 4695                                                                                               Ivan's Childhood (a.k.a. My Name is Ivan) (Ivanovo detstvo)
## 4696                                                                                                                                         Kingdom of Heaven
## 4697                                                                                                                                                     Crash
## 4698                                                                                                              Star Wars: Episode III - Revenge of the Sith
## 4699                                                                                                                                             Batman Begins
## 4700                                                                                                             Edukators, The (Die Fetten Jahre sind vorbei)
## 4701                                                                                                                                         War of the Worlds
## 4702                                                                                                                                                Dark Water
## 4703                                                                                                                                                 Last Days
## 4704                                                                                                                                            Broken Flowers
## 4705                                                                                                                                    Constant Gardener, The
## 4706                                                                                                                                               Lord of War
## 4707                                                                                                                                 Everything Is Illuminated
## 4708                                                                                                                                    History of Violence, A
## 4709                                                                                                                                              Oliver Twist
## 4710                                                                                                                                                    Capote
## 4711                                                                                                          Wallace & Gromit in The Curse of the Were-Rabbit
## 4712                                                                                                                                        Brokeback Mountain
## 4713                                                                                                                                             Elizabethtown
## 4714                                                                                                                                Good Night, and Good Luck.
## 4715                                                                                                                                                 Manderlay
## 4716                                                                                                                                                   Jarhead
## 4717                                                                                                                                                   Syriana
## 4718                                                                                                                                         Pride & Prejudice
## 4719                                                                                                                       Harry Potter and the Goblet of Fire
## 4720                                                                                                                                             Walk the Line
## 4721                                                                                                                                               Match Point
## 4722                                                                                                                                                 King Kong
## 4723                                                                                                                                       Memoirs of a Geisha
## 4724                                                                                                                  Three Burials of Melquiades Estrada, The
## 4725                                                                                                                                                    Munich
## 4726                                                                                                                                              Transamerica
## 4727                                                                                                                                            New World, The
## 4728                                                                                                                                               Hoodwinked!
## 4729                                                                                                                                            V for Vendetta
## 4730                                                                                                                                                    Tsotsi
## 4731                                                                                                                                   Mission: Impossible III
## 4732                                                                                                                                        Da Vinci Code, The
## 4733                                                                                                                Pirates of the Caribbean: Dead Man's Chest
## 4734                                                                       Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan
## 4735                                                                                                                                                      Heat
## 4736                                                                                                                                          Dead Man Walking
## 4737                                                                                                                   Things to Do in Denver When You're Dead
## 4738                                                                                                                                              Broken Arrow
## 4739                                                                                                                                                 Apollo 13
## 4740                                                                                                                                Die Hard: With a Vengeance
## 4741                                                                                                                                              Pulp Fiction
## 4742                                                                                                                                                  Stargate
## 4743                                                                                                                                              Forrest Gump
## 4744                                                                                                                                                 True Lies
## 4745                                                                                                                                             Fugitive, The
## 4746                                                                                                                                                   Aladdin
## 4747                                                                                                                                        Dances with Wolves
## 4748                                                                                                                                                    Batman
## 4749                                                                                                                                               Heavy Metal
## 4750                                                                                                                                       Mission: Impossible
## 4751                                                                                                                                                   Twister
## 4752                                                                                                                             Independence Day (a.k.a. ID4)
## 4753                                                                                                                                                    Eraser
## 4754                                                                                                                                                   Freeway
## 4755                                                                                                                         Tin Drum, The (Blechtrommel, Die)
## 4756                                                                                                                                          Grumpier Old Men
## 4757                                                                                                                        Twelve Monkeys (a.k.a. 12 Monkeys)
## 4758                                                                                                                                       Crossing Guard, The
## 4759                                                                                                                                             Happy Gilmore
## 4760                                                                                                                        Star Wars: Episode IV - A New Hope
## 4761                                                                                                                                        Executive Decision
## 4762                                                                                                                                                     Fargo
## 4763                                                                                                                                               Dragonheart
## 4764                                                                                                                             Kids in the Hall: Brain Candy
## 4765                                                                                                                                          Mulholland Falls
## 4766                                                                                                                                             Trainspotting
## 4767                                                                                                                             Independence Day (a.k.a. ID4)
## 4768                                                                                                                                            Cable Guy, The
## 4769                                                                                                                                                    Eraser
## 4770                                                                                                                                      Nutty Professor, The
## 4771                                                                                                                                                Phenomenon
## 4772                                                                                                                                                    Ransom
## 4773                                                                                                          Tales from the Crypt Presents: Bordello of Blood
## 4774                                                                                                                       Willy Wonka & the Chocolate Factory
## 4775                                                                                                                                        Breaking the Waves
## 4776                                                                                                                                  Star Trek: First Contact
## 4777                                                                                                                                               Sling Blade
## 4778                                                                                                                                             Mars Attacks!
## 4779                                                                                                                           Beavis and Butt-Head Do America
## 4780                                                                                                                                                   Michael
## 4781                                                                                                                                                     Crash
## 4782                                                                                                                                                 Toy Story
## 4783                                                                                                                        Twelve Monkeys (a.k.a. 12 Monkeys)
## 4784                                                                                                                                      Seven (a.k.a. Se7en)
## 4785                                                                                                                                       Usual Suspects, The
## 4786                                                                                  Don't Be a Menace to South Central While Drinking Your Juice in the Hood
## 4787                                                                                                                                                    Friday
## 4788                                                                                                                                            Batman Forever
## 4789                                                                                                                                Die Hard: With a Vengeance
## 4790                                                                                                                        Star Wars: Episode IV - A New Hope
## 4791                                                                                                                                              Pulp Fiction
## 4792                                                                                                                                                  Stargate
## 4793                                                                                                                                 Shawshank Redemption, The
## 4794                                                                                                                                Ace Ventura: Pet Detective
## 4795                                                                                                                                              Forrest Gump
## 4796                                                                                                                                                 Mask, The
## 4797                                                                                                                                                     Speed
## 4798                                                                                                                                                 True Lies
## 4799                                                                                                                                             Fugitive, The
## 4800                                                                                                                                             Jurassic Park
## 4801                                                                                                                                            Mrs. Doubtfire
## 4802                                                                                                                                              True Romance
## 4803                                                                                                                                Terminator 2: Judgment Day
## 4804                                                                                                                                 Silence of the Lambs, The
## 4805                                                                                                                                                     Fargo
## 4806                                                                                                                                       Mission: Impossible
## 4807                                                                                                           Wallace & Gromit: The Best of Aardman Animation
## 4808                                                                                                                                                 Rock, The
## 4809                                                                                                                                             Trainspotting
## 4810                                                                                                                             Independence Day (a.k.a. ID4)
## 4811                                                                                                                                            Godfather, The
## 4812                                                                                                                                                  Die Hard
## 4813                                                                                                                                            Reservoir Dogs
## 4814                                                                                                            Star Wars: Episode V - The Empire Strikes Back
## 4815                                                                                   Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 4816                                                                                                                Star Wars: Episode VI - Return of the Jedi
## 4817                                                                                                                           Beavis and Butt-Head Do America
## 4818                                                                                                                                        Fifth Element, The
## 4819                                                                                                                                 Men in Black (a.k.a. MIB)
## 4820                                                                                                                                                   Gattaca
## 4821                                                                                                                                               Jackal, The
## 4822                                                                                                                                         Big Lebowski, The
## 4823                                                                                                                                                Half Baked
## 4824                                                                                                                                             Lost in Space
## 4825                                                                                                                            Fear and Loathing in Las Vegas
## 4826                                                                                                                                       Saving Private Ryan
## 4827                                                                                                                                        American History X
## 4828                                                                                                                                             Bug's Life, A
## 4829                                                                                                                         Lock, Stock & Two Smoking Barrels
## 4830                                                                                                                                               Matrix, The
## 4831                                                                                                                                 Run Lola Run (Lola rennt)
## 4832                                                                                                                                           American Beauty
## 4833                                                                                                                                                Fight Club
## 4834                                                                                                                                          Fisher King, The
## 4835                                                                                                                                               Toy Story 2
## 4836                                                                                                                                           Green Mile, The
## 4837                                                                                                                                      Boondock Saints, The
## 4838                                                                                                                                             High Fidelity
## 4839                                                                                                                                                 Gladiator
## 4840                                                                                                                                                     Shaft
## 4841                                                                                                                                                    Snatch
## 4842                                                                                                                                         Finding Forrester
## 4843                                                                                                                                O Brother, Where Art Thou?
## 4844                                                                                                                                              Mexican, The
## 4845                                                                                                                                                   Memento
## 4846                                                                                                                                                  Scarface
## 4847                                                                                                                                                     Shrek
## 4848                                                                                                                                              Training Day
## 4849                                                                                                                                                   Bandits
## 4850                                                                                                                                                 From Hell
## 4851                                                                                                                                            Ocean's Eleven
## 4852                                                                                                             Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 4853                                                                                                                                     Royal Tenenbaums, The
## 4854                                                                                                                                         Beautiful Mind, A
## 4855                                                                                                                                           Black Hawk Down
## 4856                                                                                                                                            Super Troopers
## 4857                                                                                                                                                   Ice Age
## 4858                                                                                                                                      Bourne Identity, The
## 4859                                                                                                                          Das Experiment (Experiment, The)
## 4860                                                                                                                                                 Secretary
## 4861                                                                                                                                               Equilibrium
## 4862                                                                                                                    Lord of the Rings: The Two Towers, The
## 4863                                                                                                                                                 25th Hour
## 4864                                                                                                                                       Catch Me If You Can
## 4865                                                                                                                              City of God (Cidade de Deus)
## 4866                                                                                                                                          X2: X-Men United
## 4867                                                                                                    Pirates of the Caribbean: The Curse of the Black Pearl
## 4868                                                                                                                                            Matchstick Men
## 4869                                                                                                                                        Station Agent, The
## 4870                                                                                                                                              Mystic River
## 4871                                                                                                                                         Kill Bill: Vol. 1
## 4872                                                                                                                                          Good bye, Lenin!
## 4873                                                                                                                     Eternal Sunshine of the Spotless Mind
## 4874                                                                                                                                         Kill Bill: Vol. 2
## 4875                                                                                                                                               Man on Fire
## 4876                                                                                                                  Harry Potter and the Prisoner of Azkaban
## 4877                                                                                                                                     Bourne Supremacy, The
## 4878                                                                                                                                              Garden State
## 4879                                                                                                                                                Collateral
## 4880                                                                                                                                         Shaun of the Dead
## 4881                                                                                                                                          Incredibles, The
## 4882                                                                                                                                 Tunnel, The (Tunnel, Der)
## 4883                                                                                                                                                Layer Cake
## 4884                                                                                                                       Life Aquatic with Steve Zissou, The
## 4885                                                                                                                                 Downfall (Untergang, Der)
## 4886                                                                                                                                  Kung Fu Hustle (Gong fu)
## 4887                                                                                                                                                  Sin City
## 4888                                                                                                                                             Batman Begins
## 4889                                                                                                                                            Broken Flowers
## 4890                                                                                                                                               Lord of War
## 4891                                                                                                                 Green Street Hooligans (a.k.a. Hooligans)
## 4892                                                                                                                                                    Capote
## 4893                                                                                                          Wallace & Gromit in The Curse of the Were-Rabbit
## 4894                                                                                                                                       Kiss Kiss Bang Bang
## 4895                                                                                                                                                    Munich
## 4896                                                                                                                                            V for Vendetta
## 4897                                                                                                                                     Thank You for Smoking
## 4898                                                                                                                                                Inside Man
## 4899                                                                                                                                       Lucky Number Slevin
## 4900                                                                                                                                     Stranger than Fiction
## 4901                                                                                                                                          Illusionist, The
## 4902                                                                                                                                             Departed, The
## 4903                                                                                                                                           Children of Men
## 4904                                                                                                                                             Prestige, The
## 4905                                                                                                                                             Casino Royale
## 4906                                                                                                                                         Déjà Vu (Deja Vu)
## 4907                                                                                                                                             Blood Diamond
## 4908                                                                                                                                           Cocaine Cowboys
## 4909                                                                                                                                               Ratatouille
## 4910                                                                                                                                                  Hot Fuzz
## 4911                                                                                                                                                       300
## 4912                                                                                                                                                  Fracture
## 4913                                                                                                                                           This Is England
## 4914                                                                                                                                                Mr. Brooks
## 4915                                                                                                                                     Live Free or Die Hard
## 4916                                                                                                                                     Bourne Ultimatum, The
## 4917                                                                                                                                                  Superbad
## 4918                                                                                                                                          Eastern Promises
## 4919                                                                                                                         Tekkonkinkreet (Tekkon kinkurîto)
## 4920                                                                                                                                             Into the Wild
## 4921                                                                                                                                           Michael Clayton
## 4922                                                                                                                                    Lars and the Real Girl
## 4923                                                                                                                                         American Gangster
## 4924                                                                                                                                    No Country for Old Men
## 4925                                                                                                                                       There Will Be Blood
## 4926                                                                                                                                                 In Bruges
## 4927                                                                                                                                          Dark Knight, The
## 4928                                                                                                                                                  Iron Man
## 4929                                                                                                                                                     Taken
## 4930                                                                                                                                                 Fall, The
## 4931                                                                                                                                             Kung Fu Panda
## 4932                                                                                                                                                    WALL·E
## 4933                                                                                                                                                  Watchmen
## 4934                                                                                                                                         Pineapple Express
## 4935                                                                                                                                        Burn After Reading
## 4936                                                                                                                                                RocknRolla
## 4937                                                                                                                                       Slumdog Millionaire
## 4938                                                                                                                                                    Ip Man
## 4939                                                                                                                                               In the Loop
## 4940                                                                                                                                      Inglourious Basterds
## 4941                                                                                                                                                 Star Trek
## 4942                                                                                                                                                        Up
## 4943                                                                                                                                             Hangover, The
## 4944                                                                                       Evangelion: 1.0 You Are (Not) Alone (Evangerion shin gekijôban: Jo)
## 4945                                                                                                                                            Serious Man, A
## 4946                                                                                                                                                    Avatar
## 4947                                                                                                                                           Sherlock Holmes
## 4948                                                                                                                                              Soul Kitchen
## 4949                                                                                                                                                 Inception
## 4950                                                                                                                                                 Town, The
## 4951                                                                                                                                                 True Grit
## 4952                                                                                                                        Sherlock Holmes: A Game of Shadows
## 4953                                                                                                                                              Intouchables
## 4954                                                                                                                                       Usual Suspects, The
## 4955                                                                                                                                           Misérables, Les
## 4956                                                                                                                                               Taxi Driver
## 4957                                                                                                                                              Pulp Fiction
## 4958                                                                                                                                          Schindler's List
## 4959                                                                                                                                 Silence of the Lambs, The
## 4960                                                                                                                                                Goodfellas
## 4961                                                                                                                                                 Cape Fear
## 4962                                                                                                                                                   Contact
## 4963                                                                                                                                 Hunt for Red October, The
## 4964                                                                                                                                               Chasing Amy
## 4965                                                                                                                                         Good Will Hunting
## 4966                                                                                                                                                   Titanic
## 4967                                                                                                                                         Perfect Murder, A
## 4968                                                                                                                                                 Celebrity
## 4969                                                                                                                                            Simple Plan, A
## 4970                                                                                                                                       Shakespeare in Love
## 4971                                                                                                                                               October Sky
## 4972                                                                                                                                              Office Space
## 4973                                                                                                                                  Blair Witch Project, The
## 4974                                                                                                                                            Eyes Wide Shut
## 4975                                                                                                                                          Sixth Sense, The
## 4976                                                                                                                                           American Beauty
## 4977                                                                                                                                                Get Shorty
## 4978                                                                                                                                Postman, The (Postino, Il)
## 4979                                                                                                                                                Braveheart
## 4980                                                                                                         Adventures of Priscilla, Queen of the Desert, The
## 4981                                                                                                                                   Philadelphia Story, The
## 4982                                                                                                                                       Singin' in the Rain
## 4983                                                                                                                                    Breakfast at Tiffany's
## 4984                                                                                                                                                   Vertigo
## 4985                                                                                                                                               Rear Window
## 4986                                                                                                                                        North by Northwest
## 4987                                                                                                                                            Apartment, The
## 4988                                                                                                                                       Maltese Falcon, The
## 4989                                                                                                                                        Gone with the Wind
## 4990                                                                                                                                     2001: A Space Odyssey
## 4991                                                                                                                                             All About Eve
## 4992                                                                                                                                          To Catch a Thief
## 4993                                                                                                                                     It's a Wonderful Life
## 4994                                                                                                                      William Shakespeare's Romeo + Juliet
## 4995                                                                                                                                      Fish Called Wanda, A
## 4996                                                                                                                                          Crying Game, The
## 4997                                                                                                                                              12 Angry Men
## 4998                                                                                                                                       Clockwork Orange, A
## 4999                                                                                                                                                    Psycho
## 5000                                                                                                                                                   Amadeus
## 5001                                                                                                                             Bridge on the River Kwai, The
## 5002                                                                                                                                                 Chinatown
## 5003                                                                                                                                 Manchurian Candidate, The
## 5004                                                                                                                                       Room with a View, A
## 5005                                                                                                                      My Life as a Dog (Mitt liv som hund)
## 5006                                                                                                                                             Crucible, The
## 5007                                                                                                                                 Hunt for Red October, The
## 5008                                                                                                                                         L.A. Confidential
## 5009                                                                                                                                                   Witness
## 5010                                                                                                                                             Lost in Space
## 5011                                                                                                                                                  Bulworth
## 5012                                                                                                                                         On the Waterfront
## 5013                                                                                                                                           Ordinary People
## 5014                                                                                                                                        Driving Miss Daisy
## 5015                                                                                                                      Seven Samurai (Shichinin no samurai)
## 5016                                                                                                                                       Saving Private Ryan
## 5017                                                                                                                                                 Jerk, The
## 5018                                                                                                                                                  Lifeboat
## 5019                                                                                                                                       Edward Scissorhands
## 5020                                                                                                                                            Producers, The
## 5021                                                                                                                       Life Is Beautiful (La Vita è bella)
## 5022                                                                                                                                       Romancing the Stone
## 5023                                                                                                                                          Crocodile Dundee
## 5024                                                                                                                                               Matrix, The
## 5025                                                                                                                                          Cookie's Fortune
## 5026                                                                                                                                    War of the Worlds, The
## 5027                                                                                                                                             Trainspotting
## 5028                                                                                                                                  My Best Friend's Wedding
## 5029                                                                                                                               Mortal Kombat: Annihilation
## 5030                                                                                                                                                  Scream 2
## 5031                                                                                                                                 Purple Rose of Cairo, The
## 5032                                                                                                                                                 King Kong
## 5033                                                                                                                                     Babe: Pig in the City
## 5034                                                                                                                              Texas Chainsaw Massacre, The
## 5035                                                                                                                                              Pet Sematary
## 5036                                                                                                                                               Matrix, The
## 5037                                                                                                                                               Lake Placid
## 5038                                                                                                                                           Ghostbusters II
## 5039                                                                                                                                                Flashdance
## 5040                                                                                                                                                  Sunshine
## 5041                                                                                                                                   Mothman Prophecies, The
## 5042                                                                                                                                      Matrix Reloaded, The
## 5043                                                                                                                                             28 Days Later
## 5044                                                                                                                                   Matrix Revolutions, The
## 5045                                                                                                                                                Open Water
## 5046                                                                                                                                                       300
## 5047                                                                                                                                          Dark Knight, The
## 5048                                                                                                                                               Daybreakers
## 5049                                                                                                                                                 Toy Story
## 5050                                                                                                                                                   Jumanji
## 5051                                                                                                                                                      Heat
## 5052                                                                                                                                              Tom and Huck
## 5053                                                                                                                                   American President, The
## 5054                                                                                                                                                     Nixon
## 5055                                                                                                                                                    Casino
## 5056                                                                                                                                                Four Rooms
## 5057                                                                                                                                                Get Shorty
## 5058                                                                                                                                                 Assassins
## 5059                                                                                                                                         Leaving Las Vegas
## 5060                                                                                                                        Twelve Monkeys (a.k.a. 12 Monkeys)
## 5061                                                                                                                                                      Babe
## 5062                                                                                                                                           Dead Presidents
## 5063                                                                                                                                                To Die For
## 5064                                                                                                                                      Seven (a.k.a. Se7en)
## 5065                                                                                                                                       Usual Suspects, The
## 5066                                                                                                                                          Mighty Aphrodite
## 5067                                                                                                                               Indian in the Cupboard, The
## 5068                                                                                                                                       From Dusk Till Dawn
## 5069                                                                                                                                       Crossing Guard, The
## 5070                                                                                                                                                 City Hall
## 5071                                                                                                                                                Braveheart
## 5072                                                                                                                                               Taxi Driver
## 5073                                                                                                                                              If Lucy Fell
## 5074                                                                                                                                             Birdcage, The
## 5075                                                                                                                                                 Apollo 13
## 5076                                                                                                                                                    Casper
## 5077                                                                                                                                              Crimson Tide
## 5078                                                                                                                                                     Crumb
## 5079                                                                                                                                Die Hard: With a Vengeance
## 5080                                                                                                                                                   Hackers
## 5081                                                                                                                                                   Species
## 5082                                                                                                          To Wong Foo, Thanks for Everything! Julie Newmar
## 5083                                                                                                                                                Waterworld
## 5084                                                                                                                                        White Man's Burden
## 5085                                                                                                                                          Don Juan DeMarco
## 5086                                                                                                                                                 Drop Zone
## 5087                                                                                                                                Destiny Turns on the Radio
## 5088                                                                                                                                                   Ed Wood
## 5089                                                                                                        Interview with the Vampire: The Vampire Chronicles
## 5090                                                                                                                                        Jefferson in Paris
## 5091                                                                                                                        Star Wars: Episode IV - A New Hope
## 5092                                                                                                                                              Little Women
## 5093                                                                                                                               Madness of King George, The
## 5094                                                                                                                                             Nobody's Fool
## 5095                                                                                                                                                      Nell
## 5096                                                                                                                                      Natural Born Killers
## 5097                                                                                                                                              Pulp Fiction
## 5098                                                                                                                                                 Quiz Show
## 5099                                                                                                                                         Santa Clause, The
## 5100                                                                                                                                 Shawshank Redemption, The
## 5101                                                                                                                               What's Eating Gilbert Grape
## 5102                                                                                                                                Ace Ventura: Pet Detective
## 5103                                                                                                                                     Bullets Over Broadway
## 5104                                                                                                                                  Clear and Present Danger
## 5105                                                                                                                                               Client, The
## 5106                                                                                                                                              Forrest Gump
## 5107                                                                                                                               Four Weddings and a Funeral
## 5108                                                                                                                                            Lion King, The
## 5109                                                                                                                                                  Maverick
## 5110                                                                                                                        Mrs. Parker and the Vicious Circle
## 5111                                                                                                                                                Paper, The
## 5112                                                                                                                                                     Speed
## 5113                                                                                                                                                 True Lies
## 5114                                                                                                                                                      Wolf
## 5115                                                                                                                                      Addams Family Values
## 5116                                                                                                                                     Age of Innocence, The
## 5117                                                                                                                                                  Airheads
## 5118                                                                                                                                  Beverly Hillbillies, The
## 5119                                                                                                                                                Blue Chips
## 5120                                                                                                                                                  Blue Sky
## 5121                                                                                                                                            Body Snatchers
## 5122                                                                                                                                             Bronx Tale, A
## 5123                                                                                                              City Slickers II: The Legend of Curly's Gold
## 5124                                                                                                                                               Cliffhanger
## 5125                                                                                                                                                      Dave
## 5126                                                                                                                                            Fatal Instinct
## 5127                                                                                                                                            Flesh and Bone
## 5128                                                                                                                                                 Firm, The
## 5129                                                                                                                                             Fugitive, The
## 5130                                                                                                                                              Getaway, The
## 5131                                                                                                                                             Guilty as Sin
## 5132                                                                                                                                      Hudsucker Proxy, The
## 5133                                                                                                                                          I'll Do Anything
## 5134                                                                                                                                       In the Line of Fire
## 5135                                                                                                                            What's Love Got to Do with It?
## 5136                                                                                                                                             Jurassic Park
## 5137                                                                                                                                          Last Action Hero
## 5138                                                                                                                                  Manhattan Murder Mystery
## 5139                                                                                                                                            Mrs. Doubtfire
## 5140                                                                                                                                          Perfect World, A
## 5141                                                                                                                                              Philadelphia
## 5142                                                                                                                                                Piano, The
## 5143                                                                                                                                   Remains of the Day, The
## 5144                                                                                                                                                Rising Sun
## 5145                                                                                                                                    Road to Wellville, The
## 5146                                                                                                                                          Ruby in Paradise
## 5147                                                                                                                                          Schindler's List
## 5148                                                                                                                                        Secret Garden, The
## 5149                                                                                                                                                Serial Mom
## 5150                                                                                                                                               Shadowlands
## 5151                                                                                                                                                Short Cuts
## 5152                                                                                                                                 Six Degrees of Separation
## 5153                                                                                                                                      Sleepless in Seattle
## 5154                                                                                                                                                    Sliver
## 5155                                                                                                                                              Blade Runner
## 5156                                                                                                                                                 Tombstone
## 5157                                                                                                                                              True Romance
## 5158                                                                                                                                             War Room, The
## 5159                                                                                                                                     Celluloid Closet, The
## 5160                                                                                                                                                Home Alone
## 5161                                                                                                                                                     Ghost
## 5162                                                                                                                                                   Aladdin
## 5163                                                                                                                                Terminator 2: Judgment Day
## 5164                                                                                                                                        Dances with Wolves
## 5165                                                                                                                                                    Batman
## 5166                                                                                                                                 Silence of the Lambs, The
## 5167                                                                                                                           Snow White and the Seven Dwarfs
## 5168                                                                                                                                      Beauty and the Beast
## 5169                                                                                                                                                 Pinocchio
## 5170                                                                                                                                              Pretty Woman
## 5171                                                                                                                                                     Fargo
## 5172                                                                                                                                               Primal Fear
## 5173                                                                                                                                                Diabolique
## 5174                                                                                                                                        Courage Under Fire
## 5175                                                                                                                                 James and the Giant Peach
## 5176                                                                                                                                          Mulholland Falls
## 5177                                                                                                                                                 Rock, The
## 5178                                                                                                                                                   Twister
## 5179                                                                                      Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb
## 5180                                                                                                                                                Striptease
## 5181                                                                                                                                                      Jack
## 5182                                                                                                                                           Grass Harp, The
## 5183                                                                                                                             Independence Day (a.k.a. ID4)
## 5184                                                                                                                                                  Fan, The
## 5185                                                                                                                                                 Lone Star
## 5186                                                                                                                                           Time to Kill, A
## 5187                                                                                                                                          American Buffalo
## 5188                                                                                                                                                    Ransom
## 5189                                                                                                                                            Godfather, The
## 5190                                                                                                                                               Kansas City
## 5191                                                                                                                                   Philadelphia Story, The
## 5192                                                                                                                                       Singin' in the Rain
## 5193                                                                                                                                                   Vertigo
## 5194                                                                                                                                               Rear Window
## 5195                                                                                                                                        North by Northwest
## 5196                                                                                                                                                Casablanca
## 5197                                                                                                                                       Maltese Falcon, The
## 5198                                                                                                                                              My Fair Lady
## 5199                                                                                                                                         Wizard of Oz, The
## 5200                                                                                                                                        Gone with the Wind
## 5201                                                                                                                                          My Favorite Year
## 5202                                                                                                                    Sunset Blvd. (a.k.a. Sunset Boulevard)
## 5203                                                                                                                                              Citizen Kane
## 5204                                                                                                                                     2001: A Space Odyssey
## 5205                                                                                                                                                   Rebecca
## 5206                                                                                                                                            My Man Godfrey
## 5207                                                                                                                                             Thin Man, The
## 5208                                                                                                                                     It's a Wonderful Life
## 5209                                                                                                                              Mr. Smith Goes to Washington
## 5210                                                                                                                                        African Queen, The
## 5211                                                                                                                                     Cat on a Hot Tin Roof
## 5212                                                                                                                                         Last Man Standing
## 5213                                                                                                                                              Chamber, The
## 5214                                                                                                                                             Love Bug, The
## 5215                                                                                                                                                Old Yeller
## 5216                                                                                                                                          Parent Trap, The
## 5217                                                                                                                                     Swiss Family Robinson
## 5218                                                                                                                                            That Darn Cat!
## 5219                                                                                                                                   Sword in the Stone, The
## 5220                                                                                                                             Robin Hood: Prince of Thieves
## 5221                                                                                                                                              Mary Poppins
## 5222                                                                                                                                       Sound of Music, The
## 5223                                                                                                                                                  Die Hard
## 5224                                                                                                                                        That Thing You Do!
## 5225                                                                                                                                                  Sleepers
## 5226                                                                                                                       Willy Wonka & the Chocolate Factory
## 5227                                                                                                                                                   Bananas
## 5228                                                                                                                                      Fish Called Wanda, A
## 5229                                                                                                                                           Victor/Victoria
## 5230                                                                                                                                            Candidate, The
## 5231                                                                                                                                          Bonnie and Clyde
## 5232                                                                                                                                         Dial M for Murder
## 5233                                                                                                                                             Dirty Dancing
## 5234                                                                                                                                            Reservoir Dogs
## 5235                                                                                                                                                   Platoon
## 5236                                                                                                                                       Weekend at Bernie's
## 5237                                                                                                                                            Basic Instinct
## 5238                                                                                                                                                Doors, The
## 5239                                                                                                                                          Crying Game, The
## 5240                                                                                                                                       Glengarry Glen Ross
## 5241                                                                                                                                           Sophie's Choice
## 5242                                                                                                                                E.T. the Extra-Terrestrial
## 5243                                                                                                                                                   Top Gun
## 5244                                                                                                                                 Streetcar Named Desire, A
## 5245                                                                                                                                              Funeral, The
## 5246                                                                                                                               People vs. Larry Flynt, The
## 5247                                                                                                                                            On Golden Pond
## 5248                                                                                                                                            Drop Dead Fred
## 5249                                                                                                                                      Escape from New York
## 5250                                                                                                                                          Private Benjamin
## 5251                                                                                                                                               Bob Roberts
## 5252                                                                                                                                             Grifters, The
## 5253                                                                                                                                              Shooter, The
## 5254                                                                                                                                  Sex, Lies, and Videotape
## 5255                                                                                                                                       Thin Blue Line, The
## 5256                                                                                                                           One Flew Over the Cuckoo's Nest
## 5257                                                                                                            Star Wars: Episode V - The Empire Strikes Back
## 5258                                                                                                                                       Princess Bride, The
## 5259                                                                                   Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 5260                                                                                                                                                    Aliens
## 5261                                                                                                                                       Clockwork Orange, A
## 5262                                                                                                                                     To Kill a Mockingbird
## 5263                                                                                                                                            Apocalypse Now
## 5264                                                                                                                Star Wars: Episode VI - Return of the Jedi
## 5265                                                                                                                                            Third Man, The
## 5266                                                                                                                                                Goodfellas
## 5267                                                                                                                                                     Alien
## 5268                                                                                                                                                    Psycho
## 5269                                                                                                                                       Blues Brothers, The
## 5270                                                                                                                                   Godfather: Part II, The
## 5271                                                                                                                                         Full Metal Jacket
## 5272                                                                                                                                                   Amadeus
## 5273                                                                                                                                            Quiet Man, The
## 5274                                                                                                                               Once Upon a Time in America
## 5275                                                                                                                                               Raging Bull
## 5276                                                                                                                                          Right Stuff, The
## 5277                                                                                                                                                Sting, The
## 5278                                                                                                                                          Harold and Maude
## 5279                                                                                                                                           Terminator, The
## 5280                                                                                                                                                     Glory
## 5281                                                                                                                                                 Manhattan
## 5282                                                                                                                                         Miller's Crossing
## 5283                                                                                                                                        Dead Poets Society
## 5284                                                                                                                                             Graduate, The
## 5285                                                                                                                             Bridge on the River Kwai, The
## 5286                                                                                                                                                 Chinatown
## 5287                                                                                                                                              Shining, The
## 5288                                                                                                                                               Stand by Me
## 5289                                                                                                                                          Deer Hunter, The
## 5290                                                                                                                                             Groundhog Day
## 5291                                                                                                                                                Unforgiven
## 5292                                                                                                                                 Manchurian Candidate, The
## 5293                                                                                                                                        Back to the Future
## 5294                                                                                                                                      Fried Green Tomatoes
## 5295                                                                                                                                                    Patton
## 5296                                                                                                                                            Cool Hand Luke
## 5297                                                                                                                                        Cyrano de Bergerac
## 5298                                                                                                                                        Young Frankenstein
## 5299                                                                                                                                                 High Noon
## 5300                                                                                                                                                  Heathers
## 5301                                                                                                                                         Somewhere in Time
## 5302                                                                                                                        Indiana Jones and the Last Crusade
## 5303                                                                                                                                               Being There
## 5304                                                                                                                                           Field of Dreams
## 5305                                                                                                                                Man Who Would Be King, The
## 5306                                                                                                                        Butch Cassidy and the Sundance Kid
## 5307                                                                                                                                   When Harry Met Sally...
## 5308                                                                                                                                   Alien³ (a.k.a. Alien 3)
## 5309                                                                                                                           American Werewolf in London, An
## 5310                                                                                                                                    Amityville Horror, The
## 5311                                                                                                                                            Believers, The
## 5312                                                                                                                                                Birds, The
## 5313                                                                                                                                                 Blob, The
## 5314                                                                                                                           Dracula (Bram Stoker's Dracula)
## 5315                                                                                                                                                 Cape Fear
## 5316                                                                                                                                                    Carrie
## 5317                                                                                                                                                Cat People
## 5318                                                                                                                                                 Omen, The
## 5319                                                                                                                                          Albino Alligator
## 5320                                                                                                                                               Sling Blade
## 5321                                                                                                                                             Crucible, The
## 5322                                                                                                                                                Die Hard 2
## 5323                                                                                                                                            Batman Returns
## 5324                                                                                                                                                Young Guns
## 5325                                                                                                                                                    Grease
## 5326                                                                                                                                               Under Siege
## 5327                                                                                                                                                      Jaws
## 5328                                                                                                                                                    Jaws 2
## 5329                                                                                                                                       My Fellow Americans
## 5330                                                                                                                                             Jerry Maguire
## 5331                                                                                                                                           Raising Arizona
## 5332                                                                                                                                                   Tin Men
## 5333                                                                                                                                                  Sneakers
## 5334                                                                                                                                             Marvin's Room
## 5335                                                                                                                                            Murder at 1600
## 5336                                                                                                                                              Dante's Peak
## 5337                                                                                                                                             Amos & Andrew
## 5338                                                                                                                                            Absolute Power
## 5339                                                                                                    Vegas Vacation (National Lampoon's Las Vegas Vacation)
## 5340                                                                                                                                             Donnie Brasco
## 5341                                                                                                                                                 Liar Liar
## 5342                                                                                                                                          Devil's Own, The
## 5343                                                                                                                                                 Traveller
## 5344                                                                                                               Austin Powers: International Man of Mystery
## 5345                                                                                                                               Truth or Consequences, N.M.
## 5346                                                                                                                                                   Con Air
## 5347                                                                                                                                            Batman & Robin
## 5348                                                                                                                                                  Hercules
## 5349                                                                                                                                 Men in Black (a.k.a. MIB)
## 5350                                                                                                                                                   Contact
## 5351                                                                                                                                      George of the Jungle
## 5352                                                                                                                                                  Cop Land
## 5353                                                                                                                                        Desperate Measures
## 5354                                                                                                                                             Air Force One
## 5355                                                                                                                                 Hunt for Red October, The
## 5356                                                                                                                                      My Own Private Idaho
## 5357                                                                                                                                                  In & Out
## 5358                                                                                                                                         L.A. Confidential
## 5359                                                                                                                                            Kiss the Girls
## 5360                                                                                                                                         Thousand Acres, A
## 5361                                                                                                                                                 Game, The
## 5362                                                                                                                                      The Devil's Advocate
## 5363                                                                                                                                            Rainmaker, The
## 5364                                                                                                                                             Boogie Nights
## 5365                                                                                                                                                   Witness
## 5366                                                                                                                                          Truman Show, The
## 5367                                                                                                                                                Red Corner
## 5368                                                                                                                                       Alien: Resurrection
## 5369                                                                                                                                              Apostle, The
## 5370                                                                                                                                      Deconstructing Harry
## 5371                                                                                                                                         Good Will Hunting
## 5372                                                                                                                   Midnight in the Garden of Good and Evil
## 5373                                                                                                                                                   Titanic
## 5374                                                                                                                                              Postman, The
## 5375                                                                                                                                              Jackie Brown
## 5376                                                                                                                                         Big Lebowski, The
## 5377                                                                                                                                               Wag the Dog
## 5378                                                                                                                                                  Palmetto
## 5379                                                                                                                                        As Good as It Gets
## 5380                                                                                                                                          King of New York
## 5381                                                                                                                                                  Twilight
## 5382                                                                                                                                                      Hush
## 5383                                                                                                                                               Wild Things
## 5384                                                                                                                                            Primary Colors
## 5385                                                                                                                                     Spanish Prisoner, The
## 5386                                                                                                                                               Sour Grapes
## 5387                                                                                                                                           Misérables, Les
## 5388                                                                                                                                               Deep Impact
## 5389                                                                                                                                                  Godzilla
## 5390                                                                                                                            Fear and Loathing in Las Vegas
## 5391                                                                                                                                         Perfect Murder, A
## 5392                                                                                                                                              Out of Sight
## 5393                                                                                                                                                Armageddon
## 5394                                                                                                                              There's Something About Mary
## 5395                                                                                                                               Greatest Show on Earth, The
## 5396                                                                                                                                         On the Waterfront
## 5397                                                                                                                                           West Side Story
## 5398                                                                                                                                                   Oliver!
## 5399                                                                                                                                           Midnight Cowboy
## 5400                                                                                                                                    French Connection, The
## 5401                                                                                                                                                     Rocky
## 5402                                                                                                                                         Kramer vs. Kramer
## 5403                                                                                                                                           Ordinary People
## 5404                                                                                                                                          Chariots of Fire
## 5405                                                                                                                                       Terms of Endearment
## 5406                                                                                                                                         Last Emperor, The
## 5407                                                                                                                                                  Rain Man
## 5408                                                                                                                                        Driving Miss Daisy
## 5409                                                                                                                                                  Repo Man
## 5410                                                                                                                                       Breakfast Club, The
## 5411                                                                                                                                                 Halloween
## 5412                                                                                                                                               Poltergeist
## 5413                                                                                                                                             Exorcist, The
## 5414                                                                                                                                             Lethal Weapon
## 5415                                                                                                                                           Lethal Weapon 2
## 5416                                                                                                                                           Lethal Weapon 3
## 5417                                                                                                                                                  Gremlins
## 5418                                                                                                                                             Soylent Green
## 5419                                                                                                                                Back to the Future Part II
## 5420                                                                                                                               Back to the Future Part III
## 5421                                                                                                                                   Poseidon Adventure, The
## 5422                                                                                                                              Absent-Minded Professor, The
## 5423                                                                                                                                  Godfather: Part III, The
## 5424                                                                                                                                              Rapture, The
## 5425                                                                                                                                                    Lolita
## 5426                                                                                                                                       Saving Private Ryan
## 5427                                                                                                                                  Honey, I Shrunk the Kids
## 5428                                                                                                                                                Roger & Me
## 5429                                                                                                                                 Purple Rose of Cairo, The
## 5430                                                                                                                                            Tender Mercies
## 5431                                                                                                                                               Blue Velvet
## 5432                                                                                                                                          Jungle Book, The
## 5433                                                                                                                                       Little Mermaid, The
## 5434                                                                                                                                         Mighty Ducks, The
## 5435                                                                                                                               Muppet Christmas Carol, The
## 5436                                                                                                                                                    Popeye
## 5437                                                                                                                                            Rocketeer, The
## 5438                                                                                                                                                      Tron
## 5439                                                                                                                                                L.A. Story
## 5440                                                                                                                                                 Jerk, The
## 5441                                                                                                                                              Grand Canyon
## 5442                                                                                                                                            Outsiders, The
## 5443                                                                                                                      Indiana Jones and the Temple of Doom
## 5444                                                                                                                                    Lord of the Rings, The
## 5445                                                                                                                               1984 (Nineteen Eighty-Four)
## 5446                                                                                                                                            Dead Zone, The
## 5447                                                                                                                                            Needful Things
## 5448                                                                                                                                                      Cujo
## 5449                                                                                                                                      Children of the Corn
## 5450                                                                                                                                        Addams Family, The
## 5451                                                                                                                                                Snake Eyes
## 5452                                                                                                                                      Nutty Professor, The
## 5453                                                                                                                                           Sixteen Candles
## 5454                                                                                                                                            Pretty in Pink
## 5455                                                                                                                                           St. Elmo's Fire
## 5456                                                                                                                                                     House
## 5457                                                                                                                        Henry: Portrait of a Serial Killer
## 5458                                                                                                                                           Rosemary's Baby
## 5459                                                                                                                                        Return to Paradise
## 5460                                                                                                                                               Beetlejuice
## 5461                                                                                                                                Man Who Knew Too Much, The
## 5462                                                                                                                                   Trouble with Harry, The
## 5463                                                                                                                                                        54
## 5464                                                                                                                                                    Willow
## 5465                                                                                                                                         Untouchables, The
## 5466                                                                                                                                                  Rounders
## 5467                                                                                                                                               Simon Birch
## 5468                                                                                                                                              My Bodyguard
## 5469                                                                                                                                            Broadcast News
## 5470                                                                                                                                              Working Girl
## 5471                                                                                                                                        Married to the Mob
## 5472                                                                                                                                            My Blue Heaven
## 5473                                                                                                                                                      Hero
## 5474                                                                                                                                                      Toys
## 5475                                                                                                                                     Young Doctors in Love
## 5476                                                                                                                                           Blame It on Rio
## 5477                                                                                                                                         Seventh Sign, The
## 5478                                                                                                                                           We're No Angels
## 5479                                                                                                                                           Mortal Thoughts
## 5480                                                                                                                                           Few Good Men, A
## 5481                                                                                                                                         Indecent Proposal
## 5482                                                                                                                                                     Ronin
## 5483                                                                                                                       Fiendish Plot of Dr. Fu Manchu, The
## 5484                                                                                                                                               Player, The
## 5485                                                                                                                                       Edward Scissorhands
## 5486                                                                                                                                   Night at the Roxbury, A
## 5487                                                                                                                                            Producers, The
## 5488                                                                                                                              History of the World: Part I
## 5489                                                                                                                                           My Cousin Vinny
## 5490                                                                                                                                             One Tough Cop
## 5491                                                                                                                            2010: The Year We Make Contact
## 5492                                                                                                                                         Elephant Man, The
## 5493                                                                                                                                                 Apt Pupil
## 5494                                                                                                                                             Pleasantville
## 5495                                                                                                                                        American History X
## 5496                                                                                                                                                Siege, The
## 5497                                                                                                                                                 Elizabeth
## 5498                                                                                                                                       Stepford Wives, The
## 5499                                                                                                                            Pope of Greenwich Village, The
## 5500                                                                                                                                            Big Chill, The
## 5501                                                                                                                                        Enemy of the State
## 5502                                                                                                                                             Bug's Life, A
## 5503                                                                                                                                                 King Kong
## 5504                                                                                                                                 Desperately Seeking Susan
## 5505                                                                                                                                                    Fletch
## 5506                                                                                                                                                   Gung Ho
## 5507                                                                                                                                         View to a Kill, A
## 5508                                                                                                                                                    Psycho
## 5509                                                                                                                                            Simple Plan, A
## 5510                                                                                                                                       Shakespeare in Love
## 5511                                                                                                                                    Miracle on 34th Street
## 5512                                                                                                                                Rambo: First Blood Part II
## 5513                                                                                                                          First Blood (Rambo: First Blood)
## 5514                                                                                                                                                    Cocoon
## 5515                                                                                                                                                  Rocky II
## 5516                                                                                                                                                 Rocky III
## 5517                                                                                                                                                  Rocky IV
## 5518                                                                                                                                                   Rocky V
## 5519                                                                                                                                                 Heartburn
## 5520                                                                                                                                         Nothing in Common
## 5521                                                                                                                                           Karate Kid, The
## 5522                                                                                                                                           You've Got Mail
## 5523                                                                                                                                        Thin Red Line, The
## 5524                                                                                                                                                   Stepmom
## 5525                                                                                                                                           Civil Action, A
## 5526                                                                                                                                                Hurlyburly
## 5527                                                                                                                                                  Fly, The
## 5528                                                                                                                                            Running Scared
## 5529                                                                                                                                           Ruthless People
## 5530                                                                                                                                        Jumpin' Jack Flash
## 5531                                                                                                                                          Crocodile Dundee
## 5532                                                                                                                                       Color of Money, The
## 5533                                                                                                                                                   Payback
## 5534                                                                                                                                                       8MM
## 5535                                                                                                                                              Pet Sematary
## 5536                                                                                                                                                 Christine
## 5537                                                                                                                                               Night Shift
## 5538                                                                                                                                                   Airport
## 5539                                                                                                                                              Airport 1975
## 5540                                                                                                                                             Rollercoaster
## 5541                                                                                                                                     Towering Inferno, The
## 5542                                                                                                                                               Logan's Run
## 5543                                                                                                                                        Planet of the Apes
## 5544                                                                                                                            Beneath the Planet of the Apes
## 5545                                                                                                                         Battle for the Planet of the Apes
## 5546                                                                                                                        Conquest of the Planet of the Apes
## 5547                                                                                                                        Escape from the Planet of the Apes
## 5548                                                                                                                                                Earthquake
## 5549                                                                                                                                              Analyze This
## 5550                                                                                                                                              Dead Ringers
## 5551                                                                                                                                                True Crime
## 5552                                                                                                                                               Matrix, The
## 5553                                                                                                                                       Out-of-Towners, The
## 5554                                                                                                                                                 Metroland
## 5555                                                                                                                                               Pushing Tin
## 5556                                                                                                                                                  Election
## 5557                                                                                                                                                Entrapment
## 5558                                                                                                                                          Winslow Boy, The
## 5559                                                                                                                                                Dick Tracy
## 5560                                                                                                                                                Mummy, The
## 5561                                                                                                                                            Mommie Dearest
## 5562                                                                                                                                                  Superman
## 5563                                                                                                                                               Superman II
## 5564                                                                                                                                              Superman III
## 5565                                                                                                                            Invasion of the Body Snatchers
## 5566                                                                                                                                              Notting Hill
## 5567                                                                                                                                                    Tarzan
## 5568                                                                                                                                   General's Daughter, The
## 5569                                                                                                                                            Wild Wild West
## 5570                                                                                                                                             Summer of Sam
## 5571                                                                                                                                            Arlington Road
## 5572                                                                                                                                            Eyes Wide Shut
## 5573                                                                                                                       Ghostbusters (a.k.a. Ghost Busters)
## 5574                                                                                                                                                    Lolita
## 5575                                                                                                                                              Barry Lyndon
## 5576                                                                                                                                       Crimes of the Heart
## 5577                                                                                                                                         Color Purple, The
## 5578                                                                                                                                                  No Mercy
## 5579                                                                                                                                    Little Shop of Horrors
## 5580                                                                                                                                        Morning After, The
## 5581                                                                                                                                                Radio Days
## 5582                                                                                                                                                   Frances
## 5583                                                                                                                                          Sixth Sense, The
## 5584                                                                                                                                  Thomas Crown Affair, The
## 5585                                                                                                                                                 Bowfinger
## 5586                                                                                                                                      Pit and the Pendulum
## 5587                                                                                                                                                 Cat's Eye
## 5588                                                                                                 Final Conflict, The (a.k.a. Omen III: The Final Conflict)
## 5589                                                                                                                                                 Airplane!
## 5590                                                                                                                            American Werewolf in Paris, An
## 5591                                                                                              European Vacation (aka National Lampoon's European Vacation)
## 5592                                                                                                                               National Lampoon's Vacation
## 5593                                                                                                                                                       Big
## 5594                                                                                                                                           Tequila Sunrise
## 5595                                                                                                                                        Pelican Brief, The
## 5596                                                                                                                                        Christmas Story, A
## 5597                                                                                                                                          Mickey Blue Eyes
## 5598                                                                                                           Three Days of the Condor (3 Days of the Condor)
## 5599                                                                                                                                                 Muse, The
## 5600                                                                                                                                            Stir of Echoes
## 5601                                                                                                                                                  Saturn 3
## 5602                                                                                                                                        Soldier's Story, A
## 5603                                                                                                                                        I Saw What You Did
## 5604                                                                                                                                           American Beauty
## 5605                                                                                                                                      For Love of the Game
## 5606                                                                                                                                               Deliverance
## 5607                                                                                                                                                 Sommersby
## 5608                                                                                                                                           Double Jeopardy
## 5609                                                                                                                                                   Mumford
## 5610                                                                                                                                               Three Kings
## 5611                                                                                                                                            Boys Don't Cry
## 5612                                                                                                                                                Limey, The
## 5613                                                                                                                                              Total Recall
## 5614                                                                                                                                                 Body Heat
## 5615                                                                                                                                  Ferris Bueller's Day Off
## 5616                                                                                                                                                      Reds
## 5617                                                                                                                                                Flashdance
## 5618                                                                                                                                          Dirty Dozen, The
## 5619                                                                                                                                                Goldfinger
## 5620                                                                                                                                          Blue Lagoon, The
## 5621                                                                                                                                       Sydney (Hard Eight)
## 5622                                                                                                                                  Someone to Watch Over Me
## 5623                                                                                                                                                Fight Club
## 5624                                                                                                                                       Straight Story, The
## 5625                                                                                                                                             Bad Seed, The
## 5626                                                                                                                                             All That Jazz
## 5627                                                                                                                                   Crimes and Misdemeanors
## 5628                                                                                                                                     Bringing Out the Dead
## 5629                                                                                                                                          Crazy in Alabama
## 5630                                                                                                                                                   RoboCop
## 5631                                                                                                                                  Who Framed Roger Rabbit?
## 5632                                                                                                                                        For Your Eyes Only
## 5633                                                                                                                                          Live and Let Die
## 5634                                                                                                                                              Insider, The
## 5635                                                                                                                                                      Coma
## 5636                                                                                                                                          Drugstore Cowboy
## 5637                                                                                                                                              Falling Down
## 5638                                                                                                                                            Omega Man, The
## 5639                                                                                                                                            Mister Roberts
## 5640                                                                                                                                      Face in the Crowd, A
## 5641                                                                                                                                            Trading Places
## 5642                                                                                                                                                Dead Again
## 5643                                                                                                                  Messenger: The Story of Joan of Arc, The
## 5644                                                                                                                                                Poison Ivy
## 5645                                                                                                                                              Verdict, The
## 5646                                                                                                                                         Stand and Deliver
## 5647                                                                                                                                                Moonstruck
## 5648                                                                                                                                          Jeremiah Johnson
## 5649                                                                                                                                             Sleepy Hollow
## 5650                                                                                                                                  World Is Not Enough, The
## 5651                                                                                                                                                  Scrooged
## 5652                                                                                                                                      Grapes of Wrath, The
## 5653                                                                                                                                              Natural, The
## 5654                                                                                                                                          Fatal Attraction
## 5655                                                                                                                                               Jagged Edge
## 5656                                                                                                                                              Midnight Run
## 5657                                                                                                                                                Awakenings
## 5658                                                                                                                                                 Backdraft
## 5659                                                                                                                                          Fisher King, The
## 5660                                                                                                                                       Places in the Heart
## 5661                                                                                                                                               Toy Story 2
## 5662                                                                                                                              Distinguished Gentleman, The
## 5663                                                                                                                                   Bonfire of the Vanities
## 5664                                                                                                                                             Stealing Home
## 5665                                                                                                                                            Two Jakes, The
## 5666                                                                                                                                    Glass Bottom Boat, The
## 5667                                                                                                                                           Green Mile, The
## 5668                                                                                                                                    Last Picture Show, The
## 5669                                                                                                                                          Bicentennial Man
## 5670                                                                                                                                                  Magnolia
## 5671                                                                                                                                          Carnal Knowledge
## 5672                                                                                                                                The Falcon and the Snowman
## 5673                                                                                                                                          Any Given Sunday
## 5674                                                                                                                                           Man on the Moon
## 5675                                                                                                                                  Talented Mr. Ripley, The
## 5676                                                                                                                                    Snow Falling on Cedars
## 5677                                                                                                                                             Presidio, The
## 5678                                                                                                                                                  Papillon
## 5679                                                                                                                                     Boys from Brazil, The
## 5680                                                                                                                                          Against All Odds
## 5681                                                                                                                              Fast Times at Ridgemont High
## 5682                                                                                                                                                    Poison
## 5683                                                                                                                                           Pacific Heights
## 5684                                                                                                                                         Goodbye Girl, The
## 5685                                                                                                                                                 Malcolm X
## 5686                                                                                                                                                Sister Act
## 5687                                                                                                                           Hand That Rocks the Cradle, The
## 5688                                                                                                                                          Scent of a Woman
## 5689                                                                                                                                             Wayne's World
## 5690                                                                                                                                    League of Their Own, A
## 5691                                                                                                                                             Patriot Games
## 5692                                                                                                                                            Bodyguard, The
## 5693                                                                                                                                         Death Becomes Her
## 5694                                                                                                                                      White Men Can't Jump
## 5695                                                                                                                                             Forever Young
## 5696                                                                                                                                       Single White Female
## 5697                                                                                                                                                  Snow Day
## 5698                                                                                                                                          To Sir with Love
## 5699                                                                                                                                               Boiler Room
## 5700                                                                                                                                         Flamingo Kid, The
## 5701                                                                                                                                            Reindeer Games
## 5702                                                                                                                                                 Key Largo
## 5703                                                                                                                                           Mission to Mars
## 5704                                                                                                                                       Defending Your Life
## 5705                                                                                                                                             Breaking Away
## 5706                                                                                                                               Hoosiers (a.k.a. Best Shot)
## 5707                                                                                                                                               Bull Durham
## 5708                                                                                                                                         Dog Day Afternoon
## 5709                                                                                                                                         American Graffiti
## 5710                                                                                                                                                  Betrayed
## 5711                                                                                                                                                Volunteers
## 5712                                                                                                                                                       JFK
## 5713                                                                                                                                          Who's That Girl?
## 5714                                                                                                                                                Blind Date
## 5715                                                                                                                                                    Nadine
## 5716                                                                                                                                           Thelma & Louise
## 5717                                                                                                                                    ...And Justice for All
## 5718                                                                                                                                              Animal House
## 5719                                                                                                                                              Jungle Fever
## 5720                                                                                                                                                Champ, The
## 5721                                                                                                                                                  Red Dawn
## 5722                                                                                                                                        Eyes of Laura Mars
## 5723                                                                                                                                     Good Morning, Vietnam
## 5724                                                                                                                              Guess Who's Coming to Dinner
## 5725                                                                                                                                              Hustler, The
## 5726                                                                                                                                            Jacob's Ladder
## 5727                                                                                                                                                 Bamba, La
## 5728                                                                                                                                    Road to El Dorado, The
## 5729                                                                                                                                                      Hook
## 5730                                                                                                                                                 True Grit
## 5731                                                                                                                                          Midnight Express
## 5732                                                                                                                                                    Misery
## 5733                                                                                                                                        Mr. Saturday Night
## 5734                                                                                                                                                   Network
## 5735                                                                                                                                                No Way Out
## 5736                                                                                                                                        North Dallas Forty
## 5737                                                                                                                                           Odd Couple, The
## 5738                                                                                                                                       Rules of Engagement
## 5739                                                                                                                                                    Arthur
## 5740                                                                                                                                                Parenthood
## 5741                                                                                                                                      Prince of Tides, The
## 5742                                                                                                                           Postman Always Rings Twice, The
## 5743                                                                                                                                           American Psycho
## 5744                                                                                                                                         Keeping the Faith
## 5745                                                                                                                                        Where the Money Is
## 5746                                                                                                                                                     Diner
## 5747                                                                                                                                                   Cabaret
## 5748                                                                                                                          What Ever Happened to Baby Jane?
## 5749                                                                                                                                               Auntie Mame
## 5750                                                                                                                                            Guys and Dolls
## 5751                                                                                                                                              Marathon Man
## 5752                                                                                                                                      Virgin Suicides, The
## 5753                                                                                                                                                Jennifer 8
## 5754                                                                                                                                           Big Kahuna, The
## 5755                                                                                                                                                 Gladiator
## 5756                                                                                                                                   Pee-wee's Big Adventure
## 5757                                                                                                                                             Things Change
## 5758                                                                                                                                        Honeymoon in Vegas
## 5759                                                                                                                                         Small Time Crooks
## 5760                                                                                                                                                 Moonraker
## 5761                                                                                                                                           American Gigolo
## 5762                                                                                                                                           Blazing Saddles
## 5763                                                                                                                                              Blood Simple
## 5764                                                                                                                                  Fabulous Baker Boys, The
## 5765                                                                                                                                            Prizzi's Honor
## 5766                                                                                                                                                Flatliners
## 5767                                                                                                                                                   Porky's
## 5768                                                                                                                                              Alien Nation
## 5769                                                                                                                                                   Mad Max
## 5770                                                                                                                                Mad Max Beyond Thunderdome
## 5771                                                                                                                                                  Soapdish
## 5772                                                                                                                                       Long Walk Home, The
## 5773                                                                                                                                               Coming Home
## 5774                                                                                                                                        Prince of the City
## 5775                                                                                                                                                   Serpico
## 5776                                                                                                                                               Chicken Run
## 5777                                                                                                                                              Patriot, The
## 5778                                                                                                                                                       F/X
## 5779                                                                                                                                                  Croupier
## 5780                                                                                                                                                 Footloose
## 5781                                                                                                                                                  H.O.T.S.
## 5782                                                                                   Everything You Always Wanted to Know About Sex * But Were Afraid to Ask
## 5783                                                                                                                                                Hollow Man
## 5784                                                                                                                                              Bronco Billy
## 5785                                                                                                                                           Steel Magnolias
## 5786                                                                                                                                         Tao of Steve, The
## 5787                                                                                                                                   Eyes of Tammy Faye, The
## 5788                                                                                                                                                Cat Ballou
## 5789                                                                                                                                             Almost Famous
## 5790                                                                                                                                          Fantastic Voyage
## 5791                                                                                                                                          Meet the Parents
## 5792                                                                                                                                            Contender, The
## 5793                                                                                                                                                Billy Jack
## 5794                                                                                                                                       You Can Count on Me
## 5795                                                                                                                                               Unbreakable
## 5796                                                                                                          Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 5797                                                                                                                              Planes, Trains & Automobiles
## 5798                                                                                                                                               Wall Street
## 5799                                                                                                                                Born on the Fourth of July
## 5800                                                                                                                                                Talk Radio
## 5801                                                                                                                                                    Snatch
## 5802                                                                                                                                                 Punchline
## 5803                                                                                                                                                  Chocolat
## 5804                                                                                                                                           What Women Want
## 5805                                                                                                                                                 Cast Away
## 5806                                                                                                                                         Miss Congeniality
## 5807                                                                                                                                O Brother, Where Art Thou?
## 5808                                                                                                                                            State and Main
## 5809                                                                                                                                             Thirteen Days
## 5810                                                                                                                                                   Traffic
## 5811                                                                                                                                            House of Games
## 5812                                                                                                                                                     Annie
## 5813                                                                                                                               Officer and a Gentleman, An
## 5814                                                                                                                                                     Panic
## 5815                                                                                                                                                Love Field
## 5816                                                                                                                                              Mystic Pizza
## 5817                                                                                                                                         Prelude to a Kiss
## 5818                                                                                                                                         Beverly Hills Cop
## 5819                                                                                                                                             Big Easy, The
## 5820                                                                                                                                             Big Town, The
## 5821                                                                                                                                 Brave Little Toaster, The
## 5822                                                                                                                                          Eddie Murphy Raw
## 5823                                                                                                                                          Gardens of Stone
## 5824                                                                                                                                                  Ironweed
## 5825                                                                                                                                            Less Than Zero
## 5826                                                                                                                                            Lost Boys, The
## 5827                                                                                                                                                 Mannequin
## 5828                                                                                                                                 Million Dollar Hotel, The
## 5829                                                                                                                                                  Hannibal
## 5830                                                                                                                                                15 Minutes
## 5831                                                                                                                                              Elmer Gantry
## 5832                                                                                                                                       Reversal of Fortune
## 5833                                                                                                                                      Revenge of the Nerds
## 5834                                                                                                                                                   Memento
## 5835                                                                                                                                             Heartbreakers
## 5836                                                                                                                                                      Blow
## 5837                                                                                                                                     Bridget Jones's Diary
## 5838                                                                                                                                                  Scarface
## 5839                                                                                                                                    Days of Wine and Roses
## 5840                                                                                                                                           Lost in America
## 5841                                                                                                                              World According to Garp, The
## 5842                                                                                                                              Nine to Five (a.k.a. 9 to 5)
## 5843                                                                                                                                                 Norma Rae
## 5844                                                                                                                                                     Shrek
## 5845                                                                                                                                              Moulin Rouge
## 5846                                                                                                                                              Pearl Harbor
## 5847                                                                                                                                               Ice Castles
## 5848                                                                                                                                   Postcards From the Edge
## 5849                                                                                                                                             City Slickers
## 5850                                                                                                                                             Eight Men Out
## 5851                                                                                                                                       Mississippi Burning
## 5852                                                                                                                                Throw Momma from the Train
## 5853                                                                                                                                                 Swordfish
## 5854                                                                                                                                    Anniversary Party, The
## 5855                                                                                                                                                      Shag
## 5856                                                                                                                                            Unlawful Entry
## 5857                                                                                                                                                   Tootsie
## 5858                                                                                                                              A.I. Artificial Intelligence
## 5859                                                                                                                                                Sexy Beast
## 5860                                                                                                                                       Cannonball Run, The
## 5861                                                                                                                         Man Who Shot Liberty Valance, The
## 5862                                                                                                                                           Shadows and Fog
## 5863                                                                                                                                            Something Wild
## 5864                                                                                                                                            Legally Blonde
## 5865                                                                                                                                   Accidental Tourist, The
## 5866                                                                                                                                              Accused, The
## 5867                                                                                                                                                   Beaches
## 5868                                                                                                                                   Bright Lights, Big City
## 5869                                                                                                                                           Clean and Sober
## 5870                                                                                                                                                  Cocktail
## 5871                                                                                                                                                    Colors
## 5872                                                                                                                                         Coming to America
## 5873                                                                                                                                              Criminal Law
## 5874                                                                                                                                         Crossing Delancey
## 5875                                                                                                                                                    D.O.A.
## 5876                                                                                                                                            Dead Pool, The
## 5877                                                                                                                                   Dirty Rotten Scoundrels
## 5878                                                                                                                                  Everybody's All-American
## 5879                                                                                                                                                Masquerade
## 5880                                                                                                                                         Moon Over Parador
## 5881                                                                                                                                 My Stepmother Is an Alien
## 5882                                                                                                                                                Off Limits
## 5883                                                                                                                             Tucker: The Man and His Dream
## 5884                                                                                                                                                    Always
## 5885                                                                                                                                          Big Picture, The
## 5886                                                                                                                                                     Blaze
## 5887                                                                                                                                          Innocent Man, An
## 5888                                                                                                                                     Last Exit to Brooklyn
## 5889                                                                                                                                               Let It Ride
## 5890                                                                                                                                        Look Who's Talking
## 5891                                                                                                                                          Miss Firecracker
## 5892                                                                                                                                          New York Stories
## 5893                                                                                                                                               Next of Kin
## 5894                                                                                                                                     America's Sweethearts
## 5895                                                                                                                                        Planet of the Apes
## 5896                                                                                                                                               Sea of Love
## 5897                                                                                                                                     War of the Roses, The
## 5898                                                                                                                                     Princess Diaries, The
## 5899                                                                                                                                          Paint Your Wagon
## 5900                                                                                                                                             Shootist, The
## 5901                                                                                                                                            Altered States
## 5902                                                                                                                                     Any Which Way You Can
## 5903                                                                                                                                                  Rat Race
## 5904                                                                                                                           Curse of the Jade Scorpion, The
## 5905                                                                                                                                               Hunter, The
## 5906                                                                                                                                              Training Day
## 5907                                                                                                                                           Little Man Tate
## 5908                                                                                                                                         Play Misty for Me
## 5909                                                                                                                                        Hearts in Atlantis
## 5910                                                                                                                                                  Brubaker
## 5911                                                                                                                                                     Carny
## 5912                                                                                                                                     Coal Miner's Daughter
## 5913                                                                                                                                 Man Who Wasn't There, The
## 5914                                                                                                                                            Monsters, Inc.
## 5915                                                                                                                                                     Heist
## 5916                                                                                                                                               Shallow Hal
## 5917                                                                   Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 5918                                                                                                                                                 Novocaine
## 5919                                                                                                                                                  Toy, The
## 5920                                                                                                                                           Dressed to Kill
## 5921                                                                                                                                              Flash Gordon
## 5922                                                                                                                                         Lord of the Flies
## 5923                                                                                                                        Ocean's Eleven (a.k.a. Ocean's 11)
## 5924                                                                                                                                          Independent, The
## 5925                                                                                                                                            Ocean's Eleven
## 5926                                                                                                                                      Moscow on the Hudson
## 5927                                                                                                                                                   Lantana
## 5928                                                                                                                                     Royal Tenenbaums, The
## 5929                                                                                                        Lord of the Rings: The Fellowship of the Ring, The
## 5930                                                                                                                                         Beautiful Mind, A
## 5931                                                                                                                                            Monster's Ball
## 5932                                                                                                                                           Another 48 Hrs.
## 5933                                                                                                                                              Formula, The
## 5934                                                                                                                                                   48 Hrs.
## 5935                                                                                                                                     M*A*S*H (a.k.a. MASH)
## 5936                                                                                                                                               Mrs. Soffel
## 5937                                                                                                                                 The Count of Monte Cristo
## 5938                                                                                                                                             Good Son, The
## 5939                                                                                                                                                    Sleuth
## 5940                                                                                                                                             Summer of '42
## 5941                                                                                                                                                 Used Cars
## 5942                                                                                                                                                 Dragonfly
## 5943                                                                                                                                          We Were Soldiers
## 5944                                                                                                                                              Intersection
## 5945                                                                                                                                              Full Frontal
## 5946                                                                                                                                                 Hopscotch
## 5947                                                                                                                                          Jazz Singer, The
## 5948                                                                                                                                     Long Good Friday, The
## 5949                                                                                           Ninth Configuration, The (a.k.a. Twinkle, Twinkle, Killer Kane)
## 5950                                                                                                                                                  Oh, God!
## 5951                                                                                                                                                      Taps
## 5952                                                                                                                                     Smokey and the Bandit
## 5953                                                                                                                                                Stir Crazy
## 5954                                                                                                                          Piano Teacher, The (La pianiste)
## 5955                                                                                                                                         Crimes of Passion
## 5956                                                                                                                                     Evil That Men Do, The
## 5957                                                                                                                                            Changing Lanes
## 5958                                                                                                                                           Cat's Meow, The
## 5959                                                                                                                                  My Big Fat Greek Wedding
## 5960                                                                                                                                    Joe Versus the Volcano
## 5961                                                                                                                                   Taking Care of Business
## 5962                                                                                                                                      Three Men and a Baby
## 5963                                                                                                                               Three Men and a Little Lady
## 5964                                                                                                                                              Cadillac Man
## 5965                                                                                                                                        Coca-Cola Kid, The
## 5966                                                                                                                                           Thief of Hearts
## 5967                                                                                                                                             Rambling Rose
## 5968                                                                                                                                                Unfaithful
## 5969                                                                                                                                                     Whore
## 5970                                                                                                                                 Every Which Way But Loose
## 5971                                                                                                                                                  Insomnia
## 5972                                                                                          Thirteen Conversations About One Thing (a.k.a. 13 Conversations)
## 5973                                                                                                                                     Sum of All Fears, The
## 5974                                                                                                                                           Minority Report
## 5975                                                                                                                                    Look Who's Talking Now
## 5976                                                                                                                                         Road to Perdition
## 5977                                                                                                                                                   Perfect
## 5978                                                                                                                                                     Signs
## 5979                                                                                                                                                Blood Work
## 5980                                                                                                                                                     Hush!
## 5981                                                                                                                                           Time After Time
## 5982                                                                                                                             Down and Out in Beverly Hills
## 5983                                                                                                                                               True Colors
## 5984                                                                                                                                                   Swimfan
## 5985                                                                                                                                           Betsy's Wedding
## 5986                                                                                                                                        Sweet Home Alabama
## 5987                                                                                                                                                Red Dragon
## 5988                                                                                                                                                  Fan, The
## 5989                                                                                                                                                  Comedian
## 5990                                                                                                                                                 Ring, The
## 5991                                                                                                                                                Auto Focus
## 5992                                                                                                                                            Billy Bathgate
## 5993                                                                                                                                             Staying Alive
## 5994                                                                                                                                              Urban Cowboy
## 5995                                                                                                                                                  Tom Horn
## 5996                                                                                                                                              Wholly Moses
## 5997                                                                                                                                                    Xanadu
## 5998                                                                                                                                         Absence of Malice
## 5999                                                                                                                                                  Blow Out
## 6000                                                                                                                                        Continental Divide
## 6001                                                                                                                                              Endless Love
## 6002                                                                                                                                         Eye of the Needle
## 6003                                                                                                                                   First Monday in October
## 6004                                                                                                                                         Four Seasons, The
## 6005                                                                                                                                                 Neighbors
## 6006                                                                                                                                           Far from Heaven
## 6007                                                                                                                                              Toy Soldiers
## 6008                                                                                                                                               Raggedy Man
## 6009                                                                                                                                                   Ragtime
## 6010                                                                                                                                          Sharky's Machine
## 6011                                                                                                                                                   So Fine
## 6012                                                                                                                                          Southern Comfort
## 6013                                                                                                                                          True Confessions
## 6014                                                                                                                                              Analyze That
## 6015                                                                                                                                                Adaptation
## 6016                                                                                                                                           Author! Author!
## 6017                                                                                                                                              Best Friends
## 6018                                                                                                                      Best Little Whorehouse in Texas, The
## 6019                                                                                                                                               Cannery Row
## 6020                                                                                                                                                 Deathtrap
## 6021                                                                                                                                              Eating Raoul
## 6022                                                                                                                                             About Schmidt
## 6023                                                                                                                                         Gangs of New York
## 6024                                                                                                                                                      Narc
## 6025                                                                                                                                             Bad Influence
## 6026                                                                                                                                                Blue Steel
## 6027                                                                                                                                          Body of Evidence
## 6028                                                                                                                                               Miami Blues
## 6029                                                                                                                                       Catch Me If You Can
## 6030                                                                                                                                                   Chicago
## 6031                                                                                                                                       King of Comedy, The
## 6032                                                                                                                                                  Dogfight
## 6033                                                                                                                                             Honkytonk Man
## 6034                                                                                                                                               Making Love
## 6035                                                                                                                                                   Missing
## 6036                                                                                                                                                 Monsignor
## 6037                                                                                                                                             Personal Best
## 6038                                                                                                                                            Shoot the Moon
## 6039                                                                                                                                                     Q & A
## 6040                                                                                                                                         Gods and Generals
## 6041                                                                                                                                   Bringing Down the House
## 6042                                                                                                                                            Born Yesterday
## 6043                                                                                                                                                     Equus
## 6044                                                                                                                                   Glenn Miller Story, The
## 6045                                                                                                                                                Green Card
## 6046                                                                                                                                              One Good Cop
## 6047                                                                                                                                                     Basic
## 6048                                                                                                                                               Phone Booth
## 6049                                                                                                                                              Legal Eagles
## 6050                                                                                                                     Marrying Man, The (Too Hot to Handle)
## 6051                                                                                                                                            Chorus Line, A
## 6052                                                                                                                                    Electric Horseman, The
## 6053                                                                                                                                         Mr. & Mrs. Bridge
## 6054                                                                                                                                                Shenandoah
## 6055                                                                                                                                           This Boy's Life
## 6056                                                                                                                                               Barton Fink
## 6057                                                                                                                                     Long, Hot Summer, The
## 6058                                                                                                                                          Half Moon Street
## 6059                                                                                                                                                Seabiscuit
## 6060                                                                                                                                           Dangerous Minds
## 6061                                                                                                                        Twelve Monkeys (a.k.a. 12 Monkeys)
## 6062                                                                                                                                       Usual Suspects, The
## 6063                                                                                                                                               Taxi Driver
## 6064                                                                                                                        Star Wars: Episode IV - A New Hope
## 6065                                                                                                                                              Pulp Fiction
## 6066                                                                                                                                 Shawshank Redemption, The
## 6067                                                                                                                                             Reality Bites
## 6068                                                                                                                                                   Timecop
## 6069                                                                                                                                          Schindler's List
## 6070                                                                                                                                              Blade Runner
## 6071                                                                                                                                             Trainspotting
## 6072                                                                                                                                            Godfather, The
## 6073                                                                                                                                               Rear Window
## 6074                                                                                                                                            Reservoir Dogs
## 6075                                                                                                                                       Weekend at Bernie's
## 6076                                                                                                                                  Sex, Lies, and Videotape
## 6077                                                                                                                                       Princess Bride, The
## 6078                                                                                                                                       Clockwork Orange, A
## 6079                                                                                                                                            Apocalypse Now
## 6080                                                                                                                                   Godfather: Part II, The
## 6081                                                                                                                                                Sting, The
## 6082                                                                                                                                       Killing Fields, The
## 6083                                                                                                                                                Young Guns
## 6084                                                                                                                                                     Evita
## 6085                                                                                                                                          Chariots of Fire
## 6086                                                                                                                                                 Labyrinth
## 6087                                                                                                                                       Saving Private Ryan
## 6088                                                                                                                                           Say Anything...
## 6089                                                                                                                                        American History X
## 6090                                                                                                                                              Office Space
## 6091                                                                                                                                               Matrix, The
## 6092                                                                                                                                 Run Lola Run (Lola rennt)
## 6093                                                                                                                                                Fight Club
## 6094                                                                                                                                      Being John Malkovich
## 6095                                                                                                                                                Moonstruck
## 6096                                                                                                                                                  Scrooged
## 6097                                                                                                                                          Running Man, The
## 6098                                                                                                                                        Perfect Storm, The
## 6099                                                                                                                                             Almost Famous
## 6100                                                                                                                                              Best in Show
## 6101                                                                                                                                            Monsters, Inc.
## 6102                                                                                                                                     Royal Tenenbaums, The
## 6103                                                                                                        Lord of the Rings: The Fellowship of the Ring, The
## 6104                                                                                                                                      Bourne Identity, The
## 6105                                                                                                                    Lord of the Rings: The Two Towers, The
## 6106                                                                                                                                              Pianist, The
## 6107                                                                                                    Pirates of the Caribbean: The Curse of the Black Pearl
## 6108                                                                                                                                       Lost in Translation
## 6109                                                                                                            Lord of the Rings: The Return of the King, The
## 6110                                                                                                                     Eternal Sunshine of the Spotless Mind
## 6111                                                                                                                                          Incredibles, The
## 6112                                                                                                                      Enron: The Smartest Guys in the Room
## 6113                                                                                                                                             Batman Begins
## 6114                                                                                                                                            V for Vendetta
## 6115                                                                                                                                     Thank You for Smoking
## 6116                                                                                                                 Pan's Labyrinth (Laberinto del fauno, El)
## 6117                                                                                                                                               Ratatouille
## 6118                                                                                                                                                  Superbad
## 6119                                                                                                                                    Lars and the Real Girl
## 6120                                                                                                                                    No Country for Old Men
## 6121                                                                                                                                          Dark Knight, The
## 6122                                                                                                                                                  Iron Man
## 6123                                                                                                                                               Gran Torino
## 6124                                                                                                                                         Fantastic Mr. Fox
## 6125                                                                                                                                                    Avatar
## 6126                                                                                                                                       Alice in Wonderland
## 6127                                                                                                                                  How to Train Your Dragon
## 6128                                                                                                                                                  Kick-Ass
## 6129                                                                                                                                                   Jumanji
## 6130                                                                                                                            Ace Ventura: When Nature Calls
## 6131                                                                                                                                           Dangerous Minds
## 6132                                                                                                                                             Mortal Kombat
## 6133                                                                                                                                                Braveheart
## 6134                                                                                                                                                 Apollo 13
## 6135                                                                                                                                            Batman Forever
## 6136                                                                                                                                                    Casper
## 6137                                                                                                                                Die Hard: With a Vengeance
## 6138                                                                                                                                              First Knight
## 6139                                                                                                                                               Judge Dredd
## 6140                                                                                                                             Under Siege 2: Dark Territory
## 6141                                                                                                                                                Waterworld
## 6142                                                                                                                                                Disclosure
## 6143                                                                                                                           Dumb & Dumber (Dumb and Dumber)
## 6144                                                                                                                                                      I.Q.
## 6145                                                                                                                                              Little Women
## 6146                                                                                                                                       Legends of the Fall
## 6147                                                                                                                                                  Outbreak
## 6148                                                                                                                                              Pulp Fiction
## 6149                                                                                                                                                 Quiz Show
## 6150                                                                                                                                                  Stargate
## 6151                                                                                                                                         Santa Clause, The
## 6152                                                                                                                                                 Tommy Boy
## 6153                                                                                                                               What's Eating Gilbert Grape
## 6154                                                                                                                                Ace Ventura: Pet Detective
## 6155                                                                                                                                  Clear and Present Danger
## 6156                                                                                                                                               Client, The
## 6157                                                                                                                                              Forrest Gump
## 6158                                                                                                                                            Lion King, The
## 6159                                                                                                                                                 Mask, The
## 6160                                                                                                                                                     Speed
## 6161                                                                                                                                                 True Lies
## 6162                                                                                                                                      Addams Family Values
## 6163                                                                                                                                     Beverly Hills Cop III
## 6164                                                                                                                                             Bronx Tale, A
## 6165                                                                                                              City Slickers II: The Legend of Curly's Gold
## 6166                                                                                                                                               Cliffhanger
## 6167                                                                                                                                                      Dave
## 6168                                                                                                                                            Demolition Man
## 6169                                                                                                                                             Fugitive, The
## 6170                                                                                                                                             Jurassic Park
## 6171                                                                                                                                                 Tombstone
## 6172                                                                                                                                                   Aladdin
## 6173                                                                                                                                Terminator 2: Judgment Day
## 6174                                                                                                                                        Dances with Wolves
## 6175                                                                                                                                                    Batman
## 6176                                                                                                                                      Beauty and the Beast
## 6177                                                                                                                            Ace Ventura: When Nature Calls
## 6178                                                                                                                                               Black Sheep
## 6179                                                                                                                                            Canadian Bacon
## 6180                                                                                                                           Dumb & Dumber (Dumb and Dumber)
## 6181                                                                                                                                Ace Ventura: Pet Detective
## 6182                                                                                                                                                     Speed
## 6183                                                                                                                                                Serial Mom
## 6184                                                                                                                                  Welcome to the Dollhouse
## 6185                                                                                                                                                    Ransom
## 6186                                                                                                                                                  Basquiat
## 6187                                                                                                                                        North by Northwest
## 6188                                                                                                                                                  Swingers
## 6189                                                                                                                                       Weekend at Bernie's
## 6190                                                                                                                               People vs. Larry Flynt, The
## 6191                                                                                                                                  Sex, Lies, and Videotape
## 6192                                                                                                            Star Wars: Episode V - The Empire Strikes Back
## 6193                                                                                                                                       Princess Bride, The
## 6194                                                                                   Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 6195                                                                                                                                                Annie Hall
## 6196                                                                                                                                              Shining, The
## 6197                                                                                                                                               Stand by Me
## 6198                                                                                                                                                  Heathers
## 6199                                                                                                                        Indiana Jones and the Last Crusade
## 6200                                                                                                                                Nightmare on Elm Street, A
## 6201                                                                                                                                        Jingle All the Way
## 6202                                                                                                                                           Raising Arizona
## 6203                                                                                                                                                    Scream
## 6204                                                                                                                                                  Scream 2
## 6205                                                                                                                                               Spice World
## 6206                                                                                                                                        As Good as It Gets
## 6207                                                                                                                                                 Labyrinth
## 6208                                                                                                                                           Friday the 13th
## 6209                                                                                                                                                 Halloween
## 6210                                                                                                                                              Halloween II
## 6211                                                                                                                        Halloween III: Season of the Witch
## 6212                                                                                                                                               Poltergeist
## 6213                                                                                                                                              Goonies, The
## 6214                                                                                                                                        Mask of Zorro, The
## 6215                                                                                                                                               BASEketball
## 6216                                                                                                                                                Roger & Me
## 6217                                                                                                                                                    Popeye
## 6218                                                                                 Halloween H20: 20 Years Later (Halloween 7: The Revenge of Laurie Strode)
## 6219                                                                                                                                            Pretty in Pink
## 6220                                                                                                                                        Wrongfully Accused
## 6221                                                                                                                                                    Willow
## 6222                                                                                                                                        American History X
## 6223                                                                                                                                                    Fletch
## 6224                                                                                                                                                  Rushmore
## 6225                                                                                                                                          Crocodile Dundee
## 6226                                                                                                                                              Office Space
## 6227                                                                                                                                    Breakfast of Champions
## 6228                                                                                                                                          Cruel Intentions
## 6229                                                                                                                                                  Election
## 6230                                                                                                                                                Mummy, The
## 6231                                                                                                                                                 Get Bruce
## 6232                                                                                                                                              American Pie
## 6233                                                                                                                                                 Cat's Eye
## 6234                                                                                                                            American Werewolf in Paris, An
## 6235                                                                                                                               National Lampoon's Vacation
## 6236                                                                                                                                            Drive Me Crazy
## 6237                                                                                                                                              Happy, Texas
## 6238                                                                                                                                                 Body Heat
## 6239                                                                                                                                  Ferris Bueller's Day Off
## 6240                                                                                                                                                 Hairspray
## 6241                                                                                                                                                Fight Club
## 6242                                                                                                                                      Being John Malkovich
## 6243                                                                                                                                            American Movie
## 6244                                                                                                                                             Stuart Little
## 6245                                                                                                                                                  Scream 3
## 6246                                                                                                                                               Boiler Room
## 6247                                                                                                                                               Wonder Boys
## 6248                                                                                                                                           Erin Brockovich
## 6249                                                                                                                                             High Fidelity
## 6250                                                                                                                                                Caddyshack
## 6251                                                                                                                                           Big Kahuna, The
## 6252                                                                                                                             Smiling Fish and Goat on Fire
## 6253                                                                                                                                   Pee-wee's Big Adventure
## 6254                                                                                                                                                 Road Trip
## 6255                                                                                                                                                Jesus' Son
## 6256                                                                                                                                        Me, Myself & Irene
## 6257                                                                                                                                               Scary Movie
## 6258                                                                                                                                              Chuck & Buck
## 6259                                                                                                                                         Tao of Steve, The
## 6260                                                                                                                                         Cecil B. DeMented
## 6261                                                                                                                             Original Kings of Comedy, The
## 6262                                                                                                           Naked Gun: From the Files of Police Squad!, The
## 6263                                                                                                                                               Nurse Betty
## 6264                                                                                                                                             Almost Famous
## 6265                                                                                                                                        Dancer in the Dark
## 6266                                                                                                                                              Best in Show
## 6267                                                                                                                                 Emperor's New Groove, The
## 6268                                                                                                                                                   Pollock
## 6269                                                                                                                                O Brother, Where Art Thou?
## 6270                                                                                                                                      Revenge of the Nerds
## 6271                                                                                                                                                  Joe Dirt
## 6272                                                                                                                                   Josie and the Pussycats
## 6273                                                                                                                                                   Chopper
## 6274                                                                                                                                Throw Momma from the Train
## 6275                                                                                                                                               Animal, The
## 6276                                                                                                                                                Sexy Beast
## 6277                                                                                                                                             Scary Movie 2
## 6278                                                                                                                                            Legally Blonde
## 6279                                                                                                                                                     Bully
## 6280                                                                                                                                                      Made
## 6281                                                                                                                                             Caddyshack II
## 6282                                                                                                                                                    Colors
## 6283                                                                                                                                    Ernest Saves Christmas
## 6284                                                                                                                                       Great Outdoors, The
## 6285                                                                                                                                                     Twins
## 6286                                                                                                                                        Look Who's Talking
## 6287                                                                                                                                                  Loverboy
## 6288                                                                                                                                               Ghost World
## 6289                                                                                                                                        Planet of the Apes
## 6290                                                                                                                                   Wet Hot American Summer
## 6291                                                                                                                                Return of Swamp Thing, The
## 6292                                                                                                                                 See No Evil, Hear No Evil
## 6293                                                                                                                                                       UHF
## 6294                                                                                                                                                Uncle Buck
## 6295                                                                                                                                            American Pie 2
## 6296                                                                                                                                                  Rat Race
## 6297                                                                                                                                                  Silkwood
## 6298                                                                                                                                              Donnie Darko
## 6299                                                                                                                                               Shallow Hal
## 6300                                                                                                                                                 Novocaine
## 6301                                                                                                                                                  Toy, The
## 6302                                                                                                                                            Stunt Man, The
## 6303                                                                                                                                            Ocean's Eleven
## 6304                                                                                                                                    Not Another Teen Movie
## 6305                                                                                                                                               Vanilla Sky
## 6306                                                                                                                                        White Water Summer
## 6307                                                                                                                                            Monster's Ball
## 6308                                                                                                                                              Storytelling
## 6309                                                                                                                                                Crossroads
## 6310                                                                                                                                               High Crimes
## 6311                                                                                                                                        Husbands and Wives
## 6312                                                                                                                             Kid Stays in the Picture, The
## 6313                                                                                                                                     Bowling for Columbine
## 6314                                                                                                                                          Punch-Drunk Love
## 6315                                                                                                                                                      Heat
## 6316                                                                                                                                                Get Shorty
## 6317                                                                                                                        Twelve Monkeys (a.k.a. 12 Monkeys)
## 6318                                                                                                                                                  Clueless
## 6319                                                                                                                                      Seven (a.k.a. Se7en)
## 6320                                                                                                                                       Usual Suspects, The
## 6321                                                                                                                                       From Dusk Till Dawn
## 6322                                                                                                                                                Braveheart
## 6323                                                                                                                                                 Apollo 13
## 6324                                                                                                                                              Strange Days
## 6325                                                                                                        Interview with the Vampire: The Vampire Chronicles
## 6326                                                                                                                        Star Wars: Episode IV - A New Hope
## 6327                                                                                                                                      Natural Born Killers
## 6328                                                                                                   Léon: The Professional (a.k.a. The Professional) (Léon)
## 6329                                                                                                                                              Pulp Fiction
## 6330                                                                                                                                                  Stargate
## 6331                                                                                                                               What's Eating Gilbert Grape
## 6332                                                                                                                                                     Speed
## 6333                                                                                                                                   In the Mouth of Madness
## 6334                                                                                                                                            Demolition Man
## 6335                                                                                                                                               Killing Zoe
## 6336                                                                                                                                          Schindler's List
## 6337                                                                                                                                              Blade Runner
## 6338                                                                                                                                              True Romance
## 6339                                                                                                                                             War Room, The
## 6340                                                                                                                                  Welcome to the Dollhouse
## 6341                                                                                                                                     Celluloid Closet, The
## 6342                                                                                                                                Terminator 2: Judgment Day
## 6343                                                                                                                                 Silence of the Lambs, The
## 6344                                                                                                                                      Beauty and the Beast
## 6345                                                                                                                                           Wild Bunch, The
## 6346                                                                                                                                                     Fargo
## 6347                                                                                                                                               Heavy Metal
## 6348                                                                                                                          Some Folks Call It a Sling Blade
## 6349                                                                                                                                                Craft, The
## 6350                                                                                      Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb
## 6351                                                                                                                                            Godfather, The
## 6352                                                                                                                                                Casablanca
## 6353                                                                                                                                       Maltese Falcon, The
## 6354                                                                                                                                         Wizard of Oz, The
## 6355                                                                                                                                              Citizen Kane
## 6356                                                                                                                                     2001: A Space Odyssey
## 6357                                                                                                                             Adventures of Robin Hood, The
## 6358                                                                                                                                        African Queen, The
## 6359                                                                                                                                                  Die Hard
## 6360                                                                                                                      William Shakespeare's Romeo + Juliet
## 6361                                                                                                                                            Reservoir Dogs
## 6362                                                                                                                                                   Platoon
## 6363                                                                                                                                            Basic Instinct
## 6364                                                                                                                                E.T. the Extra-Terrestrial
## 6365                                                                                                                                     Rebel Without a Cause
## 6366                                                                                                                                 Streetcar Named Desire, A
## 6367                                                                                                                               People vs. Larry Flynt, The
## 6368                                                                                                                                      Escape from New York
## 6369                                                                                                                                              Howling, The
## 6370                                                                                                                                        When We Were Kings
## 6371                                                                                                                                            Paths of Glory
## 6372                                                                                                                                             Grifters, The
## 6373                                                                                                                           One Flew Over the Cuckoo's Nest
## 6374                                                                                                            Star Wars: Episode V - The Empire Strikes Back
## 6375                                                                                   Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 6376                                                                                                                                                    Aliens
## 6377                                                                                        Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il)
## 6378                                                                                                                                        Lawrence of Arabia
## 6379                                                                                                                                       Clockwork Orange, A
## 6380                                                                                                                                     To Kill a Mockingbird
## 6381                                                                                                                                            Apocalypse Now
## 6382                                                                                                                                                Goodfellas
## 6383                                                                                                                                                     Alien
## 6384                                                                                                                                          Army of Darkness
## 6385                                                                                                                                                    Psycho
## 6386                                                                                                                                       Blues Brothers, The
## 6387                                                                                                                                   Godfather: Part II, The
## 6388                                                                                                                                         Full Metal Jacket
## 6389                                                                                                                                          Right Stuff, The
## 6390                                                                                                                                                Sting, The
## 6391                                                                                                                                           Terminator, The
## 6392                                                                                                                                             Graduate, The
## 6393                                                                                                                             Bridge on the River Kwai, The
## 6394                                                                                                                                                 Chinatown
## 6395                                                                                                                            Day the Earth Stood Still, The
## 6396                                                                                                                         Treasure of the Sierra Madre, The
## 6397                                                                                                                                              Shining, The
## 6398                                                                                                                                               Stand by Me
## 6399                                                                                                                                         Great Escape, The
## 6400                                                                                                                                          Deer Hunter, The
## 6401                                                                                                                                 Manchurian Candidate, The
## 6402                                                                                                                                        Back to the Future
## 6403                                                                                                                                                    Patton
## 6404                                                                                                                                            Cool Hand Luke
## 6405                                                                                                                                                   Ben-Hur
## 6406                                                                                                                                      Pink Floyd: The Wall
## 6407                                                                                                                                       Killing Fields, The
## 6408                                                                                                                                   Alien³ (a.k.a. Alien 3)
## 6409                                                                                                                           American Werewolf in London, An
## 6410                                                                                                                           Dracula (Bram Stoker's Dracula)
## 6411                                                                                                        Bride of Frankenstein, The (Bride of Frankenstein)
## 6412                                                                                                                                               Sling Blade
## 6413                                                                                                                                                      Jaws
## 6414                                                                                                                                                  Sneakers
## 6415                                                                                                                                                    Scream
## 6416                                                                                                                                              Lost Highway
## 6417                                                                                                                                        Fifth Element, The
## 6418                                                                                                                                 Men in Black (a.k.a. MIB)
## 6419                                                                                                                                                  Cop Land
## 6420                                                                                                                                         Conspiracy Theory
## 6421                                                                                                                                 Hunt for Red October, The
## 6422                                                                                                                                         L.A. Confidential
## 6423                                                                                                                                      The Devil's Advocate
## 6424                                                                                                                                                   Gattaca
## 6425                                                                                                                                         Starship Troopers
## 6426                                                                                                                                       Alien: Resurrection
## 6427                                                                                                                                                    Fallen
## 6428                                                                                                                              There's Something About Mary
## 6429                                                                                                                                      Mutiny on the Bounty
## 6430                                                                                                                                           Midnight Cowboy
## 6431                                                                                                                                                     Rocky
## 6432                                                                                                                                                  Repo Man
## 6433                                                                                                                                             Exorcist, The
## 6434                                                                                                                                             Soylent Green
## 6435                                                                                                                                       Saving Private Ryan
## 6436                                                                                                                                                Roger & Me
## 6437                                                                                                                                               Blue Velvet
## 6438                                                                                                                                                      Tron
## 6439                                                                                                                                                Thing, The
## 6440                                                                                                                                               Player, The
## 6441                                                                                                                            2010: The Year We Make Contact
## 6442                                                                                                                     I Still Know What You Did Last Summer
## 6443                                                                                                                                        Enemy of the State
## 6444                                                                                                                                                 King Kong
## 6445                                                                                                                                       Shakespeare in Love
## 6446                                                                                                                                                    Cocoon
## 6447                                                                                                                                                 Westworld
## 6448                                                                                                                                               Logan's Run
## 6449                                                                                                                                        Planet of the Apes
## 6450                                                                                                                                     Village of the Damned
## 6451                                                                                                                                               Matrix, The
## 6452                                                                                                                                                  Election
## 6453                                                                                                                                                   Dracula
## 6454                                                                                                                                              Frankenstein
## 6455                                                                                                                            Rocky Horror Picture Show, The
## 6456                                                                                                                                    War of the Worlds, The
## 6457                                                                                                                       Ghostbusters (a.k.a. Ghost Busters)
## 6458                                                                                                                                          Sixth Sense, The
## 6459                                                                                                                            American Werewolf in Paris, An
## 6460                                                                                                                                                       Big
## 6461                                                                                                                                           American Beauty
## 6462                                                                                                                                       Hard Day's Night, A
## 6463                                                                                                                                               Deliverance
## 6464                                                                                                                                                  Phantasm
## 6465                                                                                                                                            Boys Don't Cry
## 6466                                                                                                                                              Total Recall
## 6467                                                                                                                                       High Plains Drifter
## 6468                                                                                                                                          Dirty Dozen, The
## 6469                                                                                                                                                    Dr. No
## 6470                                                                                                           Fistful of Dollars, A (Per un pugno di dollari)
## 6471                                                                                                                                             All That Jazz
## 6472                                                                                                                                                   RoboCop
## 6473                                                                                                                                  Who Framed Roger Rabbit?
## 6474                                                                                                                                            Omega Man, The
## 6475                                                                                                                                            Mister Roberts
## 6476                                                                                                                                          Longest Day, The
## 6477                                                                                                                                         Tora! Tora! Tora!
## 6478                                                                                                                                          Jeremiah Johnson
## 6479                                                                                                                                                Easy Rider
## 6480                                                                                                                                                 Stalag 17
## 6481                                                                                                                                             Patriot Games
## 6482                                                                                                                                                  Snow Day
## 6483                                                                                                                                               Bull Durham
## 6484                                                                                                                                                       JFK
## 6485                                                                                                                                           Thelma & Louise
## 6486                                                                                                                                                       Hud
## 6487                                                                                                                                              Hustler, The
## 6488                                                                                                                        Close Encounters of the Third Kind
## 6489                                                                                                                                                   Network
## 6490                                                                                                                                   Outlaw Josey Wales, The
## 6491                                                                                                                                                  Predator
## 6492                                                                                                                                              Marathon Man
## 6493                                                                                                                                         Seven Days in May
## 6494                                                                                                                                                   Mad Max
## 6495                                                                                                                             Road Warrior, The (Mad Max 2)
## 6496                                                                                                                                               Angel Heart
## 6497                                                                                                                                                 Near Dark
## 6498                                                                                                                                            Breaker Morant
## 6499                                                                                                                                                Hellraiser
## 6500                                                                                                                                          Fantastic Voyage
## 6501                                                                                                                                     M*A*S*H (a.k.a. MASH)
## 6502                                                                                                                                                    Powder
## 6503                                                                                                                                         Dolores Claiborne
## 6504                                                                                                                                        Heavenly Creatures
## 6505                                                                                               Englishman Who Went Up a Hill But Came Down a Mountain, The
## 6506                                                                                                                                                Craft, The
## 6507                                                                                                                                                      Emma
## 6508                                                                                                                                              My Fair Lady
## 6509                                                                                                                                                     Dumbo
## 6510                                                                                                                                  Long Kiss Goodnight, The
## 6511                                                                                                                                         Strictly Ballroom
## 6512                                                                                                                                          Right Stuff, The
## 6513                                                                                                                                 Femme Nikita, La (Nikita)
## 6514                                                                                                                                 Manchurian Candidate, The
## 6515                                                                                                                                                      Tron
## 6516                                                                                                                                                     Ronin
## 6517                                                                                                                                               Player, The
## 6518                                                                                                                                                 Elizabeth
## 6519                                                                                                                                              Time Bandits
## 6520                                                                                                                                                Moonstruck
## 6521                                                                                                                                        Perfect Storm, The
## 6522                                                                                                                                                      Heat
## 6523                                                                                                                                                    Casino
## 6524                                                                                                                                                Four Rooms
## 6525                                                                                                                                                Get Shorty
## 6526                                                                                                                                         Leaving Las Vegas
## 6527                                                                                                                                           Dangerous Minds
## 6528                                                                                                                        Twelve Monkeys (a.k.a. 12 Monkeys)
## 6529                                                                                                                                          Dead Man Walking
## 6530                                                                                                                                               Richard III
## 6531                                                                                                                                                To Die For
## 6532                                                                                                                                       Usual Suspects, The
## 6533                                                                                                                                          Mighty Aphrodite
## 6534                                                                                                                                                   Georgia
## 6535                                                                                                                                     Home for the Holidays
## 6536                                                                                                                                Postman, The (Postino, Il)
## 6537                                                                                                                               French Twist (Gazon maudit)
## 6538                                                                                                                                               Taxi Driver
## 6539                                                                                                                                    Brothers McMullen, The
## 6540                                                                                                                                                  Bad Boys
## 6541                                                                                                                                   Basketball Diaries, The
## 6542                                                                                                                                                   Rob Roy
## 6543                                                                                                                                Die Hard: With a Vengeance
## 6544                                                                                                                                             Billy Madison
## 6545                                                                                                                                                    Clerks
## 6546                                                                                                                      Eat Drink Man Woman (Yin shi nan nu)
## 6547                                                                                                                                               French Kiss
## 6548                                                                                                                                    Farinelli: il castrato
## 6549                                                                                                                                               Hoop Dreams
## 6550                                                                                                                                                Houseguest
## 6551                                                                                                                                          Immortal Beloved
## 6552                                                                                                                                                      I.Q.
## 6553                                                                                                        Interview with the Vampire: The Vampire Chronicles
## 6554                                                                                                                                                    Junior
## 6555                                                                                                                        Star Wars: Episode IV - A New Hope
## 6556                                                                                                                                              Little Women
## 6557                                                                                                       Like Water for Chocolate (Como agua para chocolate)
## 6558                                                                                                                               Madness of King George, The
## 6559                                                                                                                Mary Shelley's Frankenstein (Frankenstein)
## 6560                                                                                                                                    Miracle on 34th Street
## 6561                                                                                                                                                      Nell
## 6562                                                                                                                                      Natural Born Killers
## 6563                                                                                                   Léon: The Professional (a.k.a. The Professional) (Léon)
## 6564                                                                                                                                              Pulp Fiction
## 6565                                                                                                                                                 Quiz Show
## 6566                                                                                                                 Three Colors: Red (Trois couleurs: Rouge)
## 6567                                                                                                                 Three Colors: Blue (Trois couleurs: Bleu)
## 6568                                                                                                                  Three Colors: White (Trzy kolory: Bialy)
## 6569                                                                                                                                   Stuart Saves His Family
## 6570                                                                                                                                           Specialist, The
## 6571                                                                                                                                 Shawshank Redemption, The
## 6572                                                                                                              Strawberry and Chocolate (Fresa y chocolate)
## 6573                                                                                                                                      Vanya on 42nd Street
## 6574                                                                                                         Adventures of Priscilla, Queen of the Desert, The
## 6575                                                                                                                                     Bullets Over Broadway
## 6576                                                                                                                                               Client, The
## 6577                                                                                                                                              Forrest Gump
## 6578                                                                                                                               Four Weddings and a Funeral
## 6579                                                                                                                                          Jungle Book, The
## 6580                                                                                                                                                  Maverick
## 6581                                                                                                                                             Reality Bites
## 6582                                                                                                                                  When a Man Loves a Woman
## 6583                                                                                                                                                      Wolf
## 6584                                                                                                                                     Age of Innocence, The
## 6585                                                                                                                                     Beverly Hills Cop III
## 6586                                                                                                                                             Carlito's Way
## 6587                                                                                                              City Slickers II: The Legend of Curly's Gold
## 6588                                                                                                                                               Cliffhanger
## 6589                                                                                                                                                      Dave
## 6590                                                                                                                                                 Firm, The
## 6591                                                                                                                                             Fugitive, The
## 6592                                                                                                                                 House of the Spirits, The
## 6593                                                                                                                                 In the Name of the Father
## 6594                                                                                                                                             Jurassic Park
## 6595                                                                                                                                                Kalifornia
## 6596                                                                                                                                   Man Without a Face, The
## 6597                                                                                                                                              Philadelphia
## 6598                                                                                                                                                Piano, The
## 6599                                                                                                                                   Remains of the Day, The
## 6600                                                                                                                                         Romeo Is Bleeding
## 6601                                                                                                                                                      Rudy
## 6602                                                                                                                                          Schindler's List
## 6603                                                                                                                                        Secret Garden, The
## 6604                                                                                                                                                Serial Mom
## 6605                                                                                                                                               Shadowlands
## 6606                                                                                                                                      Sleepless in Seattle
## 6607                                                                                                                                                    Sliver
## 6608                                                                                                                              So I Married an Axe Murderer
## 6609                                                                                                                           Nightmare Before Christmas, The
## 6610                                                                                                                                                Home Alone
## 6611                                                                                                                                                     Ghost
## 6612                                                                                                                                                   Aladdin
## 6613                                                                                                                                        Dances with Wolves
## 6614                                                                                                                                                    Batman
## 6615                                                                                                                                 Silence of the Lambs, The
## 6616                                                                                                                                              Pretty Woman
## 6617                                                                                                                                                Diabolique
## 6618                                                                                                           Wallace & Gromit: The Best of Aardman Animation
## 6619                                                                                                                                             Trainspotting
## 6620                                                                                                                                      Nutty Professor, The
## 6621                                                                                                                                                      Emma
## 6622                                                                                                                                                  Die Hard
## 6623                                                                                                Return of Martin Guerre, The (Retour de Martin Guerre, Le)
## 6624                                                                                                                                  Star Trek: First Contact
## 6625                                                                                                                                            101 Dalmatians
## 6626                                                                                                                                                 Toy Story
## 6627                                                                                                                                            Lion King, The
## 6628                                                                                                                                      Beauty and the Beast
## 6629                                                                                                                                    Breakfast at Tiffany's
## 6630                                                                                                                                                Casablanca
## 6631                                                                                                                                        Gone with the Wind
## 6632                                                                                                                             Adventures of Robin Hood, The
## 6633                                                                                                                           One Flew Over the Cuckoo's Nest
## 6634                                                                                                            Star Wars: Episode V - The Empire Strikes Back
## 6635                                                                                                                                        Dead Poets Society
## 6636                                                                                                                                   When Harry Met Sally...
## 6637                                                                                                                                                     Mulan
## 6638                                                                                                                                       Saving Private Ryan
## 6639                                                                                                                                       Little Mermaid, The
## 6640                                                                                                           101 Dalmatians (One Hundred and One Dalmatians)
## 6641                                                                                                                                                 Rush Hour
## 6642                                                                                                                                           American Beauty
## 6643                                                                                                                                     East-West (Est-ouest)
## 6644                                                                                                                                             High Fidelity
## 6645                                                                                                                                              East is East
## 6646                                                                                                                       Flintstones in Viva Rock Vegas, The
## 6647                                                                                                                                               Chicken Run
## 6648                                                                                                                                          Meet the Parents
## 6649                                                                                                                                          Charlie's Angels
## 6650                                                                                                          Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 6651                                                                                                                                                    Snatch
## 6652                                                                                                                                                  Chocolat
## 6653                                                                                                                                     Dude, Where's My Car?
## 6654                                                                                                                                           What Women Want
## 6655                                                                                                                                                   Traffic
## 6656                                                                                                                                       Save the Last Dance
## 6657                                                                                                                                      Wedding Planner, The
## 6658                                                                                                                                                    Casino
## 6659                                                                                                                                      Seven (a.k.a. Se7en)
## 6660                                                                                                                                                Braveheart
## 6661                                                                                                   Léon: The Professional (a.k.a. The Professional) (Léon)
## 6662                                                                                                                                              Pulp Fiction
## 6663                                                                                                                 Three Colors: Red (Trois couleurs: Rouge)
## 6664                                                                                                                                 Shawshank Redemption, The
## 6665                                                                                                                                              Forrest Gump
## 6666                                                                                                                                            Lion King, The
## 6667                                                                                                                                             Little Buddha
## 6668                                                                                                                                                 Mask, The
## 6669                                                                                                                                          Schindler's List
## 6670                                                                                                                                                   Aladdin
## 6671                                                                                                                                        Dances with Wolves
## 6672                                                                                                                                 Silence of the Lambs, The
## 6673                                                                                                                                             Trainspotting
## 6674                                                                                                                                                      Emma
## 6675                                                                                                                                            Godfather, The
## 6676                                                                                                                                             All About Eve
## 6677                                                                                                                                                   Bananas
## 6678                                                                                                                              Monty Python's Life of Brian
## 6679                                                                                                                           Monty Python and the Holy Grail
## 6680                                                                                                                   Cinema Paradiso (Nuovo cinema Paradiso)
## 6681                                                                                                                                                Goodfellas
## 6682                                                                                                                                   Godfather: Part II, The
## 6683                                                                                                                                                 Manhattan
## 6684                                                                                                 Koyaanisqatsi (a.k.a. Koyaanisqatsi: Life Out of Balance)
## 6685                                                                                                                                          Truman Show, The
## 6686                                                                                                                                         Good Will Hunting
## 6687                                                                                                                                             Lethal Weapon
## 6688                                                                                                                                                    Lolita
## 6689                                                                                                                 Fanny and Alexander (Fanny och Alexander)
## 6690                                                                                                                                                  Mephisto
## 6691                                                                                                                                      Return of Jafar, The
## 6692                                                                                                                               Autumn Sonata (Höstsonaten)
## 6693                                                                                                                                         Untouchables, The
## 6694                                                                                                                       Life Is Beautiful (La Vita è bella)
## 6695                                                                                                                                               Matrix, The
## 6696                                                                                                                                               Superman II
## 6697                                                                                                                        Red Violin, The (Violon rouge, Le)
## 6698                                                                                                                                                Radio Days
## 6699                                                                                                                                           American Beauty
## 6700                                                                                                                                                Fight Club
## 6701                                                                                                                         Ghost Dog: The Way of the Samurai
## 6702                                                                                                                                                 Gladiator
## 6703                                                                                                                                                    Baraka
## 6704                                                                                                                                     Good Morning, Babylon
## 6705                                                                                                                                                   Memento
## 6706                                                                                                                   Cries and Whispers (Viskningar och rop)
## 6707                                                                                                                                   Not Without My Daughter
## 6708                                                                                                                                                      Fame
## 6709                                                                                                             Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 6710                                                                                                        Lord of the Rings: The Fellowship of the Ring, The
## 6711                                                                                                                                         Beautiful Mind, A
## 6712                                                                                                                                                Spider-Man
## 6713                                                                                                                                      Bourne Identity, The
## 6714                                                                                                                    Lord of the Rings: The Two Towers, The
## 6715                                                                                                    Night of the Shooting Stars (Notte di San Lorenzo, La)
## 6716                                                                                                                                      Matrix Reloaded, The
## 6717                                                                                                    Pirates of the Caribbean: The Curse of the Black Pearl
## 6718                                                                                                                                              Mystic River
## 6719                                                                                                                                         Kill Bill: Vol. 1
## 6720                                                                                                                                                  21 Grams
## 6721                                                                                                      Aguirre: The Wrath of God (Aguirre, der Zorn Gottes)
## 6722                                                                                                                                                  Amarcord
## 6723                                                                                                            Lord of the Rings: The Return of the King, The
## 6724                                                                                                                                                Strada, La
## 6725                                                                                                                                                   Persona
## 6726                                                                                                          Scenes From a Marriage (Scener ur ett äktenskap)
## 6727                                                                                                                                         Kill Bill: Vol. 2
## 6728                                                                                                                                           Shame (Skammen)
## 6729                                                                                                           Smiles of a Summer Night (Sommarnattens leende)
## 6730                                                                                                                                            Dolce Vita, La
## 6731                                                                                                                                       Hiroshima Mon Amour
## 6732                                                                                                                                                 Viridiana
## 6733                                                                                                     Short Film About Killing, A (Krótki film o zabijaniu)
## 6734                                                                                                                                  Decalogue, The (Dekalog)
## 6735                                                                                                                                             Batman Begins
## 6736                                                                                                              Lives of Others, The (Das leben der Anderen)
## 6737                                                                                                                                                   Offside
## 6738                                                                                                                                             Blood Diamond
## 6739                                                                                                                                          Eastern Promises
## 6740                                                                                                                                             Into the Wild
## 6741                                                                                                                                          Dark Knight, The
## 6742                                                                                                                                                   Fiorile
## 6743                                                                                                                                                    WALL·E
## 6744                                                                                                                                               Gran Torino
## 6745                                                                                                          Through the Olive Trees (Zire darakhatan zeyton)
## 6746                                                                                                                                             Padre padrone
## 6747                                                                                                                                  Prophet, A (Un Prophète)
## 6748                                                                                                                               About Elly (Darbareye Elly)
## 6749                                                                                                                                                 Inception
## 6750                                                                                                                                                 Incendies
## 6751                                                                                                                   Separation, A (Jodaeiye Nader az Simin)
## 6752                                                                                                                                        Hunt, The (Jagten)
## 6753                                                                                                                                       Patience Stone, The
## 6754                                                                                                                      Caesar Must Die (Cesare deve morire)
## 6755                                                                                                                               Oh Boy (A Coffee in Berlin)
## 6756                                                                                                                                                    Wadjda
## 6757                                                                                                                                      Past, The (Le passé)
## 6758                                                                                                                                              Blue Jasmine
## 6759                                                                                                                                                  Nebraska
## 6760                                                                                                                Blue Is the Warmest Color (La vie d'Adèle)
## 6761                                                                                                                                             Congress, The
## 6762                                                                                                                           The Hunger Games: Catching Fire
## 6763                                                                                                                                  Wolf of Wall Street, The
## 6764                                                                                                                  Fireworks Wednesday (Chaharshanbe-soori)
## 6765                                                                                                                                 Grand Budapest Hotel, The
## 6766                                                                                                                       Captain America: The Winter Soldier
## 6767                                                                                                                                                   Calvary
## 6768                                                                                                                                               The Martian
## 6769                                                                                                                                                      Heat
## 6770                                                                                                                                                 GoldenEye
## 6771                                                                                                                                                    Casino
## 6772                                                                                                                                                Get Shorty
## 6773                                                                                                                                                   Copycat
## 6774                                                                                                                                           Dangerous Minds
## 6775                                                                                                                                      Seven (a.k.a. Se7en)
## 6776                                                                                                                                       Usual Suspects, The
## 6777                                                                                                                                                    Friday
## 6778                                                                                                                                       From Dusk Till Dawn
## 6779                                                                                                                                           Misérables, Les
## 6780                                                                                                                                                 Screamers
## 6781                                                                                                                                                Braveheart
## 6782                                                                                                                                                  Bad Boys
## 6783                                                                                                                                                 Apollo 13
## 6784                                                                                                                                            Batman Forever
## 6785                                                                                                                                                     Congo
## 6786                                                                                                                                                     Crumb
## 6787                                                                                                                                Die Hard: With a Vengeance
## 6788                                                                                                                                              First Knight
## 6789                                                                                                                                                   Hackers
## 6790                                                                                                                                                      Kids
## 6791                                                                                                                                         Lord of Illusions
## 6792                                                                                                                                                  Mallrats
## 6793                                                                                                                                             Prophecy, The
## 6794                                                                                                                                              Strange Days
## 6795                                                                                                                                              Castle Freak
## 6796                                                                                                                                                    Clerks
## 6797                                                                                                                           Dumb & Dumber (Dumb and Dumber)
## 6798                                                                                                        Interview with the Vampire: The Vampire Chronicles
## 6799                                                                                                                Mary Shelley's Frankenstein (Frankenstein)
## 6800                                                                                                                                             Beyond Bedlam
## 6801                                                                                                                                      Natural Born Killers
## 6802                                                                                                   Léon: The Professional (a.k.a. The Professional) (Léon)
## 6803                                                                                                                                              Pulp Fiction
## 6804                                                                                                                                           Specialist, The
## 6805                                                                                                                                                  Stargate
## 6806                                                                                                               Tales from the Crypt Presents: Demon Knight
## 6807                                                                                                                                       Tales from the Hood
## 6808                                                                                                                                     Village of the Damned
## 6809                                                                                                                                                 Tommy Boy
## 6810                                                                                                                                                Virtuosity
## 6811                                                                                                                                Ace Ventura: Pet Detective
## 6812                                                                                                                                                 Crow, The
## 6813                                                                           Wes Craven's New Nightmare (Nightmare on Elm Street Part 7: Freddy's Finale, A)
## 6814                                                                                                                                                 True Lies
## 6815                                                                                                                                            Body Snatchers
## 6816                                                                                                                                               Cliffhanger
## 6817                                                                                                                                             Fugitive, The
## 6818                                                                                                                                                 Tombstone
## 6819                                                                                                                                              True Romance
## 6820                                                                                                                                                   Aladdin
## 6821                                                                                                                                        Dances with Wolves
## 6822                                                                                                                                                    Batman
## 6823                                                                                                                                 Silence of the Lambs, The
## 6824                                                                                                                                      Beauty and the Beast
## 6825                                                                                                                           Candyman: Farewell to the Flesh
## 6826                                                                                                                                     Hellraiser: Bloodline
## 6827                                                                                                                                       Mission: Impossible
## 6828                                                                                                                                                      Fear
## 6829                                                                                                                             Kids in the Hall: Brain Candy
## 6830                                                                                                                                                  Spy Hard
## 6831                                                                                                                                       Usual Suspects, The
## 6832                                                                                                                        Star Wars: Episode IV - A New Hope
## 6833                                                                                                                           Monty Python and the Holy Grail
## 6834                                                                                                            Star Wars: Episode V - The Empire Strikes Back
## 6835                                                                                                                                       Princess Bride, The
## 6836                                                                                   Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 6837                                                                                                                                                Fight Club
## 6838                                                                                                                                                   Memento
## 6839                                                                                                        Lord of the Rings: The Fellowship of the Ring, The
## 6840                                                                                                            Lord of the Rings: The Return of the King, The
## 6841                                                                                                                     Eternal Sunshine of the Spotless Mind
## 6842                                                                                                                                         Shaun of the Dead
## 6843                                                                                                                                          Incredibles, The
## 6844                                                                                                                                             Batman Begins
## 6845                                                                                                                                       Kiss Kiss Bang Bang
## 6846                                                                                                                                            V for Vendetta
## 6847                                                                                                                                             Departed, The
## 6848                                                                                                                                           Children of Men
## 6849                                                                                                                                             Prestige, The
## 6850                                                                                                                                             Casino Royale
## 6851                                                                                                                                                  Hot Fuzz
## 6852                                                                                                                                                    Zodiac
## 6853                                                                                                                                    No Country for Old Men
## 6854                                                                                                                                          Dark Knight, The
## 6855                                                                                                                                      Inglourious Basterds
## 6856                                                                                                                                                      Moon
## 6857                                                                                                                                                        Up
## 6858                                                                                                                                                District 9
## 6859                                                                                                                                            Shutter Island
## 6860                                                                                                                                                 Inception
## 6861                                                                                                                               Scott Pilgrim vs. the World
## 6862                                                                                                                                          Django Unchained
## 6863                                                                                                                                                       Her
## 6864                                                                                                                                              Interstellar
## 6865                                                                                                                                                 Gone Girl
## 6866                                                                                                                                        The Imitation Game
## 6867                                                                                                                                        Mad Max: Fury Road
## 6868                                                                                                                Star Wars: Episode VII - The Force Awakens
## 6869                                                                                                                                                  Deadpool
## 6870                                                                                                                            Me and Earl and the Dying Girl
## 6871                                                                                                                                               The Martian
## 6872                                                                                                                                       10 Cloverfield Lane
## 6873                                                                                                                                                  Zootopia
## 6874                                                                                                                                                   Jumanji
## 6875                                                                                                  City of Lost Children, The (Cité des enfants perdus, La)
## 6876                                                                                                                                                Braveheart
## 6877                                                                                                                                                    Angela
## 6878                                                                                                                                Die Hard: With a Vengeance
## 6879                                                                                                                                           Johnny Mnemonic
## 6880                                                                                                                                               Judge Dredd
## 6881                                                                                                                                                   Species
## 6882                                                                                                                                                Waterworld
## 6883                                                                                                                                                   Exotica
## 6884                                                                                                        Interview with the Vampire: The Vampire Chronicles
## 6885                                                                                                                        Star Wars: Episode IV - A New Hope
## 6886                                                                                                                                        Little Princess, A
## 6887                                                                                                                                                  Stargate
## 6888                                                                                                                                                 Tank Girl
## 6889                                                                                                                                    Star Trek: Generations
## 6890                                                                                                                                     Village of the Damned
## 6891                                                                                                                                                 Crow, The
## 6892                                                                                                                                              Forrest Gump
## 6893                                                                                                                                                     Speed
## 6894                                                                                                                                                 True Lies
## 6895                                                                                                                                            Body Snatchers
## 6896                                                                                                                                                 Coneheads
## 6897                                                                                                                                            Demolition Man
## 6898                                                                                                                                             Fugitive, The
## 6899                                                                                                                                              Blade Runner
## 6900                                                                                                                                                    Batman
## 6901                                                                                                                                               Heavy Metal
## 6902                                                                                                                                       Mission: Impossible
## 6903                                                                                                                                                Barbarella
## 6904                                                                                                                                                   Twister
## 6905                                                                                                                                              Arrival, The
## 6906                                                                                                                             Independence Day (a.k.a. ID4)
## 6907                                                                                                                                          Escape from L.A.
## 6908                                                                                                                                      Little Princess, The
## 6909                                                                                                                                         Wizard of Oz, The
## 6910                                                                                                                                     2001: A Space Odyssey
## 6911                                                                                                                                             Fly Away Home
## 6912                                                                                                                                        Lawnmower Man, The
## 6913                                                                                                                       Willy Wonka & the Chocolate Factory
## 6914                                                                                                                                                   Sleeper
## 6915                                                                                                                                E.T. the Extra-Terrestrial
## 6916                                                                                                                                                Abyss, The
## 6917                                                                                                                                      Escape from New York
## 6918                                                                                                            Star Wars: Episode V - The Empire Strikes Back
## 6919                                                                                                                                                    Aliens
## 6920                                                                                                                                       Clockwork Orange, A
## 6921                                                                                                                Star Wars: Episode VI - Return of the Jedi
## 6922                                                                                                                                                     Alien
## 6923                                                                                                                                       Blues Brothers, The
## 6924                                                                                                                                         Full Metal Jacket
## 6925                                                                                                                                           Terminator, The
## 6926                                                                                                                                        Back to the Future
## 6927                                                                                                                                      Pink Floyd: The Wall
## 6928                                                                                                                                           Field of Dreams
## 6929                                                                                                                                   Alien³ (a.k.a. Alien 3)
## 6930                                                                                                                                                Birds, The
## 6931                                                                                                                                  Star Trek: First Contact
## 6932                                                                                                                             Star Trek: The Motion Picture
## 6933                                                                                                                    Star Trek VI: The Undiscovered Country
## 6934                                                                                                                           Star Trek V: The Final Frontier
## 6935                                                                                                                           Star Trek II: The Wrath of Khan
## 6936                                                                                                                       Star Trek III: The Search for Spock
## 6937                                                                                                                             Star Trek IV: The Voyage Home
## 6938                                                                                                                                        Cement Garden, The
## 6939                                                                                                                                        Fifth Element, The
## 6940                                                                                                                                                   Ponette
## 6941                                                                                                                                                   Con Air
## 6942                                                                                                                                 Men in Black (a.k.a. MIB)
## 6943                                                                                                                                                     Spawn
## 6944                                                                                                                                         Starship Troopers
## 6945                                                                                                                                       Alien: Resurrection
## 6946                                                                                                                                      Sweet Hereafter, The
## 6947                                                                                                                                               Wag the Dog
## 6948                                                                                                                                                 Dark City
## 6949                                                                                                                                       Blues Brothers 2000
## 6950                                                                                                                                                    Sphere
## 6951                                                                                                                                               Deep Impact
## 6952                                                                                                                                                 Lawn Dogs
## 6953                                                                                                                                                Armageddon
## 6954                                                                                                                                                  Repo Man
## 6955                                                                                                                                             Exorcist, The
## 6956                                                                                                                                           Lethal Weapon 2
## 6957                                                                                                                                                  Gremlins
## 6958                                                                                                                                             Soylent Green
## 6959                                                                                                                                Back to the Future Part II
## 6960                                                                                                                               Back to the Future Part III
## 6961                                                                                                                                                    Lolita
## 6962                                                                                                                                                      Tron
## 6963                                                                                                                               1984 (Nineteen Eighty-Four)
## 6964                                                                                                                                               Beetlejuice
## 6965                                                                                                                                                      Cube
## 6966                                                                                                                            2010: The Year We Make Contact
## 6967                                                                                                                                                   Soldier
## 6968                                                                                                                                                  Fly, The
## 6969                                                                                                                                                  Fly, The
## 6970                                                                                                                                                   Airport
## 6971                                                                                                                                              Airport 1975
## 6972                                                                                                                                               Airport '77
## 6973                                                                                                                                               Logan's Run
## 6974                                                                                                                                        Planet of the Apes
## 6975                                                                                                                            Beneath the Planet of the Apes
## 6976                                                                                                                         Battle for the Planet of the Apes
## 6977                                                                                                                        Conquest of the Planet of the Apes
## 6978                                                                                                                                Concorde: Airport '79, The
## 6979                                                                                                                                     Village of the Damned
## 6980                                                                                                                                               Matrix, The
## 6981                                                                                                                                                  eXistenZ
## 6982                                                                                                                                                  Superman
## 6983                                                                                                                                               Superman II
## 6984                                                                                                                                              Superman III
## 6985                                                                                                                                                    Lolita
## 6986                                                                                                                                    Little Shop of Horrors
## 6987                                                                                                                                         Universal Soldier
## 6988                                                                                                                                           American Beauty
## 6989                                                                                                                                                     Tommy
## 6990                                                                                                                                              Total Recall
## 6991                                                                                                                                  Ferris Bueller's Day Off
## 6992                                                                                                                                          Blue Lagoon, The
## 6993                                                                                                                                                Spaceballs
## 6994                                                                                                                                          Bicentennial Man
## 6995                                                                                                                                              Galaxy Quest
## 6996                                                                                                                                             Wayne's World
## 6997                                                                                                                                               Pitch Black
## 6998                                                                                                                                           Mission to Mars
## 6999                                                                                                                        Close Encounters of the Third Kind
## 7000                                                                                                                                                 Ladyhawke
## 7001                                                                                                                                      Virgin Suicides, The
## 7002                                                                                                                                         Battlefield Earth
## 7003                                                                                                                                                 Moonraker
## 7004                                                                                                                                          Running Man, The
## 7005                                                                                                                                                   Starman
## 7006                                                                                                                                                   Mad Max
## 7007                                                                                                                             Road Warrior, The (Mad Max 2)
## 7008                                                                                                                                Mad Max Beyond Thunderdome
## 7009                                                                                                                                                Titan A.E.
## 7010                                                                                                                                                     X-Men
## 7011                                                                                                                                                  Freejack
## 7012                                                                                                                                                 Cell, The
## 7013                                                                                                                                        Dancer in the Dark
## 7014                                                                                                                                                   Runaway
## 7015                                                                                                                                              6th Day, The
## 7016                                                                                                                                                     Annie
## 7017                                                                                                                                                  Spy Kids
## 7018                                                                                                                                                     Shrek
## 7019                                                                                                                              A.I. Artificial Intelligence
## 7020                                                                                                                                                   Outland
## 7021                                                                                                                         Final Fantasy: The Spirits Within
## 7022                                                                                                                                                 They Live
## 7023                                                                                                                                                Millennium
## 7024                                                                                                                                                       UHF
## 7025                                                                                                                                                 Def-Con 4
## 7026                                                                                                                                   Phantom of the Paradise
## 7027                                                                                                                                              Quadrophenia
## 7028                                                                                                                                                     K-PAX
## 7029                                                                                                                                                      Fame
## 7030                                                                                                                                             Resident Evil
## 7031                                                                                                                                                Spider-Man
## 7032                                                                                                                                           Minority Report
## 7033                                                                                                              Men in Black II (a.k.a. MIIB) (a.k.a. MIB 2)
## 7034                                                                                                                                             Reign of Fire
## 7035                                                                                                                                               The Big Bus
## 7036                                                                                                                 Beau Pere (a.k.a. Stepfather) (Beau-père)
## 7037                                                                                                                                                Rollerball
## 7038                                                                                                             Spirited Away (Sen to Chihiro no kamikakushi)
## 7039                                                                                                                                             Staying Alive
## 7040                                                                                                                                                    Xanadu
## 7041                                                                                                                                                   Solaris
## 7042                                                                                                                                               Equilibrium
## 7043                                                                                                                                  Day of the Triffids, The
## 7044                                                                                                                                         Pirate Movie, The
## 7045                                                                                                                                                 Daredevil
## 7046                                                                                                                                                 Core, The
## 7047                                                                                                                                     Andromeda Strain, The
## 7048                                                                                                                                                  Wiz, The
## 7049                                                                                                                                          X2: X-Men United
## 7050                                                                                                                                      Matrix Reloaded, The
## 7051                                                                                                                                               Whale Rider
## 7052                                                                                                                                             28 Days Later
## 7053                                                                                                                        Terminator 3: Rise of the Machines
## 7054                                                                                                       League of Extraordinary Gentlemen, The (a.k.a. LXG)
## 7055                                                                                                                                                  THX 1138
## 7056                                                                                                                                      Handmaid's Tale, The
## 7057                                                                                                                     Sgt. Pepper's Lonely Hearts Club Band
## 7058                                                                                                                                            School of Rock
## 7059                                                                                                                                   Matrix Revolutions, The
## 7060                                                                                                                                       Cat in the Hat, The
## 7061                                                                                                                                                  WarGames
## 7062                                                                                                                            Invasion of the Body Snatchers
## 7063                                                                                                                                    Jesus Christ Superstar
## 7064                                                                                                                                                 Peter Pan
## 7065                                                                                                                                                   Hellboy
## 7066                                                                                                                                                    Zardoz
## 7067                                                                                                                                           Death Race 2000
## 7068                                                                                                                                Chronicles of Riddick, The
## 7069                                                                                                                                               Pretty Baby
## 7070                                                                                                                                     Last Starfighter, The
## 7071                                                                                                                                                  I, Robot
## 7072                                                                                                                                 Resident Evil: Apocalypse
## 7073                                                                                                                                                Braveheart
## 7074                                                                                                                                Die Hard: With a Vengeance
## 7075                                                                                                                        Star Wars: Episode IV - A New Hope
## 7076                                                                                                                                              Pulp Fiction
## 7077                                                                                                                                 Shawshank Redemption, The
## 7078                                                                                                                                  Clear and Present Danger
## 7079                                                                                                                                              Forrest Gump
## 7080                                                                                                                                                 True Lies
## 7081                                                                                                                                             Fugitive, The
## 7082                                                                                                                                             Jurassic Park
## 7083                                                                                                                                              Philadelphia
## 7084                                                                                                                                          Schindler's List
## 7085                                                                                                                                                   Aladdin
## 7086                                                                                                                                Terminator 2: Judgment Day
## 7087                                                                                                                                       Mission: Impossible
## 7088                                                                                                                                                 Rock, The
## 7089                                                                                                                             Independence Day (a.k.a. ID4)
## 7090                                                                                                                                                  Die Hard
## 7091                                                                                                                                E.T. the Extra-Terrestrial
## 7092                                                                                                            Star Wars: Episode V - The Empire Strikes Back
## 7093                                                                                   Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 7094                                                                                                                                                    Aliens
## 7095                                                                                                                Star Wars: Episode VI - Return of the Jedi
## 7096                                                                                                                        Indiana Jones and the Last Crusade
## 7097                                                                                                                                   Alien³ (a.k.a. Alien 3)
## 7098                                                                                                                                                Die Hard 2
## 7099                                                                                                                                        Fifth Element, The
## 7100                                                                                                                                                  Face/Off
## 7101                                                                                                                                         Good Will Hunting
## 7102                                                                                                                                                   Titanic
## 7103                                                                                                                                       Saving Private Ryan
## 7104                                                                                                                                               Matrix, The
## 7105                                                                                                                                              Total Recall
## 7106                                                                                                                                                   RoboCop
## 7107                                                                                                                                                     X-Men
## 7108                                                                                                          Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 7109                                                                                                                                            Monsters, Inc.
## 7110                                                                                                        Lord of the Rings: The Fellowship of the Ring, The
## 7111                                                                                                                                                Spider-Man
## 7112                                                                                                                    Lord of the Rings: The Two Towers, The
## 7113                                                                                                            Lord of the Rings: The Return of the King, The
## 7114                                                                                                                                          Band of Brothers
## 7115                                                                                                                                              Spider-Man 2
## 7116                                                                                                                                          Incredibles, The
## 7117                                                                                                                                             Batman Begins
## 7118                                                                                                                       Harry Potter and the Goblet of Fire
## 7119                                                                                                                                            V for Vendetta
## 7120                                                                                                                 Pan's Labyrinth (Laberinto del fauno, El)
## 7121                                                                                                                                             Departed, The
## 7122                                                                                                                                          Dark Knight, The
## 7123                                                                                                                                                  Iron Man
## 7124                                                                                                                                       Slumdog Millionaire
## 7125                                                                                                                                                 Star Trek
## 7126                                                                                                                    Harry Potter and the Half-Blood Prince
## 7127                                                                                                                                                District 9
## 7128                                                                                                                                           Sherlock Holmes
## 7129                                                                                                                                            Shutter Island
## 7130                                                                                                                                  How to Train Your Dragon
## 7131                                                                                                                                                 Inception
## 7132                                                                                                                                        X-Men: First Class
## 7133                                                                                                                                             Avengers, The
## 7134                                                                                                                                    Dark Knight Rises, The
## 7135                                                                                                                        Hobbit: An Unexpected Journey, The
## 7136                                                                                                                      Hobbit: The Desolation of Smaug, The
## 7137                                                                                                                                  Wolf of Wall Street, The
## 7138                                                                                                                                              Interstellar
## 7139                                                                                                                                          Edge of Tomorrow
## 7140                                                                                                                                   Guardians of the Galaxy
## 7141                                                                                                                Star Wars: Episode VII - The Force Awakens
## 7142                                                                                                                                                Inside Out
## 7143                                                                                                                                                 Toy Story
## 7144                                                                                                                                                      Babe
## 7145                                                                                                                                                  Clueless
## 7146                                                                                                                                       From Dusk Till Dawn
## 7147                                                                                                                                             Happy Gilmore
## 7148                                                                                                                                                Braveheart
## 7149                                                                                                                                             Billy Madison
## 7150                                                                                                                                                    Clerks
## 7151                                                                                                                           Dumb & Dumber (Dumb and Dumber)
## 7152                                                                                                                                   While You Were Sleeping
## 7153                                                                                                                                              Forrest Gump
## 7154                                                                                                                                             Jurassic Park
## 7155                                                                                                                                            Mrs. Doubtfire
## 7156                                                                                                                                                      Rudy
## 7157                                                                                                                                          Schindler's List
## 7158                                                                                                                                    Brady Bunch Movie, The
## 7159                                                                                                                                                   Aladdin
## 7160                                                                                                                                Terminator 2: Judgment Day
## 7161                                                                                                                                                     Fargo
## 7162                                                                                                                                                   Matilda
## 7163                                                                                                                                                      Emma
## 7164                                                                                                                                       Sound of Music, The
## 7165                                                                                                                Star Wars: Episode VI - Return of the Jedi
## 7166                                                                                                                                                    Grease
## 7167                                                                                                                                             Fools Rush In
## 7168                                                                                                                                             Private Parts
## 7169                                                                                                                    Romy and Michele's High School Reunion
## 7170                                                                                                               Austin Powers: International Man of Mystery
## 7171                                                                                                                            Lost World: Jurassic Park, The
## 7172                                                                                                                                  My Best Friend's Wedding
## 7173                                                                                                                                 Men in Black (a.k.a. MIB)
## 7174                                                                                                                                            Kiss Me, Guido
## 7175                                                                                                                                             Boogie Nights
## 7176                                                                                                                                              Postman, The
## 7177                                                                                                                                       Wedding Singer, The
## 7178                                                                                                                                                    Paulie
## 7179                                                                                                                               Object of My Affection, The
## 7180                                                                                                                                                  Bulworth
## 7181                                                                                                                                         Can't Hardly Wait
## 7182                                                                                                                                                     Mulan
## 7183                                                                                                                                       Terms of Endearment
## 7184                                                                                                                                       Breakfast Club, The
## 7185                                                                                                                                             Exorcist, The
## 7186                                                                                                                                             Lethal Weapon
## 7187                                                                                                                                                  Gremlins
## 7188                                                                                                                                 Gremlins 2: The New Batch
## 7189                                                                                                                                  Honey, I Shrunk the Kids
## 7190                                                                                                                                       Little Mermaid, The
## 7191                                                                                                                                         Mighty Ducks, The
## 7192                                                                                                                                                 Jerk, The
## 7193                                                                                                                                           Sixteen Candles
## 7194                                                                                                                                   Gods Must Be Crazy, The
## 7195                                                                                                                                           Rosemary's Baby
## 7196                                                                                                                                       Edward Scissorhands
## 7197                                                                                                                                             Pleasantville
## 7198                                                                                                                                             Bug's Life, A
## 7199                                                                                                                                     Babe: Pig in the City
## 7200                                                                                                                                              Little Voice
## 7201                                                                                                                                                  Rushmore
## 7202                                                                                                                                       Shakespeare in Love
## 7203                                                                                                                                             Varsity Blues
## 7204                                                                                                                                                  Fly, The
## 7205                                                                                                                                                  Fly, The
## 7206                                                                                                                                       Blast from the Past
## 7207                                                                                                                                              Analyze This
## 7208                                                                                                           William Shakespeare's A Midsummer Night's Dream
## 7209                                                                                                                                              Notting Hill
## 7210                                                                                                                     Austin Powers: The Spy Who Shagged Me
## 7211                                                                                                                                   General's Daughter, The
## 7212                                                                                                                                         Ideal Husband, An
## 7213                                                                                                                      South Park: Bigger, Longer and Uncut
## 7214                                                                                                                                              American Pie
## 7215                                                                                                                                               Mystery Men
## 7216                                                                                                                                                 Bowfinger
## 7217                                                                                                                                                 Airplane!
## 7218                                                                                                                                        Christmas Story, A
## 7219                                                                                                                                        Outside Providence
## 7220                                                                                                                                           American Beauty
## 7221                                                                                  Armour of God II: Operation Condor (Operation Condor) (Fei ying gai wak)
## 7222                                                                                                                                            Three to Tango
## 7223                                                                                                                                      Being John Malkovich
## 7224                                                                                                                                       Bone Collector, The
## 7225                                                                                                                                                     Dogma
## 7226                                                                                                                                               Toy Story 2
## 7227                                                                                                                                          Bicentennial Man
## 7228                                                                                                                                                  Magnolia
## 7229                                                                                                                                          Any Given Sunday
## 7230                                                                                                                                               My Dog Skip
## 7231                                                                                                                                                Sister Act
## 7232                                                                                                                                           Wayne's World 2
## 7233                                                                                                                                    League of Their Own, A
## 7234                                                                                                                                                  Snow Day
## 7235                                                                                                                                     Whole Nine Yards, The
## 7236                                                                                                                                         Final Destination
## 7237                                                                                                                                            Grumpy Old Men
## 7238                                                                                                                                             High Fidelity
## 7239                                                                                                                                                 Frequency
## 7240                                                                                                                                               Me Myself I
## 7241                                                                                                                                            Bachelor Party
## 7242                                                                                                                                           American Psycho
## 7243                                                                                                                                                     U-571
## 7244                                                                                                                                             Shanghai Noon
## 7245                                                                                                                                                  Soapdish
## 7246                                                                                                                                              Patriot, The
## 7247                                                                                                                                               House Party
## 7248                                                                                                           Naked Gun: From the Files of Police Squad!, The
## 7249                                                                                                                   Naked Gun 2 1/2: The Smell of Fear, The
## 7250                                                                                                                                                Hellraiser
## 7251                                                                                                                                          Meet the Parents
## 7252                                                                                                                                            Pay It Forward
## 7253                                                                                                                                                 Toy Story
## 7254                                                                                                                                          Grumpier Old Men
## 7255                                                                                                                               Father of the Bride Part II
## 7256                                                                                                                                                      Heat
## 7257                                                                                                                                     Sense and Sensibility
## 7258                                                                                                                                         Leaving Las Vegas
## 7259                                                                                                                        Twelve Monkeys (a.k.a. 12 Monkeys)
## 7260                                                                                                                                        Mr. Holland's Opus
## 7261                                                                                                                                              Broken Arrow
## 7262                                                                                                                                             Happy Gilmore
## 7263                                                                                                                                            Down Periscope
## 7264                                                                                                                                             Birdcage, The
## 7265                                                                                                                        Star Wars: Episode IV - A New Hope
## 7266                                                                                                                                        Executive Decision
## 7267                                                                                                                                               Primal Fear
## 7268                                                                                                                                                Sgt. Bilko
## 7269                                                                                                                                       Mission: Impossible
## 7270                                                                                                                                                 Rock, The
## 7271                                                                                                                                                   Twister
## 7272                                                                                                                             Independence Day (a.k.a. ID4)
## 7273                                                                                                                                                    Eraser
## 7274                                                                                                                                      Nutty Professor, The
## 7275                                                                                                                                                Phenomenon
## 7276                                                                                                                                           Time to Kill, A
## 7277                                                                                                                                  Long Kiss Goodnight, The
## 7278                                                                                                                                 Robin Hood: Men in Tights
## 7279                                                                                                                                       Singin' in the Rain
## 7280                                                                                                                                                   Vertigo
## 7281                                                                                                                                                    Brazil
## 7282                                                                                                                                                Birds, The
## 7283                                                                                                                                               Chasing Amy
## 7284                                                                                                                                             Boogie Nights
## 7285                                                                                                                                                 Dark City
## 7286                                                                                                                                10 Things I Hate About You
## 7287                                                                                                                                 Run Lola Run (Lola rennt)
## 7288                                                                                                                                             Arachnophobia
## 7289                                                                                                                                                     Dogma
## 7290                                                                                                                                                  Magnolia
## 7291                                                                                                                                               City Lights
## 7292                                                                                                                                              Patriot, The
## 7293                                                                                                                            Amores Perros (Love's a Bitch)
## 7294                                                                                                                                     Bridget Jones's Diary
## 7295                                                                                                                                         Beautiful Mind, A
## 7296                                                                                                                              Talk to Her (Hable con Ella)
## 7297                                                                                                                Beauty and the Beast (La belle et la bête)
## 7298                                                                                                                                       Au Hasard Balthazar
## 7299                                                                                                                                           Misérables, Les
## 7300                                                                                                                                          Flintstones, The
## 7301                                                                                                                                                Craft, The
## 7302                                                                                                                                        Back to the Future
## 7303                                                                                                                                        Jingle All the Way
## 7304                                                                                                                                                   Volcano
## 7305                                                                                                                                              Home Alone 3
## 7306                                                                                                                                                  Repo Man
## 7307                                                                                                                                             Avengers, The
## 7308                                                                                                                  Police Academy 2: Their First Assignment
## 7309                                                                                                                      Police Academy 4: Citizens on Patrol
## 7310                                                                                                                        Police Academy 6: City Under Siege
## 7311                                                                                                                                    Miracle on 34th Street
## 7312                                                                                                                                              Analyze This
## 7313                                                                                                                                          Cruel Intentions
## 7314                                                                                                                                                Entrapment
## 7315                                                                                                                                        Christmas Story, A
## 7316                                                                                                                                             Stuart Little
## 7317                                                                                                                                                Sister Act
## 7318                                                                                                           Naked Gun: From the Files of Police Squad!, The
## 7319                                                                                                        Lord of the Rings: The Fellowship of the Ring, The
## 7320                                                                                                                    Lord of the Rings: The Two Towers, The
## 7321                                                                                                                                          Kindergarten Cop
## 7322                                                                                                            Lord of the Rings: The Return of the King, The
## 7323                                                                                                                         Police Academy: Mission to Moscow
## 7324                                                                                                                                      Bourne Identity, The
## 7325                                                                                                                                                Madagascar
## 7326                                                                                                                                             Batman Begins
## 7327                                                                                                                                             Blood Diamond
## 7328                                                                                                                                               Ratatouille
## 7329                                                                                                                                          Dark Knight, The
## 7330                                                                                                                                              Visitor, The
## 7331                                                                                                                                                 Inception
## 7332                                                                                                                                       Social Network, The
## 7333                                                                                                              Harry Potter and the Deathly Hallows: Part 1
## 7334                                                                                                              Harry Potter and the Deathly Hallows: Part 2
## 7335                                                                                                                                             Avengers, The
## 7336                                                                                                                                    Dark Knight Rises, The
## 7337                                                                                                                   Batman: The Dark Knight Returns, Part 1
## 7338                                                                                                                                                 Toy Story
## 7339                                                                                                                                                   Jumanji
## 7340                                                                                                                                                 GoldenEye
## 7341                                                                                                                        Twelve Monkeys (a.k.a. 12 Monkeys)
## 7342                                                                                                                                                  Clueless
## 7343                                                                                                                                       Usual Suspects, The
## 7344                                                                                                                                              Broken Arrow
## 7345                                                                                                                                                Braveheart
## 7346                                                                                                                                                 Apollo 13
## 7347                                                                                                                                            Batman Forever
## 7348                                                                                                                                                     Congo
## 7349                                                                                                                                              Crimson Tide
## 7350                                                                                                                                Die Hard: With a Vengeance
## 7351                                                                                                                                               Judge Dredd
## 7352                                                                                                                                                Waterworld
## 7353                                                                                                                           Dumb & Dumber (Dumb and Dumber)
## 7354                                                                                                                                               French Kiss
## 7355                                                                                                        Interview with the Vampire: The Vampire Chronicles
## 7356                                                                                                                                       Legends of the Fall
## 7357                                                                                                                                      Natural Born Killers
## 7358                                                                                                                                                  Outbreak
## 7359                                                                                                                                              Pulp Fiction
## 7360                                                                                                                                                 Quiz Show
## 7361                                                                                                                                           Specialist, The
## 7362                                                                                                                                                  Stargate
## 7363                                                                                                                                    Star Trek: Generations
## 7364                                                                                                                                Ace Ventura: Pet Detective
## 7365                                                                                                                                  Clear and Present Danger
## 7366                                                                                                                                                 True Lies
## 7367                                                                                                                                      Addams Family Values
## 7368                                                                                                                                     Beverly Hills Cop III
## 7369                                                                                                                                               Cliffhanger
## 7370                                                                                                                                            Demolition Man
## 7371                                                                                                                                             Fugitive, The
## 7372                                                                                                                                                   Aladdin
## 7373                                                                                                                                                    Batman
## 7374                                                                                                                                 Silence of the Lambs, The
## 7375                                                                                                                                      Beauty and the Beast
## 7376                                                                                                                                                 Toy Story
## 7377                                                                                                                                                   Jumanji
## 7378                                                                                                                                                      Babe
## 7379                                                                                                                                                Braveheart
## 7380                                                                                                                                               Taxi Driver
## 7381                                                                                                                                                    Casper
## 7382                                                                                                                                                 Desperado
## 7383                                                                                                                                                    Clerks
## 7384                                                                                                                           Dumb & Dumber (Dumb and Dumber)
## 7385                                                                                                                                      Natural Born Killers
## 7386                                                                                                   Léon: The Professional (a.k.a. The Professional) (Léon)
## 7387                                                                                                                                              Pulp Fiction
## 7388                                                                                                                                Ace Ventura: Pet Detective
## 7389                                                                                                                                              Forrest Gump
## 7390                                                                                                                                            Lion King, The
## 7391                                                                                                                                                 Mask, The
## 7392                                                                                                                                             Jurassic Park
## 7393                                                                                                                                                     Naked
## 7394                                                                                                                                          Schindler's List
## 7395                                                                                                                                              Blade Runner
## 7396                                                                                                                                  Welcome to the Dollhouse
## 7397                                                                                                                                 Silence of the Lambs, The
## 7398                                                                                                                                      Beauty and the Beast
## 7399                                                                                                                                       Mission: Impossible
## 7400                                                                                                                                                 Space Jam
## 7401                                                                                                                       Ghost in the Shell (Kôkaku kidôtai)
## 7402                                                                                                                                             Trainspotting
## 7403                                                                                                                                            Cable Guy, The
## 7404                                                                                                                                            Godfather, The
## 7405                                                                                                                                     2001: A Space Odyssey
## 7406                                                                                                                                E.T. the Extra-Terrestrial
## 7407                                                                                                                                                Abyss, The
## 7408                                                                                                                      Wallace & Gromit: The Wrong Trousers
## 7409                                                                                                                                              Delicatessen
## 7410                                                                                                                                              My Left Foot
## 7411                                                                                                                                       Clockwork Orange, A
## 7412                                                                                                                                                     Alien
## 7413                                                                                                                                         Full Metal Jacket
## 7414                                                                                                                                           Terminator, The
## 7415                                                                                                                                              Shining, The
## 7416                                                                                                                                        Back to the Future
## 7417                                                                                                                                                     Akira
## 7418                                                                                                                                                    Gandhi
## 7419                                                                                                                                                    Scream
## 7420                                                                                                                                                 Liar Liar
## 7421                                                                                                                                                  Anaconda
## 7422                                                                                                                                        Fifth Element, The
## 7423                                                                                                                            Lost World: Jurassic Park, The
## 7424                                                                                                                                 Men in Black (a.k.a. MIB)
## 7425                                                                                                                                                     Spawn
## 7426                                                                                                                                         Starship Troopers
## 7427                                                                                                                                          Truman Show, The
## 7428                                                                                                                                                   Titanic
## 7429                                                                                                                                         Big Lebowski, The
## 7430                                                                                                                                        As Good as It Gets
## 7431                                                                                                                                                  Godzilla
## 7432                                                                                                                            Fear and Loathing in Las Vegas
## 7433                                                                                                                                                Armageddon
## 7434                                                                                                                                                        Pi
## 7435                                                                                                                              There's Something About Mary
## 7436                                                                                                                                             Exorcist, The
## 7437                                                                                                                                        Mask of Zorro, The
## 7438                                                                                                                                                     Blade
## 7439                                                                                                                                                      Cube
## 7440                                                                                                                                                Thing, The
## 7441                                                                                                                                       Edward Scissorhands
## 7442                                                                                                                                                      Antz
## 7443                                                                                                                                                 Happiness
## 7444                                                                                                                       Life Is Beautiful (La Vita è bella)
## 7445                                                                                                                                        American History X
## 7446                                                                                                                                             Bug's Life, A
## 7447                                                                                                                                                  Fly, The
## 7448                                                                                                                         Lock, Stock & Two Smoking Barrels
## 7449                                                                                                                                               Matrix, The
## 7450                                                                                                                                                Mummy, The
## 7451                                                                                                                                 Run Lola Run (Lola rennt)
## 7452                                                                                                                      South Park: Bigger, Longer and Uncut
## 7453                                                                                                                                              American Pie
## 7454                                                                                                                                  Blair Witch Project, The
## 7455                                                                                                                                             Deep Blue Sea
## 7456                                                                                                                                          Sixth Sense, The
## 7457                                                                                                                                                  Stigmata
## 7458                                                                                                                                                Fight Club
## 7459                                                                                                                                  Who Framed Roger Rabbit?
## 7460                                                                                                                                      Being John Malkovich
## 7461                                                                                                                         Princess Mononoke (Mononoke-hime)
## 7462                                                                                                                                               Toy Story 2
## 7463                                                                                                                                           Green Mile, The
## 7464                                                                                                                                                  Predator
## 7465                                                                                                                                                 Gladiator
## 7466                                                                                                                                                    Baraka
## 7467                                                                                                                                        Gone in 60 Seconds
## 7468                                                                                                                                                Titan A.E.
## 7469                                                                                                                                               Chicken Run
## 7470                                                                                                                                                     X-Men
## 7471                                                                                                                                       Requiem for a Dream
## 7472                                                                                                                                                 Bedazzled
## 7473                                                                                                                                                    Snatch
## 7474                                                                                                                                 Emperor's New Groove, The
## 7475                                                                                                                                                 Cast Away
## 7476                                                                                                                                                   Memento
## 7477                                                                                                                                        Mummy Returns, The
## 7478                                                                                                                                                     Shrek
## 7479                                                                                                                                 Fast and the Furious, The
## 7480                                                                                                                         Final Fantasy: The Spirits Within
## 7481                                                                                                                                               Others, The
## 7482                                                                                                                                              Donnie Darko
## 7483                                                                                                                                            Monsters, Inc.
## 7484                                                                                                           Devil's Backbone, The (Espinazo del diablo, El)
## 7485                                                                                                             Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 7486                                                                                                                                               Vanilla Sky
## 7487                                                                                                        Lord of the Rings: The Fellowship of the Ring, The
## 7488                                                                                                                                         Beautiful Mind, A
## 7489                                                                                                                                           Black Hawk Down
## 7490                                                                                                             Vampire Hunter D: Bloodlust (Banpaia hantâ D)
## 7491                                                                                                                                                   Ice Age
## 7492                                                                                                                   And Your Mother Too (Y tu mamá también)
## 7493                                                                                                                                                Spider-Man
## 7494                                                                                                              Men in Black II (a.k.a. MIIB) (a.k.a. MIB 2)
## 7495                                                                                                                                                     Signs
## 7496                                                                                                                                            Thesis (Tesis)
## 7497                                                                                                             Spirited Away (Sen to Chihiro no kamikakushi)
## 7498                                                                                                                                     Bowling for Columbine
## 7499                                                                                                                                                 Ring, The
## 7500                                                                                                                   Grave of the Fireflies (Hotaru no haka)
## 7501                                                                                                                                                Adaptation
## 7502                                                                                                                                               Equilibrium
## 7503                                                                                                                    Lord of the Rings: The Two Towers, The
## 7504                                                                                                                     My Neighbor Totoro (Tonari no Totoro)
## 7505                                                                                                                                              Pianist, The
## 7506                                                                                                                              City of God (Cidade de Deus)
## 7507                                                                                                                               Irreversible (Irréversible)
## 7508                                                                                                                                                      Spun
## 7509                                                                                                                                              Ringu (Ring)
## 7510                                                                                                 Cowboy Bebop: The Movie (Cowboy Bebop: Tengoku no Tobira)
## 7511                                                                                                                               Lilya 4-Ever (Lilja 4-ever)
## 7512                                                                                                        Laputa: Castle in the Sky (Tenkû no shiro Rapyuta)
## 7513                                                                                                                                      Matrix Reloaded, The
## 7514                                                                                                                                            Bruce Almighty
## 7515                                                                                                                                              Finding Nemo
## 7516                                                                                                    Pirates of the Caribbean: The Curse of the Black Pearl
## 7517                                                                                                                                       Lost in Translation
## 7518                                                                                                                             Ninja Scroll (Jûbei ninpûchô)
## 7519                                                                                                                                                  Elephant
## 7520                                                                                                                                   Matrix Revolutions, The
## 7521                                                                                                                                                  21 Grams
## 7522                                                                                             Nausicaä of the Valley of the Wind (Kaze no tani no Naushika)
## 7523                                                                                                                                                  Big Fish
## 7524                                                                                                            Lord of the Rings: The Return of the King, The
## 7525                                                                                                                             Ichi the Killer (Koroshiya 1)
## 7526                                                                                                                                      The Butterfly Effect
## 7527                                                                                                                                         Touching the Void
## 7528                                                                                                                                          Dawn of the Dead
## 7529                                                                                                                     Eternal Sunshine of the Spotless Mind
## 7530                                                                                                                                                   Hellboy
## 7531                                                                                                                          I'm Not Scared (Io non ho paura)
## 7532                                                                                                               Tale of Two Sisters, A (Janghwa, Hongryeon)
## 7533                                                                                                                                                 Gladiator
## 7534                                                                                                                        Jin Roh: The Wolf Brigade (Jin-Rô)
## 7535                                                                                                                                                   Shrek 2
## 7536                                                                                                                                         Napoleon Dynamite
## 7537                                                                                                         Manufacturing Consent: Noam Chomsky and the Media
## 7538                                                                                                                                              Spider-Man 2
## 7539                                                                                                         Maria Full of Grace (Maria, Llena eres de gracia)
## 7540                                                                                                                                              Garden State
## 7541                                                                                                                       Harold and Kumar Go to White Castle
## 7542                                                                                                                                         Shaun of the Dead
## 7543                                                                                                                                        Cannibal Holocaust
## 7544                                                                                                                                                Shark Tale
## 7545                                                                                                                                             The Machinist
## 7546                                                                                                                                                       Saw
## 7547                                                                                                                                          Incredibles, The
## 7548                                                                                                                                        Polar Express, The
## 7549                                                                                                               Kiki's Delivery Service (Majo no takkyûbin)
## 7550                                                                                                               Porco Rosso (Crimson Pig) (Kurenai no buta)
## 7551                                               Neon Genesis Evangelion: The End of Evangelion (Shin seiki Evangelion Gekijô-ban: Air/Magokoro wo, kimi ni)
## 7552                                                                                                                      My Sassy Girl (Yeopgijeogin geunyeo)
## 7553                                                                                                                                            Animatrix, The
## 7554                                                                                                                                  Bukowski: Born into This
## 7555                                                                                                     Last Life in the Universe (Ruang rak noi nid mahasan)
## 7556                                                                                                                       Cat Returns, The (Neko no ongaeshi)
## 7557                                                                                                                                                   Old Boy
## 7558                                                                                                     Interstella 5555: The 5tory of the 5ecret 5tar 5ystem
## 7559                                                                                                                       Ong-Bak: The Thai Warrior (Ong Bak)
## 7560                                                                                                                                                Mean Creek
## 7561                                                                                                                                          Corporation, The
## 7562                                                                                                                                              Yes Men, The
## 7563                                                                                                                                        Born into Brothels
## 7564                                                                                                                         Charlie and the Chocolate Factory
## 7565                                                                                                                    Kamikaze Girls (Shimotsuma monogatari)
## 7566                                                                                                                                 Downfall (Untergang, Der)
## 7567                                                                                                                 Rory O'Shea Was Here (Inside I'm Dancing)
## 7568                                                                                                               Howl's Moving Castle (Hauru no ugoku shiro)
## 7569                                                                                                                                  Kung Fu Hustle (Gong fu)
## 7570                                                                                                                                                    Robots
## 7571                                                                                                                                       Memories (Memorîzu)
## 7572                                                                                                                                            Harvie Krumpet
## 7573                                                                                                                                                  Sin City
## 7574                                                                                                                      Enron: The Smartest Guys in the Room
## 7575                                                                                                                                                     Crash
## 7576                                                                                                                                                Madagascar
## 7577                                                                                                                                          Mr. & Mrs. Smith
## 7578                                                                                                                                      Devil's Rejects, The
## 7579                                                                                                                                                  Serenity
## 7580                                                                                                                             Hidden (a.k.a. Cache) (Caché)
## 7581                                                                                                                                 Everything Is Illuminated
## 7582                                                                                                                                              Corpse Bride
## 7583                                                                                                                        Final Fantasy VII: Advent Children
## 7584                                                                                                          Wallace & Gromit in The Curse of the Were-Rabbit
## 7585                                                                                                                                         Pride & Prejudice
## 7586                                                                                                                                                 King Kong
## 7587                                                                                                                                      Mozart and the Whale
## 7588                                                                                                                                                    Hostel
## 7589                                                                                                                                   Ice Age 2: The Meltdown
## 7590                                                                                                                                            V for Vendetta
## 7591                                                                                                                                      Hills Have Eyes, The
## 7592                                                                                                              Lives of Others, The (Das leben der Anderen)
## 7593                                                                                                                            Devil and Daniel Johnston, The
## 7594                                                                                                                                                   Slither
## 7595                                                                                                                                                Hard Candy
## 7596                                                                                                                                            Over the Hedge
## 7597                                                                                                                                                      Cars
## 7598                                                                                                                                    Devil Wears Prada, The
## 7599                                                                                                                                    Inconvenient Truth, An
## 7600                                                                                                                                      Little Miss Sunshine
## 7601                                                                                                                                             Monster House
## 7602                                                                                                                                     Stranger than Fiction
## 7603                                                                                                                                 Pursuit of Happyness, The
## 7604                                                                                                                                            Ant Bully, The
## 7605                                                                                                                                                 Mind Game
## 7606                                                                                                                                          Illusionist, The
## 7607                                                                                                                                                Jesus Camp
## 7608                                                                                                                                             Fountain, The
## 7609                                                                                                              Science of Sleep, The (La science des rêves)
## 7610                                                                       Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan
## 7611                                                                                                                 Pan's Labyrinth (Laberinto del fauno, El)
## 7612                                                                                                                                               Open Season
## 7613                                                                                                                                           Children of Men
## 7614                                                                                                                                             Prestige, The
## 7615                                                                                                                                              Flushed Away
## 7616                                                                                                                          Perfume: The Story of a Murderer
## 7617                                                                                                                                         Déjà Vu (Deja Vu)
## 7618                                                                                                                                         Linda Linda Linda
## 7619                                                                                                                                      Bridge to Terabithia
## 7620                                                                                                                                               Ratatouille
## 7621                                                                                                                                                  Hot Fuzz
## 7622                                                                                                                                                    Zodiac
## 7623                                                                                                                                                       300
## 7624                                                                                                                                                Grindhouse
## 7625                                                                                                                                        Meet the Robinsons
## 7626                                                                                                       Inglorious Bastards (Quel maledetto treno blindato)
## 7627                                                                                                                                                  Sunshine
## 7628                                                                                                                                                 Disturbia
## 7629                                                                                                                                              Spider-Man 3
## 7630                                                                                                                                           Shrek the Third
## 7631                                                                                                                                                Them (Ils)
## 7632                                                                                                                                                 Surf's Up
## 7633                                                                                                                                               Death Proof
## 7634                                                                                                Power of Nightmares, The: The Rise of the Politics of Fear
## 7635                                                                                                                                                     Sicko
## 7636                                                                                                                                              Transformers
## 7637                                                                                                                                       Simpsons Movie, The
## 7638                                                                                                                                                  Superbad
## 7639                                                                                                                                             Planet Terror
## 7640                                                                                                                                             Into the Wild
## 7641                                                                                                                                    Lars and the Real Girl
## 7642                                                                                                                                                Persepolis
## 7643                                                                                                                                                   Control
## 7644                                                                                                                                                 Bee Movie
## 7645                                                                                        Diving Bell and the Butterfly, The (Scaphandre et le papillon, Le)
## 7646                                                                                                                                       Man from Earth, The
## 7647                                                                                                                                                   Beowulf
## 7648                                                                                                                                              Murder Party
## 7649                                                                                                                                                       XXY
## 7650                                                                                                                                                 Mist, The
## 7651                                                                                                                                               I Am Legend
## 7652                                                                                                                             Orphanage, The (Orfanato, El)
## 7653                                                                                                                                                      Juno
## 7654                                                                                                                                          Kite Runner, The
## 7655                                                                                                            Sweeney Todd: The Demon Barber of Fleet Street
## 7656                                                                                                                                       There Will Be Blood
## 7657                                                                                                                                                Dedication
## 7658                                                                                                                                                     [REC]
## 7659                                                                                                                                               Cloverfield
## 7660                                                                                                                                                  Arranged
## 7661                                                                                                    Girl Who Leapt Through Time, The (Toki o kakeru shôjo)
## 7662                                                                                                                               Hellboy II: The Golden Army
## 7663                                                                                                                                                 In Bruges
## 7664                                                                                                  Art of Negative Thinking, The (Kunsten å tenke negativt)
## 7665                                                                                                                                       Horton Hears a Who!
## 7666                                                                                                                                                  Penelope
## 7667                                                                                                                                        Class, The (Klass)
## 7668                                                                                                                                          Dark Knight, The
## 7669                                                                                                                                            Happy-Go-Lucky
## 7670                                                                                                                                             Son of Rambow
## 7671                                                                                                                                                  Iron Man
## 7672                                                                                                                                                 Fall, The
## 7673                                                                                                                                              Lake of Fire
## 7674                                                                                                                                             Kung Fu Panda
## 7675                                                                                                                                                    WALL·E
## 7676                                                                                                                                                 Get Smart
## 7677                                                                                                                  Futurama: The Beast with a Billion Backs
## 7678                                                                                                        Gonzo: The Life and Work of Dr. Hunter S. Thompson
## 7679                                                                                                                                                  Watchmen
## 7680                                                                                                                                             American Teen
## 7681                                                                                                             Let the Right One In (Låt den rätte komma in)
## 7682                                                                                                                                        Burn After Reading
## 7683                                                                                                                                                   Martyrs
## 7684                                                                                                                                        Gomorrah (Gomorra)
## 7685                                                                                                                                   Futurama: Bender's Game
## 7686                                                                                                                               Madagascar: Escape 2 Africa
## 7687                                                                                                                                       Slumdog Millionaire
## 7688                                                                                                                                               Role Models
## 7689                                                                                                                               Class, The (Entre les murs)
## 7690                                                                                                                                                      Bolt
## 7691                                                                                                                                                     Doubt
## 7692                                                                                                                                              Seven Pounds
## 7693                                                                                                                      Curious Case of Benjamin Button, The
## 7694                                                                                                                                                   Yes Man
## 7695                                                                                                                                                  Valkyrie
## 7696                                                                                                         5 Centimeters per Second (Byôsoku 5 senchimêtoru)
## 7697                                                                                                                                                     Ben X
## 7698                                                                                                                               Ponyo (Gake no ue no Ponyo)
## 7699                                                                                                                                                    Ip Man
## 7700                                                                                                                                                  Coraline
## 7701                                                                                                                                    Departures (Okuribito)
## 7702                                                                                                                                                   Knowing
## 7703                                                                                                  Girl with the Dragon Tattoo, The (Män som hatar kvinnor)
## 7704                                                                                                                                       Monsters vs. Aliens
## 7705                                                                                                                                             Adventureland
## 7706                                                                                                                                      Inglourious Basterds
## 7707                                                                                                                                                      Moon
## 7708                                                                                                                                                 Star Trek
## 7709                                                                Neon Genesis Evangelion: Death & Rebirth (Shin seiki Evangelion Gekijô-ban: Shito shinsei)
## 7710                                                                                                                                                        Up
## 7711                                                                                                                                             Hangover, The
## 7712                                                                                                                       Transformers: Revenge of the Fallen
## 7713                                                                                                                            Ice Age: Dawn of the Dinosaurs
## 7714                                                                                                                                        My Sister's Keeper
## 7715                                                                                                                                      (500) Days of Summer
## 7716                                                                                                                                                    Orphan
## 7717                                                                                                                                                District 9
## 7718                                                                                       Evangelion: 1.0 You Are (Not) Alone (Evangerion shin gekijôban: Jo)
## 7719                                                                                                                                                      Adam
## 7720                                                                                                        Secret in Their Eyes, The (El secreto de sus ojos)
## 7721                                                                                                                                                         9
## 7722                                                                                                                         Cloudy with a Chance of Meatballs
## 7723                                                                                                                                                Food, Inc.
## 7724                                                                                                                                       Paranormal Activity
## 7725                                                                                                                                                 Cove, The
## 7726                                                                                                                                                       Ink
## 7727                                                                                                                                   Invention of Lying, The
## 7728                                                                                                                                                Zombieland
## 7729                                                                                                                                             Education, An
## 7730                                                                                                                                              Mary and Max
## 7731                                                                                                                                                   Balance
## 7732                                                                                                                                                 Astro Boy
## 7733                                                                                                                                          Fourth Kind, The
## 7734                                                                                                                                         Lovely Bones, The
## 7735                                                                                                                                          Everybody's Fine
## 7736                                                                                                                                                    Avatar
## 7737                                                                                                                                           Sherlock Holmes
## 7738                                                                                                                                               Daybreakers
## 7739                                                                                                                                          Book of Eli, The
## 7740                                                                                                                                                  Collapse
## 7741                                                                                                                     Dragon Hunters (Chasseurs de dragons)
## 7742                                                                                                                                                  3 Idiots
## 7743                                                                                                                                                  Triangle
## 7744                                                                                                                                Yes Men Fix the World, The
## 7745                                                                                                                                       Alice in Wonderland
## 7746                                                                                                                                  How to Train Your Dragon
## 7747                                                                                                                          Micmacs (Micmacs à tire-larigot)
## 7748                                                                                                                                                  Kick-Ass
## 7749                                                                                                                                     Dogtooth (Kynodontas)
## 7750                                                                                                                     Human Centipede, The (First Sequence)
## 7751                                                                                                                                                Iron Man 2
## 7752                                                                                                                                       You Don't Know Jack
## 7753                                                                                                                                               Toy Story 3
## 7754                                                                                                                                   Kurt Cobain About a Son
## 7755                                                                                                                                             Despicable Me
## 7756                                                                                                                                                 Inception
## 7757                                                                                                                                                Mr. Nobody
## 7758                                                                                                                               Scott Pilgrim vs. the World
## 7759                                                                                                                                                 Heartless
## 7760                                                                                                                                       Social Network, The
## 7761                                                                                                                                                   Flipped
## 7762                                                                                                                                                 Let Me In
## 7763                                                                                                                                                   Catfish
## 7764                                                                                                                                                Inside Job
## 7765                                                                                                                        Illusionist, The (L'illusionniste)
## 7766                                                                                                                                                 127 Hours
## 7767                                                                                                                                                  Megamind
## 7768                                                                                                                                                Black Swan
## 7769                                                                                                                                        King's Speech, The
## 7770                                                                                                                                                   Tangled
## 7771                                                                                                                                              Tron: Legacy
## 7772                                                                                                                         I Saw the Devil (Akmareul boatda)
## 7773                                                                                                   Secret World of Arrietty, The (Kari-gurashi no Arietti)
## 7774                                                                                                                                     Tucker & Dale vs Evil
## 7775                                                                                                                                               Day & Night
## 7776                                                                                                                                                 Limitless
## 7777                                                                                     Evangelion: 2.0 You Can (Not) Advance (Evangerion shin gekijôban: Ha)
## 7778                                                                                                                                                      Paul
## 7779                                                                                                                                                     Rango
## 7780                                                                                                                                    Confessions (Kokuhaku)
## 7781                                                                                                                          Troll Hunter, The (Trolljegeren)
## 7782                                                                                                                                               Source Code
## 7783                                                                                                                                              Sucker Punch
## 7784                                                                                                                                                    BURN-E
## 7785                                                                                                                                                     Senna
## 7786                                                                                                                                                 Insidious
## 7787                                                                                                                                       Hobo with a Shotgun
## 7788                                                                                                                                                       Rio
## 7789                                                                                                                                                      Thor
## 7790                                                                                                                                     Louis C.K.: Chewed Up
## 7791                                                                                                                                         Idiots and Angels
## 7792                                                                                                                                           Kung Fu Panda 2
## 7793                                                                                                                                        X-Men: First Class
## 7794                                                                                                                                                   Super 8
## 7795                                                                                                                                             Green Lantern
## 7796                                                                                                                            Transformers: Dark of the Moon
## 7797                                                                                                                        Captain America: The First Avenger
## 7798                                                                                                                            Rise of the Planet of the Apes
## 7799                                                                                                                                             Avengers, The
## 7800                                                                                                                                                 Kill List
## 7801                                                                                                                                     Paranormal Activity 3
## 7802                                                                                                                                                     Shame
## 7803                                                                                                                                             Puss in Boots
## 7804                                                                                                                                 Adventures of Tintin, The
## 7805                                                                                                                                          Arthur Christmas
## 7806                                                                                                                                    Dark Knight Rises, The
## 7807                                                                                                                        Sherlock Holmes: A Game of Shadows
## 7808                                                                                                                   Human Centipede II (Full Sequence), The
## 7809                                                                                                                                                 Chronicle
## 7810                                                                                                                                      Dr. Seuss' The Lorax
## 7811                                                                                                                                      The Raid: Redemption
## 7812                                                                                                                                   Cabin in the Woods, The
## 7813                                                                                                                                                     Brave
## 7814                                                                                                                                                    Presto
## 7815                                                                                                                                                  Boundin'
## 7816                                                                                                                                   Amazing Spider-Man, The
## 7817                                                                                                                              Ice Age 4: Continental Drift
## 7818                                                                                                                                             For the Birds
## 7819                                                                                                                                              Total Recall
## 7820                                                                                                                                                ParaNorman
## 7821                                                                                                                                                   Samsara
## 7822                                                                                                                                                    Looper
## 7823                                                                                                                                                     Dredd
## 7824                                                                                                                          Perks of Being a Wallflower, The
## 7825                                                                                                                                                  Sinister
## 7826                                                                                                                                        Hotel Transylvania
## 7827                                                                                                                                               Cloud Atlas
## 7828                                                                                                                                            Wreck-It Ralph
## 7829                                                                                                                                   Silver Linings Playbook
## 7830                                                                                                                                                Life of Pi
## 7831                                                                                                                                                  Excision
## 7832                                                                                                                                                     Amour
## 7833                                                                                                                                     Rise of the Guardians
## 7834                                                                                                                        Hobbit: An Unexpected Journey, The
## 7835                                                                                                                                          Django Unchained
## 7836                                                                                                                           Impossible, The (Imposible, Lo)
## 7837                                                                                                                                       Act of Killing, The
## 7838                                                                                                                                               Croods, The
## 7839                                                                                                                                                Iron Man 3
## 7840                                                                                                                                   Star Trek Into Darkness
## 7841                                                                                                                                              Man of Steel
## 7842                                                                                                                                               Pacific Rim
## 7843                                                                                                                                               World War Z
## 7844                                                                                                                                                   Elysium
## 7845                                                                                                                                             American Mary
## 7846                                                                                                                                           Despicable Me 2
## 7847                                                                                                                                            Conjuring, The
## 7848                                                                                                                                                   Gravity
## 7849                                                                                                                                              Ender's Game
## 7850                                                                                                                                      Thor: The Dark World
## 7851                                                                                                                                                     Pieta
## 7852                                                                                                                      Hobbit: The Desolation of Smaug, The
## 7853                                                                                                                                                    Frozen
## 7854                                                                                                                                               Snowpiercer
## 7855                                                                                                                      Paranormal Activity: The Marked Ones
## 7856                                                                                                                             Dragon Ball Z: Battle of Gods
## 7857                                                                                                                                                 Divergent
## 7858                                                                                                                                                   RoboCop
## 7859                                                                                                                                              Interstellar
## 7860                                                                                                                                                  Non-Stop
## 7861                                                                                                                                    300: Rise of an Empire
## 7862                                                                                                                                     Mr. Peabody & Sherman
## 7863                                                                                                                                            Under the Skin
## 7864                                                                                                                                            Need for Speed
## 7865                                                                                                                       Captain America: The Winter Soldier
## 7866                                                                                                                                                      Noah
## 7867                                                                                                                                      The Raid 2: Berandal
## 7868                                                                                                                                  The Amazing Spider-Man 2
## 7869                                                                                                                                                    Oculus
## 7870                                                                                                                                                     Rio 2
## 7871                                                                                                                                             Transcendence
## 7872                                                                                                                                X-Men: Days of Future Past
## 7873                                                                                                                                                  Godzilla
## 7874                                                                                                                                                Maleficent
## 7875                                                                                                                                          Edge of Tomorrow
## 7876                                                                                                                                How to Train Your Dragon 2
## 7877                                                                                                                           Transformers: Age of Extinction
## 7878                                                                                                                                             Babadook, The
## 7879                                                                                                                            Dawn of the Planet of the Apes
## 7880                                                                                                                                   Guardians of the Galaxy
## 7881                                                                                                                                                 Coherence
## 7882                                                                                                                                          Maze Runner, The
## 7883                                                                                                                                            Predestination
## 7884                                                                                                                                                 John Wick
## 7885                                                                                                                                                     Ouija
## 7886                                                                                                                                                Big Hero 6
## 7887                                                                                                                        Dream Home (Wai dor lei ah yut ho)
## 7888                                                                                                                 The Hobbit: The Battle of the Five Armies
## 7889                                                                                                                                                   Jumanji
## 7890                                                                                                                               Indian in the Cupboard, The
## 7891                                                                                                                                              Crimson Tide
## 7892                                                                                                                                               Judge Dredd
## 7893                                                                                                                             Kid in King Arthur's Court, A
## 7894                                                                                                                                   Quick and the Dead, The
## 7895                                                                                                                                    Star Trek: Generations
## 7896                                                                                                                                              Forrest Gump
## 7897                                                                                                                                              Black Beauty
## 7898                                                                                                                                      Hot Shots! Part Deux
## 7899                                                                                                                                                      Rudy
## 7900                                                                                                                                        Dances with Wolves
## 7901                                                                                                                                                    Batman
## 7902                                                                                                                                               Dragonheart
## 7903                                                                                                                                                Barbarella
## 7904                                                                                                                                      Operation Dumbo Drop
## 7905                                                                                                                                                 Rock, The
## 7906                                                                                                                                                   Twister
## 7907                                                                                      Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb
## 7908                                                                                                                             Independence Day (a.k.a. ID4)
## 7909                                                                                                                                   For Whom the Bell Tolls
## 7910                                                                                                                                                Casablanca
## 7911                                                                                                                                         Wizard of Oz, The
## 7912                                                                                                                                        Gone with the Wind
## 7913                                                                                                                               Around the World in 80 Days
## 7914                                                                                                                                        African Queen, The
## 7915                                                                                                                                       Farewell to Arms, A
## 7916                                                                                                                                     Swiss Family Robinson
## 7917                                                                                                                       Willy Wonka & the Chocolate Factory
## 7918                                                                                                                                  Old Man and the Sea, The
## 7919                                                                                                                                                Abyss, The
## 7920                                                                                                                                      Escape from New York
## 7921                                                                                                            Star Wars: Episode V - The Empire Strikes Back
## 7922                                                                                                                                       Princess Bride, The
## 7923                                                                                   Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 7924                                                                                                                                        Lawrence of Arabia
## 7925                                                                                                                                            Apocalypse Now
## 7926                                                                                                                Star Wars: Episode VI - Return of the Jedi
## 7927                                                                                                                                                     Glory
## 7928                                                                                                                         Treasure of the Sierra Madre, The
## 7929                                                                                                                                         Great Escape, The
## 7930                                                                                                                                                    Patton
## 7931                                                                                                                                                   Ben-Hur
## 7932                                                                                                                        Indiana Jones and the Last Crusade
## 7933                                                                                                                           Star Trek II: The Wrath of Khan
## 7934                                                                                                                       Star Trek III: The Search for Spock
## 7935                                                                                                                             Star Trek IV: The Voyage Home
## 7936                                                                                                                                             Mars Attacks!
## 7937                                                                                                                                 Men in Black (a.k.a. MIB)
## 7938                                                                                                                                         Starship Troopers
## 7939                                                                                                                            All Quiet on the Western Front
## 7940                                                                                                                                   Poseidon Adventure, The
## 7941                                                                                                                                  Honey, I Shrunk the Kids
## 7942                                                                                                                                                    Popeye
## 7943                                                                                                                                            Rocketeer, The
## 7944                                                                                                                                                      Tron
## 7945                                                                                                                      Indiana Jones and the Temple of Doom
## 7946                                                                                                                                    NeverEnding Story, The
## 7947                                                                                                                                                  Lifeboat
## 7948                                                                                                                                                     Them!
## 7949                                                                                                                                                 King Kong
## 7950                                                                                                                                Rambo: First Blood Part II
## 7951                                                                                                                                       Romancing the Stone
## 7952                                                                                                                                     Young Sherlock Holmes
## 7953                                                                                                                                          Mighty Joe Young
## 7954                                                                                                                                       Crocodile Dundee II
## 7955                                                                                                                                     Towering Inferno, The
## 7956                                                                                                                             Beyond the Poseidon Adventure
## 7957                                                                                                                                    War of the Worlds, The
## 7958                                                                                                                                            Pork Chop Hill
## 7959                                                                                                                Allan Quatermain and the Lost City of Gold
## 7960                                                                                                                                                Iron Eagle
## 7961                                                                                                                                             Iron Eagle II
## 7962                                                                                                                                      Aces: Iron Eagle III
## 7963                                                                                                                                               Deliverance
## 7964                                                                                                                                             South Pacific
## 7965                                                                                                                                          Dirty Dozen, The
## 7966                                                                                                                                              Time Bandits
## 7967                                                                                                                                  Who Framed Roger Rabbit?
## 7968                                                                                                                                          Longest Day, The
## 7969                                                                                                                                         Tora! Tora! Tora!
## 7970                                                                                                                                                 Stalag 17
## 7971                                                                                                                                                Sister Act
## 7972                                                                                                                                             Forever Young
## 7973                                                                                                                           Captain Horatio Hornblower R.N.
## 7974                                                                                                                                      Bear, The (Ours, L')
## 7975                                                                                                                                       Crimson Pirate, The
## 7976                                                                                                                                                  Red Dawn
## 7977                                                                                                                                         Lord of the Flies
## 7978                                                                                                                                    Force 10 from Navarone
## 7979                                                                                                                                             Flying Tigers
## 7980                                                                                                                                     Fighting Seabees, The
## 7981                                                                                                                                        Perfect Storm, The
## 7982                                                                                                                                            Kelly's Heroes
## 7983                                                                                                                                          Fantastic Voyage
## 7984                                                                                                                                         Time Machine, The
## 7985                                                                                                                                                Alamo, The
## 7986                                                                                                                                                Gettysburg
## 7987                                                                                                                                     M*A*S*H (a.k.a. MASH)
## 7988                                                                                                                                                 GoldenEye
## 7989                                                                                                                                                Get Shorty
## 7990                                                                                                                                                  Clueless
## 7991                                                                                                                                      Seven (a.k.a. Se7en)
## 7992                                                                                                                                              Broken Arrow
## 7993                                                                                                                                                Braveheart
## 7994                                                                                                                                                 Apollo 13
## 7995                                                                                                                                                     Congo
## 7996                                                                                                                                              Crimson Tide
## 7997                                                                                                                                Die Hard: With a Vengeance
## 7998                                                                                                                                                  Net, The
## 7999                                                                                                                                                Waterworld
## 8000                                                                                                                           Dumb & Dumber (Dumb and Dumber)
## 8001                                                                                                        Interview with the Vampire: The Vampire Chronicles
## 8002                                                                                                                                                      Nell
## 8003                                                                                                                                                  Outbreak
## 8004                                                                                                                                              Pulp Fiction
## 8005                                                                                                                                           Specialist, The
## 8006                                                                                                                                                  Stargate
## 8007                                                                                                                               What's Eating Gilbert Grape
## 8008                                                                                                                                   While You Were Sleeping
## 8009                                                                                                                                Ace Ventura: Pet Detective
## 8010                                                                                                                                  Clear and Present Danger
## 8011                                                                                                                                              Forrest Gump
## 8012                                                                                                                               Four Weddings and a Funeral
## 8013                                                                                                                                                 Mask, The
## 8014                                                                                                                                                  Maverick
## 8015                                                                                                                                                     Speed
## 8016                                                                                                                                                 True Lies
## 8017                                                                                                                                     Beverly Hills Cop III
## 8018                                                                                                                                               Cliffhanger
## 8019                                                                                                                                                      Dave
## 8020                                                                                                                                            Demolition Man
## 8021                                                                                                                                                 Firm, The
## 8022                                                                                                                                             Fugitive, The
## 8023                                                                                                                                             Jurassic Park
## 8024                                                                                                                                                Piano, The
## 8025                                                                                                                                          Schindler's List
## 8026                                                                                                                                      Sleepless in Seattle
## 8027                                                                                                                                                 Tombstone
## 8028                                                                                                                                                     Ghost
## 8029                                                                                                                                Terminator 2: Judgment Day
## 8030                                                                                                                                        Dances with Wolves
## 8031                                                                                                                                              Pretty Woman
## 8032                                                                                                                             Independence Day (a.k.a. ID4)
## 8033                                                                                                                                                    Eraser
## 8034                                                                                                                                       Maltese Falcon, The
## 8035                                                                                                                                                      Stag
## 8036                                                                                                                                               Hope Floats
## 8037                                                                                                                                                 Tom Jones
## 8038                                                                                                                                             Out of Africa
## 8039                                                                                                                                       Breakfast Club, The
## 8040                                                                                                                                 Desperately Seeking Susan
## 8041                                                                                                                                       Shakespeare in Love
## 8042                                                                                                                                                Entrapment
## 8043                                                                                                                                       Run Silent Run Deep
## 8044                                                                                                                     Austin Powers: The Spy Who Shagged Me
## 8045                                                                                                                                   General's Daughter, The
## 8046                                                                                                                                             Arachnophobia
## 8047                                                                                                                                            Wild Wild West
## 8048                                                                                                                                               Lake Placid
## 8049                                                                                                                                             Deep Blue Sea
## 8050                                                                                                                                             Runaway Bride
## 8051                                                                                                                                       Mosquito Coast, The
## 8052                                                                                                                                           Iron Giant, The
## 8053                                                                                                                                  Thomas Crown Affair, The
## 8054                                                                                                                                         13th Warrior, The
## 8055                                                                                                                                     Astronaut's Wife, The
## 8056                                                                                                                                                  Stigmata
## 8057                                                                                                                                            Stir of Echoes
## 8058                                                                                                                                           Double Jeopardy
## 8059                                                                                                                                  Who Framed Roger Rabbit?
## 8060                                                                                                                                             Stuart Little
## 8061                                                                                                                                              Galaxy Quest
## 8062                                                                                                                                           Pacific Heights
## 8063                                                                                                                                                 Frequency
## 8064                                                                                                                                                     Diner
## 8065                                                                                                                               Four Weddings and a Funeral
## 8066                                                                                                                                             Little Buddha
## 8067                                                                                                                                                   Go Fish
## 8068                                                                                                                                                     Bound
## 8069                                                                                                                                             Dirty Dancing
## 8070                                                                                                                        Unbearable Lightness of Being, The
## 8071                                                                                                                                                  In & Out
## 8072                                                                                                                                               Chasing Amy
## 8073                                                                                                                                        Great Expectations
## 8074                                                                                                            Nightmare on Elm Street 2: Freddy's Revenge, A
## 8075                                                                                                                     I Still Know What You Did Last Summer
## 8076                                                                                                                                       Shakespeare in Love
## 8077                                                                                                                                        Cocoon: The Return
## 8078                                                                                                                                      Teaching Mrs. Tingle
## 8079                                                                                                                                           American Beauty
## 8080                                                                                                                                         Anna and the King
## 8081                                                                                                                                    League of Their Own, A
## 8082                                                                                                                                                     X-Men
## 8083                                                                                                                                            Aimée & Jaguar
## 8084                                                                                                                                              Billy Elliot
## 8085                                                                                                                                                    Bounce
## 8086                                                                                                          Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 8087                                                                                                                                                  Chocolat
## 8088                                                                                                                                             Heartbreakers
## 8089                                                                                                                                     Bridget Jones's Diary
## 8090                                                                   Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 8091                                                                                                             Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 8092                                                                                                                                     Kissing Jessica Stein
## 8093                                                                                                                                       Sweetest Thing, The
## 8094                                                                                                                          Importance of Being Earnest, The
## 8095                                                                                                                              Mostly Martha (Bella Martha)
## 8096                                                                                                                                                     Frida
## 8097                                                                                                                                           Far from Heaven
## 8098                                                                                                                   Harry Potter and the Chamber of Secrets
## 8099                                                                                                                              Talk to Her (Hable con Ella)
## 8100                                                                                                                                                Hours, The
## 8101                                                                                                                                       Final Destination 2
## 8102                                                                                                                                      Bend It Like Beckham
## 8103                                                                                                              Spanish Apartment, The (L'auberge espagnole)
## 8104                                                                                                    Pirates of the Caribbean: The Curse of the Black Pearl
## 8105                                                                                                                         Lagaan: Once Upon a Time in India
## 8106                                                                                                                        Monty Python's The Meaning of Life
## 8107                                                                                                                                             Love Actually
## 8108                                                                                                                                                   Monster
## 8109                                                                                                                                             Desert Hearts
## 8110                                                                                                                  Harry Potter and the Prisoner of Azkaban
## 8111                                                                                                                                 Manchurian Candidate, The
## 8112                                                                                                                                                    Eulogy
## 8113                                                                                                                                                    Kinsey
## 8114                                                                                                                 House of Flying Daggers (Shi mian mai fu)
## 8115                                                                                                                                                       Gia
## 8116                                                                                                 Very Long Engagement, A (Un long dimanche de fiançailles)
## 8117                                                                                                                                          Meet the Fockers
## 8118                                                                                                                                Summer Storm (Sommersturm)
## 8119                                                                                                                                                Flightplan
## 8120                                                                                                                                  Squid and the Whale, The
## 8121                                                                                                                                        Brokeback Mountain
## 8122                                                                                                                       Harry Potter and the Goblet of Fire
## 8123                                                                                                                                       Memoirs of a Geisha
## 8124                                                                                                                                          Imagine Me & You
## 8125                                                                                                              Lives of Others, The (Das leben der Anderen)
## 8126                                                                                                                                        Da Vinci Code, The
## 8127                                                                                                                                               Ratatouille
## 8128                                                                                                                                              Gray Matters
## 8129                                                                                                                                     Puccini for Beginners
## 8130                                                                                                                 Harry Potter and the Order of the Phoenix
## 8131                                                                                                                                 The Jane Austen Book Club
## 8132                                                                                                                                  Vicky Cristina Barcelona
## 8133                                                                                                                                               Taxi Driver
## 8134                                                                                                                                Die Hard: With a Vengeance
## 8135                                                                                                               Far From Home: The Adventures of Yellow Dog
## 8136                                                                                                                       Secret Adventures of Tom Thumb, The
## 8137                                                                                                                                     Beverly Hills Cop III
## 8138                                                                                                                                              Black Beauty
## 8139                                                                                                                                                    Lassie
## 8140                                                                                                                                  Night of the Living Dead
## 8141                                                                                                                           One Flew Over the Cuckoo's Nest
## 8142                                                                                                                                                Die Hard 2
## 8143                                                                                                                                 Men in Black (a.k.a. MIB)
## 8144                                                                                                                                 Hunt for Red October, The
## 8145                                                                                                                                       Blues Brothers 2000
## 8146                                                                                                                                              Dr. Dolittle
## 8147                                                                                                                                                Armageddon
## 8148                                                                                                                            Poltergeist II: The Other Side
## 8149                                                                                                                                           Lethal Weapon 3
## 8150                                                                                                                                              Return to Oz
## 8151                                                                                                                                                 Elizabeth
## 8152                                                                                                                                           King Kong Lives
## 8153                                                                                                                                      Prince of Egypt, The
## 8154                                                                                                                                       Shakespeare in Love
## 8155                                                                                                                                                   Rocky V
## 8156                                                                                                                                           Civil Action, A
## 8157                                                                                                                                          Crocodile Dundee
## 8158                                                                                                                                         Ideal Husband, An
## 8159                                                                                                                                             Arachnophobia
## 8160                                                                                                                      South Park: Bigger, Longer and Uncut
## 8161                                                                                                                                        Muppets From Space
## 8162                                                                                                                                  Blair Witch Project, The
## 8163                                                                                                                       Ghostbusters (a.k.a. Ghost Busters)
## 8164                                                                                                                                           Ghostbusters II
## 8165                                                                                                                                          Inspector Gadget
## 8166                                                                                                                                           Iron Giant, The
## 8167                                                                                                                                          Sixth Sense, The
## 8168                                                                                                                                                  Stigmata
## 8169                                                                                                                                                Limey, The
## 8170                                                                                                                                                 RoboCop 2
## 8171                                                                                                                                  Who Framed Roger Rabbit?
## 8172                                                                                                                                      Being John Malkovich
## 8173                                                                                                                                                 Backdraft
## 8174                                                                                                                                               Toy Story 2
## 8175                                                                                                                                                  Magnolia
## 8176                                                                                                                                            Hurricane, The
## 8177                                                                                                                                       Single White Female
## 8178                                                                                                                           Death Wish 5: The Face of Death
## 8179                                                                                                                                 Shawshank Redemption, The
## 8180                                                                                                                             Robin Hood: Prince of Thieves
## 8181                                                                                                                                             Dirty Dancing
## 8182                                                                                        Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il)
## 8183                                                                                                                                              12 Angry Men
## 8184                                                                                                                                                Birds, The
## 8185                                                                                                                                             Sliding Doors
## 8186                                                                                                                                   Gods Must Be Crazy, The
## 8187                                                                                                                                       Crocodile Dundee II
## 8188                                                                                                                                               Matrix, The
## 8189                                                                                                                                          Live and Let Die
## 8190                                                                                                                                         Death Becomes Her
## 8191                                                                                                                                              Modern Times
## 8192                                                                                                                                                 Moonraker
## 8193                                                                                                                                           Under Suspicion
## 8194                                                                                                                       Adventures of Baron Munchausen, The
## 8195                                                                                                                                            Ocean's Eleven
## 8196                                                                                                                                      Bourne Identity, The
## 8197                                                                                                                                          Italian Job, The
## 8198                                                                                                                                             Notebook, The
## 8199                                                                                                                                     Bourne Supremacy, The
## 8200                                                                                                                Asterix and the Gauls (Astérix le Gaulois)
## 8201                                                                                                                 My Name Is Nobody (Il Mio nome è Nessuno)
## 8202                                                                                                                                              Hotel Rwanda
## 8203                                                                                                                                             Batman Begins
## 8204                                                                                                                                            Find Me Guilty
## 8205                                                                                                                                                Inside Man
## 8206                                                                                                                                             Departed, The
## 8207                                                                                                             Elementary Particles, The (Elementarteilchen)
## 8208                                                                                                                                             Prestige, The
## 8209                                                                                                                          Perfume: The Story of a Murderer
## 8210                                                                                                                                     Bourne Ultimatum, The
## 8211                                                                                                                                    No Country for Old Men
## 8212                                                                                                                                           P.S. I Love You
## 8213                                                                                                                                                        21
## 8214                                                                                                                                                    WALL·E
## 8215                                                                                                                                      Inglourious Basterds
## 8216                                                                                                                                            Public Enemies
## 8217                                                                                                                                              Mary and Max
## 8218                                                                                                                                              12 Angry Men
## 8219                                                                                                                                               Toy Story 3
## 8220                                                                                                                                                 Inception
## 8221                                                                                                          Asterix and the Vikings (Astérix et les Vikings)
## 8222                                                                                                                                             Robot & Frank
## 8223                                                                                                                                                 Toy Story
## 8224                                                                                                                               Father of the Bride Part II
## 8225                                                                                                                                                      Heat
## 8226                                                                                                                                                   Sabrina
## 8227                                                                                                                                              Sudden Death
## 8228                                                                                                                        Twelve Monkeys (a.k.a. 12 Monkeys)
## 8229                                                                                                                                                  Bio-Dome
## 8230                                                                                                                                              Bed of Roses
## 8231                                                                                                                                                Juror, The
## 8232                                                                                                                                              Broken Arrow
## 8233                                                                                                                                                 City Hall
## 8234                                                                                                                                             Happy Gilmore
## 8235                                                                                                                       Rumble in the Bronx (Hont faan kui)
## 8236                                                                                                                                             Birdcage, The
## 8237                                                                                                                        Star Wars: Episode IV - A New Hope
## 8238                                                                                                                                           River Wild, The
## 8239                                                                                                                                        Executive Decision
## 8240                                                                                                                                                     Fargo
## 8241                                                                                                                  Homeward Bound II: Lost in San Francisco
## 8242                                                                                                                                                Sgt. Bilko
## 8243                                                                                                                                       Mission: Impossible
## 8244                                                                                                                                               Dragonheart
## 8245                                                                                                                                          Mulholland Falls
## 8246                                                                                                                              Truth About Cats & Dogs, The
## 8247                                                                                                                                              Multiplicity
## 8248                                                                                                                                                Craft, The
## 8249                                                                                                                                                 Rock, The
## 8250                                                                                                                                                   Twister
## 8251                                                                                                                                                 Barb Wire
## 8252                                                                                                                                              Phantom, The
## 8253                                                                                                                             Independence Day (a.k.a. ID4)
## 8254                                                                                                                                            Cable Guy, The
## 8255                                                                                                                                                    Eraser
## 8256                                                                                                                                      Nutty Professor, The
## 8257                                                                                                                                                Phenomenon
## 8258                                                                                                                                           Time to Kill, A
## 8259                                                                                                                                                    Ransom
## 8260                                                                                                                       Willy Wonka & the Chocolate Factory
## 8261                                                                                                                                                 Toy Story
## 8262                                                                                                                                                 GoldenEye
## 8263                                                                                                                                                    Casino
## 8264                                                                                                                                                Get Shorty
## 8265                                                                                                  City of Lost Children, The (Cité des enfants perdus, La)
## 8266                                                                                                                                                  Clueless
## 8267                                                                                                                                      Seven (a.k.a. Se7en)
## 8268                                                                                                                                       Usual Suspects, The
## 8269                                                                                                                                             Bottle Rocket
## 8270                                                                                                                                             Happy Gilmore
## 8271                                                                                                                                               Taxi Driver
## 8272                                                                                                                                   Basketball Diaries, The
## 8273                                                                                                                                                     Congo
## 8274                                                                                                                                        Living in Oblivion
## 8275                                                                                                                                             Billy Madison
## 8276                                                                                                                                                    Clerks
## 8277                                                                                                                           Dumb & Dumber (Dumb and Dumber)
## 8278                                                                                                                                               Hoop Dreams
## 8279                                                                                                                              Heavyweights (Heavy Weights)
## 8280                                                                                                                        Star Wars: Episode IV - A New Hope
## 8281                                                                                                                                                  Outbreak
## 8282                                                                                                   Léon: The Professional (a.k.a. The Professional) (Léon)
## 8283                                                                                                                                              Pulp Fiction
## 8284                                                                                                                                 Shawshank Redemption, The
## 8285                                                                                                                                                 Tommy Boy
## 8286                                                                                                                               What's Eating Gilbert Grape
## 8287                                                                                                                                          Muriel's Wedding
## 8288                                                                                                                                              Forrest Gump
## 8289                                                                                                                                                     Speed
## 8290                                                                                                                                        Dazed and Confused
## 8291                                                                                                                                            Demolition Man
## 8292                                                                                                                                                     Fresh
## 8293                                                                                                                                             Fugitive, The
## 8294                                                                                                                                             Jurassic Park
## 8295                                                                                                                                          Schindler's List
## 8296                                                                                                                               Searching for Bobby Fischer
## 8297                                                                                                                                              Blade Runner
## 8298                                                                                                                                                Home Alone
## 8299                                                                                                                                 Silence of the Lambs, The
## 8300                                                                                                                                                 Space Jam
## 8301                                                                                      Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb
## 8302                                                                                                                                             Trainspotting
## 8303                                                                                                                                             Roman Holiday
## 8304                                                                                                                                         Wizard of Oz, The
## 8305                                                                                                                    Sunset Blvd. (a.k.a. Sunset Boulevard)
## 8306                                                                                                                                              Citizen Kane
## 8307                                                                                                                                     2001: A Space Odyssey
## 8308                                                                                                                                             All About Eve
## 8309                                                                                                                                                     Laura
## 8310                                                                                                                                           His Girl Friday
## 8311                                                                                                                                     It's a Wonderful Life
## 8312                                                                                                                                                  Die Hard
## 8313                                                                                                                                                  Swingers
## 8314                                                                                                                       Willy Wonka & the Chocolate Factory
## 8315                                                                                                                                            Reservoir Dogs
## 8316                                                                                                                                          Crying Game, The
## 8317                                                                                                                                       Glengarry Glen Ross
## 8318                                                                                                                                E.T. the Extra-Terrestrial
## 8319                                                                                                                               People vs. Larry Flynt, The
## 8320                                                                                                                           Monty Python and the Holy Grail
## 8321                                                                                                                   Cinema Paradiso (Nuovo cinema Paradiso)
## 8322                                                                                                                           One Flew Over the Cuckoo's Nest
## 8323                                                                                                            Star Wars: Episode V - The Empire Strikes Back
## 8324                                                                                                                                       Princess Bride, The
## 8325                                                                                   Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 8326                                                                                        Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il)
## 8327                                                                                                                                       Clockwork Orange, A
## 8328                                                                                                                                     To Kill a Mockingbird
## 8329                                                                                                                                            Apocalypse Now
## 8330                                                                                                    Once Upon a Time in the West (C'era una volta il West)
## 8331                                                                                                                Star Wars: Episode VI - Return of the Jedi
## 8332                                                                                                                                                Goodfellas
## 8333                                                                                                                                         Full Metal Jacket
## 8334                                                                                                                                                   Amadeus
## 8335                                                                                                                                            Quiet Man, The
## 8336                                                                                                                                               Raging Bull
## 8337                                                                                                                                                Annie Hall
## 8338                                                                                                                                          Harold and Maude
## 8339                                                                                                                                           Terminator, The
## 8340                                                                                                                                                 Manhattan
## 8341                                                                                                                                             Graduate, The
## 8342                                                                                                                             Bridge on the River Kwai, The
## 8343                                                                                                                                                 Chinatown
## 8344                                                                                                                                                 Duck Soup
## 8345                                                                                                                                              Shining, The
## 8346                                                                                                                                               Stand by Me
## 8347                                                                                                                                          Deer Hunter, The
## 8348                                                                                                                                             Groundhog Day
## 8349                                                                                                                                                Unforgiven
## 8350                                                                                                                                        Back to the Future
## 8351                                                                                                                                                 High Noon
## 8352                                                                                                                                                  Heathers
## 8353                                                                                                                                        This Is Spinal Tap
## 8354                                                                                                                        Indiana Jones and the Last Crusade
## 8355                                                                                                                                           Field of Dreams
## 8356                                                                                                                        Butch Cassidy and the Sundance Kid
## 8357                                                                                                                                   When Harry Met Sally...
## 8358                                                                                                                                               Sling Blade
## 8359                                                                                                                                                    Grease
## 8360                                                                                                                                                      Jaws
## 8361                                                                                                                                             Jerry Maguire
## 8362                                                                                                                                       Waiting for Guffman
## 8363                                                                                                                                             Donnie Brasco
## 8364                                                                                                                                             Air Force One
## 8365                                                                                                                                         L.A. Confidential
## 8366                                                                                                                                             Boogie Nights
## 8367                                                                                                                                         Starship Troopers
## 8368                                                                                                                                          Truman Show, The
## 8369                                                                                                                                         Good Will Hunting
## 8370                                                                                                                                                   Titanic
## 8371                                                                                                                                         Big Lebowski, The
## 8372                                                                                                                                        As Good as It Gets
## 8373                                                                                                                                                     Mulan
## 8374                                                                                                                              There's Something About Mary
## 8375                                                                                                                                           West Side Story
## 8376                                                                                                                                           Midnight Cowboy
## 8377                                                                                                                                    French Connection, The
## 8378                                                                                                                                                     Rocky
## 8379                                                                                                                                          Chariots of Fire
## 8380                                                                                                                                       Terms of Endearment
## 8381                                                                                                                                                  Rain Man
## 8382                                                                                                                                       Breakfast Club, The
## 8383                                                                                                                                             Lethal Weapon
## 8384                                                                                                                                              Goonies, The
## 8385                                                                                                                                        Mask of Zorro, The
## 8386                                                                                                                                Back to the Future Part II
## 8387                                                                                                                                       Saving Private Ryan
## 8388                                                                                                                                      D2: The Mighty Ducks
## 8389                                                                                                                                               Hocus Pocus
## 8390                                                                                                                                               BASEketball
## 8391                                                                                                                                               'burbs, The
## 8392                                                                                                                                         Mighty Ducks, The
## 8393                                                                                                                      Indiana Jones and the Temple of Doom
## 8394                                                                                                                                           Sixteen Candles
## 8395                                                                                                                                      Strangers on a Train
## 8396                                                                                                                                         Untouchables, The
## 8397                                                                                                                                           Say Anything...
## 8398                                                                                                                                                      Toys
## 8399                                                                                                                                            Producers, The
## 8400                                                                                                                                             Pleasantville
## 8401                                                                                                                       Life Is Beautiful (La Vita è bella)
## 8402                                                                                                                                        American History X
## 8403                                                                                                                                                  Rushmore
## 8404                                                                                                                                           Karate Kid, The
## 8405                                                                                                                                              Office Space
## 8406                                                                                                                         Lock, Stock & Two Smoking Barrels
## 8407                                                                                                                                10 Things I Hate About You
## 8408                                                                                                                                                  Election
## 8409                                                                                                                                                Mummy, The
## 8410                                                                                                                                                 Big Daddy
## 8411                                                                                                                      South Park: Bigger, Longer and Uncut
## 8412                                                                                                                       Ghostbusters (a.k.a. Ghost Busters)
## 8413                                                                                                                                    Little Shop of Horrors
## 8414                                                                                                                                           Iron Giant, The
## 8415                                                                                                                                                 Airplane!
## 8416                                                                                                                                                       Big
## 8417                                                                                                                                        Christmas Story, A
## 8418                                                                                                                                           American Beauty
## 8419                                                                                                                                       Hard Day's Night, A
## 8420                                                                                                                                  Ferris Bueller's Day Off
## 8421                                                                                                                         Conformist, The (Conformista, Il)
## 8422                                                                                                                                                Goldfinger
## 8423                                                                                                           Fistful of Dollars, A (Per un pugno di dollari)
## 8424                                                                                                                            Home Alone 2: Lost in New York
## 8425                                                                                                                                                Fight Club
## 8426                                                                                                                                                Robin Hood
## 8427                                                                                                                                            Trading Places
## 8428                                                                                                                                                Moonstruck
## 8429                                                                                                                                            Mansfield Park
## 8430                                                                                                                                          Babes in Toyland
## 8431                                                             Bicycle Thieves (a.k.a. The Bicycle Thief) (a.k.a. The Bicycle Thieves) (Ladri di biciclette)
## 8432                                                                                                                                              Natural, The
## 8433                                                                                                                                              Midnight Run
## 8434                                                                                                                                               Toy Story 2
## 8435                                                                                                                                    Last Picture Show, The
## 8436                                                                                                                                                  Magnolia
## 8437                                                                                                                              Fast Times at Ridgemont High
## 8438                                                                                                                                             Wayne's World
## 8439                                                                                                                                    League of Their Own, A
## 8440                                                                                                                                Stop! Or My Mom Will Shoot
## 8441                                                                                                                               Hoosiers (a.k.a. Best Shot)
## 8442                                                                                                                                               Bull Durham
## 8443                                                                                                                                            Searchers, The
## 8444                                                                                                                                              Animal House
## 8445                                                                                                                                        Do the Right Thing
## 8446                                                                                                                                              Hustler, The
## 8447                                                                                                                                                     Lucas
## 8448                                                                                                                                                      Hook
## 8449                                                                                                                                                   Network
## 8450                                                                                                                                                Caddyshack
## 8451                                                                                                                                               On the Town
## 8452                                                                                                                                   Pee-wee's Big Adventure
## 8453                                                                                                                                       Endless Summer, The
## 8454                                                                                                                                           Blazing Saddles
## 8455                                                                                                                                              Blood Simple
## 8456                                                                                                                                               Chicken Run
## 8457                                                                                                                                                  Croupier
## 8458                                                                                                                                                 Footloose
## 8459                                                                                                           Naked Gun: From the Files of Police Squad!, The
## 8460                                                                                                                                             Almost Famous
## 8461                                                                                                                                       Remember the Titans
## 8462                                                                                                               Legend of Drunken Master, The (Jui kuen II)
## 8463                                                                                                        How the Grinch Stole Christmas (a.k.a. The Grinch)
## 8464                                                                                                                                 Emperor's New Groove, The
## 8465                                                                                                                                                 Cast Away
## 8466                                                                                                                                O Brother, Where Art Thou?
## 8467                                                                                                                                                   Traffic
## 8468                                                                                                                                       Save the Last Dance
## 8469                                                                                                                                         Beverly Hills Cop
## 8470                                                                                                                                         Can't Buy Me Love
## 8471                                                                                                                                          Eddie Murphy Raw
## 8472                                                                                                                                                   Memento
## 8473                                                                                                                                                  Scarface
## 8474                                                                                                                                                     Shrek
## 8475                                                                                                                              A.I. Artificial Intelligence
## 8476                                                                                                                         Man Who Shot Liberty Valance, The
## 8477                                                                                                                                            Legally Blonde
## 8478                                                                                                                          Bill & Ted's Excellent Adventure
## 8479                                                                                                                                   Wet Hot American Summer
## 8480                                                                                                                                                  Hardball
## 8481                                                                                                                                              Training Day
## 8482                                                                                                                                                 Zoolander
## 8483                                                                                                                                          Mulholland Drive
## 8484                                                                                                                                              Donnie Darko
## 8485                                                                                                                                 Man Who Wasn't There, The
## 8486                                                                                                                                            Monsters, Inc.
## 8487                                                                   Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 8488                                                                                                             Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 8489                                                                                                        Lord of the Rings: The Fellowship of the Ring, The
## 8490                                                                                                                                              Sandlot, The
## 8491                                                                                                                                               About a Boy
## 8492                                                                                                                                        Undercover Brother
## 8493                                                                                                                                      Bourne Identity, The
## 8494                                                                                                                                           Minority Report
## 8495                                                                                                                                          Punch-Drunk Love
## 8496                                                                                                                                        Jackass: The Movie
## 8497                                                                                                                   Harry Potter and the Chamber of Secrets
## 8498                                                                                                                                                Adaptation
## 8499                                                                                                                    Lord of the Rings: The Two Towers, The
## 8500                                                                                                                                                   My Girl
## 8501                                                                                                                                              Pianist, The
## 8502                                                                                                                           Confessions of a Dangerous Mind
## 8503                                                                                                                              City of God (Cidade de Deus)
## 8504                                                                                                                                                Old School
## 8505                                                                                                                                            Bruce Almighty
## 8506                                                                                                                                              Finding Nemo
## 8507                                                                                                                          Shaolin Soccer (Siu lam juk kau)
## 8508                                                                                                                                             Hello, Dolly!
## 8509                                                                                                                                           Boyz N the Hood
## 8510                                                                                                                                            School of Rock
## 8511                                                                                                                                        Station Agent, The
## 8512                                                                                                                                              Mystic River
## 8513                                                                                                                                       Intolerable Cruelty
## 8514                                                                                                                                         Kill Bill: Vol. 1
## 8515                                                                                                                                           Shattered Glass
## 8516                                                                                                                                                       Elf
## 8517                                                                                                                                             Love Actually
## 8518                                                                                                                                                   Slacker
## 8519                                                                                                                                         Presumed Innocent
## 8520                                                                                                                           Battle Royale (Batoru rowaiaru)
## 8521                                                                                                                                                 Teen Wolf
## 8522                                                                                                                                                Stagecoach
## 8523                                                                                                                                     Night at the Opera, A
## 8524                                                                                                                                                  Big Fish
## 8525                                                                                                            Lord of the Rings: The Return of the King, The
## 8526                                                                                                                                                   Miracle
## 8527                                                                                                                     Eternal Sunshine of the Spotless Mind
## 8528                                                                                                                                         Kill Bill: Vol. 2
## 8529                                                                                                                                                Mean Girls
## 8530                                                                                                                                                   Shrek 2
## 8531                                                                                                                  Harry Potter and the Prisoner of Azkaban
## 8532                                                                                                                                         Napoleon Dynamite
## 8533                                                                                                                          Dodgeball: A True Underdog Story
## 8534                                                                                                                     Anchorman: The Legend of Ron Burgundy
## 8535                                                                                                                                     Bourne Supremacy, The
## 8536                                                                                                                                              Garden State
## 8537                                                                                                                       Harold and Kumar Go to White Castle
## 8538                                                                                                                                         Shaun of the Dead
## 8539                                                                                                                                                    Primer
## 8540                                                                                                                                Team America: World Police
## 8541                                                                                                                                          Incredibles, The
## 8542                                                                                                                                         National Treasure
## 8543                                                                                                                                            Music Man, The
## 8544                                                                                                                                    Eddie Murphy Delirious
## 8545                                                                                                                                 Extremely Goofy Movie, An
## 8546                                                                                                                                                   Old Boy
## 8547                                                                                                                                                  Sin City
## 8548                                                                                                                                               Fever Pitch
## 8549                                                                                                                                                     Crash
## 8550                                                                                                                                       Kicking & Screaming
## 8551                                                                                                                                            Cinderella Man
## 8552                                                                                                                                             Batman Begins
## 8553                                                                                                                           Me and You and Everyone We Know
## 8554                                                                                                                                          Wedding Crashers
## 8555                                                                                                                                                   Junebug
## 8556                                                                                                                                   40-Year-Old Virgin, The
## 8557                                                                                                                                    History of Violence, A
## 8558                                                                                                          Wallace & Gromit in The Curse of the Were-Rabbit
## 8559                                                                                                                                       Kiss Kiss Bang Bang
## 8560                                                                                                                                  Squid and the Whale, The
## 8561                                                                                                                                Good Night, and Good Luck.
## 8562                                                                                                                                         Pride & Prejudice
## 8563                                                                                                                       Harry Potter and the Goblet of Fire
## 8564                                                                                           Chronicles of Narnia: The Lion, the Witch and the Wardrobe, The
## 8565                                                                                                                                            V for Vendetta
## 8566                                                                                                                                                Inside Man
## 8567                                                                                                                                      Little Miss Sunshine
## 8568                                                                                                                                             Monster House
## 8569                                                                                                               Talladega Nights: The Ballad of Ricky Bobby
## 8570                                                                                                                                 Pursuit of Happyness, The
## 8571                                                                                                                                        Jackass Number Two
## 8572                                                                                                                                             Departed, The
## 8573                                                                                                                                      Deliver Us from Evil
## 8574                                                                                                                                              Flushed Away
## 8575                                                                                                                                             Casino Royale
## 8576                                                                                                                      After the Wedding (Efter brylluppet)
## 8577                                                                                                                                               Ratatouille
## 8578                                                                                                                                                  Hot Fuzz
## 8579                                                                                                                                                    Zodiac
## 8580                                                                                                                                                       300
## 8581                                                                                                                                           Blades of Glory
## 8582                                                                                                                           How the Grinch Stole Christmas!
## 8583                                                                                                                                                      Once
## 8584                                                                                                                  Pirates of the Caribbean: At World's End
## 8585                                                                                                                 Harry Potter and the Order of the Phoenix
## 8586                                                                                                                                                   Hot Rod
## 8587                                                                                                                                     Bourne Ultimatum, The
## 8588                                                                                                                                                  Superbad
## 8589                                                                                                                                         King of Kong, The
## 8590                                                                                                                                                 Atonement
## 8591                                                                                                                                          Eastern Promises
## 8592                                                                                                                                             Into the Wild
## 8593                                                                                                                                         American Gangster
## 8594                                                                                                                        Before the Devil Knows You're Dead
## 8595                                                                                                                                    No Country for Old Men
## 8596                                                                                                                                               I Am Legend
## 8597                                                                                                                                              Savages, The
## 8598                                                                                                                                                      Juno
## 8599                                                                                                            Sweeney Todd: The Demon Barber of Fleet Street
## 8600                                                                                                                                       There Will Be Blood
## 8601                                                                                                                                         Meet the Spartans
## 8602                                                                                                                                                 In Bruges
## 8603                                                                                                                                                    Jumper
## 8604                                                                                                                                          Dark Knight, The
## 8605                                                                                                                                            Happy-Go-Lucky
## 8606                                                                                                                                                  Iron Man
## 8607                                                                                                                                                     Taken
## 8608                                                                                                                                                  Watchmen
## 8609                                                                                                                                             Step Brothers
## 8610                                                                                                                                  Vicky Cristina Barcelona
## 8611                                                                                                                                         Pineapple Express
## 8612                                                                                                                                            Tropic Thunder
## 8613                                                                                                                                       Slumdog Millionaire
## 8614                                                                                                                                         Quantum of Solace
## 8615                                                                                                                                               Role Models
## 8616                                                                                                                                                   Yes Man
## 8617                                                                                                                                                  Valkyrie
## 8618                                                                                                          Dear Zachary: A Letter to a Son About His Father
## 8619                                                                                                                                           I Love You, Man
## 8620                                                                                                                                             Adventureland
## 8621                                                                                                                                               In the Loop
## 8622                                                                                                                                      Inglourious Basterds
## 8623                                                                                                                                                        Up
## 8624                                                                                                                                             Hangover, The
## 8625                                                                                                                               Taking of Pelham 1 2 3, The
## 8626                                                                                                                    Harry Potter and the Half-Blood Prince
## 8627                                                                                                                                                District 9
## 8628                                                                                                                                             Julie & Julia
## 8629                                                                                                                                                   Bronson
## 8630                                                                                                                         Cloudy with a Chance of Meatballs
## 8631                                                                                                                                               City Island
## 8632                                                                                                                                                Zombieland
## 8633                                                                                                                                             Education, An
## 8634                                                                                                                                             Up in the Air
## 8635                                                                                                                                            Black Dynamite
## 8636                                                                                                                                         Fantastic Mr. Fox
## 8637                                                                                                                                             Single Man, A
## 8638                                                                                                                                               Crazy Heart
## 8639                                                                                                                                 I Love You Phillip Morris
## 8640                                                                                                                                                 Fish Tank
## 8641                                                                                                                                                 Room, The
## 8642                                                                                                                                                 Greenberg
## 8643                                                                                                                               About Elly (Darbareye Elly)
## 8644                                                                                                                                                  Kick-Ass
## 8645                                                                                                                                               Toy Story 3
## 8646                                                                                                                                             Despicable Me
## 8647                                                                                                                                                 Inception
## 8648                                                                                                                                           Other Guys, The
## 8649                                                                                                                                         Two Escobars, The
## 8650                                                                                                                               Scott Pilgrim vs. the World
## 8651                                                                                                                                       Social Network, The
## 8652                                                                                                                                                    Easy A
## 8653                                                                                                                                                Jackass 3D
## 8654                                                                                                                                                 127 Hours
## 8655                                                                                                                                                Black Swan
## 8656                                                                                                              Harry Potter and the Deathly Hallows: Part 1
## 8657                                                                                                                                                 Burlesque
## 8658                                                                                                                                                 Trip, The
## 8659                                                                                                                                              Poetry (Shi)
## 8660                                                                                                                                               Source Code
## 8661                                                                                                                                                 Jane Eyre
## 8662                                                                                                                                                       Boy
## 8663                                                                                                                   Kid With a Bike, The (Le gamin au vélo)
## 8664                                                                                                                                     Hangover Part II, The
## 8665                                                                                                                                        X-Men: First Class
## 8666                                                                                                                                                 Beginners
## 8667                                                                                                                                              Larry Crowne
## 8668                                                                                                                                           Horrible Bosses
## 8669                                                                                                              Harry Potter and the Deathly Hallows: Part 2
## 8670                                                                                                                            Rise of the Planet of the Apes
## 8671                                                                                                                                                 Help, The
## 8672                                                                                                                                        30 Minutes or Less
## 8673                                                                                                                                                 Moneyball
## 8674                                                                                                                   Separation, A (Jodaeiye Nader az Simin)
## 8675                                                                                                                                  Martha Marcy May Marlene
## 8676                                                                                                                               We Need to Talk About Kevin
## 8677                                                                                                                                 Headhunters (Hodejegerne)
## 8678                                                                                                                      Oslo, August 31st (Oslo, 31. august)
## 8679                                                                                                                                                   Weekend
## 8680                                                                                                                                    Dark Knight Rises, The
## 8681                                                                                                                                                 Chronicle
## 8682                                                                                                                                                 Project X
## 8683                                                                                                                                                  Starbuck
## 8684                                                                                                                                                      Goon
## 8685                                                                                                                                            21 Jump Street
## 8686                                                                                                                                   Jeff, Who Lives at Home
## 8687                                                                                                                                      Jiro Dreams of Sushi
## 8688                                                                                                                                                    Bernie
## 8689                                                                                                                                          Moonrise Kingdom
## 8690                                                                                                                                     Safety Not Guaranteed
## 8691                                                                                                                                                       Ted
## 8692                                                                                                                                   Amazing Spider-Man, The
## 8693                                                                                                                                                   Skyfall
## 8694                                                                                                                                             Campaign, The
## 8695                                                                                                                                         Sleepwalk with Me
## 8696                                                                                                                                               Master, The
## 8697                                                                                                                                        Hunt, The (Jagten)
## 8698                                                                                                                     Royal Affair, A (Kongelig affære, En)
## 8699                                                                                                                                         Seven Psychopaths
## 8700                                                                                                                                       Here Comes the Boom
## 8701                                                                                                                                             Imposter, The
## 8702                                                                                                                                   Silver Linings Playbook
## 8703                                                                                                                                                    Flight
## 8704                                                                                                                                                Life of Pi
## 8705                                                                                                                                          Django Unchained
## 8706                                                                                                                                                This Is 40
## 8707                                                                                                                                 It's Such a Beautiful Day
## 8708                                                                                                                                            Upstream Color
## 8709                                                                                                                                 Snow White (Blancanieves)
## 8710                                                                                                                                       Act of Killing, The
## 8711                                                                                                                                                 Host, The
## 8712                                                                                                                                           This Is the End
## 8713                                                                                                                                                Frances Ha
## 8714                                                                                                                                        Way, Way Back, The
## 8715                                                                                                                                       Monsters University
## 8716                                                                                                                                          What Maisie Knew
## 8717                                                                                                                                         Fruitvale Station
## 8718                                                                                                                                            Conjuring, The
## 8719                                                                                                                                             Short Term 12
## 8720                                                                                                                                                  Nebraska
## 8721                                                                                                                                        Inequality for All
## 8722                                                                                                                                               Just Wright
## 8723                                                                                                                                          12 Years a Slave
## 8724                                                                                                                             Jackass Presents: Bad Grandpa
## 8725                                                                                                                                        Dallas Buyers Club
## 8726                                                                                                                                        Selfish Giant, The
## 8727                                                                                                                                             Muscle Shoals
## 8728                                                                                                                                                 Philomena
## 8729                                                                                                                                           American Hustle
## 8730                                                                                                                                                       Her
## 8731                                                                                                                                          Saving Mr. Banks
## 8732                                                                                                                         Anchorman 2: The Legend Continues
## 8733                                                                                                            Like Father, Like Son (Soshite chichi ni naru)
## 8734                                                                                                                                                Ride Along
## 8735                                                                                                                                            The Lego Movie
## 8736                                                                                                                            We Are the Best! (Vi är bäst!)
## 8737                                                                                                                                X-Men: Days of Future Past
## 8738                                                                                                                                                   Blended
## 8739                                                                                                                                            22 Jump Street
## 8740                                                                                                          Birdman: Or (The Unexpected Virtue of Ignorance)
## 8741                                                                                                                                                     Frank
## 8742                                                                                                                                             Babadook, The
## 8743                                                                                                                                                  Whiplash
## 8744                                                                                                                                                 Gone Girl
## 8745                                                                                                                                   Guardians of the Galaxy
## 8746                                                                                                                                        Trip to Italy, The
## 8747                                                                                                                                             Let's Be Cops
## 8748                                                                                                                Two Days, One Night (Deux jours, une nuit)
## 8749                                                                                                                                           One I Love, The
## 8750                                                                                                                                                Guest, The
## 8751                                                                                                                                        The Skeleton Twins
## 8752                                                                                                                                    Force Majeure (Turist)
## 8753                                                                                                                                      Look of Silence, The
## 8754                                                                                                                                              Nightcrawler
## 8755                                                                                                                                        The Imitation Game
## 8756                                                                                                                                        Mad Max: Fury Road
## 8757                                                                                                                Star Wars: Episode VII - The Force Awakens
## 8758                                                                                                                                                  Brooklyn
## 8759                                                                                                         Going Clear: Scientology and the Prison of Belief
## 8760                                                                                                                                                      Dope
## 8761                                                                                                                                    People, Places, Things
## 8762                                                                                                                                         The Hateful Eight
## 8763                                                                                                                                                  Victoria
## 8764                                                                                                                                                   Phoenix
## 8765                                                                                                                                               The Lobster
## 8766                                                                                                                                                 Kung Fury
## 8767                                                                                                                                                Inside Out
## 8768                                                                                                                        Batman v Superman: Dawn of Justice
## 8769                                                                                                                                  Requiem For The Big East
## 8770                                                                                                                                              The Revenant
## 8771                                                                                                                                           Best of Enemies
## 8772                                                                                                                                    Straight Outta Compton
## 8773                                                                                                                                       Beasts of No Nation
## 8774                                                                                                                                          The Night Before
## 8775                                                                                                                                                 Spotlight
## 8776                                                                                                                                                     Creed
## 8777                                                                                                                                            Big Short, The
## 8778                                                                                                                                         World of Tomorrow
## 8779                                                                                                                                                  Zootopia
## 8780                                                                                                                                   Hello, My Name Is Doris
## 8781                                                                                                                              Neighbors 2: Sorority Rising
## 8782                                                                                                                                       Survive and Advance
## 8783                                                                                                                                   American President, The
## 8784                                                                                                                                     Sense and Sensibility
## 8785                                                                                                                                                Get Shorty
## 8786                                                                                                                                                      Babe
## 8787                                                                                                                                                Braveheart
## 8788                                                                                                                                                   Rob Roy
## 8789                                                                                                                                                 Desperado
## 8790                                                                                                                                     Devil in a Blue Dress
## 8791                                                                                                                        Star Wars: Episode IV - A New Hope
## 8792                                                                                                       Like Water for Chocolate (Como agua para chocolate)
## 8793                                                                                                   Léon: The Professional (a.k.a. The Professional) (Léon)
## 8794                                                                                                                                 Shawshank Redemption, The
## 8795                                                                                                                               What's Eating Gilbert Grape
## 8796                                                                                                                                               Client, The
## 8797                                                                                                                                              Forrest Gump
## 8798                                                                                                                               Four Weddings and a Funeral
## 8799                                                                                                                                                 True Lies
## 8800                                                                                                                                                      Dave
## 8801                                                                                               Englishman Who Went Up a Hill But Came Down a Mountain, The
## 8802                                                                                                                                    Much Ado About Nothing
## 8803                                                                                                                                                Piano, The
## 8804                                                                                                                                          Schindler's List
## 8805                                                                                                                                               Shadowlands
## 8806                                                                                                                                 Six Degrees of Separation
## 8807                                                                                                                                              True Romance
## 8808                                                                                                                                        Dances with Wolves
## 8809                                                                                                                                                    Batman
## 8810                                                                                                                                                     Fargo
## 8811                                                                                                                                           Family Thing, A
## 8812                                                                                                                                       Mission: Impossible
## 8813                                                                                                                                         Cold Comfort Farm
## 8814                                                                                                                                                 Lone Star
## 8815                                                                                                                                            Godfather, The
## 8816                                                                                                                                              My Fair Lady
## 8817                                                                                                                                          My Favorite Year
## 8818                                                                                                                                  Apple Dumpling Gang, The
## 8819                                                                                                                                  Escape to Witch Mountain
## 8820                                                                                                                                              Mary Poppins
## 8821                                                                                                                                       Sound of Music, The
## 8822                                                                                                                                                  Die Hard
## 8823                                                                                                                       Willy Wonka & the Chocolate Factory
## 8824                                                                                                                                      Fish Called Wanda, A
## 8825                                                                                                                              Monty Python's Life of Brian
## 8826                                                                                                                                           Victor/Victoria
## 8827                                                                                                                                             Dirty Dancing
## 8828                                                                                                                                       Weekend at Bernie's
## 8829                                                                                                                                            Basic Instinct
## 8830                                                                                                                                          Crying Game, The
## 8831                                                                                                                                E.T. the Extra-Terrestrial
## 8832                                                                                                                                                   Top Gun
## 8833                                                                                                                                            On Golden Pond
## 8834                                                                                                                           Return of the Pink Panther, The
## 8835                                                                                                                                                Abyss, The
## 8836                                                                                                                                                  Fog, The
## 8837                                                                                                                                      Escape from New York
## 8838                                                                                                                                              Howling, The
## 8839                                                                                                                                          Private Benjamin
## 8840                                                                                                                           Monty Python and the Holy Grail
## 8841                                                                                                                      Wallace & Gromit: The Wrong Trousers
## 8842                                                                                                                                              My Left Foot
## 8843                                                                                                                                  Sex, Lies, and Videotape
## 8844                                                                                                                           One Flew Over the Cuckoo's Nest
## 8845                                                                                                                            Cheech and Chong's Up in Smoke
## 8846                                                                                                            Star Wars: Episode V - The Empire Strikes Back
## 8847                                                                                                                                       Princess Bride, The
## 8848                                                                                   Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 8849                                                                                                                                                    Aliens
## 8850                                                                                                                                            Apocalypse Now
## 8851                                                                                                                                                     Alien
## 8852                                                                                                                                       Blues Brothers, The
## 8853                                                                                                                                   Godfather: Part II, The
## 8854                                                                                                                                         Full Metal Jacket
## 8855                                                                                                                                                   Henry V
## 8856                                                                                                                                                   Amadeus
## 8857                                                                                                                               Once Upon a Time in America
## 8858                                                                                                                                                Sting, The
## 8859                                                                                                                                           Terminator, The
## 8860                                                                                                                                                     Glory
## 8861                                                                                                                     Rosencrantz and Guildenstern Are Dead
## 8862                                                                                                                                        Dead Poets Society
## 8863                                                                                                                                                 Chinatown
## 8864                                                                                                                                              Shining, The
## 8865                                                                                                                                               Stand by Me
## 8866                                                                                                                                          Deer Hunter, The
## 8867                                                                                                                                             Groundhog Day
## 8868                                                                                                                                        Back to the Future
## 8869                                                                                                                                                    Patton
## 8870                                                                                                                                                Highlander
## 8871                                                                                                                                        Young Frankenstein
## 8872                                                                                                                                         Somewhere in Time
## 8873                                                                                                                                        This Is Spinal Tap
## 8874                                                                                                                        Indiana Jones and the Last Crusade
## 8875                                                                                                                                       Room with a View, A
## 8876                                                                                                                                       Killing Fields, The
## 8877                                                                                                                                           Field of Dreams
## 8878                                                                                                                                   When Harry Met Sally...
## 8879                                                                                                                           American Werewolf in London, An
## 8880                                                                                                                                            Amityville 3-D
## 8881                                                                                                                             Amityville II: The Possession
## 8882                                                                                                                                    Amityville Horror, The
## 8883                                                                                                                                                    Carrie
## 8884                                                                                                                                                Cat People
## 8885                                                                                                                                Nightmare on Elm Street, A
## 8886                                                                                                                                                 Omen, The
## 8887                                                                                                                                                     Shine
## 8888                                                                                                                                               Sling Blade
## 8889                                                                                                                                                Young Guns
## 8890                                                                                                                                                    Grease
## 8891                                                                                                                                                      Jaws
## 8892                                                                                                                                             Jerry Maguire
## 8893                                                                                                                                           Raising Arizona
## 8894                                                                                                                                 Last of the Mohicans, The
## 8895                                                                                                                                            Murder at 1600
## 8896                                                                                                                                            Absolute Power
## 8897                                                                                                                                             Private Parts
## 8898                                                                                                                                       Conan the Barbarian
## 8899                                                                                                                                                  Cop Land
## 8900                                                                                                                                         Conspiracy Theory
## 8901                                                                                                                                         L.A. Confidential
## 8902                                                                                                                                                 Game, The
## 8903                                                                                                                                           Full Monty, The
## 8904                                                                                                                                      The Devil's Advocate
## 8905                                                                                                                                                   Stripes
## 8906                                                                                                                                                   Witness
## 8907                                                                                                                                         Good Will Hunting
## 8908                                                                                                                                      Sweet Hereafter, The
## 8909                                                                                                                                                   Titanic
## 8910                                                                                                                                         Big Lebowski, The
## 8911                                                                                                                                                    Fallen
## 8912                                                                                                                                        As Good as It Gets
## 8913                                                                                                                                         Perfect Murder, A
## 8914                                                                                                                            X-Files: Fight the Future, The
## 8915                                                                                                                                             Smoke Signals
## 8916                                                                                                                                                Armageddon
## 8917                                                                                                                                           Lethal Weapon 4
## 8918                                                                                                                              There's Something About Mary
## 8919                                                                                                                                           West Side Story
## 8920                                                                                                                                                   Oliver!
## 8921                                                                                                                                    French Connection, The
## 8922                                                                                                                                                     Rocky
## 8923                                                                                                                                         Kramer vs. Kramer
## 8924                                                                                                                                           Ordinary People
## 8925                                                                                                                                          Chariots of Fire
## 8926                                                                                                                                       Terms of Endearment
## 8927                                                                                                                                                  Rain Man
## 8928                                                                                                                                        Driving Miss Daisy
## 8929                                                                                                                                                     Klute
## 8930                                                                                                                                                 Labyrinth
## 8931                                                                                                                                       Breakfast Club, The
## 8932                                                                                                                                           Friday the 13th
## 8933                                                                                                                                    Friday the 13th Part 2
## 8934                                                                                                                Friday the 13th Part IV: The Final Chapter
## 8935                                                                                                                   Friday the 13th Part V: A New Beginning
## 8936                                                                                                                      Friday the 13th Part VI: Jason Lives
## 8937                                                                                                          Friday the 13th Part VIII: Jason Takes Manhattan
## 8938                                                                                                                                                 Halloween
## 8939                                                                                                                                              Halloween II
## 8940                                                                                                                        Halloween III: Season of the Witch
## 8941                                                                                                                                                Prom Night
## 8942                                                                                                                                               Poltergeist
## 8943                                                                                                                            Poltergeist II: The Other Side
## 8944                                                                                                                                           Poltergeist III
## 8945                                                                                                                                             Exorcist, The
## 8946                                                                                                                                             Lethal Weapon
## 8947                                                                                                                                           Lethal Weapon 2
## 8948                                                                                                                                                  Gremlins
## 8949                                                                                                                                              Goonies, The
## 8950                                                                                                                                        Mask of Zorro, The
## 8951                                                                                                                                             Soylent Green
## 8952                                                                                                                                   Poseidon Adventure, The
## 8953                                                                                                                                        Dangerous Liaisons
## 8954                                                                                                                                      Jane Austen's Mafia!
## 8955                                                                                                                                       Saving Private Ryan
## 8956                                                                                                                                                Candleshoe
## 8957                                                                                                                                 Devil and Max Devlin, The
## 8958                                                                                                                                  Honey, I Shrunk the Kids
## 8959                                                                                                                                            Tender Mercies
## 8960                                                                                                                                                    Popeye
## 8961                                                                                                                           Something Wicked This Way Comes
## 8962                                                                                                                                                    Splash
## 8963                                                                                                                                                 Jerk, The
## 8964                                                                                                                                 Dead Men Don't Wear Plaid
## 8965                                                                                                                                  Man with Two Brains, The
## 8966                                                                                                                                            Outsiders, The
## 8967                                                                                                                      Indiana Jones and the Temple of Doom
## 8968                                                                                                                                            Dead Zone, The
## 8969                                                                                                                                                      Cujo
## 8970                                                                                                                                      Children of the Corn
## 8971                                                                                                                            Ever After: A Cinderella Story
## 8972                                                                                                                                             Atlantic City
## 8973                                                                                                                                                    Legend
## 8974                                                                                                                                           Sixteen Candles
## 8975                                                                                                                                             Avengers, The
## 8976                                                                                                                                    NeverEnding Story, The
## 8977                                                                                                                            Attack of the Killer Tomatoes!
## 8978                                                                                                                                               Beetlejuice
## 8979                                                                                                                                                    Frenzy
## 8980                                                                                                                                                    Willow
## 8981                                                                                                                                         Untouchables, The
## 8982                                                                                                                                              My Bodyguard
## 8983                                                                                                                                              Working Girl
## 8984                                                                                                                                           Few Good Men, A
## 8985                                                                                                                                                Thing, The
## 8986                                                                                                                                       Edward Scissorhands
## 8987                                                                                                                                            Producers, The
## 8988                                                                                                                              History of the World: Part I
## 8989                                                                                                                                           My Cousin Vinny
## 8990                                                                                                                                         Elephant Man, The
## 8991                                                                                                                                     M*A*S*H (a.k.a. MASH)
## 8992                                                                                                                                   American President, The
## 8993                                                                                                                            Ace Ventura: When Nature Calls
## 8994                                                                                                                                                 Apollo 13
## 8995                                                                                                                                Ace Ventura: Pet Detective
## 8996                                                                                                                                      Addams Family Values
## 8997                                                                                                                                          Another Stakeout
## 8998                                                                                                                                           Aristocats, The
## 8999                                                                                                                                              Arrival, The
## 9000                                                                                                                                            Apartment, The
## 9001                                                                                                                                     2001: A Space Odyssey
## 9002                                                                                                                             Adventures of Robin Hood, The
## 9003                                                                                                                               Around the World in 80 Days
## 9004                                                                                                                                             39 Steps, The
## 9005                                                                                                                                        African Queen, The
## 9006                                                                                                                                      2 Days in the Valley
## 9007                                                                                                                                  Apple Dumpling Gang, The
## 9008                                                                                                                              20,000 Leagues Under the Sea
## 9009                                                                                                                                    Angels in the Outfield
## 9010                                                                                                                                                Abyss, The
## 9011                                                                                                                                                    Aliens
## 9012                                                                                                                                              12 Angry Men
## 9013                                                                                                                                                     Alien
## 9014                                                                                                                                                   Amadeus
## 9015                                                                                                                                                Annie Hall
## 9016                                                                                                                                      Arsenic and Old Lace
## 9017                                                                                                                                   Alien³ (a.k.a. Alien 3)
## 9018                                                                                                                           American Werewolf in London, An
## 9019                                                                                                                                            101 Dalmatians
## 9020                                                                                                                                            Absolute Power
## 9021                                                                                                                                                  Anaconda
## 9022                                                                                                               Austin Powers: International Man of Mystery
## 9023                                                                                                                                             Air Force One
## 9024                                                                                                                                       Alien: Resurrection
## 9025                                                                                                                                        As Good as It Gets
## 9026                                                                                                                                                Armageddon
## 9027                                                                                                                            All Quiet on the Western Front
## 9028                                                                                                                              Absent-Minded Professor, The
## 9029                                                                                                                      Apple Dumpling Gang Rides Again, The
## 9030                                                                                                                                               'burbs, The
## 9031                                                                                                           101 Dalmatians (One Hundred and One Dalmatians)
## 9032                                                                                                                                        Addams Family, The
## 9033                                                                                                                                 Adventures in Babysitting
## 9034                                                                                                                                             Avengers, The
## 9035                                                                                                                            Attack of the Killer Tomatoes!
## 9036                                                                                                                                              Torn Curtain
## 9037                                                                                                                                                  Lifeboat
## 9038                                                                                                                            2010: The Year We Make Contact
## 9039                                                                                                                                                52 Pick-Up
## 9040                                                                                                                                                       8MM
## 9041                                                                                                                                                   Airport
## 9042                                                                                                                                               Airport '77
## 9043                                                                                                                                              Dead Ringers
## 9044                                                                                                                     Austin Powers: The Spy Who Shagged Me
## 9045                                                                                                 Monty Python's And Now for Something Completely Different
## 9046                                                                                                                                                 Airplane!
## 9047                                                                                                                                   Airplane II: The Sequel
## 9048                                                                                                                                      Aces: Iron Eagle III
## 9049                                                                                                                                     Astronaut's Wife, The
## 9050                                                                                                      Adventures of Milo and Otis, The (Koneko monogatari)
## 9051                                                                                               Adventures of Buckaroo Banzai Across the 8th Dimension, The
## 9052                                                                                                                                 7th Voyage of Sinbad, The
## 9053                                                                                                                                              Agnes of God
## 9054                                                                                                                                    ...And Justice for All
## 9055                                                                                                                                              Animal House
## 9056                                                                                                                                                 Frequency
## 9057                                                                                                                                                    Arthur
## 9058                                                                                                                                           American Psycho
## 9059                                                                                                                                                     U-571
## 9060                                                                                                                                           American Gigolo
## 9061                                                                                                                                                     Benji
## 9062                                                                                                                                              Alien Nation
## 9063                                                                                                                                               Angel Heart
## 9064                                                                                                                                            Action Jackson
## 9065                                                                                                                                   American President, The
## 9066                                                                                                                        Twelve Monkeys (a.k.a. 12 Monkeys)
## 9067                                                                                                                                       Usual Suspects, The
## 9068                                                                                                                                               Taxi Driver
## 9069                                                                                                                                                 Apollo 13
## 9070                                                                                                                                                    Clerks
## 9071                                                                                                                           Dumb & Dumber (Dumb and Dumber)
## 9072                                                                                                                                                  Outbreak
## 9073                                                                                                                                              Pulp Fiction
## 9074                                                                                                                                                 Quiz Show
## 9075                                                                                                                                 Shawshank Redemption, The
## 9076                                                                                                                                                 Mask, The
## 9077                                                                                                                                                 True Lies
## 9078                                                                                                                                      Addams Family Values
## 9079                                                                                                                                     Age of Innocence, The
## 9080                                                                                                                                             Jurassic Park
## 9081                                                                                                                                          Schindler's List
## 9082                                                                                                                                              Blade Runner
## 9083                                                                                                                                                Home Alone
## 9084                                                                                                                                        Dances with Wolves
## 9085                                                                                                                                 Silence of the Lambs, The
## 9086                                                                                                           Wallace & Gromit: The Best of Aardman Animation
## 9087                                                                                                                           Wallace & Gromit: A Close Shave
## 9088                                                                                                                                            Godfather, The
## 9089                                                                                                                                                Casablanca
## 9090                                                                                                                                         Wizard of Oz, The
## 9091                                                                                                                           Monty Python and the Holy Grail
## 9092                                                                                                                      Wallace & Gromit: The Wrong Trousers
## 9093                                                                                                                           One Flew Over the Cuckoo's Nest
## 9094                                                                                                                                                Goodfellas
## 9095                                                                                                                                   Godfather: Part II, The
## 9096                                                                                                                                  Star Trek: First Contact
## 9097                                                                                                                                             Boogie Nights
## 9098                                                                                                                                       Tomorrow Never Dies
## 9099                                                                                                                              There's Something About Mary
## 9100                                                                                                                                                  Rain Man
## 9101                                                                                                                                       Breakfast Club, The
## 9102                                                                                                                                       Saving Private Ryan
## 9103                                                                                                                                                      Tron
## 9104                                                                                                                                    NeverEnding Story, The
## 9105                                                                                                                                                     Blade
## 9106                                                                                                                                                    Willow
## 9107                                                                                                                                         Untouchables, The
## 9108                                                                                                                                           My Cousin Vinny
## 9109                                                                                                                                        American History X
## 9110                                                                                                                                       Shakespeare in Love
## 9111                                                                                                                                          Crocodile Dundee
## 9112                                                                                                                         Lock, Stock & Two Smoking Barrels
## 9113                                                                                                                                                Mummy, The
## 9114                                                                                                                                                  Superman
## 9115                                                                                                                                              Notting Hill
## 9116                                                                                                                     Austin Powers: The Spy Who Shagged Me
## 9117                                                                                                                                 Run Lola Run (Lola rennt)
## 9118                                                                                                                       Ghostbusters (a.k.a. Ghost Busters)
## 9119                                                                                                                                  Thomas Crown Affair, The
## 9120                                                                                                                                                       Big
## 9121                                                                                                                                           American Beauty
## 9122                                                                                                                                                Fight Club
## 9123                                                                                                                                      Being John Malkovich
## 9124                                                                                                                                             Wayne's World
## 9125                                                                                                                                                 Gladiator
## 9126                                                                                                                                    Mission: Impossible II
## 9127                                                                                                                                               Chicken Run
## 9128                                                                                                                                              Best in Show
## 9129                                                                                                                                          Meet the Parents
## 9130                                                                                                                                                     Shrek
## 9131                                                                                                        Lord of the Rings: The Fellowship of the Ring, The
## 9132                                                                                                                                     M*A*S*H (a.k.a. MASH)
## 9133                                                                                                                                                Spider-Man
## 9134                                                                                                                    Lord of the Rings: The Two Towers, The
## 9135                                                                                                                                   All the President's Men
## 9136                                                                                                                                   To Live and Die in L.A.
## 9137                                                                                                            Lord of the Rings: The Return of the King, The
## 9138                                                                                                                     Eternal Sunshine of the Spotless Mind
## 9139                                                                                                                                          Incredibles, The
## 9140                                                                                                                                                Krays, The
## 9141                                                                                                                                             Batman Begins
## 9142                                                                                                                                                Murderball
## 9143                                                                                                                                                    Casino
## 9144                                                                                                                                                Get Shorty
## 9145                                                                                                                                               Taxi Driver
## 9146                                                                                                                                                 Desperado
## 9147                                                                                                                                               Judge Dredd
## 9148                                                                                                                                                   Ed Wood
## 9149                                                                                                                                      Hot Shots! Part Deux
## 9150                                                                                                                                              Blade Runner
## 9151                                                                                                                                                     Fargo
## 9152                                                                                                                                               Dragonheart
## 9153                                                                                                           Wallace & Gromit: The Best of Aardman Animation
## 9154                                                                                                                           Wallace & Gromit: A Close Shave
## 9155                                                                                                                                            Godfather, The
## 9156                                                                                                                              Monty Python's Life of Brian
## 9157                                                                                                                                                   Platoon
## 9158                                                                                                                                            Apocalypse Now
## 9159                                                                                                    Once Upon a Time in the West (C'era una volta il West)
## 9160                                                                                                                                                    Psycho
## 9161                                                                                                                                   Godfather: Part II, The
## 9162                                                                                                                                                    Grease
## 9163                                                                                                                                                 Liar Liar
## 9164                                                                                                                                                   Gattaca
## 9165                                                                                                                                             Boogie Nights
## 9166                                                                                                                                         Big Lebowski, The
## 9167                                                                                                                               Back to the Future Part III
## 9168                                                                                                                      Indiana Jones and the Temple of Doom
## 9169                                                                                                                                               Beetlejuice
## 9170                                                                                                                       Life Is Beautiful (La Vita è bella)
## 9171                                                                                                                                                  Superman
## 9172                                                                                                                                  Blair Witch Project, The
## 9173                                                                                                                                                       Big
## 9174                                                                                                                                               Re-Animator
## 9175                                                                                                                                                  Magnolia
## 9176                                                                                                                                   Pee-wee's Big Adventure
## 9177                                                                                                                                    Assault on Precinct 13
## 9178                                                                                                                                       Requiem for a Dream
## 9179                                                                                                             Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 9180                                                                                                                                     M*A*S*H (a.k.a. MASH)
## 9181                                                                                                             Spirited Away (Sen to Chihiro no kamikakushi)
## 9182                                                                                                                   Grave of the Fireflies (Hotaru no haka)
## 9183                                                                                                                                             About Schmidt
## 9184                                                                                                                    Lord of the Rings: The Two Towers, The
## 9185                                                                                                                                                      Narc
## 9186                                                                                                                                              Pianist, The
## 9187                                                                                                        Laputa: Castle in the Sky (Tenkû no shiro Rapyuta)
## 9188                                                                                                                                             28 Days Later
## 9189                                                                                                                                                 Bad Santa
## 9190                                                                                                                     Eternal Sunshine of the Spotless Mind
## 9191                                                                                                                                          Dawn of the Dead
## 9192                                                                                                                                             Before Sunset
## 9193                                                                                                                                                    Closer
## 9194                                                                                                                                                   Old Boy
## 9195                                                                                                                       Ong-Bak: The Thai Warrior (Ong Bak)
## 9196                                                                                                                             Sea Inside, The (Mar adentro)
## 9197                                                                                                                                              Hotel Rwanda
## 9198                                                                                                                                                   Jumanji
## 9199                                                                                                                                                      Babe
## 9200                                                                                                                                                Pocahontas
## 9201                                                                                                                                       Usual Suspects, The
## 9202                                                                                                                                             Happy Gilmore
## 9203                                                                                                                                                    Casper
## 9204                                                                                                                           Dumb & Dumber (Dumb and Dumber)
## 9205                                                                                                                                         Santa Clause, The
## 9206                                                                                                                                            Lion King, The
## 9207                                                                                                                                            Mrs. Doubtfire
## 9208                                                                                                                           Nightmare Before Christmas, The
## 9209                                                                                                                                    Brady Bunch Movie, The
## 9210                                                                                                                                                Home Alone
## 9211                                                                                                                                                     Ghost
## 9212                                                                                                                                                   Aladdin
## 9213                                                                                                                                                    Batman
## 9214                                                                                                                                 Silence of the Lambs, The
## 9215                                                                                                                           Snow White and the Seven Dwarfs
## 9216                                                                                                                                      Beauty and the Beast
## 9217                                                                                                                                                 Pinocchio
## 9218                                                                                                                                           Aristocats, The
## 9219                                                                                                                                 James and the Giant Peach
## 9220                                                                                                                                                 Space Jam
## 9221                                                                                                                                           Harriet the Spy
## 9222                                                                                                                                         Wizard of Oz, The
## 9223                                                                                                                                     It's a Wonderful Life
## 9224                                                                                                                                             Love Bug, The
## 9225                                                                                                                                                Cinderella
## 9226                                                                                                                                              Mary Poppins
## 9227                                                                                                                                                     Dumbo
## 9228                                                                                                                                       Sound of Music, The
## 9229                                                                                                                      William Shakespeare's Romeo + Juliet
## 9230                                                                                                                       Willy Wonka & the Chocolate Factory
## 9231                                                                                                                                E.T. the Extra-Terrestrial
## 9232                                                                                                                           Monty Python and the Holy Grail
## 9233                                                                                                                                       Princess Bride, The
## 9234                                                                                                                                     To Kill a Mockingbird
## 9235                                                                                                                                       Blues Brothers, The
## 9236                                                                                                                                            101 Dalmatians
## 9237                                                                                                                                                    Grease
## 9238                                                                                                                                       Grosse Pointe Blank
## 9239                                                                                                                                 Men in Black (a.k.a. MIB)
## 9240                                                                                                                                       Wedding Singer, The
## 9241                                                                                                                                                     Mulan
## 9242                                                                                                                                                     Rocky
## 9243                                                                                                                                       Breakfast Club, The
## 9244                                                                                                                                                     Bambi
## 9245                                                                                                                                  Honey, I Shrunk the Kids
## 9246                                                                                                                                          Jungle Book, The
## 9247                                                                                                                                        Lady and the Tramp
## 9248                                                                                                                                       Little Mermaid, The
## 9249                                                                                                           101 Dalmatians (One Hundred and One Dalmatians)
## 9250                                                                                                                                                 Peter Pan
## 9251                                                                                                                                     All Dogs Go to Heaven
## 9252                                                                                                                                           Sixteen Candles
## 9253                                                                                                                                    NeverEnding Story, The
## 9254                                                                                                                                               Beetlejuice
## 9255                                                                                                                                                 Rush Hour
## 9256                                                                                                                                            Producers, The
## 9257                                                                                                                                             Bug's Life, A
## 9258                                                                                                                                     Babe: Pig in the City
## 9259                                                                                                                                              Office Space
## 9260                                                                                                                                               Matrix, The
## 9261                                                                                                                                10 Things I Hate About You
## 9262                                                                                                                       Ghostbusters (a.k.a. Ghost Busters)
## 9263                                                                                                                                           Iron Giant, The
## 9264                                                                                                                                        Christmas Story, A
## 9265                                                                                                                                          Yellow Submarine
## 9266                                                                                                                                  Ferris Bueller's Day Off
## 9267                                                                                                                            Home Alone 2: Lost in New York
## 9268                                                                                                                                               Toy Story 2
## 9269                                                                                                                                          Romeo and Juliet
## 9270                                                                                                                                               Chicken Run
## 9271                                                                                                        How the Grinch Stole Christmas (a.k.a. The Grinch)
## 9272                                                                                                                                 Emperor's New Groove, The
## 9273                                                                                                                                         Miss Congeniality
## 9274                                                                                                                                                  Spy Kids
## 9275                                                                                                                                     Bridget Jones's Diary
## 9276                                                                                                                                                     Shrek
## 9277                                                                                                                                Throw Momma from the Train
## 9278                                                                                                                                               Rush Hour 2
## 9279                                                                                                                                            Monsters, Inc.
## 9280                                                                                                                                               Shallow Hal
## 9281                                                                   Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 9282                                                                                                        Lord of the Rings: The Fellowship of the Ring, The
## 9283                                                                                                                                  My Big Fat Greek Wedding
## 9284                                                                                                                                                Spider-Man
## 9285                                                                                                                                             Lilo & Stitch
## 9286                                                                                                                                                 Mr. Deeds
## 9287                                                                                                              Men in Black II (a.k.a. MIIB) (a.k.a. MIB 2)
## 9288                                                                                                                               Austin Powers in Goldmember
## 9289                                                                                                             Spirited Away (Sen to Chihiro no kamikakushi)
## 9290                                                                                                                                      Saturday Night Fever
## 9291                                                                                                                   Harry Potter and the Chamber of Secrets
## 9292                                                                                                                    Lord of the Rings: The Two Towers, The
## 9293                                                                                                                     My Neighbor Totoro (Tonari no Totoro)
## 9294                                                                                                                                      Bend It Like Beckham
## 9295                                                                                                        Laputa: Castle in the Sky (Tenkû no shiro Rapyuta)
## 9296                                                                                                                                            Bruce Almighty
## 9297                                                                                                                                              Finding Nemo
## 9298                                                                                                    Pirates of the Caribbean: The Curse of the Black Pearl
## 9299                                                                                                                                               Jungle Book
## 9300                                                                                                                                            School of Rock
## 9301                                                                                                                                                       Elf
## 9302                                                                                                                                          Kindergarten Cop
## 9303                                                                                                            Lord of the Rings: The Return of the King, The
## 9304                                                                                                                                      Cheaper by the Dozen
## 9305                                                                                                                                                Mean Girls
## 9306                                                                                                                                                   Shrek 2
## 9307                                                                                                                  Harry Potter and the Prisoner of Azkaban
## 9308                                                                                                                                         Napoleon Dynamite
## 9309                                                                                                                                             Super Size Me
## 9310                                                                                                                            Now You See Him, Now You Don't
## 9311                                                                                                                                          Incredibles, The
## 9312                                                                                                                                         Finding Neverland
## 9313                                                                                                               Kiki's Delivery Service (Majo no takkyûbin)
## 9314                                                                                                           Lemony Snicket's A Series of Unfortunate Events
## 9315                                                                                                                         Charlie and the Chocolate Factory
## 9316                                                                                                                     Hitchhiker's Guide to the Galaxy, The
## 9317                                                                                                                                                Madagascar
## 9318                                                                                                                                            Cinderella Man
## 9319                                                                                                                                          Mr. & Mrs. Smith
## 9320                                                                                                                                             Batman Begins
## 9321                                                                                                                                            Fantastic Four
## 9322                                                                                                                                          Wedding Crashers
## 9323                                                                                                                                         Pride & Prejudice
## 9324                                                                                                                       Harry Potter and the Goblet of Fire
## 9325                                                                                           Chronicles of Narnia: The Lion, the Witch and the Wardrobe, The
## 9326                                                                                                                                            V for Vendetta
## 9327                                                                                                                                     Thank You for Smoking
## 9328                                                                                                                                            Over the Hedge
## 9329                                                                                                                                                      Cars
## 9330                                                                                                                                    Devil Wears Prada, The
## 9331                                                                                                                Pirates of the Caribbean: Dead Man's Chest
## 9332                                                                                                                                      Little Miss Sunshine
## 9333                                                                                                               Talladega Nights: The Ballad of Ricky Bobby
## 9334                                                                                                                                       Night at the Museum
## 9335                                                                                                                                     Stranger than Fiction
## 9336                                                                                                                                          Illusionist, The
## 9337                                                                                                                 Pan's Labyrinth (Laberinto del fauno, El)
## 9338                                                                                                                                             Prestige, The
## 9339                                                                                                                                               Ratatouille
## 9340                                                                                                                                                Knocked Up
## 9341                                                                                                                                           Shrek the Third
## 9342                                                                                                                  Pirates of the Caribbean: At World's End
## 9343                                                                                                                                          Ocean's Thirteen
## 9344                                                                                                                 Fantastic Four: Rise of the Silver Surfer
## 9345                                                                                                                                              Transformers
## 9346                                                                                                                 Harry Potter and the Order of the Phoenix
## 9347                                                                                                                                       Simpsons Movie, The
## 9348                                                                                                                      Tyler Perry's Why Did I Get Married?
## 9349                                                                                                                                            Be Kind Rewind
## 9350                                                                                                                                                Darfur Now
## 9351                                                                                                                                       Golden Compass, The
## 9352                                                                                                                                               I Am Legend
## 9353                                                                                                                                                      Juno
## 9354                                                                                                            Sweeney Todd: The Demon Barber of Fleet Street
## 9355                                                                                                                               Hellboy II: The Golden Army
## 9356                                                                                                                                                 In Bruges
## 9357                                                                                                                                                    Jumper
## 9358                                                                                                                                          Dark Knight, The
## 9359                                                                                                                                 Forgetting Sarah Marshall
## 9360                                                                                                                                                  Iron Man
## 9361                                                                                                                                                    WALL·E
## 9362                                                                                                                                                   Hancock
## 9363                                                                                                                                                 Get Smart
## 9364                                                                                                                                               Taxi Driver
## 9365                                                                                                                        Star Wars: Episode IV - A New Hope
## 9366                                                                                                                                 Shawshank Redemption, The
## 9367                                                                                                            Star Wars: Episode V - The Empire Strikes Back
## 9368                                                                                                                Star Wars: Episode VI - Return of the Jedi
## 9369                                                                                                                                        Back to the Future
## 9370                                                                                                                                       Saving Private Ryan
## 9371                                                                                                                                  Ferris Bueller's Day Off
## 9372                                                                                                                                                Fight Club
## 9373                                                                                                                                                   Memento
## 9374                                                                                                                                      Bourne Identity, The
## 9375                                                                                                                              City of God (Cidade de Deus)
## 9376                                                                                                                                     Bourne Supremacy, The
## 9377                                                                                                                                           Children of Men
## 9378                                                                                                                                             Blood Diamond
## 9379                                                                                                                                     Bourne Ultimatum, The
## 9380                                                                                                                                          Dark Knight, The
## 9381                                                                                                                                      Inglourious Basterds
## 9382                                                                                                                                                      Moon
## 9383                                                                                                                                          Hurt Locker, The
## 9384                                                                                                                                                District 9
## 9385                                                                                                                                         It Might Get Loud
## 9386                                                                                                                                                 Inception
## 9387                                                                                                                                                Black Swan
## 9388                                                                                                                                               Source Code
## 9389                                                                                                                                        Bourne Legacy, The
## 9390                                                                                                                                              Intouchables
## 9391                                                                                                                                                      Argo
## 9392                                                                                                                                                  Oblivion
## 9393                                                                                                                                         From the Sky Down
## 9394                                                                                                                                               Pacific Rim
## 9395                                                                                                                                                About Time
## 9396                                                                                                                                                   Gravity
## 9397                                                                                                                                  Wolf of Wall Street, The
## 9398                                                                                                                                                       Her
## 9399                                                                                                                                              Interstellar
## 9400                                                                                                                                          Edge of Tomorrow
## 9401                                                                                                          Birdman: Or (The Unexpected Virtue of Ignorance)
## 9402                                                                                                                                                   Boyhood
## 9403                                                                                                                                                  Whiplash
## 9404                                                                                                                                           American Sniper
## 9405                                                                                                                                                 John Wick
## 9406                                                                                                                                              Nightcrawler
## 9407                                                                                                                                                Ex Machina
## 9408                                                                                                                              Kingsman: The Secret Service
## 9409                                                                                                                                                  Blackhat
## 9410                                                                                                                                        Mad Max: Fury Road
## 9411                                                                                                                                                   Ant-Man
## 9412                                                                                                                                               The Martian
## 9413                                                                                                                                                Inside Out
## 9414                                                                                                                                                   Sicario
## 9415                                                                                                                                                     Creed
## 9416                                                                                                                                              Jason Bourne
## 9417                                                                                                                                                 Toy Story
## 9418                                                                                                                                   American President, The
## 9419                                                                                                                                                    Casino
## 9420                                                                                                                                Postman, The (Postino, Il)
## 9421                                                                                                                       Rumble in the Bronx (Hont faan kui)
## 9422                                                                                                                                                 Apollo 13
## 9423                                                                                                                                                   Rob Roy
## 9424                                                                                                                                               Hoop Dreams
## 9425                                                                                                                        Star Wars: Episode IV - A New Hope
## 9426                                                                                                                                           Specialist, The
## 9427                                                                                                                                 Shawshank Redemption, The
## 9428                                                                                                                                                 True Lies
## 9429                                                                                                              City Slickers II: The Legend of Curly's Gold
## 9430                                                                                                                                             Fugitive, The
## 9431                                                                                                                                             Jurassic Park
## 9432                                                                                                                                   Remains of the Day, The
## 9433                                                                                                                                 Robin Hood: Men in Tights
## 9434                                                                                                                                                    Batman
## 9435                                                                                                                                 Silence of the Lambs, The
## 9436                                                                                                           Wallace & Gromit: The Best of Aardman Animation
## 9437                                                                                                                                                    Ransom
## 9438                                                                                                                    Homeward Bound: The Incredible Journey
## 9439                                                                                                                      William Shakespeare's Romeo + Juliet
## 9440                                                                                                                              Monty Python's Life of Brian
## 9441                                                                                                                    Children of the Corn IV: The Gathering
## 9442                                                                                                                           One Flew Over the Cuckoo's Nest
## 9443                                                                                   Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 9444                                                                                                                                                     Alien
## 9445                                                                                                                                   Godfather: Part II, The
## 9446                                                                                                                                                Annie Hall
## 9447                                                                                                                                                Sting, The
## 9448                                                                                                                                               Stand by Me
## 9449                                                                                                                        Butch Cassidy and the Sundance Kid
## 9450                                                                                                                                   When Harry Met Sally...
## 9451                                                                                                                                  Star Trek: First Contact
## 9452                                                                                                                    Star Trek VI: The Undiscovered Country
## 9453                                                                                                                           Star Trek II: The Wrath of Khan
## 9454                                                                                                                             Star Trek IV: The Voyage Home
## 9455                                                                                                                                 Last of the Mohicans, The
## 9456                                                                                                                    Jungle2Jungle (a.k.a. Jungle 2 Jungle)
## 9457                                                                                                                    Romy and Michele's High School Reunion
## 9458                                                                                                               Austin Powers: International Man of Mystery
## 9459                                                                                                                                                  Face/Off
## 9460                                                                                                                                 Hunt for Red October, The
## 9461                                                                                                                                               Chasing Amy
## 9462                                                                                                                                           Full Monty, The
## 9463                                                                                                                                                Armageddon
## 9464                                                                                                                                                     Rocky
## 9465                                                                                                                                                  Rain Man
## 9466                                                                                                                                 Gremlins 2: The New Batch
## 9467                                                                                                                                   Flight of the Navigator
## 9468                                                                                                                                    Lord of the Rings, The
## 9469                                                                                                                                               Beetlejuice
## 9470                                                                                                                                           Few Good Men, A
## 9471                                                                                                                                           My Cousin Vinny
## 9472                                                                                                                                   Star Trek: Insurrection
## 9473                                                                                                                                               Matrix, The
## 9474                                                                                                                 Star Wars: Episode I - The Phantom Menace
## 9475                                                                                                                                                  Superman
## 9476                                                                                                                                             Arachnophobia
## 9477                                                                                                                                  Blair Witch Project, The
## 9478                                                                                                                                          Sixth Sense, The
## 9479                                                                                                                                                 Airplane!
## 9480                                                                                                                                                       Big
## 9481                                                                                                                                           American Beauty
## 9482                                                                                                                                  Ferris Bueller's Day Off
## 9483                                                                                                                                                Fight Club
## 9484                                                                                                                                  Who Framed Roger Rabbit?
## 9485                                                                                                                                      Being John Malkovich
## 9486                                                                                                                                               Toy Story 2
## 9487                                                                                                                                  Talented Mr. Ripley, The
## 9488                                                                                                                         Ghost Dog: The Way of the Samurai
## 9489                                                                                                                                           Erin Brockovich
## 9490                                                                                                                        Close Encounters of the Third Kind
## 9491                                                                                                                                             High Fidelity
## 9492                                                                                                                                                 Gladiator
## 9493                                                                                                                                               Chicken Run
## 9494                                                                                                                                                     X-Men
## 9495                                                                                                           Naked Gun: From the Files of Police Squad!, The
## 9496                                                                                                                   Naked Gun 2 1/2: The Smell of Fear, The
## 9497                                                                                                                                             Almost Famous
## 9498                                                                                                          Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 9499                                                                                                                                                 Cast Away
## 9500                                                                                                                                                     Shrek
## 9501                                                                                                                                   Lara Croft: Tomb Raider
## 9502                                                                                                                                 Fast and the Furious, The
## 9503                                                                                                                         Final Fantasy: The Spirits Within
## 9504                                                                                                        Iron Monkey (Siu nin Wong Fei-hung ji: Tit Ma Lau)
## 9505                                                                                                        Lord of the Rings: The Fellowship of the Ring, The
## 9506                                                                                                                                                Spider-Man
## 9507                                                                                                                    Lord of the Rings: The Two Towers, The
## 9508                                                                                                                                          X2: X-Men United
## 9509                                                                                                       League of Extraordinary Gentlemen, The (a.k.a. LXG)
## 9510                                                                                                                                       Lost in Translation
## 9511                                                                                                                                            School of Rock
## 9512                                                                                                            Lord of the Rings: The Return of the King, The
## 9513                                                                                                                                Passion of the Christ, The
## 9514                                                                                                                                                Braveheart
## 9515                                                                                                                                                 Apollo 13
## 9516                                                                                                                                            Batman Forever
## 9517                                                                                                                                Die Hard: With a Vengeance
## 9518                                                                                                                                              First Knight
## 9519                                                                                                                           Dumb & Dumber (Dumb and Dumber)
## 9520                                                                                                        Interview with the Vampire: The Vampire Chronicles
## 9521                                                                                                                                       Legends of the Fall
## 9522                                                                                                                                              Pulp Fiction
## 9523                                                                                                                                 Shawshank Redemption, The
## 9524                                                                                                                                    Star Trek: Generations
## 9525                                                                                                                                Ace Ventura: Pet Detective
## 9526                                                                                                                                  Clear and Present Danger
## 9527                                                                                                                                              Forrest Gump
## 9528                                                                                                                                                 True Lies
## 9529                                                                                                                                               Cliffhanger
## 9530                                                                                                                                             Fugitive, The
## 9531                                                                                                                                        Dances with Wolves
## 9532                                                                                                                                                    Batman
## 9533                                                                                                                                 Silence of the Lambs, The
## 9534                                                                                                                                      Beauty and the Beast
## 9535                                                                                                                        Star Wars: Episode IV - A New Hope
## 9536                                                                                                                                            Godfather, The
## 9537                                                                                                                                            Apartment, The
## 9538                                                                                                                                        Gone with the Wind
## 9539                                                                                                                                     2001: A Space Odyssey
## 9540                                                                                                                                                   Sleeper
## 9541                                                                                                                                                   Bananas
## 9542                                                                                                                                          Bonnie and Clyde
## 9543                                                                                                                Star Wars: Episode VI - Return of the Jedi
## 9544                                                                                                                                   Godfather: Part II, The
## 9545                                                                                                                                                Annie Hall
## 9546                                                                                                                                                Local Hero
## 9547                                                                                                                                                 Duck Soup
## 9548                                                                                                                                        Back to the Future
## 9549                                                                                                                                        Young Frankenstein
## 9550                                                                                                                                        This Is Spinal Tap
## 9551                                                                                                                                               Being There
## 9552                                                                                                                                       Killing Fields, The
## 9553                                                                                                                        Butch Cassidy and the Sundance Kid
## 9554                                                                                                                                           Midnight Cowboy
## 9555                                                                                                                                           Ordinary People
## 9556                                                                                                                                                Roger & Me
## 9557                                                                                                                                               Player, The
## 9558                                                                                                                                       Hard Day's Night, A
## 9559                                                                                                                                               Deliverance
## 9560                                                                                                                                             All That Jazz
## 9561                                                                                                                                     M*A*S*H (a.k.a. MASH)
## 9562                                                                                                                                                Get Shorty
## 9563                                                                                                                                                   Copycat
## 9564                                                                                                                            Bridges of Madison County, The
## 9565                                                                                                                                                Braveheart
## 9566                                                                                                                        Star Wars: Episode IV - A New Hope
## 9567                                                                                                                                              Forrest Gump
## 9568                                                                                                                                                     Speed
## 9569                                                                                                                                             Fugitive, The
## 9570                                                                                                                                             Jurassic Park
## 9571                                                                                                                                Terminator 2: Judgment Day
## 9572                                                                                                                                 Silence of the Lambs, The
## 9573                                                                                                                                                     Fargo
## 9574                                                                                                                                                    Ransom
## 9575                                                                                                                                            Godfather, The
## 9576                                                                                                                                        North by Northwest
## 9577                                                                                                                                                  Die Hard
## 9578                                                                                                                                            Basic Instinct
## 9579                                                                                                                                      Escape from New York
## 9580                                                                                                                                             Grifters, The
## 9581                                                                                                            Star Wars: Episode V - The Empire Strikes Back
## 9582                                                                                   Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 9583                                                                                                                                                    Aliens
## 9584                                                                                                                                              12 Angry Men
## 9585                                                                                                                                           Terminator, The
## 9586                                                                                                                                 Femme Nikita, La (Nikita)
## 9587                                                                                                                                        Back to the Future
## 9588                                                                                                                                                Highlander
## 9589                                                                                                                                                  Face/Off
## 9590                                                                                                                                 Men in Black (a.k.a. MIB)
## 9591                                                                                                                                                 Game, The
## 9592                                                                                                                                         Big Lebowski, The
## 9593                                                                                                                                                     Rocky
## 9594                                                                                                                                             Lethal Weapon
## 9595                                                                                                                                           Negotiator, The
## 9596                                                                                                                               1984 (Nineteen Eighty-Four)
## 9597                                                                                                                                         Untouchables, The
## 9598                                                                                                                                           Few Good Men, A
## 9599                                                                                                                                            Simple Plan, A
## 9600                                                                                                                                                  Fly, The
## 9601                                                                                                                                               Fly II, The
## 9602                                                                                                                                               Matrix, The
## 9603                                                                                                                                                Entrapment
## 9604                                                                                                                                           American Beauty
## 9605                                                                                                                                                Goldfinger
## 9606                                                                                                                                                   RoboCop
## 9607                                                                                                                                                  Predator
## 9608                                                                                                                           On Her Majesty's Secret Service
## 9609                                                                                                                                                       F/X
## 9610                                                                                                                                                Billy Jack
## 9611                                                                                                                                                 Toy Story
## 9612                                                                                                                                                      Heat
## 9613                                                                                                                               Dracula: Dead and Loving It
## 9614                                                                                                                                                    Casino
## 9615                                                                                                                                     Sense and Sensibility
## 9616                                                                                                                                                Four Rooms
## 9617                                                                                                                                                Persuasion
## 9618                                                                                                                                                      Babe
## 9619                                                                                                                                           Dead Presidents
## 9620                                                                                                                                               Restoration
## 9621                                                                                                                               Indian in the Cupboard, The
## 9622                                                                                                                                        Mr. Holland's Opus
## 9623                                                                                                                                              White Squall
## 9624                                                                                                                                               Black Sheep
## 9625                                                                                                                                           Beautiful Girls
## 9626                                                                                                                                              Broken Arrow
## 9627                                                                                                                                             Happy Gilmore
## 9628                                                                                                                                    Muppet Treasure Island
## 9629                                                                                                                                                Braveheart
## 9630                                                                                                                       Rumble in the Bronx (Hont faan kui)
## 9631                                                                                                                                             Birdcage, The
## 9632                                                                                                                                                   Rob Roy
## 9633                                                                                                                                              Strange Days
## 9634                                                                                                               Far From Home: The Adventures of Yellow Dog
## 9635                                                                                                                        Star Wars: Episode IV - A New Hope
## 9636                                                                                                       Like Water for Chocolate (Como agua para chocolate)
## 9637                                                                                                                                       Legends of the Fall
## 9638                                                                                                                               Madness of King George, The
## 9639                                                                                                                                    Miracle on 34th Street
## 9640                                                                                                                                                 My Family
## 9641                                                                                                                                       Murder in the First
## 9642                                                                                                                                                      Nell
## 9643                                                                                                                                      Natural Born Killers
## 9644                                                                                                   Léon: The Professional (a.k.a. The Professional) (Léon)
## 9645                                                                                                                                         Perez Family, The
## 9646                                                                                                                                              Pulp Fiction
## 9647                                                                                                                                 Secret of Roan Inish, The
## 9648                                                                                                                                                  Stargate
## 9649                                                                                                                                 Shawshank Redemption, The
## 9650                                                                                                                               What's Eating Gilbert Grape
## 9651                                                                                                                                               Client, The
## 9652                                                                                                                                                 Crow, The
## 9653                                                                                                                                              Forrest Gump
## 9654                                                                                                                                          Jungle Book, The
## 9655                                                                                                                                            Lion King, The
## 9656                                                                                                                                                  Maverick
## 9657                                                                                                                                                Wyatt Earp
## 9658                                                                                                                                     Age of Innocence, The
## 9659                                                                                                                                             Carlito's Way
## 9660                                                                                                                                               Cliffhanger
## 9661                                                                                                                                              Widows' Peak
## 9662                                                                                                                                                 Firm, The
## 9663                                                                                                                                             Fugitive, The
## 9664                                                                                                                                       In the Line of Fire
## 9665                                                                                                                                 In the Name of the Father
## 9666                                                                                                                                             Jurassic Park
## 9667                                                                                                                                   Man Without a Face, The
## 9668                                                                                                                                         Menace II Society
## 9669                                                                                                                                                Piano, The
## 9670                                                                                                                                   Remains of the Day, The
## 9671                                                                                                                                                      Rudy
## 9672                                                                                                                                        Secret Garden, The
## 9673                                                                                                                                              Blade Runner
## 9674                                                                                                                                                 Tombstone
## 9675                                                                                                                                                Home Alone
## 9676                                                                                                                                                     Ghost
## 9677                                                                                                                                Terminator 2: Judgment Day
## 9678                                                                                                                                        Dances with Wolves
## 9679                                                                                                                                                    Batman
## 9680                                                                                                                                 Silence of the Lambs, The
## 9681                                                                                                                                      Beauty and the Beast
## 9682                                                                                                                                              Pretty Woman
## 9683                                                                                                                  Homeward Bound II: Lost in San Francisco
## 9684                                                                                                                                               Heavy Metal
## 9685                                                                                                                                                 Jane Eyre
## 9686                                                                                                                                           Aristocats, The
## 9687                                                                                                                                               Primal Fear
## 9688                                                                                                                                   All Dogs Go to Heaven 2
## 9689                                                                                                                                                Sgt. Bilko
## 9690                                                                                                                                       Mission: Impossible
## 9691                                                                                                                                             Moll Flanders
## 9692                                                                                                                                               Dragonheart
## 9693                                                                                                                                                  Faithful
## 9694                                                                                                                                           Substitute, The
## 9695                                                                                                                                          Mulholland Falls
## 9696                                                                                                                              Truth About Cats & Dogs, The
## 9697                                                                                                                                          Oliver & Company
## 9698                                                                                                                                                   Flipper
## 9699                                                                                                                                              Multiplicity
## 9700                                                                                                                                                Craft, The
## 9701                                                                                                                                                 Rock, The
## 9702                                                                                                                                                   Twister
## 9703                                                                                                                                                  Spy Hard
## 9704                                                                                                                             Independence Day (a.k.a. ID4)
## 9705                                                                                                                                            Cable Guy, The
## 9706                                                                                                                                      Nutty Professor, The
## 9707                                                                                                                                          Escape from L.A.
## 9708                                                                                                                                                   Tin Cup
## 9709                                                                                                                             Robin Hood: Prince of Thieves
## 9710                                                                                                                                       Sound of Music, The
## 9711                                                                                                                       Willy Wonka & the Chocolate Factory
## 9712                                                                                                                                          Bonnie and Clyde
## 9713                                                                                                                                E.T. the Extra-Terrestrial
## 9714                                                                                                                                                 Toy Story
## 9715                                                                                                                                                   Jumanji
## 9716                                                                                                                                   American President, The
## 9717                                                                                                                                                 Apollo 13
## 9718                                                                                                                        Star Wars: Episode IV - A New Hope
## 9719                                                                                                                                         Santa Clause, The
## 9720                                                                                                                                 Shawshank Redemption, The
## 9721                                                                                                                                              Forrest Gump
## 9722                                                                                                                                                 Mask, The
## 9723                                                                                                                                                 True Lies
## 9724                                                                                                                                                 Firm, The
## 9725                                                                                                                                             Fugitive, The
## 9726                                                                                               Englishman Who Went Up a Hill But Came Down a Mountain, The
## 9727                                                                                                                                             Jurassic Park
## 9728                                                                                                                                            Mrs. Doubtfire
## 9729                                                                                                                                          Schindler's List
## 9730                                                                                                                                      Sleepless in Seattle
## 9731                                                                                                                                              Blade Runner
## 9732                                                                                                                                                Home Alone
## 9733                                                                                                                                                     Ghost
## 9734                                                                                                                                        Dances with Wolves
## 9735                                                                                                                                                    Batman
## 9736                                                                                                                                              Pretty Woman
## 9737                                                                                                                                             Trainspotting
## 9738                                                                                                                             Independence Day (a.k.a. ID4)
## 9739                                                                                                                                               Rear Window
## 9740                                                                                                                                        North by Northwest
## 9741                                                                                                                                                Casablanca
## 9742                                                                                                                                              My Fair Lady
## 9743                                                                                                                                          To Catch a Thief
## 9744                                                                                                                                       Father of the Bride
## 9745                                                                                                                                     It's a Wonderful Life
## 9746                                                                                                                                       Sound of Music, The
## 9747                                                                                                                       Willy Wonka & the Chocolate Factory
## 9748                                                                                                                                E.T. the Extra-Terrestrial
## 9749                                                                                                                                              My Left Foot
## 9750                                                                                                            Star Wars: Episode V - The Empire Strikes Back
## 9751                                                                                                                                       Princess Bride, The
## 9752                                                                                   Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 9753                                                                                                                                                    Aliens
## 9754                                                                                                                                          Right Stuff, The
## 9755                                                                                                                                             Groundhog Day
## 9756                                                                                                                                        Back to the Future
## 9757                                                                                                                                        Young Frankenstein
## 9758                                                                                                                        Indiana Jones and the Last Crusade
## 9759                                                                                                                                               Being There
## 9760                                                                                                                                           Field of Dreams
## 9761                                                                                                                             Star Trek IV: The Voyage Home
## 9762                                                                                                                                             Jerry Maguire
## 9763                                                                                                                                                   Michael
## 9764                                                                                                                                 Men in Black (a.k.a. MIB)
## 9765                                                                                                                                             Air Force One
## 9766                                                                                                                                                   Titanic
## 9767                                                                                                                              There's Something About Mary
## 9768                                                                                                                                                   Oliver!
## 9769                                                                                                                                             Out of Africa
## 9770                                                                                                                                               Beetlejuice
## 9771                                                                                                                                     Babe: Pig in the City
## 9772                                                                                                                                           Karate Kid, The
## 9773                                                                                                                                        Jumpin' Jack Flash
## 9774                                                                                                                                     Peggy Sue Got Married
## 9775                                                                                                                       Ghostbusters (a.k.a. Ghost Busters)
## 9776                                                                                                                                    Little Shop of Horrors
## 9777                                                                                                                                          Sixth Sense, The
## 9778                                                                                                                                           Heaven Can Wait
## 9779                                                                                                                                                 Airplane!
## 9780                                                                                                                                                       Big
## 9781                                                                                                                                  Ferris Bueller's Day Off
## 9782                                                                                                                                              Time Bandits
## 9783                                                                                                                                                Moonstruck
## 9784                                                                                                                                    Cider House Rules, The
## 9785                                                                                                                                                Sister Act
## 9786                                                                                                                                                 Frequency
## 9787                                                                                                                                                 Gladiator
## 9788                                                                                                                                                   Starman
## 9789                                                                                                                                        Perfect Storm, The
## 9790                                                                                                                                       Lilies of the Field
## 9791                                                                                                                                                     Shrek
## 9792                                                                                                                                            Monsters, Inc.
## 9793                                                                                                                                            Ocean's Eleven
## 9794                                                                                                                                            Kate & Leopold
## 9795                                                                                                        Lord of the Rings: The Fellowship of the Ring, The
## 9796                                                                                                                                         Beautiful Mind, A
## 9797                                                                                                                                                   Ice Age
## 9798                                                                                                                                  My Big Fat Greek Wedding
## 9799                                                                                                                                                Spider-Man
## 9800                                                                                                                                      Bourne Identity, The
## 9801                                                                                                                   Harry Potter and the Chamber of Secrets
## 9802                                                                                                                    Lord of the Rings: The Two Towers, The
## 9803                                                                                                                                       Catch Me If You Can
## 9804                                                                                                                                              Pianist, The
## 9805                                                                                                                                      Bend It Like Beckham
## 9806                                                                                                                                                     Holes
## 9807                                                                                                                                            Bruce Almighty
## 9808                                                                                                                                              Finding Nemo
## 9809                                                                                                    Pirates of the Caribbean: The Curse of the Black Pearl
## 9810                                                                                                                                            School of Rock
## 9811                                                                                                                                         Kill Bill: Vol. 1
## 9812                                                                                                                                                  Big Fish
## 9813                                                                                                            Lord of the Rings: The Return of the King, The
## 9814                                                                                                                     Eternal Sunshine of the Spotless Mind
## 9815                                                                                                                                                   Shrek 2
## 9816                                                                                                                                             Terminal, The
## 9817                                                                                                                                                   Roxanne
## 9818                                                                                                                                              Spider-Man 2
## 9819                                                                                                                     Sky Captain and the World of Tomorrow
## 9820                                                                                                                                          Incredibles, The
## 9821                                                                                                                                         National Treasure
## 9822                                                                                                                                  Spirit of St. Louis, The
## 9823                                                                                                                                              White Nights
## 9824                                                                                                                                       Million Dollar Baby
## 9825                                                                                                                                              Hotel Rwanda
## 9826                                                                                                                                              Aviator, The
## 9827                                                                                                                                           Hobson's Choice
## 9828                                                                                                               Howl's Moving Castle (Hauru no ugoku shiro)
## 9829                                                                                                                                                     Hitch
## 9830                                                                                                                     Hitchhiker's Guide to the Galaxy, The
## 9831                                                                                                                                            Over the Hedge
## 9832                                                                                                                                                      Cars
## 9833                                                                                                                                           Lake House, The
## 9834                                                                                                                                     Stranger than Fiction
## 9835                                                                                                                                                  Stardust
## 9836                                                                                                                                                      Juno
## 9837                                                                                                                                                 Toy Story
## 9838                                                                                                                                                   Jumanji
## 9839                                                                                                                               Father of the Bride Part II
## 9840                                                                                                                            Ace Ventura: When Nature Calls
## 9841                                                                                                                                                      Babe
## 9842                                                                                                                                                  Clueless
## 9843                                                                                                                                                Pocahontas
## 9844                                                                                                                                             Happy Gilmore
## 9845                                                                                                                                                    Casper
## 9846                                                                                                                           Dumb & Dumber (Dumb and Dumber)
## 9847                                                                                                                                        Little Princess, A
## 9848                                                                                                                                              Pulp Fiction
## 9849                                                                                                                                 Shawshank Redemption, The
## 9850                                                                                                                                Ace Ventura: Pet Detective
## 9851                                                                                                                                              Forrest Gump
## 9852                                                                                                                               Four Weddings and a Funeral
## 9853                                                                                                                                            Lion King, The
## 9854                                                                                                                                               Richie Rich
## 9855                                                                                                                                      Addams Family Values
## 9856                                                                                                                                            Mrs. Doubtfire
## 9857                                                                                                                                          Schindler's List
## 9858                                                                                                                                                Home Alone
## 9859                                                                                                                                                     Ghost
## 9860                                                                                                                                      Beauty and the Beast
## 9861                                                                                                                                                 Pinocchio
## 9862                                                                                                                                              Pretty Woman
## 9863                                                                                                                                      Nutty Professor, The
## 9864                                                                                                                                         Wizard of Oz, The
## 9865                                                                                                                                       Father of the Bride
## 9866                                                                                                                                             Cool Runnings
## 9867                                                                                                                                              Mary Poppins
## 9868                                                                                                                                       Sound of Music, The
## 9869                                                                                                                       Willy Wonka & the Chocolate Factory
## 9870                                                                                                                           One Flew Over the Cuckoo's Nest
## 9871                                                                                                                                             Groundhog Day
## 9872                                                                                                                                        Back to the Future
## 9873                                                                                                                    Romy and Michele's High School Reunion
## 9874                                                                                                                                          Truman Show, The
## 9875                                                                                                                                         Good Will Hunting
## 9876                                                                                                                                                   Titanic
## 9877                                                                                                                                                     Rocky
## 9878                                                                                                                                       Breakfast Club, The
## 9879                                                                                                                                Back to the Future Part II
## 9880                                                                                                                               Back to the Future Part III
## 9881                                                                                                                                       Saving Private Ryan
## 9882                                                                                                                                  Honey, I Shrunk the Kids
## 9883                                                                                                                                          Parent Trap, The
## 9884                                                                                                                                      Nutty Professor, The
## 9885                                                                                                                                              My Bodyguard
## 9886                                                                                                                                           My Cousin Vinny
## 9887                                                                                                                                             Pleasantville
## 9888                                                                                                                                             Bug's Life, A
## 9889                                                                                                                  Police Academy 2: Their First Assignment
## 9890                                                                                                                                              American Pie
## 9891                                                                                                                                  Ferris Bueller's Day Off
## 9892                                                                                                                                  Who Framed Roger Rabbit?
## 9893                                                                                                                                               Toy Story 2
## 9894                                                                                                                                             Wayne's World
## 9895                                                                                                                                          Romeo and Juliet
## 9896                                                                                                                                                 Footloose
## 9897                                                                                                                            Nutty Professor II: The Klumps
## 9898                                                                                                                                          Meet the Parents
## 9899                                                                                                                                          Charlie's Angels
## 9900                                                                                                                           Crocodile Dundee in Los Angeles
## 9901                                                                                                                                                     Shrek
## 9902                                                                                                                                              Donnie Darko
## 9903                                                                                                                                            Monsters, Inc.
## 9904                                                                   Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 9905                                                                                                        Lord of the Rings: The Fellowship of the Ring, The
## 9906                                                                                                                                      Three Men and a Baby
## 9907                                                                                                                                                Spider-Man
## 9908                                                                                                                   Harry Potter and the Chamber of Secrets
## 9909                                                                                                                    Lord of the Rings: The Two Towers, The
## 9910                                                                                                                                              Finding Nemo
## 9911                                                                                                    Pirates of the Caribbean: The Curse of the Black Pearl
## 9912                                                                                                            Lord of the Rings: The Return of the King, The
## 9913                                                                                                                     Eternal Sunshine of the Spotless Mind
## 9914                                                                                                                                          Incredibles, The
## 9915                                                                                                                                         Definitely, Maybe
## 9916                                                                                                                                           Angels & Demons
## 9917                                                                                                                                      (500) Days of Summer
## 9918                                                                                                                                                 Toy Story
## 9919                                                                                                                                          Grumpier Old Men
## 9920                                                                                                                               Father of the Bride Part II
## 9921                                                                                                                                                   Sabrina
## 9922                                                                                                                                              Sudden Death
## 9923                                                                                                                               Dracula: Dead and Loving It
## 9924                                                                                                                                                     Nixon
## 9925                                                                                                                                     Sense and Sensibility
## 9926                                                                                                                                         Leaving Las Vegas
## 9927                                                                                                                                                   Othello
## 9928                                                                                                                        Twelve Monkeys (a.k.a. 12 Monkeys)
## 9929                                                                                                                                          Dead Man Walking
## 9930                                                                                                                                          Mighty Aphrodite
## 9931                                                                                                                                Postman, The (Postino, Il)
## 9932                                                                                                                                            Eye for an Eye
## 9933                                                                                                                                        Mr. Holland's Opus
## 9934                                                                                  Don't Be a Menace to South Central While Drinking Your Juice in the Hood
## 9935                                                                                                                                                  Bio-Dome
## 9936                                                                                                                                                 Screamers
## 9937                                                                                                                                                Juror, The
## 9938                                                                                                                   Things to Do in Denver When You're Dead
## 9939                                                                                                                                  Antonia's Line (Antonia)
## 9940                                                                                                                                              White Squall
## 9941                                                                                                                                               Black Sheep
## 9942                                                                                                                                               Mary Reilly
## 9943                                                                                                                                              Broken Arrow
## 9944                                                                                                                                                 City Hall
## 9945                                                                                                                                             Happy Gilmore
## 9946                                                                                                                                    Muppet Treasure Island
## 9947                                                                                                                       Rumble in the Bronx (Hont faan kui)
## 9948                                                                                                                                            Down Periscope
## 9949                                                                                                                                             Birdcage, The
## 9950                                                                                                                                           River Wild, The
## 9951                                                                                                                                        Executive Decision
## 9952                                                                                                                                                     Fargo
## 9953                                                                                                                  Homeward Bound II: Lost in San Francisco
## 9954                                                                                                                                                 Jane Eyre
## 9955                                                                                                                                               Primal Fear
## 9956                                                                                                                                   All Dogs Go to Heaven 2
## 9957                                                                                                                                                Sgt. Bilko
## 9958                                                                                                                                                Diabolique
## 9959                                                                                                                                       Mission: Impossible
## 9960                                                                                                                                               Dragonheart
## 9961                                                                                                                                 James and the Giant Peach
## 9962                                                                                                                             Kids in the Hall: Brain Candy
## 9963                                                                                                      Bloodsport 2 (a.k.a. Bloodsport II: The Next Kumite)
## 9964                                                                                                                   Mystery Science Theater 3000: The Movie
## 9965                                                                                                                                                 Space Jam
## 9966                                                                                                                                           Substitute, The
## 9967                                                                                                                                                Quest, The
## 9968                                                                                                                                          Mulholland Falls
## 9969                                                                                                                              Truth About Cats & Dogs, The
## 9970                                                                                                                                                   Flipper
## 9971                                                                                                                                              Multiplicity
## 9972                                                                                                                                                Craft, The
## 9973                                                                                                                                                 Rock, The
## 9974                                                                                                                                                   Twister
## 9975                                                                                                                                                 Barb Wire
## 9976                                                                                                                                                  Spy Hard
## 9977                                                                                                                           Wallace & Gromit: A Close Shave
## 9978                                                                                                                                              Arrival, The
## 9979                                                                                                                                              Phantom, The
## 9980                                                                                                                                                Striptease
## 9981                                                                                                                             Independence Day (a.k.a. ID4)
## 9982                                                                                                                                            Cable Guy, The
## 9983                                                                                                                                                   Kingpin
## 9984                                                                                                                                                    Eraser
## 9985                                                                                                                                      Nutty Professor, The
## 9986                                                                                                                                          Frighteners, The
## 9987                                                                                                                                                Phenomenon
## 9988                                                                                                                                           Time to Kill, A
## 9989                                                                                                                                                    Kazaam
## 9990                                                                                                                                                    Ransom
## 9991                                                                                                                                 Crow: City of Angels, The
## 9992                                                                                                                                          Escape from L.A.
## 9993                                                                                                                                                   Tin Cup
## 9994                                                                                                                                 Island of Dr. Moreau, The
## 9995                                                                           Halloween: The Curse of Michael Myers (Halloween 6: The Curse of Michael Myers)
## 9996                                                                                                                      William Shakespeare's Romeo + Juliet
## 9997                                                                                                                                                  Sleepers
## 9998                                                                                                                       Willy Wonka & the Chocolate Factory
## 9999                                                                                                                                  Star Trek: First Contact
## 10000                                                                                                                                           101 Dalmatians
## 10001                                                                                                                                    Celluloid Closet, The
## 10002                                                                                                                               Terminator 2: Judgment Day
## 10003                                                                                                                                       North by Northwest
## 10004                                                                                                                                              Bob Roberts
## 10005                                                                                                                                              Stand by Me
## 10006                                                                                                                                           Big Sleep, The
## 10007                                                                                                                                        L.A. Confidential
## 10008                                                                                                                                            Boogie Nights
## 10009                                                                                                                                         Chariots of Fire
## 10010                                                                                                                                          American Beauty
## 10011                                                                                                                                             Natural, The
## 10012                                                                                                                                   End of the Affair, The
## 10013                                                                                                                                                 Magnolia
## 10014                                                                                                                                      She's Gotta Have It
## 10015                                                                                                                                            High Fidelity
## 10016                                                                                           8 ½ Women (a.k.a. 8 1/2 Women) (a.k.a. Eight and a Half Women)
## 10017                                                                                                             Faraway, So Close (In weiter Ferne, so nah!)
## 10018                                                                                                                                   Stranger Than Paradise
## 10019                                                                                                                      Creature from the Black Lagoon, The
## 10020                                                                                                                                       Invisible Man, The
## 10021                                                                                                                              Unsinkable Molly Brown, The
## 10022                                                                                                                        Strange Love of Martha Ivers, The
## 10023                                                                                                                                                   Detour
## 10024                                                                                                                                                Toy Story
## 10025                                                                                                                                                  Jumanji
## 10026                                                                                                                                     Seven (a.k.a. Se7en)
## 10027                                                                                                                                      Usual Suspects, The
## 10028                                                                                                                                               Braveheart
## 10029                                                                                                                                                Apollo 13
## 10030                                                                                                                       Star Wars: Episode IV - A New Hope
## 10031                                                                                                                                             Pulp Fiction
## 10032                                                                                                                                Shawshank Redemption, The
## 10033                                                                                                                                             Forrest Gump
## 10034                                                                                                                                            Jurassic Park
## 10035                                                                                                                                         Schindler's List
## 10036                                                                                                                                             Blade Runner
## 10037                                                                                                                                Silence of the Lambs, The
## 10038                                                                                                                                                    Fargo
## 10039                                                                                                                                            Trainspotting
## 10040                                                                                                                                           Godfather, The
## 10041                                                                                                                                               Casablanca
## 10042                                                                                                                                    2001: A Space Odyssey
## 10043                                                                                                                                                 Die Hard
## 10044                                                                                                           Star Wars: Episode V - The Empire Strikes Back
## 10045                                                                                                                                                   Aliens
## 10046                                                                                                                                      Clockwork Orange, A
## 10047                                                                                                                                           Apocalypse Now
## 10048                                                                                                                                               Goodfellas
## 10049                                                                                                                                  Godfather: Part II, The
## 10050                                                                                                                                        Full Metal Jacket
## 10051                                                                                                                                       Dead Poets Society
## 10052                                                                                                                                             Shining, The
## 10053                                                                                                                                       Back to the Future
## 10054                                                                                                                                         Truman Show, The
## 10055                                                                                                                                                 Rain Man
## 10056                                                                                                                                       Mask of Zorro, The
## 10057                                                                                                                                      Saving Private Ryan
## 10058                                                                                                                      Life Is Beautiful (La Vita è bella)
## 10059                                                                                                                                                 Rushmore
## 10060                                                                                                                                              Matrix, The
## 10061                                                                                                                Star Wars: Episode I - The Phantom Menace
## 10062                                                                                                                                Run Lola Run (Lola rennt)
## 10063                                                                                                                                         Sixth Sense, The
## 10064                                                                                                                                          American Beauty
## 10065                                                                                                                                 Ferris Bueller's Day Off
## 10066                                                                                                                                               Fight Club
## 10067                                                                                                                                              Toy Story 2
## 10068                                                                                                                                            High Fidelity
## 10069                                                                                                                                                Gladiator
## 10070                                                                                                                                       Gone in 60 Seconds
## 10071                                                                                                                                             Patriot, The
## 10072                                                                                                                                                    X-Men
## 10073                                                                                                                                            Almost Famous
## 10074                                                                                                                                      Requiem for a Dream
## 10075                                                                                                         Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 10076                                                                                                                                                   Snatch
## 10077                                                                                                                                          What Women Want
## 10078                                                                                                                                                Cast Away
## 10079                                                                                                                                        Miss Congeniality
## 10080                                                                                                                               O Brother, Where Art Thou?
## 10081                                                                                                                                                  Memento
## 10082                                                                                                                                    Bridget Jones's Diary
## 10083                                                                                                                                                 Scarface
## 10084                                                                                                                                                    Shrek
## 10085                                                                                                                                           Legally Blonde
## 10086                                                                                                                                              Others, The
## 10087                                                                                                                                             Donnie Darko
## 10088                                                                                                                                           Monsters, Inc.
## 10089                                                                                                                                           Ocean's Eleven
## 10090                                                                                                            Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 10091                                                                                                                                    Royal Tenenbaums, The
## 10092                                                                                                       Lord of the Rings: The Fellowship of the Ring, The
## 10093                                                                                                                                        Beautiful Mind, A
## 10094                                                                                                                                                  Ice Age
## 10095                                                                                                                                               Spider-Man
## 10096                                                                                                             Star Wars: Episode II - Attack of the Clones
## 10097                                                                                                                                     Bourne Identity, The
## 10098                                                                                                                                          Minority Report
## 10099                                                                                                                                                Ring, The
## 10100                                                                                                                                              Equilibrium
## 10101                                                                                                                   Lord of the Rings: The Two Towers, The
## 10102                                                                                                                                      Catch Me If You Can
## 10103                                                                                                                                             Pianist, The
## 10104                                                                                                                                         X2: X-Men United
## 10105                                                                                                                                             Finding Nemo
## 10106                                                                                                                                            28 Days Later
## 10107                                                                                                   Pirates of the Caribbean: The Curse of the Black Pearl
## 10108                                                                                                                                      Lost in Translation
## 10109                                                                                                                                           School of Rock
## 10110                                                                                                                                        Kill Bill: Vol. 1
## 10111                                                                                                                                  Matrix Revolutions, The
## 10112                                                                                                                                        Last Samurai, The
## 10113                                                                                                                                                 Big Fish
## 10114                                                                                                           Lord of the Rings: The Return of the King, The
## 10115                                                                                                                                     The Butterfly Effect
## 10116                                                                                                                    Eternal Sunshine of the Spotless Mind
## 10117                                                                                                                                        Kill Bill: Vol. 2
## 10118                                                                                                                                                     Troy
## 10119                                                                                                                                         Band of Brothers
## 10120                                                                                                                                                 I, Robot
## 10121                                                                                                                                        Shaun of the Dead
## 10122                                                                                                                                            The Machinist
## 10123                                                                                                                                         Incredibles, The
## 10124                                                                                                                                              Constantine
## 10125                                                                                                                                            Batman Begins
## 10126                                                                                                                                              Lord of War
## 10127                                                                                          Chronicles of Narnia: The Lion, the Witch and the Wardrobe, The
## 10128                                                                                                                                           V for Vendetta
## 10129                                                                                                                                    Thank You for Smoking
## 10130                                                                                                                                       Da Vinci Code, The
## 10131                                                                                                                                     Little Miss Sunshine
## 10132                                                                                                                                         Illusionist, The
## 10133                                                                      Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan
## 10134                                                                                                                Pan's Labyrinth (Laberinto del fauno, El)
## 10135                                                                                                                                            Departed, The
## 10136                                                                                                                                            Casino Royale
## 10137                                                                                                                                              Ratatouille
## 10138                                                                                                                                                 Hot Fuzz
## 10139                                                                                                                                                   Zodiac
## 10140                                                                                                                                                      300
## 10141                                                                                                                                               Grindhouse
## 10142                                                                                                                                             Spider-Man 3
## 10143                                                                                                                                               Knocked Up
## 10144                                                                                                                                           28 Weeks Later
## 10145                                                                                                                 Pirates of the Caribbean: At World's End
## 10146                                                                                                                                         Ocean's Thirteen
## 10147                                                                                                                                              Death Proof
## 10148                                                                                                                                    Live Free or Die Hard
## 10149                                                                                                                                             Transformers
## 10150                                                                                                                Harry Potter and the Order of the Phoenix
## 10151                                                                                                                                                 Stardust
## 10152                                                                                                                                      Simpsons Movie, The
## 10153                                                                                                                                    Bourne Ultimatum, The
## 10154                                                                                                                                                 Superbad
## 10155                                                                                                                                             3:10 to Yuma
## 10156                                                                                                                                            Into the Wild
## 10157                                                                                                                                  Darjeeling Limited, The
## 10158                                                                                                                                        American Gangster
## 10159                                                                                                                                   No Country for Old Men
## 10160                                                                                                                                              I Am Legend
## 10161                                                                                                                                                     Juno
## 10162                                                                                                           Sweeney Todd: The Demon Barber of Fleet Street
## 10163                                                                                                                                      There Will Be Blood
## 10164                                                                                                                                         Dark Knight, The
## 10165                                                                                                                                                 Iron Man
## 10166                                                                                                                                                   WALL·E
## 10167                                                                                                                                       Burn After Reading
## 10168                                                                                                                     Curious Case of Benjamin Button, The
## 10169                                                                                                                                     Inglourious Basterds
## 10170                                                                                                                                 X-Men Origins: Wolverine
## 10171                                                                                                                                                Star Trek
## 10172                                                                                                                                                       Up
## 10173                                                                                                                                            Hangover, The
## 10174                                                                                                                                                   Avatar
## 10175                                                                                                                                           Shutter Island
## 10176                                                                                                                                                Inception
## 10177                                                                                                                              Scott Pilgrim vs. the World
## 10178                                                                                                                                                127 Hours
## 10179                                                                                                                                               Black Swan
## 10180                                                                                                                                                True Grit
## 10181                                                                                                                                        Midnight in Paris
## 10182                                                                                                                       Captain America: The First Avenger
## 10183                                                                                                                           Rise of the Planet of the Apes
## 10184                                                                                                                                                Moneyball
## 10185                                                                                                                                            Avengers, The
## 10186                                                                                                                                   Dark Knight Rises, The
## 10187                                                                                                                                             Intouchables
## 10188                                                                                                                                         Moonrise Kingdom
## 10189                                                                                                                                              Cloud Atlas
## 10190                                                                                                                                               Life of Pi
## 10191                                                                                                                                         Django Unchained
## 10192                                                                                                                                  Star Trek Into Darkness
## 10193                                                                                                                                              World War Z
## 10194                                                                                                                                               About Time
## 10195                                                                                                                                                  Gravity
## 10196                                                                                                                                         12 Years a Slave
## 10197                                                                                                                                       Dallas Buyers Club
## 10198                                                                                                                                                      Her
## 10199                                                                                                                                             Interstellar
## 10200                                                                                                                                                 Whiplash
## 10201                                                                                                                                  Guardians of the Galaxy
## 10202                                                                                                                                          American Sniper
## 10203                                                                                                                                               Ex Machina
## 10204                                                                                                                                       The Imitation Game
## 10205                                                                                                                                 The Theory of Everything
## 10206                                                                                                                                       Mad Max: Fury Road
## 10207                                                                                                               Star Wars: Episode VII - The Force Awakens
## 10208                                                                                                                                                 Deadpool
## 10209                                                                                                                               Captain America: Civil War
## 10210                                                                                                                                              The Martian
## 10211                                                                                                                       Batman v Superman: Dawn of Justice
## 10212                                                                                                                                             The Revenant
## 10213                                                                                                                                                Spotlight
## 10214                                                                                                                                The Huntsman Winter's War
## 10215                                                                                                                                                Toy Story
## 10216                                                                                                                                                  Jumanji
## 10217                                                                                                                                                     Heat
## 10218                                                                                                                                                GoldenEye
## 10219                                                                                                                                         Cutthroat Island
## 10220                                                                                                                                                   Casino
## 10221                                                                                                                           Ace Ventura: When Nature Calls
## 10222                                                                                                                                               Get Shorty
## 10223                                                                                                                                        Leaving Las Vegas
## 10224                                                                                                                                          Dangerous Minds
## 10225                                                                                                                       Twelve Monkeys (a.k.a. 12 Monkeys)
## 10226                                                                                                                                                     Babe
## 10227                                                                                                                                         Dead Man Walking
## 10228                                                                                                                                                 Clueless
## 10229                                                                                                                                            Mortal Kombat
## 10230                                                                                                                                     Seven (a.k.a. Se7en)
## 10231                                                                                                                                               Pocahontas
## 10232                                                                                                                                      Usual Suspects, The
## 10233                                                                                                                              Indian in the Cupboard, The
## 10234                                                                                 Don't Be a Menace to South Central While Drinking Your Juice in the Hood
## 10235                                                                                                                                                 Bio-Dome
## 10236                                                                                                                                                   Friday
## 10237                                                                                                                                      From Dusk Till Dawn
## 10238                                                                                                                                                 Shopping
## 10239                                                                                                                                            Bottle Rocket
## 10240                                                                                                                                            Happy Gilmore
## 10241                                                                                                                                   Muppet Treasure Island
## 10242                                                                                                                                               Braveheart
## 10243                                                                                                                                              Taxi Driver
## 10244                                                                                                                      Rumble in the Bronx (Hont faan kui)
## 10245                                                                                                                                                 Bad Boys
## 10246                                                                                                                                  Basketball Diaries, The
## 10247                                                                                                                                                Apollo 13
## 10248                                                                                                                                           Batman Forever
## 10249                                                                                                                                                   Casper
## 10250                                                                                                                                                    Congo
## 10251                                                                                                                                                Desperado
## 10252                                                                                                                               Die Hard: With a Vengeance
## 10253                                                                                                                                             First Knight
## 10254                                                                                                                         Free Willy 2: The Adventure Home
## 10255                                                                                                                                          Johnny Mnemonic
## 10256                                                                                                                                              Judge Dredd
## 10257                                                                                                                                                     Kids
## 10258                                                                                                                                        Lord of Illusions
## 10259                                                                                                                                                 Mallrats
## 10260                                                                                                                                                 Net, The
## 10261                                                                                                                                                Showgirls
## 10262                                                                                                                                             Strange Days
## 10263                                                                                                                                               Waterworld
## 10264                                                                                                                                           Before Sunrise
## 10265                                                                                                                                            Billy Madison
## 10266                                                                                                                                                   Clerks
## 10267                                                                                                                          Dumb & Dumber (Dumb and Dumber)
## 10268                                                                                                                                                  Exotica
## 10269                                                                                                                                                  Ed Wood
## 10270                                                                                                                                           Goofy Movie, A
## 10271                                                                                                                                              Hoop Dreams
## 10272                                                                                                                                       Heavenly Creatures
## 10273                                                                                                       Interview with the Vampire: The Vampire Chronicles
## 10274                                                                                                                                                   Junior
## 10275                                                                                                                            Kid in King Arthur's Court, A
## 10276                                                                                                                       Star Wars: Episode IV - A New Hope
## 10277                                                                                                                                      Legends of the Fall
## 10278                                                                                                                                              Major Payne
## 10279                                                                                                                                     Natural Born Killers
## 10280                                                                                                                                                 Outbreak
## 10281                                                                                                  Léon: The Professional (a.k.a. The Professional) (Léon)
## 10282                                                                                                                                             Pulp Fiction
## 10283                                                                                                                                                Quiz Show
## 10284                                                                                                                                                 Stargate
## 10285                                                                                                                                Shawshank Redemption, The
## 10286                                                                                                                                            Shallow Grave
## 10287                                                                                                                                     Swimming with Sharks
## 10288                                                                                                                                                Tank Girl
## 10289                                                                                                                                                Tommy Boy
## 10290                                                                                                                              What's Eating Gilbert Grape
## 10291                                                                                                                                               Virtuosity
## 10292                                                                                                                               Ace Ventura: Pet Detective
## 10293                                                                                                                                 Clear and Present Danger
## 10294                                                                                                                                                 Crooklyn
## 10295                                                                                                                                                Crow, The
## 10296                                                                                                                                             Forrest Gump
## 10297                                                                                                                                           Lion King, The
## 10298                                                                                                                                                Mask, The
## 10299                                                                                                                                                 Maverick
## 10300                                                                                                                                              Richie Rich
## 10301                                                                                                                                                    Speed
## 10302                                                                                                                                                True Lies
## 10303                                                                                                                                  In the Mouth of Madness
## 10304                                                                                                                                            Above the Rim
## 10305                                                                                                                                     Addams Family Values
## 10306                                                                                                                                                 Airheads
## 10307                                                                                                                                            Bronx Tale, A
## 10308                                                                                                                                            Carlito's Way
## 10309                                                                                                                                                Coneheads
## 10310                                                                                                                                       Dazed and Confused
## 10311                                                                                                                                           Demolition Man
## 10312                                                                                                                                                    Fresh
## 10313                                                                                                                                            Fugitive, The
## 10314                                                                                                                                     Hot Shots! Part Deux
## 10315                                                                                                                                     Hudsucker Proxy, The
## 10316                                                                                                                                      In the Line of Fire
## 10317                                                                                                                                            Jurassic Park
## 10318                                                                                                                                               Kalifornia
## 10319                                                                                                                                              Killing Zoe
## 10320                                                                                                                                         Last Action Hero
## 10321                                                                                                                                        Menace II Society
## 10322                                                                                                                                   Much Ado About Nothing
## 10323                                                                                                                                           Mrs. Doubtfire
## 10324                                                                                                                                     Next Karate Kid, The
## 10325                                                                                                                                         Perfect World, A
## 10326                                                                                                                                             Philadelphia
## 10327                                                                                                                                           Poetic Justice
## 10328                                                                                                                                                 Ref, The
## 10329                                                                                                                                Robin Hood: Men in Tights
## 10330                                                                                                                                           Romper Stomper
## 10331                                                                                                                                         Schindler's List
## 10332                                                                                                                                             Blade Runner
## 10333                                                                                                                          Nightmare Before Christmas, The
## 10334                                                                                                                                                Tombstone
## 10335                                                                                                                                             True Romance
## 10336                                                                                                                                      Little Rascals, The
## 10337                                                                                                                                   Brady Bunch Movie, The
## 10338                                                                                                                                               Home Alone
## 10339                                                                                                                                                  Aladdin
## 10340                                                                                                                               Terminator 2: Judgment Day
## 10341                                                                                                                                       Dances with Wolves
## 10342                                                                                                                                                   Batman
## 10343                                                                                                                                Silence of the Lambs, The
## 10344                                                                                                                          Snow White and the Seven Dwarfs
## 10345                                                                                                                                     Beauty and the Beast
## 10346                                                                                                                                                Pinocchio
## 10347                                                                                                                                             Pretty Woman
## 10348                                                                                                                                                    Fargo
## 10349                                                                                                                                              Heavy Metal
## 10350                                                                                                                                              Primal Fear
## 10351                                                                                                                                  All Dogs Go to Heaven 2
## 10352                                                                                                                                      Mission: Impossible
## 10353                                                                                                                                              Dragonheart
## 10354                                                                                                                                                Space Jam
## 10355                                                                                                                                          Substitute, The
## 10356                                                                                                                                               Quest, The
## 10357                                                                                                                             Truth About Cats & Dogs, The
## 10358                                                                                                                                             Multiplicity
## 10359                                                                                                                                                Rock, The
## 10360                                                                                                                      Cemetery Man (Dellamorte Dellamore)
## 10361                                                                                                                                                  Twister
## 10362                                                                                                                                                Barb Wire
## 10363                                                                                                                      Ghost in the Shell (Kôkaku kidôtai)
## 10364                                                                                                                                                  Thinner
## 10365                                                                                                                          Wallace & Gromit: A Close Shave
## 10366                                                                                                                                             Arrival, The
## 10367                                                                                                                                             Phantom, The
## 10368                                                                                                                                            Trainspotting
## 10369                                                                                                                            Independence Day (a.k.a. ID4)
## 10370                                                                                                                                           Cable Guy, The
## 10371                                                                                                                                                  Kingpin
## 10372                                                                                                                                                   Eraser
## 10373                                                                                                                                     Nutty Professor, The
## 10374                                                                                                                                         Frighteners, The
## 10375                                                                                                                                               Phenomenon
## 10376                                                                                                                                                   Ransom
## 10377                                                                                                                                         Escape from L.A.
## 10378                                                                                                                                           Godfather, The
## 10379                                                                                                                                Island of Dr. Moreau, The
## 10380                                                                                                                                              Rear Window
## 10381                                                                                                                                           Apartment, The
## 10382                                                                                                                                        Wizard of Oz, The
## 10383                                                                                                                                    2001: A Space Odyssey
## 10384                                                                                                                            Adventures of Robin Hood, The
## 10385                                                                                                                                 Night of the Living Dead
## 10386                                                                                                                   Homeward Bound: The Incredible Journey
## 10387                                                                                                                                            Cool Runnings
## 10388                                                                                                                                               Cinderella
## 10389                                                                                                                                  Sword in the Stone, The
## 10390                                                                                                                            Robin Hood: Prince of Thieves
## 10391                                                                                                                                                    Dumbo
## 10392                                                                                                                                      Alice in Wonderland
## 10393                                                                                                                                   Fox and the Hound, The
## 10394                                                                                                                                                 Die Hard
## 10395                                                                                                                              Ghost and the Darkness, The
## 10396                                                                                                                     William Shakespeare's Romeo + Juliet
## 10397                                                                                                                                                 Swingers
## 10398                                                                                                                                                 Sleepers
## 10399                                                                                                                             Monty Python's Life of Brian
## 10400                                                                                                                                           Reservoir Dogs
## 10401                                                                                                                                                  Platoon
## 10402                                                                                                                                               Doors, The
## 10403                                                                                                                                         Crying Game, The
## 10404                                                                                                                               E.T. the Extra-Terrestrial
## 10405                                                                                                                                                  Top Gun
## 10406                                                                                                                              People vs. Larry Flynt, The
## 10407                                                                                                                                               Abyss, The
## 10408                                                                                                                                     Escape from New York
## 10409                                                                                                                          Monty Python and the Holy Grail
## 10410                                                                                                                     Wallace & Gromit: The Wrong Trousers
## 10411                                                                                                                                             My Left Foot
## 10412                                                                                                                                 Sex, Lies, and Videotape
## 10413                                                                                                                          One Flew Over the Cuckoo's Nest
## 10414                                                                                                                           Cheech and Chong's Up in Smoke
## 10415                                                                                                           Star Wars: Episode V - The Empire Strikes Back
## 10416                                                                                                                                      Princess Bride, The
## 10417                                                                                  Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 10418                                                                                                                                                   Brazil
## 10419                                                                                                                                                   Aliens
## 10420                                                                                       Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il)
## 10421                                                                                                                                             12 Angry Men
## 10422                                                                                                                                       Lawrence of Arabia
## 10423                                                                                                                                      Clockwork Orange, A
## 10424                                                                                                                                           Apocalypse Now
## 10425                                                                                                               Star Wars: Episode VI - Return of the Jedi
## 10426                                                                                                                                               Goodfellas
## 10427                                                                                                                                                    Alien
## 10428                                                                                                                                         Army of Darkness
## 10429                                                                                                                       Killer, The (Die xue shuang xiong)
## 10430                                                                                                                                      Blues Brothers, The
## 10431                                                                                                                                  Godfather: Part II, The
## 10432                                                                                                                                        Full Metal Jacket
## 10433                                                                                                                                                  Amadeus
## 10434                                                                                                                                              Raging Bull
## 10435                                                                                                                                          Terminator, The
## 10436                                                                                                                                   Dead Alive (Braindead)
## 10437                                                                                                                                                    Glory
## 10438                                                                                                                                        Miller's Crossing
## 10439                                                                                                                                       Dead Poets Society
## 10440                                                                                                                                                Chinatown
## 10441                                                                                                                                                Bad Taste
## 10442                                                                                                                                       Better Off Dead...
## 10443                                                                                                                                             Shining, The
## 10444                                                                                                                                              Stand by Me
## 10445                                                                                                                              Evil Dead II (Dead by Dawn)
## 10446                                                                                                                                        Great Escape, The
## 10447                                                                                                                                         Deer Hunter, The
## 10448                                                                                                                                            Groundhog Day
## 10449                                                                                                                                               Unforgiven
## 10450                                                                                                                                       Back to the Future
## 10451                                                                                                                                                    Akira
## 10452                                                                                                                                               Highlander
## 10453                                                                                                                                                 Fantasia
## 10454                                                                                                                                                 Heathers
## 10455                                                                                                                                       This Is Spinal Tap
## 10456                                                                                                                       Indiana Jones and the Last Crusade
## 10457                                                                                                                                                   Gandhi
## 10458                                                                                                                                     Pink Floyd: The Wall
## 10459                                                                                                                                      Killing Fields, The
## 10460                                                                                                                                          Field of Dreams
## 10461                                                                                                                                  Alien³ (a.k.a. Alien 3)
## 10462                                                                                                                          American Werewolf in London, An
## 10463                                                                                                                          Dracula (Bram Stoker's Dracula)
## 10464                                                                                                                                                 Candyman
## 10465                                                                                                                                                Cape Fear
## 10466                                                                                                                                                   Carrie
## 10467                                                                                                                               Nightmare on Elm Street, A
## 10468                                                                                                                                                Omen, The
## 10469                                                                                                                                 Star Trek: First Contact
## 10470                                                                                                                                              Sling Blade
## 10471                                                                                                                                       Jingle All the Way
## 10472                                                                                                                                           101 Dalmatians
## 10473                                                                                                                                               Die Hard 2
## 10474                                                                                                                   Star Trek VI: The Undiscovered Country
## 10475                                                                                                                          Star Trek II: The Wrath of Khan
## 10476                                                                                                                                           Batman Returns
## 10477                                                                                                                                                   Grease
## 10478                                                                                                                                                     Jaws
## 10479                                                                                                                                            Mars Attacks!
## 10480                                                                                                                                            Jerry Maguire
## 10481                                                                                                                                          Raising Arizona
## 10482                                                                                                                                                 Sneakers
## 10483                                                                                                                          Beavis and Butt-Head Do America
## 10484                                                                                                                                                   Scream
## 10485                                                                                                                                Last of the Mohicans, The
## 10486                                                                                                                                             Dante's Peak
## 10487                                                                                                                                                Pest, The
## 10488                                                                                                                                             Lost Highway
## 10489                                                                                                                                            Donnie Brasco
## 10490                                                                                                                                               Saint, The
## 10491                                                                                                                                                Liar Liar
## 10492                                                                                                                                                 Anaconda
## 10493                                                                                                                                      Grosse Pointe Blank
## 10494                                                                                                                                                  Volcano
## 10495                                                                                                              Austin Powers: International Man of Mystery
## 10496                                                                                                                                       Fifth Element, The
## 10497                                                                                                                           Lost World: Jurassic Park, The
## 10498                                                                                                                                                  Con Air
## 10499                                                                                                                                           Batman & Robin
## 10500                                                                                                                                                 Hercules
## 10501                                                                                                                                                 Face/Off
## 10502                                                                                                                                Men in Black (a.k.a. MIB)
## 10503                                                                                                                                                  Contact
## 10504                                                                                                                                      Conan the Barbarian
## 10505                                                                                                                                            Event Horizon
## 10506                                                                                                                                                    Spawn
## 10507                                                                                                                                 Free Willy 3: The Rescue
## 10508                                                                                                                                        Conspiracy Theory
## 10509                                                                                                                                                    Steel
## 10510                                                                                                                                                    Mimic
## 10511                                                                                                                                            Air Force One
## 10512                                                                                                                                        L.A. Confidential
## 10513                                                                                                                                                Game, The
## 10514                                                                                                                                              Chasing Amy
## 10515                                                                                                                          I Know What You Did Last Summer
## 10516                                                                                                                                     The Devil's Advocate
## 10517                                                                                                                                                  Gattaca
## 10518                                                                                                                                            Boogie Nights
## 10519                                                                                                                                                  Witness
## 10520                                                                                                                                        Starship Troopers
## 10521                                                                                                                              Mortal Kombat: Annihilation
## 10522                                                                                                                                         Truman Show, The
## 10523                                                                                                                                      Alien: Resurrection
## 10524                                                                                                                                        Good Will Hunting
## 10525                                                                                                                                             Home Alone 3
## 10526                                                                                                                                                  Titanic
## 10527                                                                                                                                             Jackie Brown
## 10528                                                                                                                                        Big Lebowski, The
## 10529                                                                                                                                                Dark City
## 10530                                                                                                                                                Hard Rain
## 10531                                                                                                                                               Half Baked
## 10532                                                                                                                                              Spice World
## 10533                                                                                                                                              Deep Rising
## 10534                                                                                                                                      Wedding Singer, The
## 10535                                                                                                                                                   Sphere
## 10536                                                                                                                                       As Good as It Gets
## 10537                                                                                                                                         King of New York
## 10538                                                                                                                                            U.S. Marshals
## 10539                                                                                                                                 Barney's Great Adventure
## 10540                                                                                                                                              He Got Game
## 10541                                                                                                                            Mr. Nice Guy (Yat goh ho yan)
## 10542                                                                                                                                               Species II
## 10543                                                                                                                                              Deep Impact
## 10544                                                                                                                                                 Godzilla
## 10545                                                                                                                           Fear and Loathing in Las Vegas
## 10546                                                                                                                           X-Files: Fight the Future, The
## 10547                                                                                                                                             Dr. Dolittle
## 10548                                                                                                                                             Out of Sight
## 10549                                                                                                                          Buffalo '66 (a.k.a. Buffalo 66)
## 10550                                                                                                                                               Armageddon
## 10551                                                                                                                                           Small Soldiers
## 10552                                                                                                                             There's Something About Mary
## 10553                                                                                                                                   French Connection, The
## 10554                                                                                                                                                    Rocky
## 10555                                                                                                                                                 Rain Man
## 10556                                                                                                                                                 Repo Man
## 10557                                                                                                                                                Labyrinth
## 10558                                                                                                                                      Breakfast Club, The
## 10559                                                                                                                                          Friday the 13th
## 10560                                                                                                                                                Halloween
## 10561                                                                                                                                             Child's Play
## 10562                                                                                                                                              Poltergeist
## 10563                                                                                                                                            Exorcist, The
## 10564                                                                                                                                            Lethal Weapon
## 10565                                                                                                                                                 Gremlins
## 10566                                                                                                                                Gremlins 2: The New Batch
## 10567                                                                                                                                             Goonies, The
## 10568                                                                                                                                       Mask of Zorro, The
## 10569                                                                                                                                            Soylent Green
## 10570                                                                                                                               Back to the Future Part II
## 10571                                                                                                                              Back to the Future Part III
## 10572                                                                                                                                                    Bambi
## 10573                                                                                                                                                     Dune
## 10574                                                                                                                                 Godfather: Part III, The
## 10575                                                                                                                                      Saving Private Ryan
## 10576                                                                                                                                      Black Cauldron, The
## 10577                                                                                                                                              Hocus Pocus
## 10578                                                                                                                                 Honey, I Shrunk the Kids
## 10579                                                                                                                                          Negotiator, The
## 10580                                                                                                                                              BASEketball
## 10581                                                                                                                                              Blue Velvet
## 10582                                                                                                                                         Jungle Book, The
## 10583                                                                                                                                       Lady and the Tramp
## 10584                                                                                                                                      Little Mermaid, The
## 10585                                                                                                                                        Mighty Ducks, The
## 10586                                                                                                                                                Peter Pan
## 10587                                                                                                                                 Rescuers Down Under, The
## 10588                                                                                                                                            Rescuers, The
## 10589                                                                                                                                             Return to Oz
## 10590                                                                                                                                          Sleeping Beauty
## 10591                                                                                                                                                     Tron
## 10592                                                                                                                     Indiana Jones and the Temple of Doom
## 10593                                                                                                                                    All Dogs Go to Heaven
## 10594                                                                                                                                       Addams Family, The
## 10595                                                                                                                                            Weird Science
## 10596                                                                                                                                           Watership Down
## 10597                                                                                                                                      Secret of NIMH, The
## 10598                                                                                                                                        Dark Crystal, The
## 10599                                                                                                                      American Tail: Fievel Goes West, An
## 10600                                                                                                                                                   Legend
## 10601                                                                                                                                          Sixteen Candles
## 10602                                                                                                                                                    House
## 10603                                                                                                                                  Gods Must Be Crazy, The
## 10604                                                                                                                       Henry: Portrait of a Serial Killer
## 10605                                                                                                                                   NeverEnding Story, The
## 10606                                                                                                                                      Surf Nazis Must Die
## 10607                                                                                                                                                    Blade
## 10608                                                                                                                                              Beetlejuice
## 10609                                                                                                                                                   Willow
## 10610                                                                                                                                        Untouchables, The
## 10611                                                                                                                                               Dirty Work
## 10612                                                                                                                                                 Rounders
## 10613                                                                                                                                                     Cube
## 10614                                                                                                                                          Say Anything...
## 10615                                                                                                                                                     Hero
## 10616                                                                                                                                                Rush Hour
## 10617                                                                                                                                                    Ronin
## 10618                                                                                                                                               Thing, The
## 10619                                                                                                                                              Player, The
## 10620                                                                                                                                      Edward Scissorhands
## 10621                                                                                                                                                     Antz
## 10622                                                                                                                                          My Cousin Vinny
## 10623                                                                                                                                                     Slam
## 10624                                                                                                                         Bride of Chucky (Child's Play 4)
## 10625                                                                                                                                                Happiness
## 10626                                                                                                                                            Pleasantville
## 10627                                                                                                                      Life Is Beautiful (La Vita è bella)
## 10628                                                                                                                       Tales from the Darkside: The Movie
## 10629                                                                                                                                       American History X
## 10630                                                                                                                                            Waterboy, The
## 10631                                                                                                                                           Meet Joe Black
## 10632                                                                                                                                       Enemy of the State
## 10633                                                                                                                                            Bug's Life, A
## 10634                                                                                                                                Celebration, The (Festen)
## 10635                                                                                                                                           Police Academy
## 10636                                                                                                                                          Very Bad Things
## 10637                                                                                                                                           Simple Plan, A
## 10638                                                                                                                                     Prince of Egypt, The
## 10639                                                                                                                                                 Rushmore
## 10640                                                                                                                                      Shakespeare in Love
## 10641                                                                                                                               Rambo: First Blood Part II
## 10642                                                                                                                         First Blood (Rambo: First Blood)
## 10643                                                                                                                                                Rambo III
## 10644                                                                                                                                      Romancing the Stone
## 10645                                                                                                                                                 Rocky II
## 10646                                                                                                                                                Rocky III
## 10647                                                                                                                                                 Rocky IV
## 10648                                                                                                                                                  Rocky V
## 10649                                                                                                                                          Karate Kid, The
## 10650                                                                                                                                 Karate Kid, Part II, The
## 10651                                                                                                                                Karate Kid, Part III, The
## 10652                                                                                                                                          You've Got Mail
## 10653                                                                                                                                       Thin Red Line, The
## 10654                                                                                                                                             Faculty, The
## 10655                                                                                                                                         Mighty Joe Young
## 10656                                                                                                                                              Patch Adams
## 10657                                                                                                                                                Gate, The
## 10658                                                                                                                                                 Fly, The
## 10659                                                                                                                             Texas Chainsaw Massacre, The
## 10660                                                                                                                           Texas Chainsaw Massacre 2, The
## 10661                                                                                                               Name of the Rose, The (Name der Rose, Der)
## 10662                                                                                                                                         Crocodile Dundee
## 10663                                                                                                                                                  Payback
## 10664                                                                                                              Fantastic Planet, The (Planète sauvage, La)
## 10665                                                                                                                                             Office Space
## 10666                                                                                                                                              Logan's Run
## 10667                                                                                                                                       Planet of the Apes
## 10668                                                                                                                                         Cruel Intentions
## 10669                                                                                                                        Lock, Stock & Two Smoking Barrels
## 10670                                                                                                                                             Dead Ringers
## 10671                                                                                                                                            Baby Geniuses
## 10672                                                                                                                                                 Ravenous
## 10673                                                                                                                                              Matrix, The
## 10674                                                                                                                               10 Things I Hate About You
## 10675                                                                                                                                                       Go
## 10676                                                                                                                           Twin Dragons (Shuang long hui)
## 10677                                                                                                                                                SLC Punk!
## 10678                                                                                                                                                 Election
## 10679                                                                                                                                               Entrapment
## 10680                                                                                                                                               Idle Hands
## 10681                                                                                                                                               Mummy, The
## 10682                                                                                                                Star Wars: Episode I - The Phantom Menace
## 10683                                                                                                                           Rocky Horror Picture Show, The
## 10684                                                                                                                                             Notting Hill
## 10685                                                                                                                    Austin Powers: The Spy Who Shagged Me
## 10686                                                                                                                                                   Tarzan
## 10687                                                                                                                                Run Lola Run (Lola rennt)
## 10688                                                                                                                                                Big Daddy
## 10689                                                                                                                                            Arachnophobia
## 10690                                                                                                                     South Park: Bigger, Longer and Uncut
## 10691                                                                                                                                           Wild Wild West
## 10692                                                                                                                                             American Pie
## 10693                                                                                                                                           Arlington Road
## 10694                                                                                                                                 Blair Witch Project, The
## 10695                                                                                                                                           Eyes Wide Shut
## 10696                                                                                                                                              Lake Placid
## 10697                                                                                                                      Ghostbusters (a.k.a. Ghost Busters)
## 10698                                                                                                                                          Ghostbusters II
## 10699                                                                                                                                         Inspector Gadget
## 10700                                                                                                                                            Deep Blue Sea
## 10701                                                                                                                                              Mystery Men
## 10702                                                                                                                                            Runaway Bride
## 10703                                                                                                                                                Spartacus
## 10704                                                                                                                                      Mosquito Coast, The
## 10705                                                                                                                                   Little Shop of Horrors
## 10706                                                                                                                                          Iron Giant, The
## 10707                                                                                                                                         Sixth Sense, The
## 10708                                                                                                                                                Bowfinger
## 10709                                                                                                                                                Airplane!
## 10710                                                                                                                                                      Big
## 10711                                                                                                                                            Problem Child
## 10712                                                                                                                                       Christmas Story, A
## 10713                                                                                                                                        Universal Soldier
## 10714                                                                                                                                           Stir of Echoes
## 10715                                                                                                                                          American Beauty
## 10716                                                                                                                                              Blue Streak
## 10717                                                                                                                                                 Caligula
## 10718                                                                                                                                             Fright Night
## 10719                                                                                                                                              Deliverance
## 10720                                                                                                                                                Excalibur
## 10721                                                                                 Armour of God II: Operation Condor (Operation Condor) (Fei ying gai wak)
## 10722                                                                                                                                              Three Kings
## 10723                                                                                                                                            Monkey Shines
## 10724                                                                                                                                                 Phantasm
## 10725                                                                                                                                           Risky Business
## 10726                                                                                                                                             Total Recall
## 10727                                                                                                                                 Ferris Bueller's Day Off
## 10728                                                                                                                                      High Plains Drifter
## 10729                                                                                                                                Drunken Master (Jui kuen)
## 10730                                                                                                                                               Goldfinger
## 10731                                                                                                                                    From Russia with Love
## 10732                                                                                                          Fistful of Dollars, A (Per un pugno di dollari)
## 10733                                                                                                                                      Sydney (Hard Eight)
## 10734                                                                                                                           Home Alone 2: Lost in New York
## 10735                                                                                                                                               Fight Club
## 10736                                                                                                                                             Time Bandits
## 10737                                                                                                                                                     Bats
## 10738                                                                                                                                                  RoboCop
## 10739                                                                                                                                 Who Framed Roger Rabbit?
## 10740                                                                                                                                     Being John Malkovich
## 10741                                                                                                                                             Insider, The
## 10742                                                                                                                                     Bride of Re-Animator
## 10743                                                                                                                                                Creepshow
## 10744                                                                                                                                              Re-Animator
## 10745                                                                                                                                         Drugstore Cowboy
## 10746                                                                                                                                             Falling Down
## 10747                                                                                                                                               Spaceballs
## 10748                                                                                                                                               Robin Hood
## 10749                                                                                                                       Quest for Fire (Guerre du feu, La)
## 10750                                                                                                                                                    Dogma
## 10751                                                                                              Adventures of Buckaroo Banzai Across the 8th Dimension, The
## 10752                                                                                                                                            Sleepy Hollow
## 10753                                                                                                                                 World Is Not Enough, The
## 10754                                                                                                                                         Fatal Attraction
## 10755                                                                                                                                             Midnight Run
## 10756                                                                                                                                         Fisher King, The
## 10757                                                                                                                                              End of Days
## 10758                                                                                                                                              Toy Story 2
## 10759                                                                                                                               Deuce Bigalow: Male Gigolo
## 10760                                                                                                                                          Green Mile, The
## 10761                                                                                                                                7th Voyage of Sinbad, The
## 10762                                                                                                                                                 Magnolia
## 10763                                                                                                                                         Any Given Sunday
## 10764                                                                                                                                          Man on the Moon
## 10765                                                                                                                                             Galaxy Quest
## 10766                                                                                                                                           Hurricane, The
## 10767                                                                                                                             Fast Times at Ridgemont High
## 10768                                                                                                                             Batman: Mask of the Phantasm
## 10769                                                                                                                                         Scent of a Woman
## 10770                                                                                                                                            Wayne's World
## 10771                                                                                                                                          Wayne's World 2
## 10772                                                                                                                                   League of Their Own, A
## 10773                                                                                                                                            Patriot Games
## 10774                                                                                                                                     White Men Can't Jump
## 10775                                                                                                                           Hard-Boiled (Lat sau san taam)
## 10776                                                                                                                                             Mariachi, El
## 10777                                                                                                                                                 Scream 3
## 10778                                                                                                                                     Boondock Saints, The
## 10779                                                                                                                                              Boiler Room
## 10780                                                                                                                                              Pitch Black
## 10781                                                                                                                        Ghost Dog: The Way of the Samurai
## 10782                                                                                                                              Hoosiers (a.k.a. Best Shot)
## 10783                                                                                                                                              Bull Durham
## 10784                                                                                                                                        Dog Day Afternoon
## 10785                                                                                                                                        American Graffiti
## 10786                                                                                                                                       Do the Right Thing
## 10787                                                                                                                                             Jungle Fever
## 10788                                                                                                                             Teenage Mutant Ninja Turtles
## 10789                                                                                                  Teenage Mutant Ninja Turtles II: The Secret of the Ooze
## 10790                                                                                                                         Teenage Mutant Ninja Turtles III
## 10791                                                                                                                                    Good Morning, Vietnam
## 10792                                                                                                                       Close Encounters of the Third Kind
## 10793                                                                                                                                           Jacob's Ladder
## 10794                                                                                                                                                Ladyhawke
## 10795                                                                                                                                            High Fidelity
## 10796                                                                                                                                                     Hook
## 10797                                                                                                                                                   Misery
## 10798                                                                                                                                                 Predator
## 10799                                                                                                                                          American Psycho
## 10800                                                                                                                                               Caddyshack
## 10801                                                                                                                                      Love and Basketball
## 10802                                                                                                                                                    U-571
## 10803                                                                                                                                              Carnosaur 2
## 10804                                                                                                                              Carnosaur 3: Primal Species
## 10805                                                                                                                                                Gladiator
## 10806                                                                                                                                            Human Traffic
## 10807                                                                                                                                        Battlefield Earth
## 10808                                                                                                                                                Road Trip
## 10809                                                                                                                                   Mission: Impossible II
## 10810                                                                                                                                          Blazing Saddles
## 10811                                                                                                      For a Few Dollars More (Per qualche dollaro in più)
## 10812                                                                                                                                   Light Years (Gandahar)
## 10813                                                                                                                                                  Porky's
## 10814                                                                                                                                      Night of the Creeps
## 10815                                                                                                                                         Running Man, The
## 10816                                                                                                                                                  Mad Max
## 10817                                                                                                                            Road Warrior, The (Mad Max 2)
## 10818                                                                                                                               Mad Max Beyond Thunderdome
## 10819                                                                                                                                              Angel Heart
## 10820                                                                                                                                       Gone in 60 Seconds
## 10821                                                                                                                                                Near Dark
## 10822                                                                                                                                           One False Move
## 10823                                                                                                                                                  Serpico
## 10824                                                                                                                              Big Trouble in Little China
## 10825                                                                                                                                               Titan A.E.
## 10826                                                                                                                                              Chicken Run
## 10827                                                                                                                                       Me, Myself & Irene
## 10828                                                                                                                                             Patriot, The
## 10829                                                                                                                                       Perfect Storm, The
## 10830                                                                                                                                      Blood In, Blood Out
## 10831                                                                                                                                              Scary Movie
## 10832                                                                                                                                                    X-Men
## 10833                                                                                                                           Nutty Professor II: The Klumps
## 10834                                                                                                                                               Hollow Man
## 10835                                                                                                                                           Sleepaway Camp
## 10836                                                                                                                                        Tao of Steve, The
## 10837                                                                                                                                        Replacements, The
## 10838                                                                                                                                              Bring It On
## 10839                                                                                                                                            Almost Famous
## 10840                                                                                                                                      Remember the Titans
## 10841                                                                                                                                               Hellraiser
## 10842                                                                                                                                         Meet the Parents
## 10843                                                                                                                                      Requiem for a Dream
## 10844                                                                                                                                                Tigerland
## 10845                                                                                                                                          Ladies Man, The
## 10846                                                                                                                                                 Ghoulies
## 10847                                                                                                                                              Ghoulies II
## 10848                                                                                                                                             Billy Elliot
## 10849                                                                                                         Beyond, The (E tu vivrai nel terrore - L'aldilà)
## 10850                                                                                                              Legend of Drunken Master, The (Jui kuen II)
## 10851                                                                                                                                         Charlie's Angels
## 10852                                                                                                                                             Little Nicky
## 10853                                                                                                                                             6th Day, The
## 10854                                                                                                                                              Unbreakable
## 10855                                                                                                         Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 10856                                                                                                                             Planes, Trains & Automobiles
## 10857                                                                                                                                  Transformers: The Movie
## 10858                                                                                                                                              Wall Street
## 10859                                                                                                                                                   Snatch
## 10860                                                                                                                                                 Chocolat
## 10861                                                                                                                                    Dude, Where's My Car?
## 10862                                                                                                                                          What Women Want
## 10863                                                                                                                                        Finding Forrester
## 10864                                                                                                                                                Cast Away
## 10865                                                                                                                                        Miss Congeniality
## 10866                                                                                                                               O Brother, Where Art Thou?
## 10867                                                                                                                                                  Traffic
## 10868                                                                                                                                      Save the Last Dance
## 10869                                                                                                                                     Wedding Planner, The
## 10870                                                                                                                                        Beverly Hills Cop
## 10871                                                                                                                                        Empire of the Sun
## 10872                                                                                                                                           Evil Dead, The
## 10873                                                                                                                                           Lost Boys, The
## 10874                                                                                                                                       Monster Squad, The
## 10875                                                                                                                                                 Hannibal
## 10876                                                                                                                                     Revenge of the Nerds
## 10877                                                                                                                                       Enemy at the Gates
## 10878                                                                                                                                                  Memento
## 10879                                                                                                                                                 Spy Kids
## 10880                                                                                                                                                     Blow
## 10881                                                                                                                                    Bridget Jones's Diary
## 10882                                                                                                                                      Freddy Got Fingered
## 10883                                                                                                                                                 Scarface
## 10884                                                                                                                                       Mummy Returns, The
## 10885                                                                                                                                                    Krull
## 10886                                                                                                                                         Knight's Tale, A
## 10887                                                                                                                                                    Shrek
## 10888                                                                                                                                             Moulin Rouge
## 10889                                                                                                                                             Pearl Harbor
## 10890                                                                                                                                              Animal, The
## 10891                                                                                                                                                Evolution
## 10892                                                                                                                                                Swordfish
## 10893                                                                                                                                              Point Break
## 10894                                                                                                                                                  Tootsie
## 10895                                                                                                                                  Lara Croft: Tomb Raider
## 10896                                                                                                                                Fast and the Furious, The
## 10897                                                                                                                             A.I. Artificial Intelligence
## 10898                                                                                                                                               Sexy Beast
## 10899                                                                                                                                            Scary Movie 2
## 10900                                                                                                                             Cheech & Chong's Nice Dreams
## 10901                                                                                                                                                 Suspiria
## 10902                                                                                                     Fist of Fury (Chinese Connection, The) (Jing wu men)
## 10903                                                                                                                                            Game of Death
## 10904                                                                                                                                                  Outland
## 10905                                                                               Way of the Dragon, The (a.k.a. Return of the Dragon) (Meng long guo jiang)
## 10906                                                                                                                                           Legally Blonde
## 10907                                                                                                                                               Score, The
## 10908                                                                                                                                                     More
## 10909                                                                                                                      Adventures of Baron Munchausen, The
## 10910                                                                                                                                                   Colors
## 10911                                                                                                                                    Land Before Time, The
## 10912                                                                                                                           Return of the Living Dead, The
## 10913                                                                                                                                                They Live
## 10914                                                                                                                         Bill & Ted's Excellent Adventure
## 10915                                                                                                                                        Casualties of War
## 10916                                                                                                                                                Kickboxer
## 10917                                                                                                                                                Leviathan
## 10918                                                                                                                                          Little Monsters
## 10919                                                                                                                                       Look Who's Talking
## 10920                                                                                                                                         Meet the Feebles
## 10921                                                                                                                                        Jurassic Park III
## 10922                                                                                                                                              Ghost World
## 10923                                                                                                                                Hedwig and the Angry Inch
## 10924                                                                                                                                       Planet of the Apes
## 10925                                                                                                                                              Basket Case
## 10926                                                                                                                                              Rush Hour 2
## 10927                                                                                                                                           Altered States
## 10928                                                                                                                                           American Pie 2
## 10929                                                                                                                                              Others, The
## 10930                                                                                                                                                 Rat Race
## 10931                                                                                                                           Jay and Silent Bob Strike Back
## 10932                                                                                                                                         Jeepers Creepers
## 10933                                                                                                                                                  Glitter
## 10934                                                                                                                                             Training Day
## 10935                                                                                                                                     King Solomon's Mines
## 10936                                                                                                                                                Zoolander
## 10937                                                                                                                                              Serendipity
## 10938                                                                                                       Iron Monkey (Siu nin Wong Fei-hung ji: Tit Ma Lau)
## 10939                                                                                                                                         Mulholland Drive
## 10940                                                                                                                                              Dirty Harry
## 10941                                                                                                                                                From Hell
## 10942                                                                                                                                              Waking Life
## 10943                                                                                                                                                    K-PAX
## 10944                                                                                                                                             Donnie Darko
## 10945                                                                                                                                           Monsters, Inc.
## 10946                                                                                                                                              Shallow Hal
## 10947                                                                  Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 10948                                                                                                                                             Black Knight
## 10949                                                                                                                                         Beastmaster, The
## 10950                                                                                                                                           Ocean's Eleven
## 10951                                                                                                                                   Not Another Teen Movie
## 10952                                                                                                                                              Vanilla Sky
## 10953                                                                                                                                    Royal Tenenbaums, The
## 10954                                                                                                                               Bill & Ted's Bogus Journey
## 10955                                                                                                            Spacehunter: Adventures in the Forbidden Zone
## 10956                                                                                                                                                 How High
## 10957                                                                                                       Lord of the Rings: The Fellowship of the Ring, The
## 10958                                                                                                                                        Beautiful Mind, A
## 10959                                                                                                                                          Black Hawk Down
## 10960                                                                                                                                                 I Am Sam
## 10961                                                                                                                                            Orange County
## 10962                                                                                                                                      Conan the Destroyer
## 10963                                                                                                                              Dragon: The Bruce Lee Story
## 10964                                                                                                                                The Count of Monte Cristo
## 10965                                                                                                                                               Rollerball
## 10966                                                                                                                                             Sandlot, The
## 10967                                                                                                                                           Super Troopers
## 10968                                                                                                                                      Bad News Bears, The
## 10969                                                                                                            Vampire Hunter D: Bloodlust (Banpaia hantâ D)
## 10970                                                                                                                                    40 Days and 40 Nights
## 10971                                                                                                                                         We Were Soldiers
## 10972                                                                                                                           Ferngully: The Last Rainforest
## 10973                                                                                                Zombie (a.k.a. Zombie 2: The Dead Are Among Us) (Zombi 2)
## 10974                                                                                                                                               Motel Hell
## 10975                                                                           Burial Ground (a.k.a. Zombie Horror) (a.k.a. Zombie 3) (Notti del Terrore, Le)
## 10976                                                                                                                                                  Ice Age
## 10977                                                                                                                                            Resident Evil
## 10978                                                                                                                                          Shogun Assassin
## 10979                                                                                                                                               Panic Room
## 10980                                                                                                                            National Lampoon's Van Wilder
## 10981                                                                                                                                                  Frailty
## 10982                                                                                                                                 My Big Fat Greek Wedding
## 10983                                                                                                                                        The Scorpion King
## 10984                                                                                                                                          Salton Sea, The
## 10985                                                                                                                                               Spider-Man
## 10986                                                                                                             Star Wars: Episode II - Attack of the Clones
## 10987                                                                                                                                                 Insomnia
## 10988                                                                                                                                       Undercover Brother
## 10989                                                                                                                                     Bourne Identity, The
## 10990                                                                                                                                          Minority Report
## 10991                                                                                                                                                Mr. Deeds
## 10992                                                                                                                                   Look Who's Talking Now
## 10993                                                                                                             Men in Black II (a.k.a. MIIB) (a.k.a. MIB 2)
## 10994                                                                                                                                            Reign of Fire
## 10995                                                                                                                                        Road to Perdition
## 10996                                                                                                                              Austin Powers in Goldmember
## 10997                                                                                                                                                    Signs
## 10998                                                                                                                    Spy Kids 2: The Island of Lost Dreams
## 10999                                                                                                                                                      xXx
## 11000                                                                                                                                               Blue Crush
## 11001                                                                                                                                      Clash of the Titans
## 11002                                                                                                                                               Hot Shots!
## 11003                                                                                                                                               Barbershop
## 11004                                                                                                                                         Transporter, The
## 11005                                                                                                                                     Ernest Scared Stupid
## 11006                                                                                                                                                Secretary
## 11007                                                                                                            Spirited Away (Sen to Chihiro no kamikakushi)
## 11008                                                                                                                                              Tuxedo, The
## 11009                                                                                                                                               Red Dragon
## 11010                                                                                                                                 Rules of Attraction, The
## 11011                                                                                                                                    Bowling for Columbine
## 11012                                                                                                                                         Punch-Drunk Love
## 11013                                                                                                                                                Ring, The
## 11014                                                                                                                  Grave of the Fireflies (Hotaru no haka)
## 11015                                                                                                                     Jason Goes to Hell: The Final Friday
## 11016                                                                                                                                         Faces of Death 2
## 11017                                                                                                                                           Faces of Death
## 11018                                                                                                                                         Faces of Death 3
## 11019                                                                                                                                         Faces of Death 4
## 11020                                                                                                                                 Galaxy of Terror (Quest)
## 11021                                                                                                                                                   8 Mile
## 11022                                                                                                                  Harry Potter and the Chamber of Secrets
## 11023                                                                                                                                          Treasure Planet
## 11024                                                                                                                                               Adaptation
## 11025                                                                                                                                              Equilibrium
## 11026                                                                                                                                           Hot Chick, The
## 11027                                                                                                                                        Maid in Manhattan
## 11028                                                                                                                   Lord of the Rings: The Two Towers, The
## 11029                                                                                                                                                25th Hour
## 11030                                                                                                                                           Antwone Fisher
## 11031                                                                                                                                        Gangs of New York
## 11032                                                                                                                                                     Narc
## 11033                                                                                                                                      Catch Me If You Can
## 11034                                                                                                                                                  Chicago
## 11035                                                                                                                             City of God (Cidade de Deus)
## 11036                                                                                                                                          CB4 - The Movie
## 11037                                                                                                                             How to Lose a Guy in 10 Days
## 11038                                                                                                                                         Shanghai Knights
## 11039                                                                                                                                                Daredevil
## 11040                                                                                                                                               Old School
## 11041                                                                                                                                  Bringing Down the House
## 11042                                                                                                                                         Tears of the Sun
## 11043                                                                                                                                     Bend It Like Beckham
## 11044                                                                                                                                                     Spun
## 11045                                                                                                                                              Phone Booth
## 11046                                                                                                                                         Anger Management
## 11047                                                                                                                                     Malibu's Most Wanted
## 11048                                                                                                                                    Andromeda Strain, The
## 11049                                                                                                                                                 Identity
## 11050                                                                                                                                         X2: X-Men United
## 11051                                                                                                                                           Daddy Day Care
## 11052                                                                                                                                     Matrix Reloaded, The
## 11053                                                                                                                                           Bruce Almighty
## 11054                                                                                                                                             Finding Nemo
## 11055                                                                                                                                         Italian Job, The
## 11056                                                                                                                                               Wrong Turn
## 11057                                                                                                           2 Fast 2 Furious (Fast and the Furious 2, The)
## 11058                                                                                                                                              Barton Fink
## 11059                                                                                                                                            28 Days Later
## 11060                                                                                                                          Charlie's Angels: Full Throttle
## 11061                                                                                                                                                     Hulk
## 11062                                                                                                                       Terminator 3: Rise of the Machines
## 11063                                                                                                   Pirates of the Caribbean: The Curse of the Black Pearl
## 11064                                                                                                                                              Bad Boys II
## 11065                                                                                                                                            Little Giants
## 11066                                                                                                               Lara Croft Tomb Raider: The Cradle of Life
## 11067                                                                                                                                               Seabiscuit
## 11068                                                                                                                                  Spy Kids 3-D: Game Over
## 11069                                                                                                                      Remo Williams: The Adventure Begins
## 11070                                                                                                                        American Wedding (American Pie 3)
## 11071                                                                                                                                            Freaky Friday
## 11072                                                                                                                                                 S.W.A.T.
## 11073                                                                                                                                             Brain Damage
## 11074                                                                                                                                         Freddy vs. Jason
## 11075                                                                                                                                                  Tremors
## 11076                                                                                                                                                 Commando
## 11077                                                                                                                                       Jeepers Creepers 2
## 11078                                                                                                                                              Cabin Fever
## 11079                                                                                                                                           Matchstick Men
## 11080                                                                                                                                      Lost in Translation
## 11081                                                                                                                                          Day of the Dead
## 11082                                                                                                                                               Underworld
## 11083                                                                                                                                             Bubba Ho-tep
## 11084                                                                                                                                               Videodrome
## 11085                                                                                                                                          Boyz N the Hood
## 11086                                                                                                                              Phenomena (a.k.a. Creepers)
## 11087                                                                                                                       Monty Python's The Meaning of Life
## 11088                                                                                                                                       Three O'Clock High
## 11089                                                                                                                                             Ginger Snaps
## 11090                                                                                                                            Ninja Scroll (Jûbei ninpûchô)
## 11091                                                                                                                                           School of Rock
## 11092                                                                                                                                             Mystic River
## 11093                                                                                                                                        Kill Bill: Vol. 1
## 11094                                                                                                                                                    Radio
## 11095                                                                                                                                            Scary Movie 3
## 11096                                                                                                                                            Interstate 60
## 11097                                                                                                                                  Matrix Revolutions, The
## 11098                                                                                                                                                      Elf
## 11099                                                                                                          Master and Commander: The Far Side of the World
## 11100                                                                                                                                                  Gothika
## 11101                                                                                                                                                 21 Grams
## 11102                                                                                                                                                Bad Santa
## 11103                                                                                                                                            New Jack City
## 11104                                                                                                                           Invasion of the Body Snatchers
## 11105                                                                                                                                      Last Boy Scout, The
## 11106                                                                                                                          Battle Royale (Batoru rowaiaru)
## 11107                                                                                                                                                Teen Wolf
## 11108                                                                                                                                             Witches, The
## 11109                                                                                                                                 Witches of Eastwick, The
## 11110                                                                                                     Aguirre: The Wrath of God (Aguirre, der Zorn Gottes)
## 11111                                                                                                                                        Hero (Ying xiong)
## 11112                                                                                            Nausicaä of the Valley of the Wind (Kaze no tani no Naushika)
## 11113                                                                                                                                               Leprechaun
## 11114                                                                                                                                              Cooler, The
## 11115                                                                                                                                        Last Samurai, The
## 11116                                                                                                                                                 Big Fish
## 11117                                                                                                           Lord of the Rings: The Return of the King, The
## 11118                                                                                                                                     Cheaper by the Dozen
## 11119                                                                                                                            Ichi the Killer (Koroshiya 1)
## 11120                                                                                                                                     The Butterfly Effect
## 11121                                                                                                                                                 Thirteen
## 11122                                                                                                                                           50 First Dates
## 11123                                                                                                                                     King Solomon's Mines
## 11124                                                                                                                                                 EuroTrip
## 11125                                                                                                                               Passion of the Christ, The
## 11126                                                                                                                                                  Hidalgo
## 11127                                                                                                                                          Starsky & Hutch
## 11128                                                                                                                                      Girl Next Door, The
## 11129                                                                                                                                         Dawn of the Dead
## 11130                                                                                                                    Eternal Sunshine of the Spotless Mind
## 11131                                                                                                                                         Ladykillers, The
## 11132                                                                                                                                                  Hellboy
## 11133                                                                                                                                         Dawn of the Dead
## 11134                                                                                                                                                 Munchies
## 11135                                                                                                                                              After Hours
## 11136                                                                                                                                        Kill Bill: Vol. 2
## 11137                                                                                                                                              Man on Fire
## 11138                                                                                                                                              Van Helsing
## 11139                                                                                                                                                     Troy
## 11140                                                                                                                                               Enemy Mine
## 11141                                                                                                                                         Enter the Dragon
## 11142                                                                                                                                         Band of Brothers
## 11143                                                                                                                                   Look Who's Talking Too
## 11144                                                                                                                                                Explorers
## 11145                                                                                                                                            Warriors, The
## 11146                                                                                                                                                     Dune
## 11147                                                                                                 Legend, The (Legend of Fong Sai-Yuk, The) (Fong Sai Yuk)
## 11148                                                                                                                                  Tremors II: Aftershocks
## 11149                                                                                                                            Tremors 3: Back to Perfection
## 11150                                                                                                                        Samurai Fiction (SF: Episode One)
## 11151                                                                                                                                                 Ken Park
## 11152                                                                                                                                              From Beyond
## 11153                                                                                                                                                    Dolls
## 11154                                                                                                                                     Pursuit of Happiness
## 11155                                                                                                                                     Escape from Alcatraz
## 11156                                                                                                                                                  Shrek 2
## 11157                                                                                                                                  Day After Tomorrow, The
## 11158                                                                                                                                               Soul Plane
## 11159                                                                                                                 Harry Potter and the Prisoner of Azkaban
## 11160                                                                                                                               Chronicles of Riddick, The
## 11161                                                                                                                                      Garfield: The Movie
## 11162                                                                                                                                      Stepford Wives, The
## 11163                                                                                                                                        Napoleon Dynamite
## 11164                                                                                                                                                   Freaks
## 11165                                                                                                                              Around the World in 80 Days
## 11166                                                                                                                         Dodgeball: A True Underdog Story
## 11167                                                                                                                                            Terminal, The
## 11168                                                                                                                                             White Chicks
## 11169                                                                                                                                          Fahrenheit 9/11
## 11170                                                                                                                                             Spider-Man 2
## 11171                                                                                                                                            Before Sunset
## 11172                                                                                                                                              King Arthur
## 11173                                                                                                                    Anchorman: The Legend of Ron Burgundy
## 11174                                                                                                                                                 I, Robot
## 11175                                                                                                                                    Bourne Supremacy, The
## 11176                                                                                                                                             Village, The
## 11177                                                                                                                                             Garden State
## 11178                                                                                                                                               Collateral
## 11179                                                                                                                      Harold and Kumar Go to White Castle
## 11180                                                                                                                                  AVP: Alien vs. Predator
## 11181                                                                                                                                                Yu-Gi-Oh!
## 11182                                                                                                                                      Night of the Demons
## 11183                                                                                                                             SuperBabies: Baby Geniuses 2
## 11184                                                                                                                                Resident Evil: Apocalypse
## 11185                                                                                                                                        Shaun of the Dead
## 11186                                                                                                                                       Cannibal Holocaust
## 11187                                                                                                                                        I Heart Huckabees
## 11188                                                                                                                                                   Primer
## 11189                                                                                                                               Team America: World Police
## 11190                                                                                                                            Fearless Vampire Killers, The
## 11191                                                                                                                                              Grudge, The
## 11192                                                                                                                                                 Sideways
## 11193                                                                                                                                            The Machinist
## 11194                                                                                                                                                      Saw
## 11195                                                                                                                                         Incredibles, The
## 11196                                                                                                                                        National Treasure
## 11197                                                                                                                                           Ocean's Twelve
## 11198                                                                                                                                     King Solomon's Mines
## 11199                                                                                                                                                 Topo, El
## 11200                                                                                                                                              Hobbit, The
## 11201                                                                                                                                 Raiders of Atlantis, The
## 11202                                                                                                                         Police Story (Ging chaat goo si)
## 11203                                                                                                                  Better Tomorrow, A (Ying hung boon sik)
## 11204                                                                                                                                       Prince of Darkness
## 11205                                                                                                                   Chinese Ghost Story, A (Sinnui yauwan)
## 11206                                                                                                                                            Frankenhooker
## 11207                                                                                                                                           State of Grace
## 11208                                                                                                              Hearts of Darkness: A Filmmakers Apocalypse
## 11209                                                                                                                   Riki-Oh: The Story of Ricky (Lik Wong)
## 11210                                                                                                  Tai Chi Master (Twin Warriors) (Tai ji: Zhang San Feng)
## 11211                                                                                                                               From the Earth to the Moon
## 11212                                                                                                                                                 Thursday
## 11213                                                                                                                                  Who Am I? (Wo shi shei)
## 11214                                                                                                                           Lady Snowblood (Shurayukihime)
## 11215                                                                                                                                       Audition (Ôdishon)
## 11216                                                                                                                                   Daria: Is It Fall Yet?
## 11217                                                                                                                                          Ali G Indahouse
## 11218                                                                                                                                                    Fubar
## 11219                                                                                                                           Suicide Club (Jisatsu saakuru)
## 11220                                                                                                                                     Battlestar Galactica
## 11221                                                                                                                                           Soldier's Girl
## 11222                                                                                                                                           Animatrix, The
## 11223                                                                                                 Battle Royale 2: Requiem (Batoru rowaiaru II: Chinkonka)
## 11224                                                                                                          Lemony Snicket's A Series of Unfortunate Events
## 11225                                                                                                                                        Ju-on: The Grudge
## 11226                                                                                                                                                  Old Boy
## 11227                                                                                                                         Ginger Snaps Back: The Beginning
## 11228                                                                                                              Starship Troopers 2: Hero of the Federation
## 11229                                                                                                    Interstella 5555: The 5tory of the 5ecret 5tar 5ystem
## 11230                                                                                                                      Ong-Bak: The Thai Warrior (Ong Bak)
## 11231                                                                                                                                                Spanglish
## 11232                                                                                                                                               Layer Cake
## 11233                                                                                                                                        Scanner Darkly, A
## 11234                                                                                                                                      Million Dollar Baby
## 11235                                                                                                                                             Hotel Rwanda
## 11236                                                                                                                      Life Aquatic with Steve Zissou, The
## 11237                                                                                                                                             Aviator, The
## 11238                                                                                                                                            Woodsman, The
## 11239                                                                                                                                         Meet the Fockers
## 11240                                                                                                                                                  Wizards
## 11241                                                                                                                                             Coach Carter
## 11242                                                                                                                Beastmaster 2: Through the Portal of Time
## 11243                                                                                                                                        Are We There Yet?
## 11244                                                                                                                                                Boogeyman
## 11245                                                                                                                Rory O'Shea Was Here (Inside I'm Dancing)
## 11246                                                                                                                                                    Hitch
## 11247                                                                                                                                              Constantine
## 11248                                                                                                                                 Kung Fu Hustle (Gong fu)
## 11249                                                                                                       Thief and the Cobbler, The (a.k.a. Arabian Knight)
## 11250                                                                                                                    Sword of Doom, The (Dai-bosatsu tôge)
## 11251                                                                                                                                                 Sin City
## 11252                                                                                                                                                   Sahara
## 11253                                                                                                                    Hitchhiker's Guide to the Galaxy, The
## 11254                                                                                                                                        Kingdom of Heaven
## 11255                                                                                                                                             House of Wax
## 11256                                                                                                                                                    Crash
## 11257                                                                                                                                          Mysterious Skin
## 11258                                                                                                             Star Wars: Episode III - Revenge of the Sith
## 11259                                                                                                                                         Mr. & Mrs. Smith
## 11260                                                                                                                                            Batman Begins
## 11261                                                                                                                                         Land of the Dead
## 11262                                                                                                                                        War of the Worlds
## 11263                                                                                                                                           Fantastic Four
## 11264                                                                                                                                         Wedding Crashers
## 11265                                                                                                                                              Island, The
## 11266                                                                                                                                                 Serenity
## 11267                                                                                                                                           Broken Flowers
## 11268                                                                                                                           Deuce Bigalow: European Gigolo
## 11269                                                                                                                                  40-Year-Old Virgin, The
## 11270                                                                                                                                            Transporter 2
## 11271                                                                                                                                              Lord of War
## 11272                                                                                                     Family Guy Presents Stewie Griffin: The Untold Story
## 11273                                                                                                                                                Aeon Flux
## 11274                                                                                                                Green Street Hooligans (a.k.a. Hooligans)
## 11275                                                                                                                                   History of Violence, A
## 11276                                                                                                                                      Kiss Kiss Bang Bang
## 11277                                                                                                                                         Proposition, The
## 11278                                                                                                                                                   Saw II
## 11279                                                                                                                                                  Jarhead
## 11280                                                                                                                                   Get Rich or Die Tryin'
## 11281                                                                                                                                        Pride & Prejudice
## 11282                                                                                                                                             Descent, The
## 11283                                                                                                                      Harry Potter and the Goblet of Fire
## 11284                                                                                                                                              Match Point
## 11285                                                                                          Chronicles of Narnia: The Lion, the Witch and the Wardrobe, The
## 11286                                                                                                                                                King Kong
## 11287                                                                                                                                                   Munich
## 11288                                                                                                                                   Fun with Dick and Jane
## 11289                                                                                                                                                   Hostel
## 11290                                                                                                                                            Grandma's Boy
## 11291                                                                                                                                                    Troll
## 11292                                                                                                                                               Date Movie
## 11293                                                                                                                                           Running Scared
## 11294                                                                                                                                                16 Blocks
## 11295                                                                                                                                           V for Vendetta
## 11296                                                                                                                                    Thank You for Smoking
## 11297                                                                                                                                               Inside Man
## 11298                                                                                                                                   Leprechaun in the Hood
## 11299                                                                                                                                     Hills Have Eyes, The
## 11300                                                                                                                                      Lucky Number Slevin
## 11301                                                                                                                                                    Brick
## 11302                                                                                                                                            Scary Movie 4
## 11303                                                                                                                                               Hard Candy
## 11304                                                                                                     Protector, The (a.k.a. Warrior King) (Tom yum goong)
## 11305                                                                                                                                  Mission: Impossible III
## 11306                                                                                                                                       Da Vinci Code, The
## 11307                                                                                                                                       Twelve and Holding
## 11308                                                                                                                                              Nacho Libre
## 11309                                                                                                                                                    Click
## 11310                                                                                                               Pirates of the Caribbean: Dead Man's Chest
## 11311                                                                                                                                       You, Me and Dupree
## 11312                                                                                                                                                Clerks II
## 11313                                                                                                                         Jet Li's Fearless (Huo Yuan Jia)
## 11314                                                                                     Fast and the Furious: Tokyo Drift, The (Fast and the Furious 3, The)
## 11315                                                                                                                          Garfield: A Tail of Two Kitties
## 11316                                                                                                                                     Little Miss Sunshine
## 11317                                                                                                                                               Little Man
## 11318                                                                                                                                        Snakes on a Plane
## 11319                                                                                                              Talladega Nights: The Ballad of Ricky Bobby
## 11320                                                                                                                                      Night at the Museum
## 11321                                                                                                                                    Stranger than Fiction
## 11322                                                                                                                                Pursuit of Happyness, The
## 11323                                                                                                                                                    Crank
## 11324                                                                                                                                         Illusionist, The
## 11325                                                                                                                                                 Beerfest
## 11326                                                                                                                                                Crossover
## 11327                                                                                                                                                Idiocracy
## 11328                                                                                                                                            Fountain, The
## 11329                                                                                                                                               Apocalypto
## 11330                                                                      Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan
## 11331                                                                                                                Pan's Labyrinth (Laberinto del fauno, El)
## 11332                                                                                                                                            Departed, The
## 11333                                                                                                                                            Grudge 2, The
## 11334                                                                                                                                          Little Children
## 11335                                                                                                                                                 Shortbus
## 11336                                                                                                                                          Children of Men
## 11337                                                                                                                                            Prestige, The
## 11338                                                                                                                                                  Saw III
## 11339                                                                                                                                            Casino Royale
## 11340                                                                                                                                        Déjà Vu (Deja Vu)
## 11341                                                                                                           National Lampoon's Van Wilder: The Rise of Taj
## 11342                                                                                                                                                 Turistas
## 11343                                                                                                                                            Blood Diamond
## 11344                                                                                                                                                   Eragon
## 11345                                                                                                                                             Rocky Balboa
## 11346                                                                                                                                         Plague Dogs, The
## 11347                                                                                                                                            House (Hausu)
## 11348                                                                                                                                                    Kenny
## 11349                                                                                                                                             Smokin' Aces
## 11350                                                                                                                                               Epic Movie
## 11351                                                                                                                                                   Norbit
## 11352                                                                                                                                              Ratatouille
## 11353                                                                                                                                                 Hot Fuzz
## 11354                                                                                 36th Chamber of Shaolin, The (Shao Lin san shi liu fang) (Master Killer)
## 11355                                                                                                                                                   Zodiac
## 11356                                                                                                                                                      300
## 11357                                                                                                                                            Reign Over Me
## 11358                                                                                                                                  Hills Have Eyes II, The
## 11359                                                                                                                                          Blades of Glory
## 11360                                                                                                                                               Grindhouse
## 11361                                                                                                                                                 Sunshine
## 11362                                                                                                                                                Disturbia
## 11363                                                                                                     Aqua Teen Hunger Force Colon Movie Film for Theaters
## 11364                                                                                                                                                 Fracture
## 11365                                                                                                                                             Spider-Man 3
## 11366                                                                                                                                          This Is England
## 11367                                                                                                                                               Knocked Up
## 11368                                                                                                                                           28 Weeks Later
## 11369                                                                                                                                          Shrek the Third
## 11370                                                                                                                 Pirates of the Caribbean: At World's End
## 11371                                                                                                                                                 Cashback
## 11372                                                                                                                                         Ocean's Thirteen
## 11373                                                                                                                                                     Fido
## 11374                                                                                                                                              Death Proof
## 11375                                                                                                                                              Rescue Dawn
## 11376                                                                                                                                    Live Free or Die Hard
## 11377                                                                                                                                             Transformers
## 11378                                                                                                                Harry Potter and the Order of the Phoenix
## 11379                                                                                                                                      Across the Universe
## 11380                                                                                                                                      Simpsons Movie, The
## 11381                                                                                                                                    Bourne Ultimatum, The
## 11382                                                                                                                                         Bratz: The Movie
## 11383                                                                                                                                              You Kill Me
## 11384                                                                                                                                                 Superbad
## 11385                                                                                                                                              Rush Hour 3
## 11386                                                                                                                                           Rocket Science
## 11387                                                                                                                                            Planet Terror
## 11388                                                                                                                                             3:10 to Yuma
## 11389                                                                                                                                                Atonement
## 11390                                                                                                                                    In the Valley of Elah
## 11391                                                                                                                                                 Cashback
## 11392                                                                                                                                Resident Evil: Extinction
## 11393                                                                                                                                          Good Luck Chuck
## 11394                                                                                                                                            Into the Wild
## 11395                                                                                                                                  Darjeeling Limited, The
## 11396                                                                                                                                           Gone Baby Gone
## 11397                                                                                                                                                   Saw IV
## 11398                                                                                                                             Elite Squad (Tropa de Elite)
## 11399                                                                                                                                        American Gangster
## 11400                                                                                                                       Before the Devil Knows You're Dead
## 11401                                                                                                                                   No Country for Old Men
## 11402                                                                                                                                           Be Kind Rewind
## 11403                                                                                                                                                  Beowulf
## 11404                                                                                                                                          Southland Tales
## 11405                                                                                                                                                Mist, The
## 11406                                                                                                                                              I Am Legend
## 11407                                                                                                                             Futurama: Bender's Big Score
## 11408                                                                                                                                                     Juno
## 11409                                                                                                                                         Bucket List, The
## 11410                                                                                                           Sweeney Todd: The Demon Barber of Fleet Street
## 11411                                                                                                                       National Treasure: Book of Secrets
## 11412                                                                                                                                      There Will Be Blood
## 11413                                                                                                                      AVPR: Aliens vs. Predator - Requiem
## 11414                                                                                                                                              Cloverfield
## 11415                                                                                                                                          Rambo (Rambo 4)
## 11416                                                                                                                                        Meet the Spartans
## 11417                                                                                                                              Hellboy II: The Golden Army
## 11418                                                                                                                                                In Bruges
## 11419                                                                                                                                                   Jumper
## 11420                                                                                                                                       Witless Protection
## 11421                                                                                                                                                10,000 BC
## 11422                                                                                                                                            Bank Job, The
## 11423                                                                                                                                         Funny Games U.S.
## 11424                                                                                                                                           Love Guru, The
## 11425                                                                                                                          City of Men (Cidade dos Homens)
## 11426                                                                                                                                         Dark Knight, The
## 11427                                                                                                                                          Never Back Down
## 11428                                                                                                                                                       21
## 11429                                                                                                                                               Ruins, The
## 11430                                                                                                                                Forgetting Sarah Marshall
## 11431                                                                                                                                          Superhero Movie
## 11432                                                                                                                Harold & Kumar Escape from Guantanamo Bay
## 11433                                                                                                                                                 Iron Man
## 11434                                                                                                                                                    Taken
## 11435                                                                                                                                                Fall, The
## 11436                                                                                                       Indiana Jones and the Kingdom of the Crystal Skull
## 11437                                                                                                                                            Kung Fu Panda
## 11438                                                                                                                            You Don't Mess with the Zohan
## 11439                                                                                                                                                    Boy A
## 11440                                                                                                                                           Happening, The
## 11441                                                                                                                                                   WALL·E
## 11442                                                                                                                                                   Wanted
## 11443                                                                                                                                                  Hancock
## 11444                                                                                                                                                Get Smart
## 11445                                                                                                                 Futurama: The Beast with a Billion Backs
## 11446                                                                                                                                            Wackness, The
## 11447                                                                                                                    It's the Great Pumpkin, Charlie Brown
## 11448                                                                                                                                               Death Note
## 11449                                                                                                                                                 Watchmen
## 11450                                                                                                                                                    Felon
## 11451                                                                                                                                            Step Brothers
## 11452                                                                                                                                        Pineapple Express
## 11453                                                                                                                                           Tropic Thunder
## 11454                                                                                                                                               Death Race
## 11455                                                                                                                                       Burn After Reading
## 11456                                                                                                                                           Disaster Movie
## 11457                                                                                                                                         Onion Movie, The
## 11458                                                                                                                                                Max Payne
## 11459                                                                                                                               Zack and Miri Make a Porno
## 11460                                                                        Lone Wolf and Cub: Baby Cart to Hades (Kozure Ôkami: Shinikazeni mukau ubaguruma)
## 11461                                                                                                                       High School Musical 3: Senior Year
## 11462                                                                                                                                  Futurama: Bender's Game
## 11463                                                                                                                                                Road, The
## 11464                                                                                                                                      Slumdog Millionaire
## 11465                                                                                                                                        Quantum of Solace
## 11466                                                                                                                                              Role Models
## 11467                                                                                                                                  Beverly Hills Chihuahua
## 11468                                                                                                                                                 Splinter
## 11469                                                                                                                                                     Milk
## 11470                                                                                                                                                 Twilight
## 11471                                                                                                                                                   Hunger
## 11472                                                                                                                            Starship Troopers 3: Marauder
## 11473                                                                                                                                              Gran Torino
## 11474                                                                                                                                             Seven Pounds
## 11475                                                                                                                                            Wrestler, The
## 11476                                                                                              Chinese Ghost Story II, A (Sien nui yau wan II yan gaan do)
## 11477                                                                                                                     Curious Case of Benjamin Button, The
## 11478                                                                                                                                                 Valkyrie
## 11479                                                                                                                                                    Choke
## 11480                                                                                                                  Poultrygeist: Night of the Chicken Dead
## 11481                                                                                                                                                   Ip Man
## 11482                                                                                                                                                Outlander
## 11483                                                                                                                                            Grudge 3, The
## 11484                                                                                                                                                Eden Lake
## 11485                                                                                                                     Futurama: Into the Wild Green Yonder
## 11486                                                                                                                               Afro Samurai: Resurrection
## 11487                                                                                                                           Dr. Horrible's Sing-Along Blog
## 11488                                                                                                                     Ong-Bak 2: The Beginning (Ong Bak 2)
## 11489                                                                                                 Girl with the Dragon Tattoo, The (Män som hatar kvinnor)
## 11490                                                                                                                                Anvil! The Story of Anvil
## 11491                                                                                                                                       Observe and Report
## 11492                                                                                                                                            Adventureland
## 11493                                                                                                             Fast & Furious (Fast and the Furious 4, The)
## 11494                                                                                                                                             Pirate Radio
## 11495                                                                                                                                     Inglourious Basterds
## 11496                                                                                                                                            State of Play
## 11497                                                                                                                                                     Moon
## 11498                                                                                                                                 X-Men Origins: Wolverine
## 11499                                                                                                                                                Star Trek
## 11500                                                                                                                                   Great Buck Howard, The
## 11501                                                                                                                                          Angels & Demons
## 11502                                                                                                                                                Chop Shop
## 11503                                                                                                                                          Drag Me to Hell
## 11504                                                                                                                                                       Up
## 11505                                       Fullmetal Alchemist the Movie: Conqueror of Shamballa (Gekijô-ban hagane no renkinjutsushi: Shanbara wo yuku mono)
## 11506                                                                                                                                              Dance Flick
## 11507                                                                                                                                            Hangover, The
## 11508                                                                                                                              Taking of Pelham 1 2 3, The
## 11509                                                                                                                                         Hurt Locker, The
## 11510                                                                                                                                           Public Enemies
## 11511                                                                                                                                Daria: Is It College Yet?
## 11512                                                                                                                   Watchmen: Tales of the Black Freighter
## 11513                                                                                                                                     (500) Days of Summer
## 11514                                                                                                                   Harry Potter and the Half-Blood Prince
## 11515                                                                                                                                               District 9
## 11516                                                                                                             Jerusalema (Gangster's Paradise: Jerusalema)
## 11517                                                                                                                                                  Troll 2
## 11518                                                                                                                                                        9
## 11519                                                                                                             Frequently Asked Questions About Time Travel
## 11520                                                                                                                                                 Pandorum
## 11521                                                                                                                                                  Extract
## 11522                                                                                                                                      Paranormal Activity
## 11523                                                                                                                                     World's Greatest Dad
## 11524                                                                                                                                              City Island
## 11525                                                                                                                                  Invention of Lying, The
## 11526                                                                                                                                             Next Day Air
## 11527                                                                                                                                               Zombieland
## 11528                                                                                                                                Where the Wild Things Are
## 11529                                                                                                                                      Law Abiding Citizen
## 11530                                                                                                                                            Up in the Air
## 11531                                                                                                                                           Black Dynamite
## 11532                                                                                                                                        Fantastic Mr. Fox
## 11533                                                                                                                                         Merry Madagascar
## 11534                                                                                                                                         Blind Side, The 
## 11535                                                                                                                                                 Invictus
## 11536                                                                                                                                                   Avatar
## 11537                                                                                                                                              Crazy Heart
## 11538                                                                                                                                              Daybreakers
## 11539                                                                                                                                         Book of Eli, The
## 11540                                                                                                                             Hellsing Ultimate OVA Series
## 11541                                                                                                                                                Fish Tank
## 11542                                                                                                                                           Shutter Island
## 11543                                                                                                                                        Ghost Writer, The
## 11544                                                                                                                                     From Paris with Love
## 11545                                                                                                                                        Brooklyn's Finest
## 11546                                                                                                                                              Harry Brown
## 11547                                                                                                                                          Leaves of Grass
## 11548                                                                                                                                     Slammin' Salmon, The
## 11549                                                                                                                                     Hot Tub Time Machine
## 11550                                                                                                                                 How to Train Your Dragon
## 11551                                                                                                                                                 Kick-Ass
## 11552                                                                                                                                   Five Minutes of Heaven
## 11553                                                                                                                                               Iron Man 2
## 11554                                                                                                                                               Four Lions
## 11555                                                                                                                                      You Don't Know Jack
## 11556                                                                                                                                               Robin Hood
## 11557                                                                                                                                     Get Him to the Greek
## 11558                                                                                                                                                   Splice
## 11559                                                                                                                                                     Exam
## 11560                                                                                                                                              A-Team, The
## 11561                                                                                                                                              Toy Story 3
## 11562                                                                                                                                            Winter's Bone
## 11563                                                                                                                              Twilight Saga: Eclipse, The
## 11564                                                                                                                              South Park: Imaginationland
## 11565                                                                                                                                                Predators
## 11566                                                                                                                                            Despicable Me
## 11567                                                                                                                                                Inception
## 11568                                                                                                                                  Kids Are All Right, The
## 11569                                                                                                                            Serbian Film, A (Srpski film)
## 11570                                                                                                                               Batman: Under the Red Hood
## 11571                                                                                                                                               Mr. Nobody
## 11572                                                                                                                                                 Ip Man 2
## 11573                                                                                                                                         Expendables, The
## 11574                                                                                                                              Scott Pilgrim vs. the World
## 11575                                                                                                                                           Animal Kingdom
## 11576                                                                                                                                     Piranha (Piranha 3D)
## 11577                                                                                       Dragon Ball Z: Dead Zone (Doragon bôru Z 1: Ora no Gohan wo kaese)
## 11578                                                                                                                                                  Machete
## 11579                                                                                                                                      Social Network, The
## 11580                                                                                                                                                Town, The
## 11581                                                                                                                               It's Kind of a Funny Story
## 11582                                                                                                                                                Let Me In
## 11583                                                                                                                                                    Devil
## 11584                                                                                                                                                   Kaboom
## 11585                                                                                                                                                127 Hours
## 11586                                                                                                                                                 Megamind
## 11587                                                                                                                                               Black Swan
## 11588                                                                                                   1990: The Bronx Warriors (1990: I guerrieri del Bronx)
## 11589                                                                                                                                     Next Three Days, The
## 11590                                                                                                             Harry Potter and the Deathly Hallows: Part 1
## 11591                                                                                                                                             Fighter, The
## 11592                                                                                                                                          Loved Ones, The
## 11593                                                                                                                                                True Grit
## 11594                                                                                                                                         Barney's Version
## 11595                                                                                                                        I Saw the Devil (Akmareul boatda)
## 11596                                                                                                                                    Tucker & Dale vs Evil
## 11597                                                                                                                                         Cowboys & Aliens
## 11598                                                                                                                                                Limitless
## 11599                                                                                                                                                     Paul
## 11600                                                                                                                                                    Rango
## 11601                                                                               Elite Squad: The Enemy Within (Tropa de Elite 2 - O Inimigo Agora É Outro)
## 11602                                                                                                                                                    Super
## 11603                                                                                                                                              Source Code
## 11604                                                                                                                                                Insidious
## 11605                                                                                                                                                  Win Win
## 11606                                                                                                                      13 Assassins (Jûsan-nin no shikaku)
## 11607                                                                                                                  Fast Five (Fast and the Furious 5, The)
## 11608                                                                                                                                        Midnight in Paris
## 11609                                                                                                                                         Attack the Block
## 11610                                                                                                                                       X-Men: First Class
## 11611                                                                                                                                                Submarine
## 11612                                                                                                                                       Everything Must Go
## 11613                                                                                                                                                  Super 8
## 11614                                                                                                                                          Horrible Bosses
## 11615                                                                                                                                        Perfect Host, The
## 11616                                                                                                             Harry Potter and the Deathly Hallows: Part 2
## 11617                                                                                                                                                    Drive
## 11618                                                                                                                       Captain America: The First Avenger
## 11619                                                                                                                                     Crazy, Stupid, Love.
## 11620                                                                                                                           Rise of the Planet of the Apes
## 11621                                                                                                                                            Another Earth
## 11622                                                                                                                                                Debt, The
## 11623                                                                                                                                                Red State
## 11624                                                                                                                                                Contagion
## 11625                                                                                                                                            Avengers, The
## 11626                                                                                                                                                  Warrior
## 11627                                                                                                                                                    50/50
## 11628                                                                                                                              We Need to Talk About Kevin
## 11629                                                                                                                                                  Carnage
## 11630                                                                                                                                              Margin Call
## 11631                                                                                                                                                    Shame
## 11632                                                                                                                                       Expendables 2, The
## 11633                                                                                                                                         The Hunger Games
## 11634                                                                                                                                   Dark Knight Rises, The
## 11635                                                                                                                     Mission: Impossible - Ghost Protocol
## 11636                                                                                                                         Girl with the Dragon Tattoo, The
## 11637                                                                                                                                                Grey, The
## 11638                                                                                                                                          Innkeepers, The
## 11639                                                                                                                                        Trailer Park Boys
## 11640                                                                                                                                              John Carter
## 11641                                                                                                                                                     Goon
## 11642                                                                                                                                           21 Jump Street
## 11643                                                                                                                        American Reunion (American Pie 4)
## 11644                                                                                                                                     The Raid: Redemption
## 11645                                                                                                                                  Cabin in the Woods, The
## 11646                                                                                                                                        God Bless America
## 11647                                                                                                                                               Battleship
## 11648                                                                                                                          Best Exotic Marigold Hotel, The
## 11649                                                                                                                                            Dictator, The
## 11650                                                                                                                            Pirates! Band of Misfits, The
## 11651                                                                                                                                               Prometheus
## 11652                                                                                                                                         Moonrise Kingdom
## 11653                                                                                                                                    Safety Not Guaranteed
## 11654                                                                  Dragon Ball: Sleeping Princess in Devil's Castle (Doragon bôru: Majinjô no nemuri hime)
## 11655  Dragon Ball Z the Movie: The World's Strongest (a.k.a. Dragon Ball Z: The Strongest Guy in The World) (Doragon bôru Z: Kono yo de ichiban tsuyoi yatsu)
## 11656                                                                Dragon Ball Z the Movie: The Tree of Might (Doragon bôru Z 3: Chikyû marugoto chô kessen)
## 11657                                                                                                                                                      Ted
## 11658                                                               Dragon Ball Z: The Return of Cooler (Doragon bôru Z 6: Gekitotsu! Hyakuoku pawâ no senshi)
## 11659                                                                       Dragon Ball Z: Cooler's Revenge (Doragon bôru Z 5: Tobikkiri no saikyô tai saikyô)
## 11660                                           Dragon Ball Z: Broly - The Legendary Super Saiyan (Doragon bôru Z 8: Moetsukiro!! Nessen retsusen-chô gekisen)
## 11661                                                                                                                                  Amazing Spider-Man, The
## 11662                                                                                                                              Beasts of the Southern Wild
## 11663                                                                     Dragon Ball Z: Bio-Broly (Doragon bôru Z 11: Sûpâ senshi gekiha! Katsu no wa ore da)
## 11664                                                                   Dragon Ball Z: Fusion Reborn (Doragon bôru Z 12: Fukkatsu no fyushon!! Gokû to Bejîta)
## 11665                                                                                                                                             Total Recall
## 11666                                                 Dragon Ball Z: Wrath of the Dragon (Doragon bôru Z 13: Ryûken bakuhatsu!! Gokû ga yaraneba dare ga yaru)
## 11667            Dragon Ball Z: Bardock - The Father of Goku (Doragon bôru Z: Tatta hitori no saishuu kessen - Furiiza ni itonda Z senshi Kakarotto no chichi)
## 11668                                   Dragon Ball Z: The History of Trunks (Doragon bôru Z: Zetsubô e no hankô!! Nokosareta chô senshi - Gohan to Torankusu)
## 11669                                                            Dragon Ball GT: A Hero's Legacy (Doragon bôru GT: Gokû gaiden! Yûki no akashi wa sû-shin-chû)
## 11670                                                                                                                                                  Skyfall
## 11671                                                                                                                                            Campaign, The
## 11672                                                                                                                                               ParaNorman
## 11673                                                                                                                                                  Lawless
## 11674                                                                                                                                            Pitch Perfect
## 11675                                                                                                                                                   Looper
## 11676                                                                                                                                                    Dredd
## 11677                                                                                                                                             End of Watch
## 11678                                                                                                                         Perks of Being a Wallflower, The
## 11679                                                                                                                                        Seven Psychopaths
## 11680                                                                                                                                              Cloud Atlas
## 11681                                                                                                                                      Killing Them Softly
## 11682                                                                                                                                           Wreck-It Ralph
## 11683                                                                                                                                  Silver Linings Playbook
## 11684                                                                                                                                                   Flight
## 11685                                                                                                                                               Life of Pi
## 11686                                                                                                                                                  Redline
## 11687                                                                                                                       Hobbit: An Unexpected Journey, The
## 11688                                                                          Evil Cult, The (Lord of the Wu Tang) (Yi tian tu long ji: Zhi mo jiao jiao zhu)
## 11689                                                                                                                                         Zero Dark Thirty
## 11690                                                                                                                                             Jack Reacher
## 11691                                                                                                                                         Django Unchained
## 11692                                                                                                                          Impossible, The (Imposible, Lo)
## 11693                                                                                                                                           Gangster Squad
## 11694                                                                                                                                               Sightseers
## 11695                                                                                                                                             Side Effects
## 11696                                                                                                                                          Before Midnight
## 11697                                                                                                                              Place Beyond the Pines, The
## 11698                                                                                                                                                 Oblivion
## 11699                                                                                                                                              Pain & Gain
## 11700                                                                                                                                          This Is the End
## 11701                                                                                                                                                      Mud
## 11702                                                                                                                               Legendary Weapons of China
## 11703                                                                                                                                        Great Gatsby, The
## 11704                                                                                                                                  Star Trek Into Darkness
## 11705                                                                                                           Fast & Furious 6 (Fast and the Furious 6, The)
## 11706                                                                                                                                       Way, Way Back, The
## 11707                                                                                                                                             Man of Steel
## 11708                                                                                                                                     Kings of Summer, The
## 11709                                                                                                                                              Pacific Rim
## 11710                                                                                                                                              World War Z
## 11711                                                                                                                                                  Elysium
## 11712                                                                                                                                         Lone Ranger, The
## 11713                                                                                                                                        Fruitvale Station
## 11714                                                                                                                                           Conjuring, The
## 11715                                                                                                                                           Wolverine, The
## 11716                                                                                                                                                  Gravity
## 11717                                                                                                                                                     Rush
## 11718                                                                                                                                            Short Term 12
## 11719                                                                                                                                                  Don Jon
## 11720                                                                                                                                         Captain Phillips
## 11721                                                                                                                                             Ender's Game
## 11722                                                                                                                                      Toy Story of Terror
## 11723                                                                                                                                       Dallas Buyers Club
## 11724                                                                                                                          The Hunger Games: Catching Fire
## 11725                                                                                                                     Hobbit: The Desolation of Smaug, The
## 11726                                                                                                                                                 47 Ronin
## 11727                                                                                                                                 Wolf of Wall Street, The
## 11728                                                                                                                                          American Hustle
## 11729                                                                                                                         Secret Life of Walter Mitty, The
## 11730                                                                                                                                                      Her
## 11731                                                                                                                                            Lone Survivor
## 11732                                                                                                                        Anchorman 2: The Legend Continues
## 11733                                                                                                                                              Snowpiercer
## 11734                                                                                                                            Dragon Ball Z: Battle of Gods
## 11735                                                                                                                              Dragon ball Z 04: Lord Slug
## 11736                                                                                         Dragon Ball: The Path to Power (Doragon bôru: Saikyô e no michi)
## 11737                                                                                                                                                Divergent
## 11738                                                                                                                                                     <NA>
## 11739                                                                                                                                           The Lego Movie
## 11740                                                                                                                                  Nymphomaniac: Volume II
## 11741                                                                                                                                Four, The (Si da ming bu)
## 11742                                                                                                                                Grand Budapest Hotel, The
## 11743                                                                                                                                             Interstellar
## 11744                                                                                                                                           Need for Speed
## 11745                                                                                                                                                Bad Words
## 11746                                                                                                                                                     Noah
## 11747                                                                                                                                 Wetlands (Feuchtgebiete)
## 11748                                                                                                                                     The Raid 2: Berandal
## 11749                                                                                                                                                    Locke
## 11750                                                                                                                                                     Lucy
## 11751                                                                                                                               X-Men: Days of Future Past
## 11752                                                                                                                                                 Godzilla
## 11753                                                                                                                                              Kelly & Cal
## 11754                                                                                                                                               Maleficent
## 11755                                                                                                                                         Edge of Tomorrow
## 11756                                                                                                                       Mission: Impossible - Rogue Nation
## 11757                                                                                                                                   The Fault in Our Stars
## 11758                                                                                                         Birdman: Or (The Unexpected Virtue of Ignorance)
## 11759                                                                                                                                                  Boyhood
## 11760                                                                                                                                            Babadook, The
## 11761                                                                                                                                                 Whiplash
## 11762                                                                                                                                                Gone Girl
## 11763                                                                                                                           Dawn of the Planet of the Apes
## 11764                                                                                                                                      Purge: Anarchy, The
## 11765                                                                                                                                  Guardians of the Galaxy
## 11766                                                                                                                                               Housebound
## 11767                                                                                                                             Teenage Mutant Ninja Turtles
## 11768                                                                                                                             Sin City: A Dame to Kill For
## 11769                                                                                                                                                 The Drop
## 11770                                                                                                                                         Maze Runner, The
## 11771                                                                                                                                          American Sniper
## 11772                                                                                                                                                     Tusk
## 11773                                                                                                                                           Predestination
## 11774                                                                                                                                What We Do in the Shadows
## 11775                                                                                                                                                John Wick
## 11776                                                                                                                                           Salvation, The
## 11777                                                                                                                                             Nightcrawler
## 11778                                                                                                                                               Ex Machina
## 11779                                                                                                                       Simpsons: The Longest Daycare, The
## 11780                                                                                                                                                        9
## 11781                                                                                                                                       Stonehearst Asylum
## 11782                                                                                                                                       The Imitation Game
## 11783                                                                                                                    The Hunger Games: Mockingjay - Part 1
## 11784                                                                                                                                        Dear White People
## 11785                                                                                                                                 The Theory of Everything
## 11786                                                                                                                                           Jurassic World
## 11787                                                                                                                                               The Voices
## 11788                                                                                                                The Hobbit: The Battle of the Five Armies
## 11789                                                                                                                             Kingsman: The Secret Service
## 11790                                                                                                                                                  Chappie
## 11791                                                                                                                                               It Follows
## 11792                                                                                                                                       Mad Max: Fury Road
## 11793                                                                                                               Star Wars: Episode VII - The Force Awakens
## 11794                                                                                                                                                 Warcraft
## 11795                                                                                                                                                  Ant-Man
## 11796                                                                                                                                                 Deadpool
## 11797                                                                                                                                        X-Men: Apocalypse
## 11798                                                                                                                           Rudolph the Red-Nosed Reindeer
## 11799                                                                                                                                                     Dope
## 11800                                                                                                                                        The Hateful Eight
## 11801                                                                                                                                              Backcountry
## 11802                                                                                                                                                     Muck
## 11803                                                                                                                                              The Lobster
## 11804                                                                                                                                              The Martian
## 11805                                                                                                                                                  Minions
## 11806                                                                                                                                          The Jungle Book
## 11807                                                                                                                                             Afro Samurai
## 11808                                                                                                                                             The Revenant
## 11809                                                                                                                                                  Sicario
## 11810                                                                                                                                                The Witch
## 11811                                                                                                                                   Straight Outta Compton
## 11812                                                                                                                                                Deathgasm
## 11813                                                                                                                                               Green Room
## 11814                                                                                                                                                    Creed
## 11815                                                                                                                                           Big Short, The
## 11816                                                                                                                                      10 Cloverfield Lane
## 11817                                                                                                                                     The Brothers Grimsby
## 11818                                                                                                                                                   Demons
## 11819                                                                                                                                                     Hush
## 11820                                                                                                                                            The Nice Guys
## 11821                                                                                                                                           The Video Dead
## 11822                                                                                                                                          The Conjuring 2
## 11823                                                                                                                            Kingsglaive: Final Fantasy XV
## 11824                                                                                                                                                     <NA>
## 11825                                                                                                                                                GoldenEye
## 11826                                                                                                                                                   Casino
## 11827                                                                                                                                    Sense and Sensibility
## 11828                                                                                                                                            Happy Gilmore
## 11829                                                                                                                                               Braveheart
## 11830                                                                                                                                           Batman Forever
## 11831                                                                                                                       Star Wars: Episode IV - A New Hope
## 11832                                                                                                                                             Forrest Gump
## 11833                                                                                                                                         Schindler's List
## 11834                                                                                                                                                   Batman
## 11835                                                                                                                                          Pallbearer, The
## 11836                                                                                                                                               Casablanca
## 11837                                                                                                                     William Shakespeare's Romeo + Juliet
## 11838                                                                                                                             Monty Python's Life of Brian
## 11839                                                                                                                               E.T. the Extra-Terrestrial
## 11840                                                                                                                          Monty Python and the Holy Grail
## 11841                                                                                                           Star Wars: Episode V - The Empire Strikes Back
## 11842                                                                                                               Star Wars: Episode VI - Return of the Jedi
## 11843                                                                                                                                                   Patton
## 11844                                                                                                                                          Field of Dreams
## 11845                                                                                                                                           Batman Returns
## 11846                                                                                                                                           Batman & Robin
## 11847                                                                                                                                                  Contact
## 11848                                                                                                                                        Good Will Hunting
## 11849                                                                                                                                                  Titanic
## 11850                                                                                                                                      Tomorrow Never Dies
## 11851                                                                                                                                              Deep Impact
## 11852                                                                                                                                               Armageddon
## 11853                                                                                                                                          Lethal Weapon 4
## 11854                                                                                                                                                    Rocky
## 11855                                                                                                                                                 Rain Man
## 11856                                                                                                                                            Lethal Weapon
## 11857                                                                                                                                          Lethal Weapon 3
## 11858                                                                                                                                      Saving Private Ryan
## 11859                                                                                                                                               Swing Kids
## 11860                                                                                                                                                    Blade
## 11861                                                                                                                                                       54
## 11862                                                                                                                                        Gods and Monsters
## 11863                                                                                                                                      Shakespeare in Love
## 11864                                                                                                                                                  Payback
## 11865                                                                                                                                         Cruel Intentions
## 11866                                                                                                                                           Wing Commander
## 11867                                                                                                                                              Matrix, The
## 11868                                                                                                                               10 Things I Hate About You
## 11869                                                                                                                Star Wars: Episode I - The Phantom Menace
## 11870                                                                                                                                                 Superman
## 11871                                                                                                                     South Park: Bigger, Longer and Uncut
## 11872                                                                                                                                 Blair Witch Project, The
## 11873                                                                                                                                         Sixth Sense, The
## 11874                                                                                                                                                Toy Story
## 11875                                                                                                                                         Grumpier Old Men
## 11876                                                                                                                       Twelve Monkeys (a.k.a. 12 Monkeys)
## 11877                                                                                                                                             Crimson Tide
## 11878                                                                                                       Interview with the Vampire: The Vampire Chronicles
## 11879                                                                                                                       Star Wars: Episode IV - A New Hope
## 11880                                                                                                                                                 Stargate
## 11881                                                                                                                                Shawshank Redemption, The
## 11882                                                                                                                                              Client, The
## 11883                                                                                                                                                Crow, The
## 11884                                                                                                                                             Forrest Gump
## 11885                                                                                                                                                 Maverick
## 11886                                                                                                                                                    Speed
## 11887                                                                                                                                                  Timecop
## 11888                                                                                                                                           Demolition Man
## 11889                                                                                                                                            Jurassic Park
## 11890                                                                                                                                               Piano, The
## 11891                                                                                                                                Robin Hood: Men in Tights
## 11892                                                                                                                                         Schindler's List
## 11893                                                                                                                                             Blade Runner
## 11894                                                                                                                               Terminator 2: Judgment Day
## 11895                                                                                                                                                   Batman
## 11896                                                                                                                             Truth About Cats & Dogs, The
## 11897                                                                                                                                                   Eraser
## 11898                                                                                                                                                Lone Star
## 11899                                                                                                                                           Godfather, The
## 11900                                                                                                                                Island of Dr. Moreau, The
## 11901                                                                                                                                      Singin' in the Rain
## 11902                                                                                                                                              Rear Window
## 11903                                                                                                                                       North by Northwest
## 11904                                                                                                                                             Citizen Kane
## 11905                                                                                                                                         To Catch a Thief
## 11906                                                                                                                                    It's a Wonderful Life
## 11907                                                                                                                                         Bringing Up Baby
## 11908                                                                                                                             Monty Python's Life of Brian
## 11909                                                                                                                                               Abyss, The
## 11910                                                                                                           Star Wars: Episode V - The Empire Strikes Back
## 11911                                                                                                                                      Princess Bride, The
## 11912                                                                                  Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 11913                                                                                       Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il)
## 11914                                                                                                                                    To Kill a Mockingbird
## 11915                                                                                                                                           Apocalypse Now
## 11916                                                                                                                                                    Alien
## 11917                                                                                                                                                   Psycho
## 11918                                                                                                                                  Godfather: Part II, The
## 11919                                                                                                                                                  Amadeus
## 11920                                                                                                                                               Sting, The
## 11921                                                                                                                                          Terminator, The
## 11922                                                                                                                           Day the Earth Stood Still, The
## 11923                                                                                                                                             Shining, The
## 11924                                                                                                                                              Stand by Me
## 11925                                                                                                                                            Groundhog Day
## 11926                                                                                                                                       Back to the Future
## 11927                                                                                                                                                   Patton
## 11928                                                                                                                                       Young Frankenstein
## 11929                                                                                                                                       This Is Spinal Tap
## 11930                                                                                                                       Indiana Jones and the Last Crusade
## 11931                                                                                                                                              Real Genius
## 11932                                                                                                                                 Star Trek: First Contact
## 11933                                                                                                                                              Sling Blade
## 11934                                                                                                                            Star Trek IV: The Voyage Home
## 11935                                                                                                                                             Benny & Joon
## 11936                                                                                                              Austin Powers: International Man of Mystery
## 11937                                                                                                                                Men in Black (a.k.a. MIB)
## 11938                                                                                                                                                  Contact
## 11939                                                                                                                                           Rainmaker, The
## 11940                                                                                                                                                  Titanic
## 11941                                                                                                                                               Armageddon
## 11942                                                                                                                                                Labyrinth
## 11943                                                                                                                                              Poltergeist
## 11944                                                                                                                                                 Gremlins
## 11945                                                                                                                                             Goonies, The
## 11946                                                                                                                               Back to the Future Part II
## 11947                                                                                                                              Back to the Future Part III
## 11948                                                                                                                     Indiana Jones and the Temple of Doom
## 11949                                                                                                                                            Weird Science
## 11950                                                                                                                                   NeverEnding Story, The
## 11951                                                                                                                                                    Blade
## 11952                                                                                                                                              Beetlejuice
## 11953                                                                                                                                                     Rope
## 11954                                                                                                                                                 Rounders
## 11955                                                                                                                                           Producers, The
## 11956                                                                                                                                          My Cousin Vinny
## 11957                                                                                                                           2010: The Year We Make Contact
## 11958                                                                                                                                            Bug's Life, A
## 11959                                                                                                                                                   Fletch
## 11960                                                                                               Christmas Vacation (National Lampoon's Christmas Vacation)
## 11961                                                                                                                                          You've Got Mail
## 11962                                                                                                                                                 Fly, The
## 11963                                                                                                                                             Office Space
## 11964                                                                                                                                              Matrix, The
## 11965                                                                                                                                                 eXistenZ
## 11966                                                                                                                                Run Lola Run (Lola rennt)
## 11967                                                                                                                                           Arlington Road
## 11968                                                                                                                                 Blair Witch Project, The
## 11969                                                                                                                                                      Big
## 11970                                                                                                                                           Stir of Echoes
## 11971                                                                                                                                             Total Recall
## 11972                                                                                                                                               Fight Club
## 11973                                                                                                                                         Live and Let Die
## 11974                                                                                                                                           American Movie
## 11975                                                                                                                                             Falling Down
## 11976                                                                                                                                               Spaceballs
## 11977                                                                                                                                                 Scrooged
## 11978                                                                                                                                          Green Mile, The
## 11979                                                                                                                                         Scent of a Woman
## 11980                                                                                                                                          Erin Brockovich
## 11981                                                                                                                                                Frequency
## 11982                                                                                                                                          Blazing Saddles
## 11983                                                                                                                                                    X-Men
## 11984                                                                                                                                         Meet the Parents
## 11985                                                                                                                                        Time Machine, The
## 11986                                                                                                                                       Enemy at the Gates
## 11987                                                                                                                                                  Memento
## 11988                                                                                                                                                    Shrek
## 11989                                                                                                                         Bill & Ted's Excellent Adventure
## 11990                                                                                                                          It's a Mad, Mad, Mad, Mad World
## 11991                                                                                                                                             Donnie Darko
## 11992                                                                                                            Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 11993                                                                                                                                              Vanilla Sky
## 11994                                                                                                                               Bill & Ted's Bogus Journey
## 11995                                                                                                       Lord of the Rings: The Fellowship of the Ring, The
## 11996                                                                                                                                               Brainstorm
## 11997                                                                                                                                        Time Machine, The
## 11998                                                                                                                                          Minority Report
## 11999                                                                                                                     Professional, The (Le professionnel)
## 12000                                                                                                                   Lord of the Rings: The Two Towers, The
## 12001                                                                                                                                                 Identity
## 12002                                                                                                                       Terminator 3: Rise of the Machines
## 12003                                                                                                                                             Ginger Snaps
## 12004                                                                                                           Lord of the Rings: The Return of the King, The
## 12005                                                                                                                                     The Butterfly Effect
## 12006                                                                                                                    Eternal Sunshine of the Spotless Mind
## 12007                                                                                                                                                Explorers
## 12008                                                                                                                                Pirates of Silicon Valley
## 12009                                                                                                                                            Before Sunset
## 12010                                                                                                                                                      Saw
## 12011                                                                                                                                           Blade: Trinity
## 12012                                                                                                                                              Jacket, The
## 12013                                                                                                                                                    Crash
## 12014                                                                                                                                            Batman Begins
## 12015                                                                                                                                              Island, The
## 12016                                                                                                                                                   Saw II
## 12017                                                                                                                                           Producers, The
## 12018                                                                                                                                     Hills Have Eyes, The
## 12019                                                                                                                                               To Die For
## 12020                                                                                                                                  Quick and the Dead, The
## 12021                                                                                                                                       Secret Garden, The
## 12022                                                                                                                                                  Sabrina
## 12023                                                                                                                             Mr. Smith Goes to Washington
## 12024                                                                                                                                          Sophie's Choice
## 12025                                                                                                                                             My Left Foot
## 12026                                                                                                                                     Arsenic and Old Lace
## 12027                                                                                                                                      Waiting for Guffman
## 12028                                                                                                                                       Dangerous Liaisons
## 12029                                                                                                                                                Peter Pan
## 12030                                                                                                                                                Elizabeth
## 12031                                                                                                                                    From Russia with Love
## 12032                                                                                                                                          Blazing Saddles
## 12033                                                                                                                                             Best in Show
## 12034                                                                                                       How the Grinch Stole Christmas (a.k.a. The Grinch)
## 12035                                                                                                                                            City Slickers
## 12036                                                                                                                                                   Volver
## 12037                                                                                                                                            Blood Diamond
## 12038                                                                                                                                                 Stardust
## 12039                                                                                                                                                Toy Story
## 12040                                                                                                                                                     Heat
## 12041                                                                                                                                                GoldenEye
## 12042                                                                                                                       Twelve Monkeys (a.k.a. 12 Monkeys)
## 12043                                                                                                                                                     Babe
## 12044                                                                                                                                                 Clueless
## 12045                                                                                                                                     Seven (a.k.a. Se7en)
## 12046                                                                                                                                       Mr. Holland's Opus
## 12047                                                                                                                                      From Dusk Till Dawn
## 12048                                                                                                                                                Screamers
## 12049                                                                                                                                             Broken Arrow
## 12050                                                                                                                                               Braveheart
## 12051                                                                                                                                              Taxi Driver
## 12052                                                                                                                                            Birdcage, The
## 12053                                                                                                                                             Crimson Tide
## 12054                                                                                                                                                Desperado
## 12055                                                                                                                               Die Hard: With a Vengeance
## 12056                                                                                                                                              Judge Dredd
## 12057                                                                                                                                                 Net, The
## 12058                                                                                                                                               Waterworld
## 12059                                                                                                                                                   Clerks
## 12060                                                                                                                          Dumb & Dumber (Dumb and Dumber)
## 12061                                                                                                       Interview with the Vampire: The Vampire Chronicles
## 12062                                                                                                                       Star Wars: Episode IV - A New Hope
## 12063                                                                                                                                     Natural Born Killers
## 12064                                                                                                                                                 Outbreak
## 12065                                                                                                  Léon: The Professional (a.k.a. The Professional) (Léon)
## 12066                                                                                                                                             Pulp Fiction
## 12067                                                                                                                                                 Stargate
## 12068                                                                                                                                Shawshank Redemption, The
## 12069                                                                                                                                   Star Trek: Generations
## 12070                                                                                                                                  While You Were Sleeping
## 12071                                                                                                                               Ace Ventura: Pet Detective
## 12072                                                                                                                                 Clear and Present Danger
## 12073                                                                                                                                                Crow, The
## 12074                                                                                                                                             Forrest Gump
## 12075                                                                                                                                           Lion King, The
## 12076                                                                                                                                                Mask, The
## 12077                                                                                                                                                    Speed
## 12078                                                                                                                                                True Lies
## 12079                                                                                                                                                 Airheads
## 12080                                                                                                                                           Demolition Man
## 12081                                                                                                                                            Fugitive, The
## 12082                                                                                                                                            Jurassic Park
## 12083                                                                                                                                           Mrs. Doubtfire
## 12084                                                                                                                                             Blade Runner
## 12085                                                                                                                          Nightmare Before Christmas, The
## 12086                                                                                                                                               Home Alone
## 12087                                                                                                                                                    Ghost
## 12088                                                                                                                                                  Aladdin
## 12089                                                                                                                               Terminator 2: Judgment Day
## 12090                                                                                                                                       Dances with Wolves
## 12091                                                                                                                                                   Batman
## 12092                                                                                                                                Silence of the Lambs, The
## 12093                                                                                                                                     Beauty and the Beast
## 12094                                                                                                                                             Pretty Woman
## 12095                                                                                                                                                    Fargo
## 12096                                                                                                                                      Mission: Impossible
## 12097                                                                                                          Wallace & Gromit: The Best of Aardman Animation
## 12098                                                                                                                                                Rock, The
## 12099                                                                                                                                                  Twister
## 12100                                                                                                                      Ghost in the Shell (Kôkaku kidôtai)
## 12101                                                                                                                          Wallace & Gromit: A Close Shave
## 12102                                                                                     Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb
## 12103                                                                                                                            Independence Day (a.k.a. ID4)
## 12104                                                                                                                                Crow: City of Angels, The
## 12105                                                                                                                                         Escape from L.A.
## 12106                                                                                                                                        Wizard of Oz, The
## 12107                                                                                                                                    2001: A Space Odyssey
## 12108                                                                                                                                                 Die Hard
## 12109                                                                                                                      Willy Wonka & the Chocolate Factory
## 12110                                                                                                                                     Fish Called Wanda, A
## 12111                                                                                                                             Monty Python's Life of Brian
## 12112                                                                                                                               E.T. the Extra-Terrestrial
## 12113                                                                                                                                     Escape from New York
## 12114                                                                                                                          Monty Python and the Holy Grail
## 12115                                                                                                                     Wallace & Gromit: The Wrong Trousers
## 12116                                                                                                           Star Wars: Episode V - The Empire Strikes Back
## 12117                                                                                                                                      Princess Bride, The
## 12118                                                                                  Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 12119                                                                                                                                                   Brazil
## 12120                                                                                                                                                   Aliens
## 12121                                                                                                                                      Clockwork Orange, A
## 12122                                                                                                                                           Apocalypse Now
## 12123                                                                                                               Star Wars: Episode VI - Return of the Jedi
## 12124                                                                                                                                                    Alien
## 12125                                                                                                                                         Army of Darkness
## 12126                                                                                                                                                      Ran
## 12127                                                                                                                                      Blues Brothers, The
## 12128                                                                                                                                        Full Metal Jacket
## 12129                                                                                                                 Grand Day Out with Wallace and Gromit, A
## 12130                                                                                                                                          Terminator, The
## 12131                                                                                                                                             Shining, The
## 12132                                                                                                                                        Great Escape, The
## 12133                                                                                                                                            Groundhog Day
## 12134                                                                                                                                       Back to the Future
## 12135                                                                                                                                                    Akira
## 12136                                                                                                                                       Young Frankenstein
## 12137                                                                                                                                                 Fantasia
## 12138                                                                                                                       Indiana Jones and the Last Crusade
## 12139                                                                                                                          American Werewolf in London, An
## 12140                                                                                                                                                   Grease
## 12141                                                                                                                                                     Jaws
## 12142                                                                                                                                            Jerry Maguire
## 12143                                                                                                              Austin Powers: International Man of Mystery
## 12144                                                                                                                                       Fifth Element, The
## 12145                                                                                                                                                  Con Air
## 12146                                                                                                                                Men in Black (a.k.a. MIB)
## 12147                                                                                                                                                  Contact
## 12148                                                                                                                                                    Spawn
## 12149                                                                                                                                Hunt for Red October, The
## 12150                                                                                                                                                  Gattaca
## 12151                                                                                                                                        Starship Troopers
## 12152                                                                                                                                         Truman Show, The
## 12153                                                                                                                                        Good Will Hunting
## 12154                                                                                                                                                  Titanic
## 12155                                                                                                                                        Big Lebowski, The
## 12156                                                                                                                                      Blues Brothers 2000
## 12157                                                                                                                                                   Sphere
## 12158                                                                                                                                       As Good as It Gets
## 12159                                                                                                                                               Armageddon
## 12160                                                                                                                             There's Something About Mary
## 12161                                                                                                                                                 Rain Man
## 12162                                                                                                                                                Labyrinth
## 12163                                                                                                                                      Breakfast Club, The
## 12164                                                                                                                                            Lethal Weapon
## 12165                                                                                                                                          Lethal Weapon 2
## 12166                                                                                                                                             Goonies, The
## 12167                                                                                                                               Back to the Future Part II
## 12168                                                                                                                              Back to the Future Part III
## 12169                                                                                                                                                     Dune
## 12170                                                                                                                                 Honey, I Shrunk the Kids
## 12171                                                                                                                                      Little Mermaid, The
## 12172                                                                                                                                                     Tron
## 12173                                                                                                                     Indiana Jones and the Temple of Doom
## 12174                                                                                                                                      Secret of NIMH, The
## 12175                                                                                                                                        Dark Crystal, The
## 12176                                                                                                                                                    Blade
## 12177                                                                                                                                              Beetlejuice
## 12178                                                                                                                                       Six-String Samurai
## 12179                                                                                                                                      Edward Scissorhands
## 12180                                                                                                                                            Pleasantville
## 12181                                                                                                                                            Bug's Life, A
## 12182                                                                                                                                                 Rushmore
## 12183                                                                                                                                          Howard the Duck
## 12184                                                                                                                                             Office Space
## 12185                                                                                                                                              Logan's Run
## 12186                                                                                                                                       Planet of the Apes
## 12187                                                                                                                                         Cruel Intentions
## 12188                                                                                                                        Lock, Stock & Two Smoking Barrels
## 12189                                                                                                                                              Matrix, The
## 12190                                                                                                                                                 Election
## 12191                                                                                                                                                 eXistenZ
## 12192                                                                                                                Star Wars: Episode I - The Phantom Menace
## 12193                                                                                                                                                 Superman
## 12194                                                                                                                                              Superman II
## 12195                                                                                                                                             Notting Hill
## 12196                                                                                                                    Austin Powers: The Spy Who Shagged Me
## 12197                                                                                                                     South Park: Bigger, Longer and Uncut
## 12198                                                                                                                                             American Pie
## 12199                                                                                                                                       Muppets From Space
## 12200                                                                                                                                 Blair Witch Project, The
## 12201                                                                                                                      Ghostbusters (a.k.a. Ghost Busters)
## 12202                                                                                                                                         Sixth Sense, The
## 12203                                                                                                Monty Python's And Now for Something Completely Different
## 12204                                                                                                                                                      Big
## 12205                                                                                                                                        Universal Soldier
## 12206                                                                                                                                          American Beauty
## 12207                                                                                                                                             Total Recall
## 12208                                                                                                                                 Ferris Bueller's Day Off
## 12209                                                                                                                                               Fight Club
## 12210                                                                                                                                             Time Bandits
## 12211                                                                                                                                                  RoboCop
## 12212                                                                                                                                                RoboCop 2
## 12213                                                                                                                                 Who Framed Roger Rabbit?
## 12214                                                                                                                        Princess Mononoke (Mononoke-hime)
## 12215                                                                                                                                               Spaceballs
## 12216                                                                                                                                                    Dogma
## 12217                                                                                              Adventures of Buckaroo Banzai Across the 8th Dimension, The
## 12218                                                                                                                                            Sleepy Hollow
## 12219                                                                                                                                              Toy Story 2
## 12220                                                                                                                                          Green Mile, The
## 12221                                                                                                                                   Cider House Rules, The
## 12222                                                                                                                                             Galaxy Quest
## 12223                                                                                                                                                Stalag 17
## 12224                                                                                                                                    Boys from Brazil, The
## 12225                                                                                                                                 Buffy the Vampire Slayer
## 12226                                                                                                                                     Boondock Saints, The
## 12227                                                                                                                                        Muppet Movie, The
## 12228                                                                                                                                  Great Muppet Caper, The
## 12229                                                                                                                              Muppets Take Manhattan, The
## 12230                                                                                                                                          Erin Brockovich
## 12231                                                                                                                                          Thelma & Louise
## 12232                                                                                                                                             Animal House
## 12233                                                                                                                                        Creature Comforts
## 12234                                                                                                                             Teenage Mutant Ninja Turtles
## 12235                                                                                                  Teenage Mutant Ninja Turtles II: The Secret of the Ooze
## 12236                                                                                                                       Close Encounters of the Third Kind
## 12237                                                                                                                                                 Predator
## 12238                                                                                                                                                Gladiator
## 12239                                                                                                                                   Mission: Impossible II
## 12240                                                                                                                                          Blazing Saddles
## 12241                                                                                                                                                  Mad Max
## 12242                                                                                                                            Road Warrior, The (Mad Max 2)
## 12243                                                                                                                               Mad Max Beyond Thunderdome
## 12244                                                                                                                                              Chicken Run
## 12245                                                                                                                                             Patriot, The
## 12246                                                                                                                                                    X-Men
## 12247                                                                                                                                              Bring It On
## 12248                                                                                                                                            Almost Famous
## 12249                                                                                                                                         Charlie's Angels
## 12250                                                                                                                                              Unbreakable
## 12251                                                                                                         Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 12252                                                                                                                                                   Snatch
## 12253                                                                                                                               O Brother, Where Art Thou?
## 12254                                                                                                                     Don't Tell Mom the Babysitter's Dead
## 12255                                                                                                                                              Cherry 2000
## 12256                                                                                                                                    Bridget Jones's Diary
## 12257                                                                                                                                       Mummy Returns, The
## 12258                                                                                                                                                    Shrek
## 12259                                                                                                                        Final Fantasy: The Spirits Within
## 12260                                                                                                                                           Legally Blonde
## 12261                                                                                                                      Adventures of Baron Munchausen, The
## 12262                                                                                                                                  Dirty Rotten Scoundrels
## 12263                                                                                                                           Return of the Living Dead, The
## 12264                                                                                                                                           Monsters, Inc.
## 12265                                                                  Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 12266                                                                                                                                           Ocean's Eleven
## 12267                                                                                                                                    Royal Tenenbaums, The
## 12268                                                                                                       Lord of the Rings: The Fellowship of the Ring, The
## 12269                                                                                                                                        Time Machine, The
## 12270                                                                                                                                                  Ice Age
## 12271                                                                                                                                                 Blade II
## 12272                                                                                                                                               Spider-Man
## 12273                                                                                                             Star Wars: Episode II - Attack of the Clones
## 12274                                                                                                                                          Minority Report
## 12275                                                                                                                                                    Signs
## 12276                                                                                                                                               Rollerball
## 12277                                                                                                            Spirited Away (Sen to Chihiro no kamikakushi)
## 12278                                                                                                                                             Strange Brew
## 12279                                                                                                                                    Bowling for Columbine
## 12280                                                                                                                     Professional, The (Le professionnel)
## 12281                                                                                                                  Harry Potter and the Chamber of Secrets
## 12282                                                                                                                                              Equilibrium
## 12283                                                                                                                                        Last Unicorn, The
## 12284                                                                                                                                                Daredevil
## 12285                                                                                                                                              Phone Booth
## 12286                                                                                                                                    Andromeda Strain, The
## 12287                                                                                                                                           Fahrenheit 451
## 12288                                                                                                                                                 Wiz, The
## 12289                                                                                                                                         X2: X-Men United
## 12290                                                                                                       Laputa: Castle in the Sky (Tenkû no shiro Rapyuta)
## 12291                                                                                                                                     Matrix Reloaded, The
## 12292                                                                                                                                             Finding Nemo
## 12293                                                                                                                       Terminator 3: Rise of the Machines
## 12294                                                                                                   Pirates of the Caribbean: The Curse of the Black Pearl
## 12295                                                                                                      League of Extraordinary Gentlemen, The (a.k.a. LXG)
## 12296                                                                                                                                                 THX 1138
## 12297                                                                                                                                        Pink Panther, The
## 12298                                                                                                                                             Bubba Ho-tep
## 12299                                                                                                                       Monty Python's The Meaning of Life
## 12300                                                                                                                                                      PCU
## 12301                                                                                                                                        Kill Bill: Vol. 1
## 12302                                                                                                                                  Matrix Revolutions, The
## 12303                                                                                            Nausicaä of the Valley of the Wind (Kaze no tani no Naushika)
## 12304                                                                                                                                        Last Samurai, The
## 12305                                                                                                                                                 Big Fish
## 12306                                                                                                                                                 Paycheck
## 12307                                                                                                                                       Boy and His Dog, A
## 12308                                                                                                                                         Dawn of the Dead
## 12309                                                                                                                                                  Hellboy
## 12310                                                                                                                                         Dawn of the Dead
## 12311                                                                                                                                        Kill Bill: Vol. 2
## 12312                                                                                                                              Babylon 5: In the Beginning
## 12313                                                                                                                                                Bedazzled
## 12314                                                                                                                                Babylon 5: A Call to Arms
## 12315                                                                                                                            Babylon 5: The River of Souls
## 12316                                                                                                                                    Babylon 5: Thirdspace
## 12317                                                                                                                                         Children of Dune
## 12318                                                                                                                                                     Dune
## 12319                                                                                                                       Jin Roh: The Wolf Brigade (Jin-Rô)
## 12320                                                                                                                 Harry Potter and the Prisoner of Azkaban
## 12321                                                                                                                Kaena: The Prophecy (Kaena: La prophétie)
## 12322                                                                                                                                          Fahrenheit 9/11
## 12323                                                                                                                                             Spider-Man 2
## 12324                                                                                                                                                 I, Robot
## 12325                                                                                                                                    Bourne Supremacy, The
## 12326                                                                                                                                        Shaun of the Dead
## 12327                                                                                                                                                      Ray
## 12328                                                                                                                                         Incredibles, The
## 12329                                                                                                                                 Twilight Zone: The Movie
## 12330                                                                                                                                          Nuns on the Run
## 12331                                                                                                                                        Bring It On Again
## 12332                                                                                                                                               Layer Cake
## 12333                                                                                                                                                  Wizards
## 12334                                                                                                                                                  Elektra
## 12335                                                                                                              Howl's Moving Castle (Hauru no ugoku shiro)
## 12336                                                                                                                                 Kung Fu Hustle (Gong fu)
## 12337                                                                                                                                                 Sin City
## 12338                                                                                                             Star Wars: Episode III - Revenge of the Sith
## 12339                                                                                                                                            Batman Begins
## 12340                                                                                                                                              Island, The
## 12341                                                                                                                                                 Serenity
## 12342                                                                                                     Family Guy Presents Stewie Griffin: The Untold Story
## 12343                                                                                                                                             Corpse Bride
## 12344                                                                                                                                               MirrorMask
## 12345                                                                                                         Wallace & Gromit in The Curse of the Were-Rabbit
## 12346                                                                                                                                             Descent, The
## 12347                                                                                                                                            Walk the Line
## 12348                                                                                                                                           V for Vendetta
## 12349                                                                                                                                    X-Men: The Last Stand
## 12350                                                                                                               Pirates of the Caribbean: Dead Man's Chest
## 12351                                                                                                                                              Half Nelson
## 12352                                                                                                                                                 Accepted
## 12353                                                                                                                                                    Sicko
## 12354                                                                                                                                                  Jumanji
## 12355                                                                                                                                                GoldenEye
## 12356                                                                                                                                                   Casino
## 12357                                                                                                                       Twelve Monkeys (a.k.a. 12 Monkeys)
## 12358                                                                                                                                                     Babe
## 12359                                                                                                                                                 Clueless
## 12360                                                                                                                                     Seven (a.k.a. Se7en)
## 12361                                                                                                                                      Usual Suspects, The
## 12362                                                                                                                                               Braveheart
## 12363                                                                                                                                              Taxi Driver
## 12364                                                                                                                                            Birdcage, The
## 12365                                                                                                                                                Apollo 13
## 12366                                                                                                                                          Johnny Mnemonic
## 12367                                                                                                                                                 Net, The
## 12368                                                                                                                                                Showgirls
## 12369                                                                                                                                                   Clerks
## 12370                                                                                                       Interview with the Vampire: The Vampire Chronicles
## 12371                                                                                                                       Star Wars: Episode IV - A New Hope
## 12372                                                                                                                                             Pulp Fiction
## 12373                                                                                                                                                 Stargate
## 12374                                                                                                                                Shawshank Redemption, The
## 12375                                                                                                                                   Star Trek: Generations
## 12376                                                                                                        Adventures of Priscilla, Queen of the Desert, The
## 12377                                                                                                                                 Clear and Present Danger
## 12378                                                                                                                                             Forrest Gump
## 12379                                                                                                                                           Lion King, The
## 12380                                                                                                                                                    Speed
## 12381                                                                                                                                            Jurassic Park
## 12382                                                                                                                                           Mrs. Doubtfire
## 12383                                                                                                                                             Philadelphia
## 12384                                                                                                                                                   Sliver
## 12385                                                                                                                                                  Aladdin
## 12386                                                                                                                               Terminator 2: Judgment Day
## 12387                                                                                                                                Silence of the Lambs, The
## 12388                                                                                                                                      Mission: Impossible
## 12389                                                                                                                                                  Twister
## 12390                                                                                                                                            Trainspotting
## 12391                                                                                                                            Independence Day (a.k.a. ID4)
## 12392                                                                                                                                     Nutty Professor, The
## 12393                                                                                                                                           Godfather, The
## 12394                                                                                                                                        Wizard of Oz, The
## 12395                                                                                                                                    2001: A Space Odyssey
## 12396                                                                                                                     William Shakespeare's Romeo + Juliet
## 12397                                                                                                                                           Reservoir Dogs
## 12398                                                                                                                                         Crying Game, The
## 12399                                                                                                                               E.T. the Extra-Terrestrial
## 12400                                                                                                                          Monty Python and the Holy Grail
## 12401                                                                                                           Star Wars: Episode V - The Empire Strikes Back
## 12402                                                                                                                                                   Aliens
## 12403                                                                                                                                      Clockwork Orange, A
## 12404                                                                                                                                           Apocalypse Now
## 12405                                                                                                               Star Wars: Episode VI - Return of the Jedi
## 12406                                                                                                                                               Goodfellas
## 12407                                                                                                                                                    Alien
## 12408                                                                                                                                        Full Metal Jacket
## 12409                                                                                                                                          Terminator, The
## 12410                                                                                                                                            Groundhog Day
## 12411                                                                                                                                       Back to the Future
## 12412                                                                                                                                                   Gandhi
## 12413                                                                                                                                  Alien³ (a.k.a. Alien 3)
## 12414                                                                                                                                                   Carrie
## 12415                                                                                                                                 Star Trek: First Contact
## 12416                                                                                                                            Star Trek: The Motion Picture
## 12417                                                                                                                          Star Trek II: The Wrath of Khan
## 12418                                                                                                                      Star Trek III: The Search for Spock
## 12419                                                                                                                            Star Trek IV: The Voyage Home
## 12420                                                                                                                                                   Scream
## 12421                                                                                                                   Romy and Michele's High School Reunion
## 12422                                                                                                              Austin Powers: International Man of Mystery
## 12423                                                                                                                                       Fifth Element, The
## 12424                                                                                                                                                  Con Air
## 12425                                                                                                                                Men in Black (a.k.a. MIB)
## 12426                                                                                                                                                  Contact
## 12427                                                                                                                                                G.I. Jane
## 12428                                                                                                                                Hunt for Red October, The
## 12429                                                                                                                                                Game, The
## 12430                                                                                                                          I Know What You Did Last Summer
## 12431                                                                                                                                        Starship Troopers
## 12432                                                                                                                                            Sliding Doors
## 12433                                                                                                                                         Truman Show, The
## 12434                                                                                                                                      Alien: Resurrection
## 12435                                                                                                                                        Good Will Hunting
## 12436                                                                                                                                                 Scream 2
## 12437                                                                                                                                                  Titanic
## 12438                                                                                                                                      Tomorrow Never Dies
## 12439                                                                                                                                        Big Lebowski, The
## 12440                                                                                                                                              Wag the Dog
## 12441                                                                                                                                              Wild Things
## 12442                                                                                                                                              Deep Impact
## 12443                                                                                                                                               Armageddon
## 12444                                                                                                                             There's Something About Mary
## 12445                                                                                                                                      Breakfast Club, The
## 12446                                                                                                                                            Exorcist, The
## 12447                                                                                                                               Back to the Future Part II
## 12448                                                                                                                              Back to the Future Part III
## 12449                                                                                                                                      Saving Private Ryan
## 12450                                                                                Halloween H20: 20 Years Later (Halloween 7: The Revenge of Laurie Strode)
## 12451                                                                                                                                              Beetlejuice
## 12452                                                                                                                                                 Rounders
## 12453                                                                                                                                     What Dreams May Come
## 12454                                                                                                                                       American History X
## 12455                                                                                                                                               Siege, The
## 12456                                                                                                                                                Elizabeth
## 12457                                                                                                                                       Enemy of the State
## 12458                                                                                                                                  Star Trek: Insurrection
## 12459                                                                                                                                     Prince of Egypt, The
## 12460                                                                                                                                         Cruel Intentions
## 12461                                                                                                                        Lock, Stock & Two Smoking Barrels
## 12462                                                                                                                                              Matrix, The
## 12463                                                                                                                                               Mummy, The
## 12464                                                                                                                Star Wars: Episode I - The Phantom Menace
## 12465                                                                                                                           Rocky Horror Picture Show, The
## 12466                                                                                                                    Austin Powers: The Spy Who Shagged Me
## 12467                                                                                                                     South Park: Bigger, Longer and Uncut
## 12468                                                                                                                                             American Pie
## 12469                                                                                                                                 Blair Witch Project, The
## 12470                                                                                                                                          American Beauty
## 12471                                                                                                                                           Boys Don't Cry
## 12472                                                                                                                                             Total Recall
## 12473                                                                                                                                               Goldfinger
## 12474                                                                                                                                               Fight Club
## 12475                                                                                                                                 Who Framed Roger Rabbit?
## 12476                                                                                                                                    House on Haunted Hill
## 12477                                                                                                                                                    Dogma
## 12478                                                                                                                                                    42 Up
## 12479                                                                                                                                 World Is Not Enough, The
## 12480                                                                                                                                          Green Mile, The
## 12481                                                                                                                                            Patriot Games
## 12482                                                                                                                                                 Scream 3
## 12483                                                                                                                                              Boiler Room
## 12484                                                                                                                                                      JFK
## 12485                                                                                                                                          Thelma & Louise
## 12486                                                                                                                                                  Network
## 12487                                                                                                                                     Virgin Suicides, The
## 12488                                                                                                                                                Gladiator
## 12489                                                                                                                                                Road Trip
## 12490                                                                                                                                   Mission: Impossible II
## 12491                                                                                                                                             Patriot, The
## 12492                                                                                                                                       Perfect Storm, The
## 12493                                                                                                                                              Scary Movie
## 12494                                                                                                                                                    X-Men
## 12495                                                                                                                                            Almost Famous
## 12496                                                                                                                                 Urban Legends: Final Cut
## 12497                                                                                                                                      Requiem for a Dream
## 12498                                                                                                                                             Billy Elliot
## 12499                                                                                                                                         Charlie's Angels
## 12500                                                                                                                                             Little Nicky
## 12501                                                                                                                                             6th Day, The
## 12502                                                                                                                                              Unbreakable
## 12503                                                                                                         Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 12504                                                                                                                                              Wall Street
## 12505                                                                                                                                                   Snatch
## 12506                                                                                                                                    Dude, Where's My Car?
## 12507                                                                                                                                          What Women Want
## 12508                                                                                                                                                Cast Away
## 12509                                                                                                                                        Miss Congeniality
## 12510                                                                                                                                           Lost Boys, The
## 12511                                                                                                                                                  Memento
## 12512                                                                                                                                                     Blow
## 12513                                                                                                                                       Mummy Returns, The
## 12514                                                                                                                                                    Shrek
## 12515                                                                                                                                             Moulin Rouge
## 12516                                                                                                                                  Lara Croft: Tomb Raider
## 12517                                                                                                                                Fast and the Furious, The
## 12518                                                                                                                             A.I. Artificial Intelligence
## 12519                                                                                                                                            Scary Movie 2
## 12520                                                                                                                        Final Fantasy: The Spirits Within
## 12521                                                                                                                                              Ghost World
## 12522                                                                                                                                       Planet of the Apes
## 12523                                                                                                                                           American Pie 2
## 12524                                                                                                                                         Jeepers Creepers
## 12525                                                                                                                                             Donnie Darko
## 12526                                                                  Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 12527                                                                                                            Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 12528                                                                                                                                   Not Another Teen Movie
## 12529                                                                                                       Lord of the Rings: The Fellowship of the Ring, The
## 12530                                                                                                                                        Beautiful Mind, A
## 12531                                                                                                                                          Black Hawk Down
## 12532                                                                                                                                            Resident Evil
## 12533                                                                                                             Star Wars: Episode II - Attack of the Clones
## 12534                                                                                                                                     Bourne Identity, The
## 12535                                                                                                                                          Minority Report
## 12536                                                                                                                                            Reign of Fire
## 12537                                                                                                                                                    Signs
## 12538                                                                                                                                    Bowling for Columbine
## 12539                                                                                                                                     Saturday Night Fever
## 12540                                                                                                                                               Ghost Ship
## 12541                                                                                                                                          Die Another Day
## 12542                                                                                                                   Lord of the Rings: The Two Towers, The
## 12543                                                                                                                                      Catch Me If You Can
## 12544                                                                                                                                               Hours, The
## 12545                                                                                                                             City of God (Cidade de Deus)
## 12546                                                                                                                                      Final Destination 2
## 12547                                                                                                                                     Matrix Reloaded, The
## 12548                                                                                                                                             Finding Nemo
## 12549                                                                                                                                            28 Days Later
## 12550                                                                                                                       Terminator 3: Rise of the Machines
## 12551                                                                                                   Pirates of the Caribbean: The Curse of the Black Pearl
## 12552                                                                                                                                      Dirty Pretty Things
## 12553                                                                                                               Lara Croft Tomb Raider: The Cradle of Life
## 12554                                                                                                                                                Beethoven
## 12555                                                                                                                                          Boyz N the Hood
## 12556                                                                                                                                        Kill Bill: Vol. 1
## 12557                                                                                                                                            Scary Movie 3
## 12558                                                                                                                                  Matrix Revolutions, The
## 12559                                                                                                                                                 WarGames
## 12560                                                                                                           Lord of the Rings: The Return of the King, The
## 12561                                                                                                                                     The Butterfly Effect
## 12562                                                                                                                                         Good bye, Lenin!
## 12563                                                                                                                                        Kill Bill: Vol. 2
## 12564                                                                                                                                                     Troy
## 12565                                                                                                                                                    28 Up
## 12566                                                                                                                                  Day After Tomorrow, The
## 12567                                                                                                                 Harry Potter and the Prisoner of Azkaban
## 12568                                                                                                                                            Super Size Me
## 12569                                                                                                                                            Notebook, The
## 12570                                                                                                                                          Fahrenheit 9/11
## 12571                                                                                                                                                 I, Robot
## 12572                                                                                                                                    Bourne Supremacy, The
## 12573                                                                                                                                Resident Evil: Apocalypse
## 12574                                                                                                                                        Shaun of the Dead
## 12575                                                                                                                                              Grudge, The
## 12576                                                                                                                                        National Treasure
## 12577                                                                                                                                     Bourne Identity, The
## 12578                                                                                                                                                    35 Up
## 12579                                                                                                                                               Layer Cake
## 12580                                                                                                                                                    Crash
## 12581                                                                                                             Star Wars: Episode III - Revenge of the Sith
## 12582                                                                                                                                            Batman Begins
## 12583                                                                                                                                        War of the Worlds
## 12584                                                                                                                                              Lord of War
## 12585                                                                                                                                        Angels in America
## 12586                                                                                                                                       Brokeback Mountain
## 12587                                                                                                                      Harry Potter and the Goblet of Fire
## 12588                                                                                                                                      Final Destination 3
## 12589                                                                                                                                           V for Vendetta
## 12590                                                                                                             Lives of Others, The (Das leben der Anderen)
## 12591                                                                                     Fast and the Furious: Tokyo Drift, The (Fast and the Furious 3, The)
## 12592                                                                                                                                                    Babel
## 12593                                                                                                                                          Children of Men
## 12594                                                                                                                                            Casino Royale
## 12595                                                                                                                                                    49 Up
## 12596                                                                                                                                                Seven Up!
## 12597                                                                                                                                             7 Plus Seven
## 12598                                                                                                                                                      300
## 12599                                                                                                                                                  Shooter
## 12600                                                                                                                                                    21 Up
## 12601                                                                                                                                          This Is England
## 12602                                                                                                                Harry Potter and the Order of the Phoenix
## 12603                                                                                                                                      Simpsons Movie, The
## 12604                                                                                                                                    Bourne Ultimatum, The
## 12605                                                                                                                                              I Am Legend
## 12606                                                                                                                                         Dark Knight, The
## 12607                                                                                                                                       Revolutionary Road
## 12608                                                                                                                                                Star Trek
## 12609                                                                                                                                     (500) Days of Summer
## 12610                                                                                                                               Huhwihaji Anha (No Regret)
## 12611                                                                                                                                                   Avatar
## 12612                                                                                                                                                Inception
## 12613                                                                                                             Harry Potter and the Deathly Hallows: Part 1
## 12614                                                                                                             Harry Potter and the Deathly Hallows: Part 2
## 12615                                                                                                                                                    Drive
## 12616                                                                                                                                                    56 Up
## 12617                                                                                                                                                Toy Story
## 12618                                                                                                                                                  Jumanji
## 12619                                                                                                                                                  Sabrina
## 12620                                                                                                                                                Apollo 13
## 12621                                                                                                                       Star Wars: Episode IV - A New Hope
## 12622                                                                                                                               Ace Ventura: Pet Detective
## 12623                                                                                                                                             Forrest Gump
## 12624                                                                                                                                                Mask, The
## 12625                                                                                              Englishman Who Went Up a Hill But Came Down a Mountain, The
## 12626                                                                                                                                            Jurassic Park
## 12627                                                                                                                                                RoboCop 3
## 12628                                                                                                                                                    Ghost
## 12629                                                                                                                                                  Aladdin
## 12630                                                                                                                                                   Batman
## 12631                                                                                                                                      Mission: Impossible
## 12632                                                                                                                                                  Twister
## 12633                                                                                                                                            Trainspotting
## 12634                                                                                                                            Independence Day (a.k.a. ID4)
## 12635                                                                                                                                    2001: A Space Odyssey
## 12636                                                                                                                               E.T. the Extra-Terrestrial
## 12637                                                                                                                                                  Top Gun
## 12638                                                                                                           Star Wars: Episode V - The Empire Strikes Back
## 12639                                                                                                               Star Wars: Episode VI - Return of the Jedi
## 12640                                                                                                                       Indiana Jones and the Last Crusade
## 12641                                                                                                              Austin Powers: International Man of Mystery
## 12642                                                                                                                                Men in Black (a.k.a. MIB)
## 12643                                                                                                                                                  Titanic
## 12644                                                                                                                                               Armageddon
## 12645                                                                                                                                  Poseidon Adventure, The
## 12646                                                                                                                                  Gods Must Be Crazy, The
## 12647                                                                                                                                Karate Kid, Part III, The
## 12648                                                                                                                                              Matrix, The
## 12649                                                                                                                Star Wars: Episode I - The Phantom Menace
## 12650                                                                                                                                                 Superman
## 12651                                                                                                                                              Superman II
## 12652                                                                                                                    Austin Powers: The Spy Who Shagged Me
## 12653                                                                                                                                 Ferris Bueller's Day Off
## 12654                                                                                                                                                Bamba, La
## 12655                                                                                                                                                Gladiator
## 12656                                                                                                                                               Predator 2
## 12657                                                                                                                                                  Mad Max
## 12658                                                                                                                                                    X-Men
## 12659                                                                                                                  Godzilla 2000 (Gojira ni-sen mireniamu)
## 12660                                                                                                                                                    Shrek
## 12661                                                                                                                                           Monsters, Inc.
## 12662                                                                                                       Lord of the Rings: The Fellowship of the Ring, The
## 12663                                                                                                                                               Spider-Man
## 12664                                                                                                                   Lord of the Rings: The Two Towers, The
## 12665                                                                                                   Pirates of the Caribbean: The Curse of the Black Pearl
## 12666                                                                                                           Lord of the Rings: The Return of the King, The
## 12667                                                                                                                                                   Robots
## 12668                                                                                                                               Good Night, and Good Luck.
## 12669                                                                                                                                    Underworld: Evolution
## 12670                                                                                                                                              Silent Hill
## 12671                                                                                                                                            Blood Diamond
## 12672                                                                                                                                                  Jumanji
## 12673                                                                                                                                                     Heat
## 12674                                                                                                                                                  Sabrina
## 12675                                                                                                                                                GoldenEye
## 12676                                                                                                                                                   Casino
## 12677                                                                                                                                              Money Train
## 12678                                                                                                                                               Get Shorty
## 12679                                                                                                                                        Leaving Las Vegas
## 12680                                                                                                                       Twelve Monkeys (a.k.a. 12 Monkeys)
## 12681                                                                                                                                               To Die For
## 12682                                                                                                                            How to Make an American Quilt
## 12683                                                                                                                                      Usual Suspects, The
## 12684                                                                                                                                          Misérables, Les
## 12685                                                                                                                                             Nick of Time
## 12686                                                                                                                                      Vampire in Brooklyn
## 12687                                                                                                                                             Broken Arrow
## 12688                                                                                                                                                City Hall
## 12689                                                                                                                           Bridges of Madison County, The
## 12690                                                                                                                      Rumble in the Bronx (Hont faan kui)
## 12691                                                                                                                                            Birdcage, The
## 12692                                                                                                                                         Blue in the Face
## 12693                                                                                                                                      Scarlet Letter, The
## 12694                                                                                                                                                    Fargo
## 12695                                                                                                                                              Heavy Metal
## 12696                                                                                                                                          Aristocats, The
## 12697                                                                                                                                James and the Giant Peach
## 12698                                                                                                                  Mystery Science Theater 3000: The Movie
## 12699                                                                                                                          Wallace & Gromit: A Close Shave
## 12700                                                                                                                                               Striptease
## 12701                                                                                                                                            Trainspotting
## 12702                                                                                                                            Independence Day (a.k.a. ID4)
## 12703                                                                                                                             Hunchback of Notre Dame, The
## 12704                                                                                                                                                Lone Star
## 12705                                                                                                                                               Phenomenon
## 12706                                                                                                                                          Time to Kill, A
## 12707                                                                                                                                         Bonnie and Clyde
## 12708                                                                                                                                Streetcar Named Desire, A
## 12709                                                                                                                                              Taxi Driver
## 12710                                                                                                                        Beauty of the Day (Belle de jour)
## 12711                                                                                                                                                     Safe
## 12712                                                                                                                Three Colors: Red (Trois couleurs: Rouge)
## 12713                                                                                                                 Three Colors: White (Trzy kolory: Bialy)
## 12714                                                                                                                                Shawshank Redemption, The
## 12715                                                                                                               In the Realm of the Senses (Ai no corrida)
## 12716                                                                                                                                               Piano, The
## 12717                                                                                                                 Thirty-Two Short Films About Glenn Gould
## 12718                                                                                                                Song of the Little Road (Pather Panchali)
## 12719                                                                                     Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb
## 12720                                                                                                                           Vive L'Amour (Ai qing wan sui)
## 12721                                                                                                                                      Singin' in the Rain
## 12722                                                                                                                                                  Vertigo
## 12723                                                                                                                                              Rear Window
## 12724                                                                                                                                         Some Like It Hot
## 12725                                                                                                                   Sunset Blvd. (a.k.a. Sunset Boulevard)
## 12726                                                                                                                                    2001: A Space Odyssey
## 12727                                                                                                                  Manon of the Spring (Manon des sources)
## 12728                                                                                                                          Monty Python and the Holy Grail
## 12729                                                                                                                 Cook the Thief His Wife & Her Lover, The
## 12730                                                                                              Double Life of Veronique, The (Double Vie de Véronique, La)
## 12731                                                                                                                                                   Brazil
## 12732                                                                                       Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il)
## 12733                                                                                                                                      Clockwork Orange, A
## 12734                                                                                                                                               Goodfellas
## 12735                                                                                                                                                   Psycho
## 12736                                                                                                                                        Full Metal Jacket
## 12737                                                                                                                                               Annie Hall
## 12738                                                                                                                                                  Stalker
## 12739                                                                                                                                               8 1/2 (8½)
## 12740                                                                                                                                             Shining, The
## 12741                                                                                                                       Unbearable Lightness of Being, The
## 12742                                                                                                                                     Pink Floyd: The Wall
## 12743                                                                                                                          Dracula (Bram Stoker's Dracula)
## 12744                                                                                                                                     Sweet Hereafter, The
## 12745                                                                                                                                   Picnic at Hanging Rock
## 12746                                                                                                                                                       Pi
## 12747                                                                                                                                               Metropolis
## 12748                                                                                                                Fanny and Alexander (Fanny och Alexander)
## 12749                                                                                                                              Autumn Sonata (Höstsonaten)
## 12750                                                                                                                                          You've Got Mail
## 12751                                                                                                                                             Dead Ringers
## 12752                                                                                                          Eternity and a Day (Mia aoniotita kai mia mera)
## 12753                                                                                                                                           Eyes Wide Shut
## 12754                                                                                                                                             Barry Lyndon
## 12755                                                                                                                                               Fight Club
## 12756                                                                                                                                     Being John Malkovich
## 12757                                                                                                                        Princess Mononoke (Mononoke-hime)
## 12758                                                                                                                All About My Mother (Todo sobre mi madre)
## 12759                                                                                                                                                 Magnolia
## 12760                                                                                                                                    Mirror, The (Zerkalo)
## 12761                                                                                                                                                Gladiator
## 12762                                                                                                                              Vagabond (Sans toit ni loi)
## 12763                                                                                                                                         Blow-Up (Blowup)
## 12764                                                                                                                                           Love and Death
## 12765                                                                                                                                       Dancer in the Dark
## 12766                                                                                                                                   Stranger Than Paradise
## 12767                                                                                                                                      Requiem for a Dream
## 12768                                                                                                                                             Billy Elliot
## 12769                                                                                                                                                   Quills
## 12770                                                                                                         Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 12771                                                                                                                   In the Mood For Love (Fa yeung nin wa)
## 12772                                                                                                                                          Eureka (Yurîka)
## 12773                                                                                                                Himalaya (Himalaya - l'enfance d'un chef)
## 12774                                                                                                                                                    Yi Yi
## 12775                                                                                                                  Cries and Whispers (Viskningar och rop)
## 12776                                                                                                                                                 Suspiria
## 12777                                                                                                                                                    Ariel
## 12778                                                                                                                                             Santa Sangre
## 12779                                                                                                                                         Mulholland Drive
## 12780                                                                                                                                             Donnie Darko
## 12781                                                                                                That Obscure Object of Desire (Cet obscur objet du désir)
## 12782                                                                                                               What Time Is It There? (Ni neibian jidian)
## 12783                                                                                                                                           Don't Look Now
## 12784                                                                                                                      Wild Strawberries (Smultronstället)
## 12785                                                                                                                         Piano Teacher, The (La pianiste)
## 12786                                                                                                                                          Simone (S1m0ne)
## 12787                                                                                                            Spirited Away (Sen to Chihiro no kamikakushi)
## 12788                                                                                                                                           White Oleander
## 12789                                                                                                                            Russian Ark (Russkiy Kovcheg)
## 12790                                                                                                                    My Neighbor Totoro (Tonari no Totoro)
## 12791                                                                                                                                    Sunless (Sans Soleil)
## 12792                                                                                                                              Irreversible (Irréversible)
## 12793                                                                                                                                               Straw Dogs
## 12794                                                                                                                                              Barton Fink
## 12795                                                                                                          Ali: Fear Eats the Soul (Angst essen Seele auf)
## 12796                                                                                           Code Unknown (Code inconnu: Récit incomplet de divers voyages)
## 12797                                                                                                                           Tokyo Story (Tôkyô monogatari)
## 12798                                                                            Discreet Charm of the Bourgeoisie, The (Charme discret de la bourgeoisie, Le)
## 12799                                                                                                                                      Lost in Translation
## 12800                                                                                                                       Monty Python's The Meaning of Life
## 12801                                                                                                                                   Hannah and Her Sisters
## 12802                                                                                                                                           Distant (Uzak)
## 12803                                                                                                                                            Dreamers, The
## 12804                                                                                                                                         Good bye, Lenin!
## 12805                                                                                                                                                  Persona
## 12806                                                                                                                    Eternal Sunshine of the Spotless Mind
## 12807                                                                                                                                    Coffee and Cigarettes
## 12808                                                                                                                                         Kwaidan (Kaidan)
## 12809                                                                                                                           Maborosi (Maboroshi no hikari)
## 12810                                                                                                                                            Genghis Blues
## 12811                                                                                                                       Virgin Spring, The (Jungfrukällan)
## 12812                                                                                                                         Winter Light (Nattvardsgästerna)
## 12813                                                                                                                                             Monterey Pop
## 12814                                                                        Spring, Summer, Fall, Winter... and Spring (Bom yeoreum gaeul gyeoul geurigo bom)
## 12815                                                                                                                               Ugetsu (Ugetsu monogatari)
## 12816                                                                                                                                                Viridiana
## 12817                                                                                                                                                    Dolls
## 12818                                                                                                                                          Black Narcissus
## 12819                                                                                                                 Time of the Wolf, The (Le temps du loup)
## 12820                                                                                                                                                  Samsara
## 12821                                                                                                                                            Notebook, The
## 12822                                                                                                                                            Before Sunset
## 12823                                                                                                                House of Flying Daggers (Shi mian mai fu)
## 12824                                                                                                                           Andrei Rublev (Andrey Rublyov)
## 12825                                                                                                              Swedish Love Story, A (Kärlekshistoria, En)
## 12826                                                                                                                                                 Topo, El
## 12827                                                                                                      Phantom of Liberty, The (Fantôme de la liberté, Le)
## 12828                                                                                                                 Holy Mountain, The (Montaña sagrada, La)
## 12829                                                                                                                   Sacrifice, The (Offret - Sacraficatio)
## 12830                                                                                                              Kiki's Delivery Service (Majo no takkyûbin)
## 12831                                                                                                                          Nobody Knows (Dare mo shiranai)
## 12832                                                                            Bitter Tears of Petra von Kant, The (bitteren Tränen der Petra von Kant, Die)
## 12833                                                                                                                                         Masculin Féminin
## 12834                                                                                                                            Hidden (a.k.a. Cache) (Caché)
## 12835                                                                                                                Green Street Hooligans (a.k.a. Hooligans)
## 12836                                                                                                         Match Factory Girl, The (Tulitikkutehtaan tyttö)
## 12837                                                                                                                                            Tony Takitani
## 12838                                                                                                                                                   Volver
## 12839                                                                                                                                             Chinoise, La
## 12840                                                                                                                Murmur of the Heart (Le souffle au coeur)
## 12841                                                                                                                                         Illusionist, The
## 12842                                                                                                                                            Fountain, The
## 12843                                                                                                          Seventh Continent, The (Der siebente Kontinent)
## 12844                                                                                                                                                 Tristana
## 12845                                                                                                                    Woman on the Beach (Haebyeonui yeoin)
## 12846                                                                                                                                       Paprika (Papurika)
## 12847                                                                                                                                            Paranoid Park
## 12848                                                                                                                                      There Will Be Blood
## 12849                                                                                                                                                    Heima
## 12850                                                                                                                                 Vicky Cristina Barcelona
## 12851                                                                                                           In the City of Sylvia (En la ciudad de Sylvia)
## 12852                                                                                                  I've Loved You So Long (Il y a longtemps que je t'aime)
## 12853                                                                                                                                       Revolutionary Road
## 12854                                                                                                                                                     Nana
## 12855                                                                                                                           Summer Hours (Heure d'été, L')
## 12856                                                                                                                                   Limits of Control, The
## 12857                                                                                                                                     (500) Days of Summer
## 12858                                                                                                                       White Ribbon, The (Das weiße Band)
## 12859                                                                                                                        Still Walking (Aruitemo aruitemo)
## 12860                                                                                                                                                   Avatar
## 12861                                                                                                                                 Prophet, A (Un Prophète)
## 12862                                                                                                                                           Enter the Void
## 12863                                                                                                                                                Inception
## 12864                                                                                                                                      Social Network, The
## 12865                                                                                                 Love Is Colder Than Death (Liebe ist kälter als der Tod)
## 12866                                                                                                                                               Black Swan
## 12867                                                                                                                          Certified Copy (Copie conforme)
## 12868                                                                                                                                                True Grit
## 12869                                                                                                                                                GoldenEye
## 12870                                                                                                                                               Get Shorty
## 12871                                                                                                                                                     Babe
## 12872                                                                                                                                                 Clueless
## 12873                                                                                                                                     Seven (a.k.a. Se7en)
## 12874                                                                                                                                      Usual Suspects, The
## 12875                                                                                                                                               Braveheart
## 12876                                                                                                                                                Apollo 13
## 12877                                                                                                                                           Batman Forever
## 12878                                                                                                                                                    Congo
## 12879                                                                                                                               Die Hard: With a Vengeance
## 12880                                                                                                                                               Waterworld
## 12881                                                                                                                          Dumb & Dumber (Dumb and Dumber)
## 12882                                                                                                       Interview with the Vampire: The Vampire Chronicles
## 12883                                                                                                                                      Legends of the Fall
## 12884                                                                                                                                     Natural Born Killers
## 12885                                                                                                                                                 Outbreak
## 12886                                                                                                                                             Pulp Fiction
## 12887                                                                                                                                                Quiz Show
## 12888                                                                                                                                                 Stargate
## 12889                                                                                                                                Shawshank Redemption, The
## 12890                                                                                                                                   Star Trek: Generations
## 12891                                                                                                                                  While You Were Sleeping
## 12892                                                                                                                               Ace Ventura: Pet Detective
## 12893                                                                                                                                             Forrest Gump
## 12894                                                                                                                                           Lion King, The
## 12895                                                                                                                                                Mask, The
## 12896                                                                                                                                                True Lies
## 12897                                                                                                                                     Addams Family Values
## 12898                                                                                                                                    Beverly Hills Cop III
## 12899                                                                                                                                              Cliffhanger
## 12900                                                                                                                                                Coneheads
## 12901                                                                                                                                                Firm, The
## 12902                                                                                                                                            Fugitive, The
## 12903                                                                                                                                                  Aladdin
## 12904                                                                                                                                       Dances with Wolves
## 12905                                                                                                                                                   Batman
## 12906                                                                                                                                Silence of the Lambs, The
## 12907                                                                                                                                     Beauty and the Beast
## 12908                                                                                                                                                     Heat
## 12909                                                                                                                                               Get Shorty
## 12910                                                                                                                                                 Clueless
## 12911                                                                                                                                      Usual Suspects, The
## 12912                                                                                                                                                   Friday
## 12913                                                                                                                                            Bottle Rocket
## 12914                                                                                                                                            Birdcage, The
## 12915                                                                                                                                                Apollo 13
## 12916                                                                                                                                                  Rob Roy
## 12917                                                                                                                                          Unstrung Heroes
## 12918                                                                                                                                         Don Juan DeMarco
## 12919                                                                                                                                                  Ed Wood
## 12920                                                                                                                                      Legends of the Fall
## 12921                                                                                                                              Madness of King George, The
## 12922                                                                                                                                         Corrina, Corrina
## 12923                                                                                                                                             Forrest Gump
## 12924                                                                                                                       Naked Gun 33 1/3: The Final Insult
## 12925                                                                                                                                                    Speed
## 12926                                                                                                                                       Dazed and Confused
## 12927                                                                                                                                            Jurassic Park
## 12928                                                                                                                                                 Ref, The
## 12929                                                                                                                                               Serial Mom
## 12930                                                                                                                                                    Fargo
## 12931                                                                                                                            Kids in the Hall: Brain Candy
## 12932                                                                                     Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb
## 12933                                                                                                                                            Trainspotting
## 12934                                                                                                                                         Frighteners, The
## 12935                                                                                                                                              Rear Window
## 12936                                                                                                                                       North by Northwest
## 12937                                                                                                                                             Citizen Kane
## 12938                                                                                                                                                 Swingers
## 12939                                                                                                                                                  Sleeper
## 12940                                                                                                                                                  Bananas
## 12941                                                                                                                                      Princess Bride, The
## 12942                                                                                                                                           Apocalypse Now
## 12943                                                                                                               Star Wars: Episode VI - Return of the Jedi
## 12944                                                                                                                                               Annie Hall
## 12945                                                                                                                                    Boot, Das (Boat, The)
## 12946                                                                                                                                          Terminator, The
## 12947                                                                                                                                            Graduate, The
## 12948                                                                                                                                       Better Off Dead...
## 12949                                                                                                                                              Stand by Me
## 12950                                                                                                                                            Groundhog Day
## 12951                                                                                                                                       Back to the Future
## 12952                                                                                                                                           Cool Hand Luke
## 12953                                                                                                                                       Young Frankenstein
## 12954                                                                                                                                       This Is Spinal Tap
## 12955                                                                                                        Nosferatu (Nosferatu, eine Symphonie des Grauens)
## 12956                                                                                                                                              Sling Blade
## 12957                                                                                                                                          Raising Arizona
## 12958                                                                                                                                            Private Parts
## 12959                                                                                                                                      Grosse Pointe Blank
## 12960                                                                                                                                            Event Horizon
## 12961                                                                                                                                              Chasing Amy
## 12962                                                                                                                                                  Gattaca
## 12963                                                                                                                                        Big Lebowski, The
## 12964                                                                                                                                              Wag the Dog
## 12965                                                                                                                                      Wedding Singer, The
## 12966                                                                                                                                            Suicide Kings
## 12967                                                                                                                                               Armageddon
## 12968                                                                                                                                           Small Soldiers
## 12969                                                                                                                             There's Something About Mary
## 12970                                                                                                                                                 Rain Man
## 12971                                                                                                                                            Lethal Weapon
## 12972                                                                                                                                                Jerk, The
## 12973                                                                                                                              Slums of Beverly Hills, The
## 12974                                                                                                                                      Edward Scissorhands
## 12975                                                                                                                                           Producers, The
## 12976                                                                                                                                          My Cousin Vinny
## 12977                                                                                                                      Life Is Beautiful (La Vita è bella)
## 12978                                                                                                                    Waking Ned Devine (a.k.a. Waking Ned)
## 12979                                                                                                                                                   Fletch
## 12980                                                                                                                                                 Rushmore
## 12981                                                                                                                                      Romancing the Stone
## 12982                                                                                                                                             Office Space
## 12983                                                                                                                                              Matrix, The
## 12984                                                                                                                                                 Election
## 12985                                                                                                                     South Park: Bigger, Longer and Uncut
## 12986                                                                                                                      Ghostbusters (a.k.a. Ghost Busters)
## 12987                                                                                                                                                Airplane!
## 12988                                                                                                                              National Lampoon's Vacation
## 12989                                                                                                                                       Christmas Story, A
## 12990                                                                                                                                          American Beauty
## 12991                                                                                                                                      Hard Day's Night, A
## 12992                                                                                                                                 Ferris Bueller's Day Off
## 12993                                                                                                                                     Being John Malkovich
## 12994                                                                                                                                             General, The
## 12995                                                                                                                                               Spaceballs
## 12996                                                                                                                                           Little Big Man
## 12997                                                                                                                                               Dead Again
## 12998                                                                                                                                                 Scrooged
## 12999                                                                                                                                              Toy Story 2
## 13000                                                                                                                                                 Magnolia
## 13001                                                                                                                                 Talented Mr. Ripley, The
## 13002                                                                                                                                                 Papillon
## 13003                                                                                                                             Fast Times at Ridgemont High
## 13004                                                                                                                                         Scent of a Woman
## 13005                                                                                                                                            Wayne's World
## 13006                                                                                                                                                  Singles
## 13007                                                                                                                                          Ninth Gate, The
## 13008                                                                                                                                            Breaking Away
## 13009                                                                                                                                              Bull Durham
## 13010                                                                                                                                        Dog Day Afternoon
## 13011                                                                                                                                        Muppet Movie, The
## 13012                                                                                                                              Muppets Take Manhattan, The
## 13013                                                                                                                                          Erin Brockovich
## 13014                                                                                                                                             Animal House
## 13015                                                                                                                                           Grumpy Old Men
## 13016                                                                                                                                            High Fidelity
## 13017                                                                                                                                               Caddyshack
## 13018                                                                                                                                          Blazing Saddles
## 13019                                                                                                                                                  Serpico
## 13020                                                                                                                                              Chicken Run
## 13021                                                                                                                                             Patriot, The
## 13022                                                                                                                                          What About Bob?
## 13023                                                                                                                                           Love and Death
## 13024                                                                                                          Naked Gun: From the Files of Police Squad!, The
## 13025                                                                                                                  Naked Gun 2 1/2: The Smell of Fear, The
## 13026                                                                                                                                            Almost Famous
## 13027                                                                                                                                             Best in Show
## 13028                                                                                                                                                Tigerland
## 13029                                                                                                                                        Miss Congeniality
## 13030                                                                                                                               O Brother, Where Art Thou?
## 13031                                                                                                                                                  Traffic
## 13032                                                                                                                                  I'm Gonna Git You Sucka
## 13033                                                                                                                                                   Avalon
## 13034                                                                                                                                      Freddy Got Fingered
## 13035                                                                                                                                            City Slickers
## 13036                                                                                                                                            Eight Men Out
## 13037                                                                                                                                                  Tootsie
## 13038                                                                                                                                            Scary Movie 2
## 13039                                                                                                                                                    Twins
## 13040                                                                                                                         Bill & Ted's Excellent Adventure
## 13041                                                                                                                                               Black Robe
## 13042                                                                                                                                           Monsters, Inc.
## 13043                                                                                                                                                Novocaine
## 13044                                                                                                                                           Ocean's Eleven
## 13045                                                                                                                                              Vanilla Sky
## 13046                                                                                                                                    M*A*S*H (a.k.a. MASH)
## 13047                                                                                                                                             Sandlot, The
## 13048                                                                                                                                          Monsoon Wedding
## 13049                                                                                                                                         We Were Soldiers
## 13050                                                                                                                                              About a Boy
## 13051                                                                                                                                          Minority Report
## 13052                                                                                                                                         Ladykillers, The
## 13053                                                                                                                                             Strange Brew
## 13054                                                                                                                                    Bowling for Columbine
## 13055                                                                                                                                         Punch-Drunk Love
## 13056                                                                                                                                               Adaptation
## 13057                                                                                                                                           Bruce Almighty
## 13058                                                                                                                                                  Tremors
## 13059                                                                                                                                           School of Rock
## 13060                                                                                                          Master and Commander: The Far Side of the World
## 13061                                                                                                                                             Quick Change
## 13062                                                                                                                                        Napoleon Dynamite
## 13063                                                                                                                                            Memphis Belle
## 13064                                                                                                                         Dodgeball: A True Underdog Story
## 13065                                                                                                                                             Garden State
## 13066                                                                                                                      Harold and Kumar Go to White Castle
## 13067                                                                                                                                        Shaun of the Dead
## 13068                                                                                                                                  40-Year-Old Virgin, The
## 13069                                                                                                                                                Toy Story
## 13070                                                                                                                                               Braveheart
## 13071                                                                                                                       Star Wars: Episode IV - A New Hope
## 13072                                                                                                                                             Pulp Fiction
## 13073                                                                                                                                             Forrest Gump
## 13074                                                                                                                               Terminator 2: Judgment Day
## 13075                                                                                                                                                 Die Hard
## 13076                                                                                                           Star Wars: Episode V - The Empire Strikes Back
## 13077                                                                                  Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 13078                                                                                                               Star Wars: Episode VI - Return of the Jedi
## 13079                                                                                                                                Hunt for Red October, The
## 13080                                                                                                                                      Saving Private Ryan
## 13081                                                                                                                                          Few Good Men, A
## 13082                                                                                                                                       American History X
## 13083                                                                                                                                              Matrix, The
## 13084                                                                                                                                          American Beauty
## 13085                                                                                                                                             Total Recall
## 13086                                                                                                                                               Fight Club
## 13087                                                                                                                                              Toy Story 2
## 13088                                                                                                                                    Whole Nine Yards, The
## 13089                                                                                                                                                Gladiator
## 13090                                                                                                                                   Mission: Impossible II
## 13091                                                                                                                                            Shanghai Noon
## 13092                                                                                                                                       Gone in 60 Seconds
## 13093                                                                                                                                       Me, Myself & Irene
## 13094                                                                                                                                             Patriot, The
## 13095                                                                                                                                             Men of Honor
## 13096                                                                                                                                              Unbreakable
## 13097                                                                                                                                          Family Man, The
## 13098                                                                                                                                                 Hannibal
## 13099                                                                                                                                       Mummy Returns, The
## 13100                                                                                                                                                    Shrek
## 13101                                                                                                                                             Pearl Harbor
## 13102                                                                                                                                              Rush Hour 2
## 13103                                                                                                                                              Others, The
## 13104                                                                                                                                             Training Day
## 13105                                                                                                                                           Monsters, Inc.
## 13106                                                                  Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 13107                                                                                                                                           Ocean's Eleven
## 13108                                                                                                       Lord of the Rings: The Fellowship of the Ring, The
## 13109                                                                                                                                        Beautiful Mind, A
## 13110                                                                                                                                          Black Hawk Down
## 13111                                                                                                                                     Bourne Identity, The
## 13112                                                                                                                                          Minority Report
## 13113                                                                                                             Men in Black II (a.k.a. MIIB) (a.k.a. MIB 2)
## 13114                                                                                                                              Austin Powers in Goldmember
## 13115                                                                                                                                               Red Dragon
## 13116                                                                                                                   Lord of the Rings: The Two Towers, The
## 13117                                                                                                                                      Catch Me If You Can
## 13118                                                                                                                             City of God (Cidade de Deus)
## 13119                                                                                                                                         Anger Management
## 13120                                                                                                                                     Matrix Reloaded, The
## 13121                                                                                                                                           Bruce Almighty
## 13122                                                                                                                                             Finding Nemo
## 13123                                                                                                                                         Italian Job, The
## 13124                                                                                                   Pirates of the Caribbean: The Curse of the Black Pearl
## 13125                                                                                                                                        Kill Bill: Vol. 1
## 13126                                                                                                           Lord of the Rings: The Return of the King, The
## 13127                                                                                                                                     The Butterfly Effect
## 13128                                                                                                                                           50 First Dates
## 13129                                                                                                                                        Kill Bill: Vol. 2
## 13130                                                                                                                                                     Troy
## 13131                                                                                                                                  Day After Tomorrow, The
## 13132                                                                                                                 Harry Potter and the Prisoner of Azkaban
## 13133                                                                                                                                             White Chicks
## 13134                                                                                                                                                 I, Robot
## 13135                                                                                                                                    Bourne Supremacy, The
## 13136                                                                                                                                         Incredibles, The
## 13137                                                                                                                                        National Treasure
## 13138                                                                                                                                         Meet the Fockers
## 13139                                                                                                                                              Constantine
## 13140                                                                                                                                                 Sin City
## 13141                                                                                                                                        Longest Yard, The
## 13142                                                                                                                                            Batman Begins
## 13143                                                                                                                                         Wedding Crashers
## 13144                                                                                                                                  40-Year-Old Virgin, The
## 13145                                                                                                                                              Lord of War
## 13146                                                                                                                      Harry Potter and the Goblet of Fire
## 13147                                                                                                                                               Inside Man
## 13148                                                                                                                                       Da Vinci Code, The
## 13149                                                                                                                                    X-Men: The Last Stand
## 13150                                                                                                               Pirates of the Caribbean: Dead Man's Chest
## 13151                                                                                                                 Pirates of the Caribbean: At World's End
## 13152                                                                                                                Harry Potter and the Order of the Phoenix
## 13153                                                                                                                                      Simpsons Movie, The
## 13154                                                                                                                                    Bourne Ultimatum, The
## 13155                                                                                                                                              I Am Legend
## 13156                                                                                                                                         Dark Knight, The
## 13157                                                                                                                                                       21
## 13158                                                                                                                                                 Iron Man
## 13159                                                                                                                                                 Valkyrie
## 13160                                                                                                                                                   Ip Man
## 13161                                                                                                                                     Inglourious Basterds
## 13162                                                                                                                                                Star Trek
## 13163                                                                                                                                            Hangover, The
## 13164                                                                                                                   Harry Potter and the Half-Blood Prince
## 13165                                                                                                                                                   Avatar
## 13166                                                                                                                                           Shutter Island
## 13167                                                                                                                                               Green Zone
## 13168                                                                                                                                 How to Train Your Dragon
## 13169                                                                                                                                                      Red
## 13170                                                                               Elite Squad: The Enemy Within (Tropa de Elite 2 - O Inimigo Agora É Outro)
## 13171                                                                                                                                            Avengers, The
## 13172                                                                                                                                         The Hunger Games
## 13173                                                                                                                                   Dark Knight Rises, The
## 13174                                                                                                                         Girl with the Dragon Tattoo, The
## 13175                                                                                                                                             Intouchables
## 13176                                                                                                                    Men in Black III (M.III.B.) (M.I.B.³)
## 13177                                                                                                                                                  Skyfall
## 13178                                                                                                                                         Django Unchained
## 13179                                                                                                                                               Iron Man 3
## 13180                                                                                                                          The Hunger Games: Catching Fire
## 13181                                                                                                                     Hobbit: The Desolation of Smaug, The
## 13182                                                                                                                      Captain America: The Winter Soldier
## 13183                                                                                                                                       The Imitation Game
## 13184                                                                                                                                 The Theory of Everything
## 13185                                                                                                                                                  Jumanji
## 13186                                                                                                                                         Grumpier Old Men
## 13187                                                                                                                              Father of the Bride Part II
## 13188                                                                                                                                                GoldenEye
## 13189                                                                                                                           Ace Ventura: When Nature Calls
## 13190                                                                                                                                               Get Shorty
## 13191                                                                                                                                                Assassins
## 13192                                                                                                                                            Mortal Kombat
## 13193                                                                                                                               Postman, The (Postino, Il)
## 13194                                                                                                                                               Braveheart
## 13195                                                                                                                                           Batman Forever
## 13196                                                                                                                                                   Casper
## 13197                                                                                                                                                    Congo
## 13198                                                                                                                                             Crimson Tide
## 13199                                                                                                                               Die Hard: With a Vengeance
## 13200                                                                                                                                                  Hackers
## 13201                                                                                                                                          Johnny Mnemonic
## 13202                                                                                                                                              Judge Dredd
## 13203                                                                                                                                        Lord of Illusions
## 13204                                                                                                                  Mighty Morphin Power Rangers: The Movie
## 13205                                                                                                                                                 Net, The
## 13206                                                                                                                                              Nine Months
## 13207                                                                                                                                            Prophecy, The
## 13208                                                                                                                                                  Species
## 13209                                                                                                         To Wong Foo, Thanks for Everything! Julie Newmar
## 13210                                                                                                                                               Waterworld
## 13211                                                                                                                                            Billy Madison
## 13212                                                                                                                                                Drop Zone
## 13213                                                                                                                                        Dolores Claiborne
## 13214                                                                                                                          Dumb & Dumber (Dumb and Dumber)
## 13215                                                                                                                                             Exit to Eden
## 13216                                                                                                                                       Heavenly Creatures
## 13217                                                                                                       Interview with the Vampire: The Vampire Chronicles
## 13218                                                                                                                                          Jerky Boys, The
## 13219                                                                                                                                                   Junior
## 13220                                                                                                                                             Little Women
## 13221                                                                                                                                               Mixed Nuts
## 13222                                                                                                                                   Miracle on 34th Street
## 13223                                                                                                                                                     Nell
## 13224                                                                                                                                     Natural Born Killers
## 13225                                                                                                                                            Poison Ivy II
## 13226                                                                                                                                                 Outbreak
## 13227                                                                                                  Léon: The Professional (a.k.a. The Professional) (Léon)
## 13228                                                                                                                                             Pulp Fiction
## 13229                                                                                                                                          Specialist, The
## 13230                                                                                                                                                 Stargate
## 13231                                                                                                                                        Santa Clause, The
## 13232                                                                                                                                Shawshank Redemption, The
## 13233                                                                                                                                                Tank Girl
## 13234                                                                                                                                   Star Trek: Generations
## 13235                                                                                                                                                Tommy Boy
## 13236                                                                                                                                  While You Were Sleeping
## 13237                                                                                                                               Ace Ventura: Pet Detective
## 13238                                                                                                                                 Clear and Present Danger
## 13239                                                                                                                                              Client, The
## 13240                                                                                                                                         Flintstones, The
## 13241                                                                                                                                             Forrest Gump
## 13242                                                                                                                              Four Weddings and a Funeral
## 13243                                                                                                                                           Lion King, The
## 13244                                                                          Wes Craven's New Nightmare (Nightmare on Elm Street Part 7: Freddy's Finale, A)
## 13245                                                                                                                                                Mask, The
## 13246                                                                                                                                                 Maverick
## 13247                                                                                                                       Naked Gun 33 1/3: The Final Insult
## 13248                                                                                                                                              Richie Rich
## 13249                                                                                                                                                    Speed
## 13250                                                                                                                                                True Lies
## 13251                                                                                    Highlander III: The Sorcerer (a.k.a. Highlander: The Final Dimension)
## 13252                                                                                                                                     Addams Family Values
## 13253                                                                                                                                         Another Stakeout
## 13254                                                                                                                                    Beverly Hills Cop III
## 13255                                                                                                             City Slickers II: The Legend of Curly's Gold
## 13256                                                                                                                                              Cliffhanger
## 13257                                                                                                                                      Cops and Robbersons
## 13258                                                                                                                                           Demolition Man
## 13259                                                                                                                                                Firm, The
## 13260                                                                                                                                            Fugitive, The
## 13261                                                                                                                                     Hot Shots! Part Deux
## 13262                                                                                                                                     Hudsucker Proxy, The
## 13263                                                                                                                                            Jurassic Park
## 13264                                                                                                                                         Last Action Hero
## 13265                                                                                                                                           Mrs. Doubtfire
## 13266                                                                                                                                             Philadelphia
## 13267                                                                                                                                                RoboCop 3
## 13268                                                                                                                                Robin Hood: Men in Tights
## 13269                                                                                                                                         Schindler's List
## 13270                                                                                                                             So I Married an Axe Murderer
## 13271                                                                                                                                        Super Mario Bros.
## 13272                                                                                                                                        Terminal Velocity
## 13273                                                                                                                          Nightmare Before Christmas, The
## 13274                                                                                                                                                Tombstone
## 13275                                                                                                                                             True Romance
## 13276                                                                                                                                               Home Alone
## 13277                                                                                                                                                    Ghost
## 13278                                                                                                                                                  Aladdin
## 13279                                                                                                                               Terminator 2: Judgment Day
## 13280                                                                                                                                       Dances with Wolves
## 13281                                                                                                                                                   Batman
## 13282                                                                                                                                Silence of the Lambs, The
## 13283                                                                                                                          Snow White and the Seven Dwarfs
## 13284                                                                                                                                     Beauty and the Beast
## 13285                                                                                                                                             Pretty Woman
## 13286                                                                                                                                              Heavy Metal
## 13287                                                                                                                                          Aristocats, The
## 13288                                                                                                                                      Mission: Impossible
## 13289                                                                                                                                     Operation Dumbo Drop
## 13290                                                                                                                                         Oliver & Company
## 13291                                                                                                                                                Rock, The
## 13292                                                                                                                                                Toy Story
## 13293                                                                                                                                  American President, The
## 13294                                                                                                                                                    Nixon
## 13295                                                                                                                                    Sense and Sensibility
## 13296                                                                                                                                               Four Rooms
## 13297                                                                                                                           Ace Ventura: When Nature Calls
## 13298                                                                                                                                               Get Shorty
## 13299                                                                                                                                        Leaving Las Vegas
## 13300                                                                                                                                                  Othello
## 13301                                                                                                                                               Persuasion
## 13302                                                                                                 City of Lost Children, The (Cité des enfants perdus, La)
## 13303                                                                                                            Shanghai Triad (Yao a yao yao dao waipo qiao)
## 13304                                                                                                                       Twelve Monkeys (a.k.a. 12 Monkeys)
## 13305                                                                                                                                                     Babe
## 13306                                                                                                                                               Carrington
## 13307                                                                                                                                         Dead Man Walking
## 13308                                                                                                                                                 Clueless
## 13309                                                                                                                                              Richard III
## 13310                                                                                                                            How to Make an American Quilt
## 13311                                                                                                                                     Seven (a.k.a. Se7en)
## 13312                                                                                                                               Postman, The (Postino, Il)
## 13313                                                                                                                                       Mr. Holland's Opus
## 13314                                                                                                                              French Twist (Gazon maudit)
## 13315                                                                                                                                    Kicking and Screaming
## 13316                                                                                                                                          Misérables, Les
## 13317                                                                                                                  Things to Do in Denver When You're Dead
## 13318                                                                                                                                 Antonia's Line (Antonia)
## 13319                                                                                                                                       Angels and Insects
## 13320                                                                                                                                         Hate (Haine, La)
## 13321                                                                                                                           Bridges of Madison County, The
## 13322                                                                                                                                               Braveheart
## 13323                                                                                                                                    Anne Frank Remembered
## 13324                                                                                                                                 Boys of St. Vincent, The
## 13325                                                                                                                  Star Maker, The (Uomo delle stelle, L')
## 13326                                                                                                                               NeverEnding Story III, The
## 13327                                                                                                                                            Birdcage, The
## 13328                                                                                                                                   Brothers McMullen, The
## 13329                                                                                                                                  Basketball Diaries, The
## 13330                                                                                                                                                Apollo 13
## 13331                                                                                                                                                  Rob Roy
## 13332                                                                                                                        Beauty of the Day (Belle de jour)
## 13333                                                                                                                                                 Clockers
## 13334                                                                                                                                                    Congo
## 13335                                                                                                                                                    Crumb
## 13336                                                                                                                                                  Jeffrey
## 13337                                                                                                                                          Johnny Mnemonic
## 13338                                                                                                                                     Love & Human Remains
## 13339                                                                                                                                                 Mallrats
## 13340                                                                                                                                              Nine Months
## 13341                                                                                                                                                    Smoke
## 13342                                                                                                                                             Strange Days
## 13343                                                                                                         To Wong Foo, Thanks for Everything! Julie Newmar
## 13344                                                                                                                                               Waterworld
## 13345                                                                                                                  Burnt by the Sun (Utomlyonnye solntsem)
## 13346                                                                                                                                         Boys on the Side
## 13347                                                                                                                                                   Clerks
## 13348                                                                                                                                         Don Juan DeMarco
## 13349                                                                                                                                     Death and the Maiden
## 13350                                                                                                                          Dumb & Dumber (Dumb and Dumber)
## 13351                                                                                                                     Eat Drink Man Woman (Yin shi nan nu)
## 13352                                                                                                                                                  Ed Wood
## 13353                                                                                                                                   Farinelli: il castrato
## 13354                                                                                                                                              Hoop Dreams
## 13355                                                                                                                                       Heavenly Creatures
## 13356                                                                                                                                         Immortal Beloved
## 13357                                                                                                                                                     I.Q.
## 13358                                                                                                       Interview with the Vampire: The Vampire Chronicles
## 13359                                                                                                                                       Jefferson in Paris
## 13360                                                                                                                       Star Wars: Episode IV - A New Hope
## 13361                                                                                                                                             Little Women
## 13362                                                                                                                                        Ladybird Ladybird
## 13363                                                                                                      Like Water for Chocolate (Como agua para chocolate)
## 13364                                                                                                                                      Legends of the Fall
## 13365                                                                                                                             My Crazy Life (Mi vida loca)
## 13366                                                                                                                              Madness of King George, The
## 13367                                                                                                               Mary Shelley's Frankenstein (Frankenstein)
## 13368                                                                                                                                                     Nell
## 13369                                                                                                                                       Nina Takes a Lover
## 13370                                                                                                                                     Natural Born Killers
## 13371                                                                                                                                       Once Were Warriors
## 13372                                                                                                                                                 Outbreak
## 13373                                                                                                                                             Pulp Fiction
## 13374                                                                                                                                                   Priest
## 13375                                                                                                                                                Quiz Show
## 13376                                                                                                                          Queen Margot (Reine Margot, La)
## 13377                                                                                                                            Ready to Wear (Pret-A-Porter)
## 13378                                                                                                                Three Colors: Red (Trois couleurs: Rouge)
## 13379                                                                                                                Three Colors: Blue (Trois couleurs: Bleu)
## 13380                                                                                                                 Three Colors: White (Trzy kolory: Bialy)
## 13381                                                                                                                                Secret of Roan Inish, The
## 13382                                                                                                                                                 Stargate
## 13383                                                                                                                                Shawshank Redemption, The
## 13384                                                                                                                                            Shallow Grave
## 13385                                                                                                             Strawberry and Chocolate (Fresa y chocolate)
## 13386                                                                                                                                           Sum of Us, The
## 13387                                                                                                                                   Star Trek: Generations
## 13388                                                                                                                                                Tom & Viv
## 13389                                                                                                                                    Village of the Damned
## 13390                                                                                                                              What's Eating Gilbert Grape
## 13391                                                                                                                                         Muriel's Wedding
## 13392                                                                                                        Adventures of Priscilla, Queen of the Desert, The
## 13393                                                                                                                                    Bullets Over Broadway
## 13394                                                                                                                              Four Weddings and a Funeral
## 13395                                                                                                                                         Jungle Book, The
## 13396                                                                                                                                           Lion King, The
## 13397                                                                                                                                            Little Buddha
## 13398                                                                                                                       Mrs. Parker and the Vicious Circle
## 13399                                                                                                                                            Reality Bites
## 13400                                                                                    Highlander III: The Sorcerer (a.k.a. Highlander: The Final Dimension)
## 13401                                                                                                                                 Beverly Hillbillies, The
## 13402                                                                                                                                            Boxing Helena
## 13403                                                                                                                                                Coneheads
## 13404                                                                                                                              Even Cowgirls Get the Blues
## 13405                                                                                                                   Farewell My Concubine (Ba wang bie ji)
## 13406                                                                                                                                                Firm, The
## 13407                                                                                                                                                  Go Fish
## 13408                                                                                              Englishman Who Went Up a Hill But Came Down a Mountain, The
## 13409                                                                                                                                House of the Spirits, The
## 13410                                                                                                                                     Hudsucker Proxy, The
## 13411                                                                                                                                In the Name of the Father
## 13412                                                                                                                           What's Love Got to Do with It?
## 13413                                                                                                                                            Jurassic Park
## 13414                                                                                                                                               Kalifornia
## 13415                                                                                                                                              Killing Zoe
## 13416                                                                                                                                   Much Ado About Nothing
## 13417                                                                                                                                           Mrs. Doubtfire
## 13418                                                                                                                                                    Naked
## 13419                                                                                                                                             Philadelphia
## 13420                                                                                                                                               Piano, The
## 13421                                                                                                                                  Remains of the Day, The
## 13422                                                                                                                                         Schindler's List
## 13423                                                                                                                                       Secret Garden, The
## 13424                                                                                                                                              Shadowlands
## 13425                                                                                                                                               Short Cuts
## 13426                                                                                                                                Six Degrees of Separation
## 13427                                                                                                                                     Sleepless in Seattle
## 13428                                                                                                                                             Blade Runner
## 13429                                                                                                                                                Threesome
## 13430                                                                                                                          Nightmare Before Christmas, The
## 13431                                                                                                                                             True Romance
## 13432                                                                                                                                       Bhaji on the Beach
## 13433                                                                                                                                   Brady Bunch Movie, The
## 13434                                                                                                                                               Home Alone
## 13435                                                                                                                                                    Ghost
## 13436                                                                                                                                                  Aladdin
## 13437                                                                                                                               Terminator 2: Judgment Day
## 13438                                                                                                                                       Dances with Wolves
## 13439                                                                                                                                                   Batman
## 13440                                                                                                                                Silence of the Lambs, The
## 13441                                                                                                                          Snow White and the Seven Dwarfs
## 13442                                                                                                                                     Beauty and the Beast
## 13443                                                                                                                                                Pinocchio
## 13444                                                                                                                                             Pretty Woman
## 13445                                                                                                                                                    Fargo
## 13446                                                                                                                                                Jane Eyre
## 13447                                                                                                                                          Aristocats, The
## 13448                                                                                                                                          Denise Calls Up
## 13449                                                                                                                                               Diabolique
## 13450                                                                                                                                            Moll Flanders
## 13451                                                                                                                                James and the Giant Peach
## 13452                                                                                                                                              Underground
## 13453                                                                                                                  Mystery Science Theater 3000: The Movie
## 13454                                                                                                                             Truth About Cats & Dogs, The
## 13455                                                                                                          Wallace & Gromit: The Best of Aardman Animation
## 13456                                                                                                                                               Craft, The
## 13457                                                                                                                                        Cold Comfort Farm
## 13458                                                                                                                                     Month by the Lake, A
## 13459                                                                                                                   Carmen Miranda: Bananas Is My Business
## 13460                                                                                                                                       I Shot Andy Warhol
## 13461                                                                                                                                            Trainspotting
## 13462                                                                                                                            Independence Day (a.k.a. ID4)
## 13463                                                                                                                             Hunchback of Notre Dame, The
## 13464                                                                                                                                           Cable Guy, The
## 13465                                                                                                                             Adventures of Pinocchio, The
## 13466                                                                                                                                    First Wives Club, The
## 13467                                                                                                             Story of Xinghua, The (Xinghua san yue tian)
## 13468                                                                                                                                            Twelfth Night
## 13469                                                                                                                                      Sound of Music, The
## 13470                                                                                                                                                 Die Hard
## 13471                                                                                                                                           Secrets & Lies
## 13472                                                                                                                                          Beautiful Thing
## 13473                                                                                                                     William Shakespeare's Romeo + Juliet
## 13474                                                                                                                      Willy Wonka & the Chocolate Factory
## 13475                                                                                                                                     Fish Called Wanda, A
## 13476                                                                                                                                         Bonnie and Clyde
## 13477                                                                                                                     Wallace & Gromit: The Wrong Trousers
## 13478                                                                                                                        Tin Drum, The (Blechtrommel, Die)
## 13479                                                                                                                                          Mina Tannenbaum
## 13480                                                                                                                                       Breaking the Waves
## 13481                                                                                                                                                    Shine
## 13482                                                                                                                                                Toy Story
## 13483                                                                                                                                                  Sabrina
## 13484                                                                                                                                        Leaving Las Vegas
## 13485                                                                                                                       Twelve Monkeys (a.k.a. 12 Monkeys)
## 13486                                                                                                                                         Mighty Aphrodite
## 13487                                                                                                                                       Mr. Holland's Opus
## 13488                                                                                                                                              Black Sheep
## 13489                                                                                                                                             Broken Arrow
## 13490                                                                                                                                            Happy Gilmore
## 13491                                                                                                                      Rumble in the Bronx (Hont faan kui)
## 13492                                                                                                                                            Birdcage, The
## 13493                                                                                                                       Star Wars: Episode IV - A New Hope
## 13494                                                                                                  Léon: The Professional (a.k.a. The Professional) (Léon)
## 13495                                                                                                                                       Executive Decision
## 13496                                                                                                                                                    Fargo
## 13497                                                                                                                                      Mission: Impossible
## 13498                                                                                                                            Kids in the Hall: Brain Candy
## 13499                                                                                                                                        Cold Comfort Farm
## 13500                                                                                                                                                Rock, The
## 13501                                                                                                                                                  Twister
## 13502                                                                                                                                               Striptease
## 13503                                                                                                                                            Trainspotting
## 13504                                                                                                                            Independence Day (a.k.a. ID4)
## 13505                                                                                                                                                  Kingpin
## 13506                                                                                                                                                   Eraser
## 13507                                                                                                                                               Phenomenon
## 13508                                                                                                                                                  Tin Cup
## 13509                                                                                                                      Willy Wonka & the Chocolate Factory
## 13510                                                                                                               Star Wars: Episode VI - Return of the Jedi
## 13511                                                                                                                                                    Shine
## 13512                                                                                                                          Beavis and Butt-Head Do America
## 13513                                                                                                                                                  Jumanji
## 13514                                                                                                                                                  Sabrina
## 13515                                                                                                                                  American President, The
## 13516                                                                                                                                               Get Shorty
## 13517                                                                                                                                          Dangerous Minds
## 13518                                                                                                                                         Dead Man Walking
## 13519                                                                                                                                                 Clueless
## 13520                                                                                                                                     Seven (a.k.a. Se7en)
## 13521                                                                                                                                       Mr. Holland's Opus
## 13522                                                                                                                                             Broken Arrow
## 13523                                                                                                                                            Happy Gilmore
## 13524                                                                                                                                            Birdcage, The
## 13525                                                                                                                                                Apollo 13
## 13526                                                                                                                                           Batman Forever
## 13527                                                                                                                                                    Congo
## 13528                                                                                                                                                Desperado
## 13529                                                                                                                               Die Hard: With a Vengeance
## 13530                                                                                                                                                 Net, The
## 13531                                                                                                                                                   Clerks
## 13532                                                                                                                          Dumb & Dumber (Dumb and Dumber)
## 13533                                                                                                       Interview with the Vampire: The Vampire Chronicles
## 13534                                                                                                                                                   Junior
## 13535                                                                                                                       Star Wars: Episode IV - A New Hope
## 13536                                                                                                                                             Little Women
## 13537                                                                                                                                     Natural Born Killers
## 13538                                                                                                                                             Pulp Fiction
## 13539                                                                                                                                                 Stargate
## 13540                                                                                                                                Shawshank Redemption, The
## 13541                                                                                                                              What's Eating Gilbert Grape
## 13542                                                                                                                                  While You Were Sleeping
## 13543                                                                                                                               Ace Ventura: Pet Detective
## 13544                                                                                                        Adventures of Priscilla, Queen of the Desert, The
## 13545                                                                                                                                              Client, The
## 13546                                                                                                                                                Crow, The
## 13547                                                                                                                                             Forrest Gump
## 13548                                                                                                                              Four Weddings and a Funeral
## 13549                                                                                                                                           Lion King, The
## 13550                                                                                                                                                    Speed
## 13551                                                                                                                                                True Lies
## 13552                                                                                                                                                Coneheads
## 13553                                                                                                                                                     Dave
## 13554                                                                                                                                                Firm, The
## 13555                                                                                                                                            Fugitive, The
## 13556                                                                                                                                            Jurassic Park
## 13557                                                                                                                                   Much Ado About Nothing
## 13558                                                                                                                                           Mrs. Doubtfire
## 13559                                                                                                                                             Philadelphia
## 13560                                                                                                                                               Piano, The
## 13561                                                                                                                                Robin Hood: Men in Tights
## 13562                                                                                                                                         Schindler's List
## 13563                                                                                                                                     Sleepless in Seattle
## 13564                                                                                                                                             Blade Runner
## 13565                                                                                                                          Nightmare Before Christmas, The
## 13566                                                                                                                                    Three Musketeers, The
## 13567                                                                                                                                                Tombstone
## 13568                                                                                                                                               Home Alone
## 13569                                                                                                                                                  Aladdin
## 13570                                                                                                                                                   Batman
## 13571                                                                                                                                Silence of the Lambs, The
## 13572                                                                                                                          Snow White and the Seven Dwarfs
## 13573                                                                                                                                     Beauty and the Beast
## 13574                                                                                                                                                Pinocchio
## 13575                                                                                                                                                    Fargo
## 13576                                                                                                                                      Mission: Impossible
## 13577                                                                                                                             Truth About Cats & Dogs, The
## 13578                                                                                                                                                Rock, The
## 13579                                                                                                                                                  Twister
## 13580                                                                                                                          Wallace & Gromit: A Close Shave
## 13581                                                                                                                                            Trainspotting
## 13582                                                                                                                            Independence Day (a.k.a. ID4)
## 13583                                                                                                                                               Phenomenon
## 13584                                                                                                                                      Maltese Falcon, The
## 13585                                                                                                                                             My Fair Lady
## 13586                                                                                                                                        Wizard of Oz, The
## 13587                                                                                                                                    2001: A Space Odyssey
## 13588                                                                                                                                             Mary Poppins
## 13589                                                                                                                      Willy Wonka & the Chocolate Factory
## 13590                                                                                                                                     Fish Called Wanda, A
## 13591                                                                                                                             Monty Python's Life of Brian
## 13592                                                                                                                               E.T. the Extra-Terrestrial
## 13593                                                                                                                                                  Top Gun
## 13594                                                                                                                          Monty Python and the Holy Grail
## 13595                                                                                                                                     English Patient, The
## 13596                                                                                                                          One Flew Over the Cuckoo's Nest
## 13597                                                                                                           Star Wars: Episode V - The Empire Strikes Back
## 13598                                                                                                                                      Princess Bride, The
## 13599                                                                                                                                    To Kill a Mockingbird
## 13600                                                                                                                                                  Amadeus
## 13601                                                                                                                                       Dead Poets Society
## 13602                                                                                                                                             Shining, The
## 13603                                                                                                                                              Stand by Me
## 13604                                                                                                                                            Groundhog Day
## 13605                                                                                                                                       Back to the Future
## 13606                                                                                                                                       Young Frankenstein
## 13607                                                                                                                                                 Fantasia
## 13608                                                                                                                       Indiana Jones and the Last Crusade
## 13609                                                                                                                                                   Gandhi
## 13610                                                                                                                                          Field of Dreams
## 13611                                                                                                                                  When Harry Met Sally...
## 13612                                                                                                                                                   Grease
## 13613                                                                                                                                            Mars Attacks!
## 13614                                                                                                                                            Jerry Maguire
## 13615                                                                                                                                          Raising Arizona
## 13616                                                                                                                                                   Scream
## 13617                                                                                                                                                Liar Liar
## 13618                                                                                                                                      Grosse Pointe Blank
## 13619                                                                                                              Austin Powers: International Man of Mystery
## 13620                                                                                                                                       Fifth Element, The
## 13621                                                                                                                                                 Face/Off
## 13622                                                                                                                                Men in Black (a.k.a. MIB)
## 13623                                                                                                                                              Chasing Amy
## 13624                                                                                                                                          Full Monty, The
## 13625                                                                                                                                                  Witness
## 13626                                                                                                                                        Good Will Hunting
## 13627                                                                                                                                        Big Lebowski, The
## 13628                                                                                                                                      Wedding Singer, The
## 13629                                                                                                                                       As Good as It Gets
## 13630                                                                                                                           X-Files: Fight the Future, The
## 13631                                                                                                                                               Armageddon
## 13632                                                                                                                                                 Rain Man
## 13633                                                                                                                                      Breakfast Club, The
## 13634                                                                                                                               Back to the Future Part II
## 13635                                                                                                                                 Honey, I Shrunk the Kids
## 13636                                                                                                                                                   Splash
## 13637                                                                                                                     Indiana Jones and the Temple of Doom
## 13638                                                                                                                                              Beetlejuice
## 13639                                                                                                                                          Few Good Men, A
## 13640                                                                                                                                      Edward Scissorhands
## 13641                                                                                                                                          My Cousin Vinny
## 13642                                                                                                                                            Pleasantville
## 13643                                                                                                                                       American History X
## 13644                                                                                                                                       Enemy of the State
## 13645                                                                                                                                            Bug's Life, A
## 13646                                                                                                                                      Shakespeare in Love
## 13647                                                                                                                                             Office Space
## 13648                                                                                                                                              Matrix, The
## 13649                                                                                                                                                 Election
## 13650                                                                                                                                               Mummy, The
## 13651                                                                                                                Star Wars: Episode I - The Phantom Menace
## 13652                                                                                                                                                 Superman
## 13653                                                                                                                                             Notting Hill
## 13654                                                                                                                                Run Lola Run (Lola rennt)
## 13655                                                                                                                                 Blair Witch Project, The
## 13656                                                                                                                                           Eyes Wide Shut
## 13657                                                                                                                      Ghostbusters (a.k.a. Ghost Busters)
## 13658                                                                                                                                         Sixth Sense, The
## 13659                                                                                                                                 Thomas Crown Affair, The
## 13660                                                                                                                                                Airplane!
## 13661                                                                                                                                                      Big
## 13662                                                                                                                                          American Beauty
## 13663                                                                                                                                               Fight Club
## 13664                                                                                                                                              Fever Pitch
## 13665                                                                                                                                     Being John Malkovich
## 13666                                                                                                                                                    Dogma
## 13667                                                                                                                                            Sleepy Hollow
## 13668                                                                                                                                          Green Mile, The
## 13669                                                                                                                                                 Magnolia
## 13670                                                                                                                                   League of Their Own, A
## 13671                                                                                                                                          Erin Brockovich
## 13672                                                                                                                                          Thelma & Louise
## 13673                                                                                                                                         Double Indemnity
## 13674                                                                                                                                    Good Morning, Vietnam
## 13675                                                                                                                                            High Fidelity
## 13676                                                                                                                                                Gladiator
## 13677                                                                                                                                              Chicken Run
## 13678                                                                                                                                             Patriot, The
## 13679                                                                                                                                       Perfect Storm, The
## 13680                                                                                                                                                    X-Men
## 13681                                                                                                                                            Almost Famous
## 13682                                                                                                         Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 13683                                                                                                                                                  Pollock
## 13684                                                                                                                                                Cast Away
## 13685                                                                                                                               O Brother, Where Art Thou?
## 13686                                                                                                                                                  Traffic
## 13687                                                                                                                                                  Memento
## 13688                                                                                                                                    Bridget Jones's Diary
## 13689                                                                                                                                             Moulin Rouge
## 13690                                                                                                                                              Others, The
## 13691                                                                                                                                           Monsters, Inc.
## 13692                                                                  Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 13693                                                                                                                                           Ocean's Eleven
## 13694                                                                                                            Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 13695                                                                                                                                    Royal Tenenbaums, The
## 13696                                                                                                       Lord of the Rings: The Fellowship of the Ring, The
## 13697                                                                                                                                        Beautiful Mind, A
## 13698                                                                                                                                                  Ice Age
## 13699                                                                                                                                 My Big Fat Greek Wedding
## 13700                                                                                                                                               Spider-Man
## 13701                                                                                                                                              About a Boy
## 13702                                                                                                             Star Wars: Episode II - Attack of the Clones
## 13703                                                                                                                                     Bourne Identity, The
## 13704                                                                                                                                          Minority Report
## 13705                                                                                                             Men in Black II (a.k.a. MIIB) (a.k.a. MIB 2)
## 13706                                                                                                            Spirited Away (Sen to Chihiro no kamikakushi)
## 13707                                                                                                                                                Ring, The
## 13708                                                                                                                   Lord of the Rings: The Two Towers, The
## 13709                                                                                                                                                  Chicago
## 13710                                                                                                                                             Pianist, The
## 13711                                                                                                                             City of God (Cidade de Deus)
## 13712                                                                                                                                           Bruce Almighty
## 13713                                                                                                                                             Finding Nemo
## 13714                                                                                                   Pirates of the Caribbean: The Curse of the Black Pearl
## 13715                                                                                                                                      Lost in Translation
## 13716                                                                                                                       Monty Python's The Meaning of Life
## 13717                                                                                                                                           School of Rock
## 13718                                                                                                                                      Intolerable Cruelty
## 13719                                                                                                                                        Kill Bill: Vol. 1
## 13720                                                                                                                                          Pieces of April
## 13721                                                                                                                                            Love Actually
## 13722                                                                                                                                                 Big Fish
## 13723                                                                                                           Lord of the Rings: The Return of the King, The
## 13724                                                                                                                                                 Thirteen
## 13725                                                                                                                    Eternal Sunshine of the Spotless Mind
## 13726                                                                                                                                        Kill Bill: Vol. 2
## 13727                                                                                                            Maltese Falcon, The (a.k.a. Dangerous Female)
## 13728                                                                                                                 Harry Potter and the Prisoner of Azkaban
## 13729                                                                                                                                             Spider-Man 2
## 13730                                                                                                                                                 I, Robot
## 13731                                                                                                                                    Bourne Supremacy, The
## 13732                                                                                                                                             Garden State
## 13733                                                                                                                                        Shaun of the Dead
## 13734                                                                                                                                      Million Dollar Baby
## 13735                                                                                                                        Charlie and the Chocolate Factory
## 13736                                                                                                                                                 Sin City
## 13737                                                                                                                                              Fever Pitch
## 13738                                                                                                                                            Batman Begins
## 13739                                                                                                                                                 Serenity
## 13740                                                                                                                                  40-Year-Old Virgin, The
## 13741                                                                                                                                   Constant Gardener, The
## 13742                                                                                                                      Harry Potter and the Goblet of Fire
## 13743                                                                                                                                            Walk the Line
## 13744                                                                                          Chronicles of Narnia: The Lion, the Witch and the Wardrobe, The
## 13745                                                                                                                                       Da Vinci Code, The
## 13746                                                                                                                                    Stranger than Fiction
## 13747                                                                                                                                              Ratatouille
## 13748                                                                                                                                 Priceless (Hors de prix)
## 13749                                                                                                                                     In the Land of Women
## 13750                                                                                                                                               Knocked Up
## 13751                                                                                                                Harry Potter and the Order of the Phoenix
## 13752                                                                                                                                  Darjeeling Limited, The
## 13753                                                                                                                                                     Juno
## 13754                                                                                                                                                In Bruges
## 13755                                                                                                       Indiana Jones and the Kingdom of the Crystal Skull
## 13756                                                                                                                                                 Watchmen
## 13757                                                                                                                                   Rachel Getting Married
## 13758                                                                                                                                               The Island
## 13759                                                                                                                                                     Milk
## 13760                                                                                                                              Ponyo (Gake no ue no Ponyo)
## 13761                                                                                                                                                 Coraline
## 13762                                                                                                                                       International, The
## 13763                                                                                                                                                Duplicity
## 13764                                                                                                                      The Butterfly Effect 3: Revelations
## 13765                                                                                                                                                       Up
## 13766                                                                                                                   Harry Potter and the Half-Blood Prince
## 13767                                                                                                                                            Julie & Julia
## 13768                                                                                                                                                Toy Story
## 13769                                                                                                                                   Muppet Treasure Island
## 13770                                                                                                                                               Braveheart
## 13771                                                                                                                               Die Hard: With a Vengeance
## 13772                                                                                                                          Dumb & Dumber (Dumb and Dumber)
## 13773                                                                                                                       Star Wars: Episode IV - A New Hope
## 13774                                                                                                                                             Pulp Fiction
## 13775                                                                                                                                  Quick and the Dead, The
## 13776                                                                                                                                                 Stargate
## 13777                                                                                                                                Shawshank Redemption, The
## 13778                                                                                                                                                Tank Girl
## 13779                                                                                                                               Ace Ventura: Pet Detective
## 13780                                                                                                                                           Lion King, The
## 13781                                                                                                                                            Bronx Tale, A
## 13782                                                                                                                                            Jurassic Park
## 13783                                                                                                                                           Mrs. Doubtfire
## 13784                                                                                                                                                  Aladdin
## 13785                                                                                                                               Terminator 2: Judgment Day
## 13786                                                                                                                                       Dances with Wolves
## 13787                                                                                                                                      Mission: Impossible
## 13788                                                                                                                            Independence Day (a.k.a. ID4)
## 13789                                                                                                                             20,000 Leagues Under the Sea
## 13790                                                                                                                      Willy Wonka & the Chocolate Factory
## 13791                                                                                                                                                    Alien
## 13792                                                                                                                                          Terminator, The
## 13793                                                                                                                                            Groundhog Day
## 13794                                                                                                                                              Under Siege
## 13795                                                                                                                                        L.A. Confidential
## 13796                                                                                                                                      Blues Brothers 2000
## 13797                                                                                                                                      Saving Private Ryan
## 13798                                                                                                                                           Police Academy
## 13799                                                                                                                                              Matrix, The
## 13800                                                                                                                Star Wars: Episode I - The Phantom Menace
## 13801                                                                                                                    Austin Powers: The Spy Who Shagged Me
## 13802                                                                                                                                             American Pie
## 13803                                                                                                                                         Sixth Sense, The
## 13804                                                                                                          Fistful of Dollars, A (Per un pugno di dollari)
## 13805                                                                                                                                               Fight Club
## 13806                                                                                                                                 Who Framed Roger Rabbit?
## 13807                                                                                                                                         Live and Let Die
## 13808                                                                                                                                              Toy Story 2
## 13809                                                                                                                                          Wayne's World 2
## 13810                                                                                                                                                Gladiator
## 13811                                                                                                                                                Moonraker
## 13812                                                                                                                                                    X-Men
## 13813                                                                                                                                           Monsters, Inc.
## 13814                                                                  Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 13815                                                                                                                                           Ocean's Eleven
## 13816                                                                                                                                            Resident Evil
## 13817                                                                                                                                               Spider-Man
## 13818                                                                                                                                     Bourne Identity, The
## 13819                                                                                                                   Lord of the Rings: The Two Towers, The
## 13820                                                                                                                                     Matrix Reloaded, The
## 13821                                                                                                   Pirates of the Caribbean: The Curse of the Black Pearl
## 13822                                                                                                                                        Kill Bill: Vol. 1
## 13823                                                                                                           Lord of the Rings: The Return of the King, The
## 13824                                                                                                                                        Kill Bill: Vol. 2
## 13825                                                                                                                                              Van Helsing
## 13826                                                                                                                         Dodgeball: A True Underdog Story
## 13827                                                                                                                                            Batman Begins
## 13828                                                                                                               Pirates of the Caribbean: Dead Man's Chest
## 13829                                                                                                                                            Departed, The
## 13830                                                                                                                                            Casino Royale
## 13831                                                                                                                                                      300
## 13832                                                                                                                                         Dark Knight, The
## 13833                                                                                                                                                 Iron Man
## 13834                                                                                                                                                Toy Story
## 13835                                                                                                                                                     Heat
## 13836                                                                                                                                        Leaving Las Vegas
## 13837                                                                                                 City of Lost Children, The (Cité des enfants perdus, La)
## 13838                                                                                                                       Twelve Monkeys (a.k.a. 12 Monkeys)
## 13839                                                                                                                                         Dead Man Walking
## 13840                                                                                                                                               Juror, The
## 13841                                                                                                                  Things to Do in Denver When You're Dead
## 13842                                                                                                                                            Birdcage, The
## 13843                                                                                                                       Star Wars: Episode IV - A New Hope
## 13844                                                                                                                                                    Fargo
## 13845                                                                                                                                      Mission: Impossible
## 13846                                                                                                                                James and the Giant Peach
## 13847                                                                                                                                                Rock, The
## 13848                                                                                                                                                  Twister
## 13849                                                                                                                                       I Shot Andy Warhol
## 13850                                                                                                                                            Trainspotting
## 13851                                                                                                                            Independence Day (a.k.a. ID4)
## 13852                                                                                                                             Hunchback of Notre Dame, The
## 13853                                                                                                                                                Lone Star
## 13854                                                                                                                                               Phenomenon
## 13855                                                                                                                                    First Wives Club, The
## 13856                                                                                                                                                   Ransom
## 13857                                                                                                                                                  Matilda
## 13858                                                                                                                                                    Bound
## 13859                                                                                                                                            Fly Away Home
## 13860                                                                                                                                 Long Kiss Goodnight, The
## 13861                                                                                                                                                 Sleepers
## 13862                                                                                                                      Willy Wonka & the Chocolate Factory
## 13863                                                                                                                                     English Patient, The
## 13864                                                                                                                            Blood and Wine (Blood & Wine)
## 13865                                                                                                                                 Star Trek: First Contact
## 13866                                                                                                                                           101 Dalmatians
## 13867                                                                                                                                                   Scream
## 13868                                                                                                                                           Murder at 1600
## 13869                                                                                                                                             Dante's Peak
## 13870                                                                                                                                         City of Industry
## 13871                                                                                                                                               Saint, The
## 13872                                                                                                                                      Grosse Pointe Blank
## 13873                                                                                                                   Romy and Michele's High School Reunion
## 13874                                                                                                                                                  Volcano
## 13875                                                                                                                                       Fifth Element, The
## 13876                                                                                                                                                  Con Air
## 13877                                                                                                                                         Pillow Book, The
## 13878                                                                                                                                 My Best Friend's Wedding
## 13879                                                                                                                                Men in Black (a.k.a. MIB)
## 13880                                                                                                                                                  Contact
## 13881                                                                                                                                            Event Horizon
## 13882                                                                                                                                        Conspiracy Theory
## 13883                                                                                                                                            Air Force One
## 13884                                                                                                                                                Toy Story
## 13885                                                                                                                              Dracula: Dead and Loving It
## 13886                                                                                                                           Ace Ventura: When Nature Calls
## 13887                                                                                                                                                Assassins
## 13888                                                                                                                                                     Babe
## 13889                                                                                                                                            Happy Gilmore
## 13890                                                                                                                                               Braveheart
## 13891                                                                                                                                            Billy Madison
## 13892                                                                                                                          Dumb & Dumber (Dumb and Dumber)
## 13893                                                                                                                       Star Wars: Episode IV - A New Hope
## 13894                                                                                                                                              Major Payne
## 13895                                                                                                                                Shawshank Redemption, The
## 13896                                                                                                                                             Forrest Gump
## 13897                                                                                                                       Naked Gun 33 1/3: The Final Insult
## 13898                                                                                                                                                True Lies
## 13899                                                                                                                                     Hot Shots! Part Deux
## 13900                                                                                                                                         Schindler's List
## 13901                                                                                                                                                  Aladdin
## 13902                                                                                                                               Terminator 2: Judgment Day
## 13903                                                                                                                                             Stupids, The
## 13904                                                                                                                                                 Die Hard
## 13905                                                                                                                                 Long Kiss Goodnight, The
## 13906                                                                                                                               E.T. the Extra-Terrestrial
## 13907                                                                                                           Star Wars: Episode V - The Empire Strikes Back
## 13908                                                                                  Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 13909                                                                                                                                                   Aliens
## 13910                                                                                                               Star Wars: Episode VI - Return of the Jedi
## 13911                                                                                                                                                    Alien
## 13912                                                                                                                                          Terminator, The
## 13913                                                                                                                                            Groundhog Day
## 13914                                                                                                                                       Back to the Future
## 13915                                                                                                                       Indiana Jones and the Last Crusade
## 13916                                                                                                                                                 Face/Off
## 13917                                                                                                                                         Truman Show, The
## 13918                                                                                                                                      Saving Private Ryan
## 13919                                                                                                                                            Waterboy, The
## 13920                                                                                                                 Police Academy 2: Their First Assignment
## 13921                                                                                                                       Police Academy 3: Back in Training
## 13922                                                                                                                     Police Academy 4: Citizens on Patrol
## 13923                                                                                                                Police Academy 5: Assignment: Miami Beach
## 13924                                                                                                                                              Matrix, The
## 13925                                                                                                                                             American Pie
## 13926                                                                                                                                                Airplane!
## 13927                                                                                                                                    From Russia with Love
## 13928                                                                                                                                              Toy Story 2
## 13929                                                                                                                               Deuce Bigalow: Male Gigolo
## 13930                                                                                                                                       Who's Harry Crumb?
## 13931                                                                                                                                                Gladiator
## 13932                                                                                                                                   Mission: Impossible II
## 13933                                                                                                                           Nutty Professor II: The Klumps
## 13934                                                                                                                  Naked Gun 2 1/2: The Smell of Fear, The
## 13935                                                                                                                                             Little Nicky
## 13936                                                                                                         Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 13937                                                                                                                                    Dude, Where's My Car?
## 13938                                                                                                                                     Beverly Hills Cop II
## 13939                                                                                                                                                    Shrek
## 13940                                                                                                                                              Animal, The
## 13941                                                                                                                                           American Pie 2
## 13942                                                                                                                                           Monsters, Inc.
## 13943                                                                                                            Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 13944                                                                                                       Lord of the Rings: The Fellowship of the Ring, The
## 13945                                                                                                                                                  Ice Age
## 13946                                                                                                                                     Bourne Identity, The
## 13947                                                                                                                   Lord of the Rings: The Two Towers, The
## 13948                                                                                                                  Dumb and Dumberer: When Harry Met Lloyd
## 13949                                                                                                                                           Johnny English
## 13950                                                                                                                                                   Duplex
## 13951                                                                                                           Lord of the Rings: The Return of the King, The
## 13952                                                                                                                                                 EuroTrip
## 13953                                                                                                                                      Girl Next Door, The
## 13954                                                                                                                                                  Shrek 2
## 13955                                                                                                                                             White Chicks
## 13956                                                                                                                                         Meet the Fockers
## 13957                                                                                                                                         Mr. & Mrs. Smith
## 13958                                                                                                                                            Batman Begins
## 13959                                                                                                                                         Wedding Crashers
## 13960                                                                                                                                  40-Year-Old Virgin, The
## 13961                                                                                                                                        Pink Panther, The
## 13962                                                                                                                                  Ice Age 2: The Meltdown
## 13963                                                                                                                                           V for Vendetta
## 13964                                                                                                                                            Scary Movie 4
## 13965                                                                                                                                  Mission: Impossible III
## 13966                                                                                                                                               Little Man
## 13967                                                                                                                                                   Norbit
## 13968                                                                                                                                       Mr. Bean's Holiday
## 13969                                                                                                                                      Simpsons Movie, The
## 13970                                                                                                                                    Bourne Ultimatum, The
## 13971                                                                                                                                                 Superbad
## 13972                                                                                                                                            Balls of Fury
## 13973                                                                                                                                        Meet the Spartans
## 13974                                                                                                                                         Dark Knight, The
## 13975                                                                                                                                          Superhero Movie
## 13976                                                                                                                                                 Iron Man
## 13977                                                                                                                                                    Taken
## 13978                                                                                                                            You Don't Mess with the Zohan
## 13979                                                                                                                                      Pink Panther 2, The
## 13980                                                                                                                                                Star Trek
## 13981                                                                                                                                                       Up
## 13982                                                                                                                                            Hangover, The
## 13983                                                                                                                                               Zombieland
## 13984                                                                                                                                          Sherlock Holmes
## 13985                                                                                                                                     From Paris with Love
## 13986                                                                                                                                 How to Train Your Dragon
## 13987                                                                                                                                                  Killers
## 13988                                                                                                                                              Toy Story 3
## 13989                                                                                                                                                Inception
## 13990                                                                                                                                           Knight and Day
## 13991                                                                                                                                                     Salt
## 13992                                                                                                                                      Dinner for Schmucks
## 13993                                                                                                                                                   Easy A
## 13994                                                                                                                                                      Red
## 13995                                                                                                                                                 Megamind
## 13996                                                                                                                                           Little Fockers
## 13997                                                                                                                                              Source Code
## 13998                                                                                                                                       X-Men: First Class
## 13999                                                                                                                                            Avengers, The
## 14000                                                                                                                                         The Hunger Games
## 14001                                                                                                                       Sherlock Holmes: A Game of Shadows
## 14002                                                                                                                     Mission: Impossible - Ghost Protocol
## 14003                                                                                                                                             Intouchables
## 14004                                                                                                                                               Safe House
## 14005                                                                                                                                           This Means War
## 14006                                                                                                                                           21 Jump Street
## 14007                                                                                                                                             Black Mirror
## 14008                                                                                                                                                   Looper
## 14009                                                                                                                                            That's My Boy
## 14010                                                                                                                                           Wreck-It Ralph
## 14011                                                                                                                       Hobbit: An Unexpected Journey, The
## 14012                                                                                                                                          Despicable Me 2
## 14013                                                                                                                                         World's End, The
## 14014                                                                                                                                                    Red 2
## 14015                                                                                                                                                   2 Guns
## 14016                                                                                                                                              Grown Ups 2
## 14017                                                                                                                                               About Time
## 14018                                                                                                                          The Hunger Games: Catching Fire
## 14019                                                                                                                     Hobbit: The Desolation of Smaug, The
## 14020                                                                                                                                 Wolf of Wall Street, The
## 14021                                                                                                                                Grand Budapest Hotel, The
## 14022                                                                                                                      Captain America: The Winter Soldier
## 14023                                                                                                                       Mission: Impossible - Rogue Nation
## 14024                                                                                                                                           22 Jump Street
## 14025                                                                                                                               How to Train Your Dragon 2
## 14026                                                                                                                           Dawn of the Planet of the Apes
## 14027                                                                                                                                  Guardians of the Galaxy
## 14028                                                                                                                                               Big Hero 6
## 14029                                                                                                                                       Dumb and Dumber To
## 14030                                                                                                                                   Paul Blart: Mall Cop 2
## 14031                                                                                                                                                      Spy
## 14032                                                                                                                                               Inside Out
## 14033                                                                                                                                  The Man from U.N.C.L.E.
## 14034                                                                                                                                                Toy Story
## 14035                                                                                                                                                  Jumanji
## 14036                                                                                                                                                     Heat
## 14037                                                                                                                                                GoldenEye
## 14038                                                                                                                                  American President, The
## 14039                                                                                                                           Ace Ventura: When Nature Calls
## 14040                                                                                                                                               Get Shorty
## 14041                                                                                                                       Twelve Monkeys (a.k.a. 12 Monkeys)
## 14042                                                                                                                                                     Babe
## 14043                                                                                                                                                 Clueless
## 14044                                                                                                                                            Mortal Kombat
## 14045                                                                                                                                               To Die For
## 14046                                                                                                                                     Seven (a.k.a. Se7en)
## 14047                                                                                                                                      Usual Suspects, The
## 14048                                                                                                                                       Mr. Holland's Opus
## 14049                                                                                                                                                Screamers
## 14050                                                                                                                                             Broken Arrow
## 14051                                                                                                                                               Braveheart
## 14052                                                                                                                      Rumble in the Bronx (Hont faan kui)
## 14053                                                                                                                                            Birdcage, The
## 14054                                                                                                                                                 Bad Boys
## 14055                                                                                                                                                Apollo 13
## 14056                                                                                                                                                  Rob Roy
## 14057                                                                                                                                           Batman Forever
## 14058                                                                                                                                                    Congo
## 14059                                                                                                                                             Crimson Tide
## 14060                                                                                                                                                Desperado
## 14061                                                                                                                               Die Hard: With a Vengeance
## 14062                                                                                                                                          Johnny Mnemonic
## 14063                                                                                                                                              Judge Dredd
## 14064                                                                                                                                        Lord of Illusions
## 14065                                                                                                                  Mighty Morphin Power Rangers: The Movie
## 14066                                                                                                                                              Nine Months
## 14067                                                                                                                                            Prophecy, The
## 14068                                                                                                                                                Showgirls
## 14069                                                                                                                                                  Species
## 14070                                                                                                                            Under Siege 2: Dark Territory
## 14071                                                                                                                                               Waterworld
## 14072                                                                                                                                                   Clerks
## 14073                                                                                                                                         Don Juan DeMarco
## 14074                                                                                                                          Dumb & Dumber (Dumb and Dumber)
## 14075                                                                                                                                                  Ed Wood
## 14076                                                                                                                                             Forget Paris
## 14077                                                                                                                                       Heavenly Creatures
## 14078                                                                                                                                                     I.Q.
## 14079                                                                                                       Interview with the Vampire: The Vampire Chronicles
## 14080                                                                                                                                      Legends of the Fall
## 14081                                                                                                               Mary Shelley's Frankenstein (Frankenstein)
## 14082                                                                                                                                     Natural Born Killers
## 14083                                                                                                                                                 Outbreak
## 14084                                                                                                  Léon: The Professional (a.k.a. The Professional) (Léon)
## 14085                                                                                                                                             Pulp Fiction
## 14086                                                                                                                                                Quiz Show
## 14087                                                                                                                                          Specialist, The
## 14088                                                                                                                                                 Stargate
## 14089                                                                                                                                        Santa Clause, The
## 14090                                                                                                                                Shawshank Redemption, The
## 14091                                                                                                                                            Shallow Grave
## 14092                                                                                                              Tales from the Crypt Presents: Demon Knight
## 14093                                                                                                                                   Star Trek: Generations
## 14094                                                                                                                                      Tales from the Hood
## 14095                                                                                                                                    Village of the Damned
## 14096                                                                                                                                                Tommy Boy
## 14097                                                                                                                                  While You Were Sleeping
## 14098                                                                                                                               Ace Ventura: Pet Detective
## 14099                                                                                                                                 Clear and Present Danger
## 14100                                                                                                                                              Client, The
## 14101                                                                                                                                                Crow, The
## 14102                                                                                                                                         Flintstones, The
## 14103                                                                                                                                             Forrest Gump
## 14104                                                                                                                              Four Weddings and a Funeral
## 14105                                                                                                                                         Jungle Book, The
## 14106                                                                                                                                           Lion King, The
## 14107                                                                          Wes Craven's New Nightmare (Nightmare on Elm Street Part 7: Freddy's Finale, A)
## 14108                                                                                                                                                Mask, The
## 14109                                                                                                                                                 Maverick
## 14110                                                                                                                       Naked Gun 33 1/3: The Final Insult
## 14111                                                                                                                                                    Speed
## 14112                                                                                                                                                True Lies
## 14113                                                                                                                                                 Airheads
## 14114                                                                                                                                    Beverly Hills Cop III
## 14115                                                                                                                                           Body Snatchers
## 14116                                                                                                             City Slickers II: The Legend of Curly's Gold
## 14117                                                                                                                                              Cliffhanger
## 14118                                                                                                                                                Coneheads
## 14119                                                                                                                                                     Dave
## 14120                                                                                                                                           Demolition Man
## 14121                                                                                                                                                Firm, The
## 14122                                                                                                                                               Free Willy
## 14123                                                                                                                                            Fugitive, The
## 14124                                                                                                                                     Hot Shots! Part Deux
## 14125                                                                                                                                     Hudsucker Proxy, The
## 14126                                                                                                                                      In the Line of Fire
## 14127                                                                                                                                            Jurassic Park
## 14128                                                                                                                                         Last Action Hero
## 14129                                                                                                                                   Much Ado About Nothing
## 14130                                                                                                                                           Mrs. Doubtfire
## 14131                                                                                                                                             Philadelphia
## 14132                                                                                                                                               Piano, The
## 14133                                                                                                                                Robin Hood: Men in Tights
## 14134                                                                                                                                         Schindler's List
## 14135                                                                                                                              Searching for Bobby Fischer
## 14136                                                                                                                                               Serial Mom
## 14137                                                                                                                                     Sleepless in Seattle
## 14138                                                                                                                             So I Married an Axe Murderer
## 14139                                                                                                                          Nightmare Before Christmas, The
## 14140                                                                                                                                    Three Musketeers, The
## 14141                                                                                                                                                Tombstone
## 14142                                                                                                                                             True Romance
## 14143                                                                                                                                                    Ghost
## 14144                                                                                                                                                  Aladdin
## 14145                                                                                                                               Terminator 2: Judgment Day
## 14146                                                                                                                                       Dances with Wolves
## 14147                                                                                                                                                   Batman
## 14148                                                                                                                                     Beauty and the Beast
## 14149                                                                                                                                             Pretty Woman
## 14150                                                                                                                          Candyman: Farewell to the Flesh
## 14151                                                                                                                                                    Fargo
## 14152                                                                                                                                              Heavy Metal
## 14153                                                                                                                                      Mission: Impossible
## 14154                                                                                                                                                  Twister
## 14155                                                                                                                                            Trainspotting
## 14156                                                                                                                            Independence Day (a.k.a. ID4)
## 14157                                                                                                                                                Toy Story
## 14158                                                                                                                                  American President, The
## 14159                                                                                                                                    Sense and Sensibility
## 14160                                                                                                                                               Get Shorty
## 14161                                                                                                                                        Leaving Las Vegas
## 14162                                                                                                                                                     Babe
## 14163                                                                                                                                                 Clueless
## 14164                                                                                                                                       Mr. Holland's Opus
## 14165                                                                                                                                                Apollo 13
## 14166                                                                                                                                               Waterworld
## 14167                                                                                                                       Star Wars: Episode IV - A New Hope
## 14168                                                                                                      Like Water for Chocolate (Como agua para chocolate)
## 14169                                                                                                                                      Legends of the Fall
## 14170                                                                                                                              What's Eating Gilbert Grape
## 14171                                                                                                                                  While You Were Sleeping
## 14172                                                                                                                                         Muriel's Wedding
## 14173                                                                                                                              Four Weddings and a Funeral
## 14174                                                                                                                                           Lion King, The
## 14175                                                                                                                                                 Maverick
## 14176                                                                                                                                                    Speed
## 14177                                                                                                                                            Fugitive, The
## 14178                                                                                                                                             Philadelphia
## 14179                                                                                                                                  Remains of the Day, The
## 14180                                                                                                                              Searching for Bobby Fischer
## 14181                                                                                                                                     Sleepless in Seattle
## 14182                                                                                                                                               Home Alone
## 14183                                                                                                                                                    Ghost
## 14184                                                                                                                                                  Aladdin
## 14185                                                                                                                                       Dances with Wolves
## 14186                                                                                                                                                   Batman
## 14187                                                                                                                                     Beauty and the Beast
## 14188                                                                                                                                             Pretty Woman
## 14189                                                                                                                                      Mission: Impossible
## 14190                                                                                                                                                Rock, The
## 14191                                                                                                                                           Godfather, The
## 14192                                                                                                                                  Philadelphia Story, The
## 14193                                                                                                                                   Breakfast at Tiffany's
## 14194                                                                                                                                              Rear Window
## 14195                                                                                                                                       North by Northwest
## 14196                                                                                                                                         Some Like It Hot
## 14197                                                                                                                                               Casablanca
## 14198                                                                                                                                             My Fair Lady
## 14199                                                                                                                                        Wizard of Oz, The
## 14200                                                                                                                                       Gone with the Wind
## 14201                                                                                                                                             Citizen Kane
## 14202                                                                                                                      Willy Wonka & the Chocolate Factory
## 14203                                                                                                                                     Fish Called Wanda, A
## 14204                                                                                                                               E.T. the Extra-Terrestrial
## 14205                                                                                                                          One Flew Over the Cuckoo's Nest
## 14206                                                                                                                                      Princess Bride, The
## 14207                                                                                  Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 14208                                                                                                                                                  Amadeus
## 14209                                                                                                                                               Sting, The
## 14210                                                                                                                                          Terminator, The
## 14211                                                                                                                                                    Glory
## 14212                                                                                                                                       Dead Poets Society
## 14213                                                                                                                                            Graduate, The
## 14214                                                                                                                                              Stand by Me
## 14215                                                                                                                                            Groundhog Day
## 14216                                                                                                                                       Back to the Future
## 14217                                                                                                                                       Young Frankenstein
## 14218                                                                                                                       Indiana Jones and the Last Crusade
## 14219                                                                                                                       Butch Cassidy and the Sundance Kid
## 14220                                                                                                                                  When Harry Met Sally...
## 14221                                                                                                                                                   Grease
## 14222                                                                                                                                                     Jaws
## 14223                                                                                                                                            Jerry Maguire
## 14224                                                                                                                                          Raising Arizona
## 14225                                                                                                                                Men in Black (a.k.a. MIB)
## 14226                                                                                                                                Hunt for Red October, The
## 14227                                                                                                                                          Full Monty, The
## 14228                                                                                                                                         Truman Show, The
## 14229                                                                                                                                        Good Will Hunting
## 14230                                                                                                                                                  Titanic
## 14231                                                                                                                                              Wag the Dog
## 14232                                                                                                                                       As Good as It Gets
## 14233                                                                                                                                             Out of Sight
## 14234                                                                                                                             There's Something About Mary
## 14235                                                                                                                                                 Rain Man
## 14236                                                                                                                                      Breakfast Club, The
## 14237                                                                                                                               Back to the Future Part II
## 14238                                                                                                                                      Little Mermaid, The
## 14239                                                                                                                                                   Splash
## 14240                                                                                                                     Indiana Jones and the Temple of Doom
## 14241                                                                                                                                        Untouchables, The
## 14242                                                                                                                                          Few Good Men, A
## 14243                                                                                                                                      Edward Scissorhands
## 14244                                                                                                                                          My Cousin Vinny
## 14245                                                                                                                                            Pleasantville
## 14246                                                                                                                                            Bug's Life, A
## 14247                                                                                                                                      Shakespeare in Love
## 14248                                                                                                                                      Romancing the Stone
## 14249                                                                                                                                         Crocodile Dundee
## 14250                                                                                                                                                 Election
## 14251                                                                                                                           Rocky Horror Picture Show, The
## 14252                                                                                                                      Ghostbusters (a.k.a. Ghost Busters)
## 14253                                                                                                                                                      Big
## 14254                                                                                                                                 Ferris Bueller's Day Off
## 14255                                                                                                                                               Moonstruck
## 14256                                                                                                                                         Fatal Attraction
## 14257                                                                                                                                              Toy Story 2
## 14258                                                                                                                                 Talented Mr. Ripley, The
## 14259                                                                                                                                   League of Their Own, A
## 14260                                                                                                                                            Patriot Games
## 14261                                                                                                                                              Wonder Boys
## 14262                                                                                                                                          Erin Brockovich
## 14263                                                                                                                       Close Encounters of the Third Kind
## 14264                                                                                                                                              Chicken Run
## 14265                                                                                                                                            Almost Famous
## 14266                                                                                                                                                 Chocolat
## 14267                                                                                                                                                Cast Away
## 14268                                                                                                                               O Brother, Where Art Thou?
## 14269                                                                                                                                           State and Main
## 14270                                                                                                                                        Beverly Hills Cop
## 14271                                                                                                                                    Bridget Jones's Diary
## 14272                                                                                                                                                    Shrek
## 14273                                                                                                                                                  Tootsie
## 14274                                                                                                                                           Monsters, Inc.
## 14275                                                                                                                                           Ocean's Eleven
## 14276                                                                                                                                    Royal Tenenbaums, The
## 14277                                                                                                       Lord of the Rings: The Fellowship of the Ring, The
## 14278                                                                                                                                        Beautiful Mind, A
## 14279                                                                                                                                 My Big Fat Greek Wedding
## 14280                                                                                                                                              About a Boy
## 14281                                                                                                                   Lord of the Rings: The Two Towers, The
## 14282                                                                                                                                      Catch Me If You Can
## 14283                                                                                                                                             Finding Nemo
## 14284                                                                                                                                      Lost in Translation
## 14285                                                                                                                                           School of Rock
## 14286                                                                                                                                            Love Actually
## 14287                                                                                                                                                 Big Fish
## 14288                                                                                                           Lord of the Rings: The Return of the King, The
## 14289                                                                                                                                                  Shrek 2
## 14290                                                                                                                                             Spider-Man 2
## 14291                                                                                                                                                 Sideways
## 14292                                                                                                                                         Incredibles, The
## 14293                                                                                                                                                 Millions
## 14294                                                                                          Chronicles of Narnia: The Lion, the Witch and the Wardrobe, The
## 14295                                                                                                                                                King Kong
## 14296                                                                                                                                    Thank You for Smoking
## 14297                                                                                                               Pirates of the Caribbean: Dead Man's Chest
## 14298                                                                                                                                     Little Miss Sunshine
## 14299                                                                                                                                            Casino Royale
## 14300                                                                                                                                              Ratatouille
## 14301                                                                                                                        My Best Friend (Mon meilleur ami)
## 14302                                                                                                                                                     Juno
## 14303                                                                                                                                                 Iron Man
## 14304                                                                                                       Indiana Jones and the Kingdom of the Crystal Skull
## 14305                                                                                                                                                   WALL·E
## 14306                                                                                                                                                       Up
## 14307                                                                                                                                            Up in the Air
## 14308                                                                                                                                                   Avatar
## 14309                                                                                                                                      Alice in Wonderland
## 14310                                                                                                                                               Iron Man 2
## 14311                                                                                                                                              Toy Story 3
## 14312                                                                                                                                                Inception
## 14313                                                                                                                                       King's Speech, The
## 14314                                                                                                                                                True Grit
## 14315                                                                                                          What Women Want (a.k.a. I Know a Woman's Heart)
## 14316                                                                                                                                                Toy Story
## 14317                                                                                                                                                   Casino
## 14318                                                                                                                                      Usual Suspects, The
## 14319                                                                                                                                                   Friday
## 14320                                                                                                                                            Happy Gilmore
## 14321                                                                                                                                               Braveheart
## 14322                                                                                                                                              Taxi Driver
## 14323                                                                                                                                                Apollo 13
## 14324                                                                                                                                             Crimson Tide
## 14325                                                                                                                                               Waterworld
## 14326                                                                                                                          Dumb & Dumber (Dumb and Dumber)
## 14327                                                                                                                       Star Wars: Episode IV - A New Hope
## 14328                                                                                                                                                 Outbreak
## 14329                                                                                                                                             Pulp Fiction
## 14330                                                                                                                                                 Stargate
## 14331                                                                                                                                Shawshank Redemption, The
## 14332                                                                                                                               Ace Ventura: Pet Detective
## 14333                                                                                                                                                Crow, The
## 14334                                                                                                                                             Forrest Gump
## 14335                                                                                                                                                Mask, The
## 14336                                                                                                                                           Demolition Man
## 14337                                                                                                                                            Jurassic Park
## 14338                                                                                                                                         Schindler's List
## 14339                                                                                                                          Nightmare Before Christmas, The
## 14340                                                                                                                                       Dances with Wolves
## 14341                                                                                                                                Silence of the Lambs, The
## 14342                                                                                                                                                Rock, The
## 14343                                                                                                                            Independence Day (a.k.a. ID4)
## 14344                                                                                                                                           Godfather, The
## 14345                                                                                                                                             Citizen Kane
## 14346                                                                                                                              Ghost and the Darkness, The
## 14347                                                                                                                                           Reservoir Dogs
## 14348                                                                                                                                         Jean de Florette
## 14349                                                                                                                  Cinema Paradiso (Nuovo cinema Paradiso)
## 14350                                                                                                                          One Flew Over the Cuckoo's Nest
## 14351                                                                                  Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 14352                                                                                                                                               Goodfellas
## 14353                                                                                                                                        Full Metal Jacket
## 14354                                                                                                                                    Boot, Das (Boat, The)
## 14355                                                                                                                                       Dead Poets Society
## 14356                                                                                                                                                Chinatown
## 14357                                                                                                                                            Groundhog Day
## 14358                                                                                                                                       Back to the Future
## 14359                                                                                                                                            Jerry Maguire
## 14360                                                                                                                                                  Con Air
## 14361                                                                                                                                Men in Black (a.k.a. MIB)
## 14362                                                                                                                                Hunt for Red October, The
## 14363                                                                                                                                        L.A. Confidential
## 14364                                                                                                                                                  Gattaca
## 14365                                                                                                                                        Starship Troopers
## 14366                                                                                                                                         Truman Show, The
## 14367                                                                                                                                        Good Will Hunting
## 14368                                                                                                                                                  Titanic
## 14369                                                                                                                                             Postman, The
## 14370                                                                                                                                      Wedding Singer, The
## 14371                                                                                                                                       As Good as It Gets
## 14372                                                                                                                                                 Rain Man
## 14373                                                                                                                                       Driving Miss Daisy
## 14374                                                                                                                              Back to the Future Part III
## 14375                                                                                                                                      Saving Private Ryan
## 14376                                                                                                                     Indiana Jones and the Temple of Doom
## 14377                                                                                                                      Life Is Beautiful (La Vita è bella)
## 14378                                                                                                                                       American History X
## 14379                                                                                               Christmas Vacation (National Lampoon's Christmas Vacation)
## 14380                                                                                                                                              October Sky
## 14381                                                                                                                                              Matrix, The
## 14382                                                                                                                Star Wars: Episode I - The Phantom Menace
## 14383                                                                                                                                Run Lola Run (Lola rennt)
## 14384                                                                                                                                             American Pie
## 14385                                                                                                                                 Blair Witch Project, The
## 14386                                                                                                                                         Sixth Sense, The
## 14387                                                                                                                              National Lampoon's Vacation
## 14388                                                                                                                                       Christmas Story, A
## 14389                                                                                                                                          American Beauty
## 14390                                                                                                                                             Total Recall
## 14391                                                                                                                                               Fight Club
## 14392                                                                                                                                               Awakenings
## 14393                                                                                                                                          Green Mile, The
## 14394                                                                                                                                             Galaxy Quest
## 14395                                                                                                                                           Hurricane, The
## 14396                                                                                                                                               Encino Man
## 14397                                                                                                                                        Final Destination
## 14398                                                                                                                                                 Red Dawn
## 14399                                                                                                                                           Grumpy Old Men
## 14400                                                                                                                       Close Encounters of the Third Kind
## 14401                                                                                                                                                Gladiator
## 14402                                                                                                                                        Battlefield Earth
## 14403                                                                                                                                             Patriot, The
## 14404                                                                                                                                         Meet the Parents
## 14405                                                                                                                                      Requiem for a Dream
## 14406                                                                                                                                                   Snatch
## 14407                                                                                                                                                 Chocolat
## 14408                                                                                                                                                Cast Away
## 14409                                                                                                                                                  Memento
## 14410                                                                                                                                                    Shrek
## 14411                                                                                                                                             Donnie Darko
## 14412                                                                                                            Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 14413                                                                                                       Lord of the Rings: The Fellowship of the Ring, The
## 14414                                                                                                                                        Beautiful Mind, A
## 14415                                                                                                                                          Black Hawk Down
## 14416                                                                                                                                                  Ice Age
## 14417                                                                                                                                               Spider-Man
## 14418                                                                                                                                     Bourne Identity, The
## 14419                                                                                                                                          Minority Report
## 14420                                                                                                                                        Road to Perdition
## 14421                                                                                                                                                    Signs
## 14422                                                                                                                                                Ring, The
## 14423                                                                                                                   Lord of the Rings: The Two Towers, The
## 14424                                                                                                                                      Catch Me If You Can
## 14425                                                                                                                                                  Chicago
## 14426                                                                                                                             City of God (Cidade de Deus)
## 14427                                                                                                                                     Matrix Reloaded, The
## 14428                                                                                                                                           Bruce Almighty
## 14429                                                                                                                                             Finding Nemo
## 14430                                                                                                                                         Italian Job, The
## 14431                                                                                                   Pirates of the Caribbean: The Curse of the Black Pearl
## 14432                                                                                                                                      Dirty Pretty Things
## 14433                                                                                                                                      Lost in Translation
## 14434                                                                                                                                           School of Rock
## 14435                                                                                                                                             Mystic River
## 14436                                                                                                                                        Kill Bill: Vol. 1
## 14437                                                                                                                                  Matrix Revolutions, The
## 14438                                                                                                           Lord of the Rings: The Return of the King, The
## 14439                                                                                                                                     The Butterfly Effect
## 14440                                                                                                                    Eternal Sunshine of the Spotless Mind
## 14441                                                                                                                                        Kill Bill: Vol. 2
## 14442                                                                                                                                                Gladiator
## 14443                                                                                                                                                  Shrek 2
## 14444                                                                                                                                            Super Size Me
## 14445                                                                                                                                             Spider-Man 2
## 14446                                                                                                                                                 I, Robot
## 14447                                                                                                        Maria Full of Grace (Maria, Llena eres de gracia)
## 14448                                                                                                                                Manchurian Candidate, The
## 14449                                                                                                                                             Garden State
## 14450                                                                                                                                               Collateral
## 14451                                                                                                         Motorcycle Diaries, The (Diarios de motocicleta)
## 14452                                                                                                                                        Shaun of the Dead
## 14453                                                                                                                                                 Sideways
## 14454                                                                                                                                         Incredibles, The
## 14455                                                                                                                                      Million Dollar Baby
## 14456                                                                                                                                             Hotel Rwanda
## 14457                                                                                                                        Charlie and the Chocolate Factory
## 14458                                                                                                                                                 Sin City
## 14459                                                                                                                                                    Crash
## 14460                                                                                                                                           Cinderella Man
## 14461                                                                                                                                            Batman Begins
## 14462                                                                                                                                         Wedding Crashers
## 14463                                                                                                                                                 Serenity
## 14464                                                                                                                                  40-Year-Old Virgin, The
## 14465                                                                                                                               Good Night, and Good Luck.
## 14466                                                                                                                            Joyeux Noël (Merry Christmas)
## 14467                                                                                                                                            Walk the Line
## 14468                                                                                                                                           V for Vendetta
## 14469                                                                                                                                    Thank You for Smoking
## 14470                                                                                                                                                   Tsotsi
## 14471                                                                                                               Pirates of the Caribbean: Dead Man's Chest
## 14472                                                                                                                                     Little Miss Sunshine
## 14473                                                                                                                                    Stranger than Fiction
## 14474                                                                                                                                Pursuit of Happyness, The
## 14475                                                                                                                Pan's Labyrinth (Laberinto del fauno, El)
## 14476                                                                                                                                            Departed, The
## 14477                                                                                                                               Last King of Scotland, The
## 14478                                                                                                                                            Prestige, The
## 14479                                                                                                                                    Letters from Iwo Jima
## 14480                                                                                                                                              Ratatouille
## 14481                                                                                                                                                      300
## 14482                                                                                                                                             Transformers
## 14483                                                                                                                                      Simpsons Movie, The
## 14484                                                                                                                                                 Superbad
## 14485                                                                                                                                         Eastern Promises
## 14486                                                                                                                                   No Country for Old Men
## 14487                                                                                                                                              I Am Legend
## 14488                                                                                                                                                     Juno
## 14489                                                                                                                                         Dark Knight, The
## 14490                                                                                                                     Under the Same Moon (Misma luna, La)
## 14491                                                                                                                                                 Iron Man
## 14492                                                                                                                                            Kung Fu Panda
## 14493                                                                                                                                                   WALL·E
## 14494                                                                                                                                               Changeling
## 14495                                                                                                                                      Slumdog Millionaire
## 14496                                                                                                                                              Gran Torino
## 14497                                                                                                                                              Frost/Nixon
## 14498                                                                                                                                              Reader, The
## 14499                                                                                                                     Curious Case of Benjamin Button, The
## 14500                                                                                                                                                Star Trek
## 14501                                                                                                                                                       Up
## 14502                                                                                                                                            Hangover, The
## 14503                                                                                                                                         Hurt Locker, The
## 14504                                                                                                                                               District 9
## 14505                                                                                                                                               Zombieland
## 14506                                                                                                                                         Blind Side, The 
## 14507                                                                                                                                                   Avatar
## 14508                                                                                                                                           Shutter Island
## 14509                                                                                                                                                 Kick-Ass
## 14510                                                                                                                                              Toy Story 3
## 14511                                                                                                                                                Inception
## 14512                                                                                                                                                     Heat
## 14513                                                                                                                                             Sudden Death
## 14514                                                                                                                                  American President, The
## 14515                                                                                                                                                   Casino
## 14516                                                                                                                           Ace Ventura: When Nature Calls
## 14517                                                                                                                                                   Powder
## 14518                                                                                 Don't Be a Menace to South Central While Drinking Your Juice in the Hood
## 14519                                                                                                                                      From Dusk Till Dawn
## 14520                                                                                                                                             White Squall
## 14521                                                                                                                                              Black Sheep
## 14522                                                                                                                                                Jury Duty
## 14523                                                                                                                                                  Species
## 14524                                                                                                                                             Strange Days
## 14525                                                                                                                                        Circle of Friends
## 14526                                                                                                                                                   Clerks
## 14527                                                                                                                                              French Kiss
## 14528                                                                                                       Interview with the Vampire: The Vampire Chronicles
## 14529                                                                                                                       Star Wars: Episode IV - A New Hope
## 14530                                                                                                                                             Little Women
## 14531                                                                                                                                      Legends of the Fall
## 14532                                                                                                                                             Pulp Fiction
## 14533                                                                                                              Tales from the Crypt Presents: Demon Knight
## 14534                                                                                                                                   Star Trek: Generations
## 14535                                                                                                                                    Village of the Damned
## 14536                                                                                                                                  While You Were Sleeping
## 14537                                                                                                                              Four Weddings and a Funeral
## 14538                                                                                                                                           I Love Trouble
## 14539                                                                                                                                           Lion King, The
## 14540                                                                          Wes Craven's New Nightmare (Nightmare on Elm Street Part 7: Freddy's Finale, A)
## 14541                                                                                                                                                     Wolf
## 14542                                                                                                                                            Fugitive, The
## 14543                                                                                                                                            Jurassic Park
## 14544                                                                                                                                                RoboCop 3
## 14545                                                                                                                                                Tombstone
## 14546                                                                                                                                Silence of the Lambs, The
## 14547                                                                                                                                              Heavy Metal
## 14548                                                                                                                                               Craft, The
## 14549                                                                                                                                                Rock, The
## 14550                                                                                                                                            Trainspotting
## 14551                                                                                                                            Independence Day (a.k.a. ID4)
## 14552                                                                                                                                                  Kingpin
## 14553                                                                                                                                               Relic, The
## 14554                                                                                                                                 Night of the Living Dead
## 14555                                                                                                                                     2 Days in the Valley
## 14556                                                                                                                                               Cinderella
## 14557                                                                                                                                       Lawnmower Man, The
## 14558                                                                                                                     William Shakespeare's Romeo + Juliet
## 14559                                                                                                                                            Dirty Dancing
## 14560                                                                                                                                               Doors, The
## 14561                                                                                                                                               Abyss, The
## 14562                                                                                                                                             Howling, The
## 14563                                                                                  Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 14564                                                                                                               Star Wars: Episode VI - Return of the Jedi
## 14565                                                                                                                                                    Alien
## 14566                                                                                                                                         Army of Darkness
## 14567                                                                                                                                                   Psycho
## 14568                                                                                                                                       Dead Poets Society
## 14569                                                                                                                                             Shining, The
## 14570                                                                                                                              Evil Dead II (Dead by Dawn)
## 14571                                                                                                                                       Pump Up the Volume
## 14572                                                                                                                                  Alien³ (a.k.a. Alien 3)
## 14573                                                                                                                          American Werewolf in London, An
## 14574                                                                                                                         Amityville 1992: It's About Time
## 14575                                                                                                                                   Amityville Horror, The
## 14576                                                                                                                                         April Fool's Day
## 14577                                                                                                                          Dracula (Bram Stoker's Dracula)
## 14578                                                                                                                                                 Candyman
## 14579                                                                                                                                                   Carrie
## 14580                                                                                                                               Nightmare on Elm Street, A
## 14581                                                                                                                                                Omen, The
## 14582                                                                                                                                               Die Hard 2
## 14583                                                                                                                                           Batman Returns
## 14584                                                                                                                                                     Jaws
## 14585                                                                                                                                                   Jaws 2
## 14586                                                                                                                                                 Jaws 3-D
## 14587                                                                                                                                            Jerry Maguire
## 14588                                                                                                                                                   Scream
## 14589                                                                                                                   Romy and Michele's High School Reunion
## 14590                                                                                                                          I Know What You Did Last Summer
## 14591                                                                                                                                     The Devil's Advocate
## 14592                                                                                                                                                 Phantoms
## 14593                                                                                                                                      Alien: Resurrection
## 14594                                                                                                                                                 Scream 2
## 14595                                                                                                                                              Deep Rising
## 14596                                                                                                                           X-Files: Fight the Future, The
## 14597                                                                                                                                               Armageddon
## 14598                                                                                                           Nightmare on Elm Street 2: Freddy's Revenge, A
## 14599                                                                                                             Nightmare on Elm Street 3: Dream Warriors, A
## 14600                                                                                                           Nightmare on Elm Street 4: The Dream Master, A
## 14601                                                                                                            Nightmare on Elm Street 5: The Dream Child, A
## 14602                                                                    Freddy's Dead: The Final Nightmare (Nightmare on Elm Street Part 6: Freddy's Dead, A)
## 14603                                                                                                                                          Friday the 13th
## 14604                                                                                                                                   Friday the 13th Part 2
## 14605                                                                                                                                                Halloween
## 14606                                                                                                                                             Halloween II
## 14607                                                                                                                       Halloween III: Season of the Witch
## 14608                                                                                                                 Halloween 4: The Return of Michael Myers
## 14609                                                                                                                                            Prom Night II
## 14610                                                                                                                                              Poltergeist
## 14611                                                                                                                           Poltergeist II: The Other Side
## 14612                                                                                                                                                 Gremlins
## 14613                                                                                                                                Gremlins 2: The New Batch
## 14614                                                                                                                                             Goonies, The
## 14615                                                                                                                                  Poseidon Adventure, The
## 14616                                                                                                                                      Disturbing Behavior
## 14617                                                                                                                                      Saving Private Ryan
## 14618                                                                                                                                   Trip to Bountiful, The
## 14619                                                                                                                                      Little Mermaid, The
## 14620                                                                                                                                                     Tron
## 14621                                                                                Halloween H20: 20 Years Later (Halloween 7: The Revenge of Laurie Strode)
## 14622                                                                                                                                                Jerk, The
## 14623                                                                                                         Graveyard Shift (Stephen King's Graveyard Shift)
## 14624                                                                                                                                           Dead Zone, The
## 14625                                                                                                                                        Maximum Overdrive
## 14626                                                                                                                                           Needful Things
## 14627                                                                                                                                                     Cujo
## 14628                                                                                                                                    All Dogs Go to Heaven
## 14629                                                                                                                                                    House
## 14630                                                                                                                               House II: The Second Story
## 14631                                                                                                                                          Rosemary's Baby
## 14632                                                                                                                           Attack of the Killer Tomatoes!
## 14633                                                                                                                                                    Blade
## 14634                                                                                                                                                       54
## 14635                                                                                                                                                   Willow
## 14636                                                                                                                                             Urban Legend
## 14637                                                                                                                                                     Antz
## 14638                                                                                                                       Tales from the Darkside: The Movie
## 14639                                                                                                                                                Elizabeth
## 14640                                                                                                                                       Enemy of the State
## 14641                                                                                                                                Desperately Seeking Susan
## 14642                                                                                                                                                   Psycho
## 14643                                                                                                                                     Prince of Egypt, The
## 14644                                                                                                                                                 Rushmore
## 14645                                                                                                                                      Shakespeare in Love
## 14646                                                                                                                                 Karate Kid, Part II, The
## 14647                                                                                                                                             Faculty, The
## 14648                                                                                                                                         Playing by Heart
## 14649                                                                                                                                           At First Sight
## 14650                                                                                                                                                Gate, The
## 14651                                                                                                                                                 Fly, The
## 14652                                                                                                                             Texas Chainsaw Massacre, The
## 14653                                                                                                                 Leatherface: Texas Chainsaw Massacre III
## 14654                                                          Texas Chainsaw Massacre: The Next Generation (a.k.a. The Return of the Texas Chainsaw Massacre)
## 14655                                                                                                                                            Deadly Friend
## 14656                                                                                                                                         Crocodile Dundee
## 14657                                                                                                                                           She's All That
## 14658                                                                                                                                             Pet Sematary
## 14659                                                                                                                                         Cruel Intentions
## 14660                                                                                                                               10 Things I Hate About You
## 14661                                                                                                                                                       Go
## 14662                                                                                                                                        Never Been Kissed
## 14663                                                                                                                                                 Election
## 14664                                                                                                                                                 eXistenZ
## 14665                                                                                                                                               Mummy, The
## 14666                                                                                                                Star Wars: Episode I - The Phantom Menace
## 14667                                                                                                                                              Superman II
## 14668                                                                                                                           Rocky Horror Picture Show, The
## 14669                                                                                                                                    Thirteenth Floor, The
## 14670                                                                                                                    Austin Powers: The Spy Who Shagged Me
## 14671                                                                                                                                                Big Daddy
## 14672                                                                                                                                            Arachnophobia
## 14673                                                                                                                                           Wild Wild West
## 14674                                                                                                                                            Summer of Sam
## 14675                                                                                                                                             American Pie
## 14676                                                                                                                                 Blair Witch Project, The
## 14677                                                                                                                                              Lake Placid
## 14678                                                                                                                      Ghostbusters (a.k.a. Ghost Busters)
## 14679                                                                                                                                          Ghostbusters II
## 14680                                                                                                                                            Deep Blue Sea
## 14681                                                                                                                                   Little Shop of Horrors
## 14682                                                                                                                                         Sixth Sense, The
## 14683                                                                                                                                                Cat's Eye
## 14684                                                                                                                                          Damien: Omen II
## 14685                                                                                                                           American Werewolf in Paris, An
## 14686                                                                                                                                           Stir of Echoes
## 14687                                                                                                                                          American Beauty
## 14688                                                                                                                                             Fright Night
## 14689                                                                                                                                     Fright Night Part II
## 14690                                                                                                                                          Double Jeopardy
## 14691                                                                                                                                           Drive Me Crazy
## 14692                                                                                                                                                 Phantasm
## 14693                                                                                                                                                Superstar
## 14694                                                                                                                                           Boys Don't Cry
## 14695                                                                                                                                        Razor's Edge, The
## 14696                                                                                                                                               Fight Club
## 14697                                                                                                                                    Bringing Out the Dead
## 14698                                                                                                                                                  RoboCop
## 14699                                                                                                                                 Who Framed Roger Rabbit?
## 14700                                                                                                                                      Bone Collector, The
## 14701                                                                                                                                                Creepshow
## 14702                                                                                                                                              Creepshow 2
## 14703                                                                                                                                              Re-Animator
## 14704                                                                                                                                                  Piranha
## 14705                                                                                                                                               Spaceballs
## 14706                                                                                                                                        Anywhere But Here
## 14707                                                                                                                                            Sleepy Hollow
## 14708                                                                                                                                                Backdraft
## 14709                                                                                                                               Deuce Bigalow: Male Gigolo
## 14710                                                                                                                                               Easy Rider
## 14711                                                                                                                                   Snow Falling on Cedars
## 14712                                                                                                                                                Dead Calm
## 14713                                                                                                                                   League of Their Own, A
## 14714                                                                                                                                           Bodyguard, The
## 14715                                                                                                                                        Death Becomes Her
## 14716                                                                                                                                                  Singles
## 14717                                                                                                                                 Buffy the Vampire Slayer
## 14718                                                                                                                                            Forever Young
## 14719                                                                                                                                                 Scream 3
## 14720                                                                                                                                               Beach, The
## 14721                                                                                                                                              Boiler Room
## 14722                                                                                                                                              Pitch Black
## 14723                                                                                                                                         Who's That Girl?
## 14724                                                                                                                                          Erin Brockovich
## 14725                                                                                                                                        Final Destination
## 14726                                                                                                                                                 Red Dawn
## 14727                                                                                                                                    Good Morning, Vietnam
## 14728                                                                                                                                           Empire Records
## 14729                                                                                                                                            High Fidelity
## 14730                                                                                                                                                   Misery
## 14731                                                                                                                                                Frequency
## 14732                                                                                                                                          American Psycho
## 14733                                                                                                                                                Gladiator
## 14734                                                                                                                                                Road Trip
## 14735                                                                                                                                   Mission: Impossible II
## 14736                                                                                                                                            Puppet Master
## 14737                                                                                                                                       Toxic Avenger, The
## 14738                                                                                                                                                  Mad Max
## 14739                                                                                                                                             Sleepwalkers
## 14740                                                                                                                                       Me, Myself & Irene
## 14741                                                                                                         F/X2 (a.k.a. F/X 2 - The Deadly Art of Illusion)
## 14742                                                                                                                                                    X-Men
## 14743                                                                                                                                               Hollow Man
## 14744                                                                                                                                              Pumpkinhead
## 14745                                                                                                                                           Sleepaway Camp
## 14746                                                                                                                                                Cell, The
## 14747                                                                                                                                                Supergirl
## 14748                                                                                                                                               Hellraiser
## 14749                                                                                                                                 Hellbound: Hellraiser II
## 14750                                                                                                                                         Meet the Parents
## 14751                                                                                                                                                 Ghoulies
## 14752                                                                                                                                             Billy Elliot
## 14753                                                                                                                                              Unbreakable
## 14754                                                                                                                             Planes, Trains & Automobiles
## 14755                                                                                                                               Born on the Fourth of July
## 14756                                                                                                                                          What Women Want
## 14757                                                                                                                                             Dracula 2000
## 14758                                                                                                                                    Shadow of the Vampire
## 14759                                                                                                                                        Back to the Beach
## 14760                                                                                                                                        Beverly Hills Cop
## 14761                                                                                                                                           Evil Dead, The
## 14762                                                                                                                                        Jaws: The Revenge
## 14763                                                                                                                                           Lost Boys, The
## 14764                                                                                                                                       Monster Squad, The
## 14765                                                                                                                                              North Shore
## 14766                                                                                                                                                 Hannibal
## 14767                                                                                                                                                 Mermaids
## 14768                                                                                                                                             Deepstar Six
## 14769                                                                                                                                                 C.H.U.D.
## 14770                                                                                                                                            Forsaken, The
## 14771                                                                                                                                            City Slickers
## 14772                                                                                                                                              Point Break
## 14773                                                                                                                                Fast and the Furious, The
## 14774                                                                                                                                                Blob, The
## 14775                                                                                                                                          Couch Trip, The
## 14776                                                                                                                                  Dirty Rotten Scoundrels
## 14777                                                                                                                             Elvira, Mistress of the Dark
## 14778                                                                                                                                           Johnny Be Good
## 14779                                                                                                                                         License to Drive
## 14780                                                                                                                                                 Watchers
## 14781                                                                                                                                                  Waxwork
## 14782                                                                                                                                                Leviathan
## 14783                                                                                                                                            Punisher, The
## 14784                                                                                                                                    America's Sweethearts
## 14785                                                                                                                                          Stepfather, The
## 14786                                                                                                                                    War of the Roses, The
## 14787                                                                                                                                                  Warlock
## 14788                                                                                                                                              Basket Case
## 14789                                                                                                                                    Princess Diaries, The
## 14790                                                                                                                                           American Pie 2
## 14791                                                                                                                           Jay and Silent Bob Strike Back
## 14792                                                                                                                                                From Hell
## 14793                                                                                                                                          Invasion U.S.A.
## 14794                                                                                                       Lord of the Rings: The Fellowship of the Ring, The
## 14795                                                                                                                                            Orange County
## 14796                                                                                                                                                  48 Hrs.
## 14797                                                                                                                                                 Slackers
## 14798                                                                                                                                             Sandlot, The
## 14799                                                                                                                                         The Monster Club
## 14800                                                                                                                                    Kissing Jessica Stein
## 14801                                                                                                                                                Slap Shot
## 14802                                                                                                                                   Joe Versus the Volcano
## 14803                                                                                                                                     Three Men and a Baby
## 14804                                                                                                                              Three Men and a Little Lady
## 14805                                                                                                                                                   Nomads
## 14806                                                                                                                                                Temp, The
## 14807                                                                                                                                              Wild Orchid
## 14808                                                                                                                                               Spider-Man
## 14809                                                                                                             Star Wars: Episode II - Attack of the Clones
## 14810                                                                                                                                                Mr. Deeds
## 14811                                                                                                                                          Dangerous Minds
## 14812                                                                                                                                      Usual Suspects, The
## 14813                                                                                                                                Shawshank Redemption, The
## 14814                                                                                                                                         Schindler's List
## 14815                                                                                                                                                    Fargo
## 14816                                                                                                                                              Primal Fear
## 14817                                                                                                                                               Craft, The
## 14818                                                                                     Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb
## 14819                                                                                                                                                  Vertigo
## 14820                                                                                                                                              Rear Window
## 14821                                                                                                                                    It Happened One Night
## 14822                                                                                                                                       North by Northwest
## 14823                                                                                                                                         Some Like It Hot
## 14824                                                                                                                                               Casablanca
## 14825                                                                                                                                      Maltese Falcon, The
## 14826                                                                                                                   Sunset Blvd. (a.k.a. Sunset Boulevard)
## 14827                                                                                                                                             Citizen Kane
## 14828                                                                                                                                            All About Eve
## 14829                                                                                                                                                Notorious
## 14830                                                                                                                                          His Girl Friday
## 14831                                                                                                                                       African Queen, The
## 14832                                                                                                                                         Bonnie and Clyde
## 14833                                                                                                                                Streetcar Named Desire, A
## 14834                                                                                                                                           Third Man, The
## 14835                                                                                                                                                   Psycho
## 14836                                                                                                                                         Harold and Maude
## 14837                                                                                                                                                    Glory
## 14838                                                                                                                                            Graduate, The
## 14839                                                                                                                                                Chinatown
## 14840                                                                                                                                Manchurian Candidate, The
## 14841                                                                                                                                           Big Sleep, The
## 14842                                                                                                                                                 Heathers
## 14843                                                                                                                                        L.A. Confidential
## 14844                                                                                                                                              Wag the Dog
## 14845                                                                                                                                             Out of Sight
## 14846                                                                                                                                     Strangers on a Train
## 14847                                                                                                                                       Lady Vanishes, The
## 14848                                                                                                                                          Say Anything...
## 14849                                                                                                                                                Elizabeth
## 14850                                                                                                                                Run Lola Run (Lola rennt)
## 14851                                                                                                                                          American Beauty
## 14852                                                                                                                                           Boys Don't Cry
## 14853                                                                                                                                         Double Indemnity
## 14854                                                                                                                                        Conversation, The
## 14855                                                                                                                      Ace in the Hole (Big Carnival, The)
## 14856                                                                                                                                      Trouble in Paradise
## 14857                                                                                                                                                  Memento
## 14858                                                                                                                              Witness for the Prosecution
## 14859                                                                                                                               Bad and the Beautiful, The
## 14860                                                                                                                             Talk to Her (Hable con Ella)
## 14861                                                                                                                                                 Dogfight
## 14862                                                                                                                                         Awful Truth, The
## 14863                                                                                                                                        In a Lonely Place
## 14864                                                                                                                                 Kind Hearts and Coronets
## 14865                                                                                                                                 Night of the Hunter, The
## 14866                                                                                                                                        Public Enemy, The
## 14867                                                                                                                             Diabolique (Les diaboliques)
## 14868                                                                                                                    Eternal Sunshine of the Spotless Mind
## 14869                                                                                                                               Samouraï, Le (Godson, The)
## 14870                                                                                                                                         Another Thin Man
## 14871                                                                                                                                    Bad Day at Black Rock
## 14872                                                                                                                                    Au revoir les enfants
## 14873                                                                                                                                        Book of Life, The
## 14874                                                                                                                                        This Gun for Hire
## 14875                                                                                                                                                  Holiday
## 14876                                                                                                                                             Ball of Fire
## 14877                                                                                                                                       Unfaithfully Yours
## 14878                                                                                                                                       Narrow Margin, The
## 14879                                                                                                                             The Earrings of Madame de...
## 14880                                                                                                             Lives of Others, The (Das leben der Anderen)
## 14881                                                                                                                                Secret Life of Words, The
## 14882                                                                                                                Pan's Labyrinth (Laberinto del fauno, El)
## 14883                                                                                                                                            Departed, The
## 14884                                                                                                                                         Eastern Promises
## 14885                                                                                                                                          Michael Clayton
## 14886                                                                                                                                                     Juno
## 14887                                                                                                                                                Toy Story
## 14888                                                                                                                       Twelve Monkeys (a.k.a. 12 Monkeys)
## 14889                                                                                                                                      Usual Suspects, The
## 14890                                                                                                                                               Braveheart
## 14891                                                                                                                                                   Clerks
## 14892                                                                                                  Léon: The Professional (a.k.a. The Professional) (Léon)
## 14893                                                                                                                                             Pulp Fiction
## 14894                                                                                                                                Shawshank Redemption, The
## 14895                                                                                                                                             Forrest Gump
## 14896                                                                                                                                           Lion King, The
## 14897                                                                                                                                            Jurassic Park
## 14898                                                                                                                                         Schindler's List
## 14899                                                                                                                                             Blade Runner
## 14900                                                                                                                                                  Aladdin
## 14901                                                                                                                               Terminator 2: Judgment Day
## 14902                                                                                                                                Silence of the Lambs, The
## 14903                                                                                                                                     Beauty and the Beast
## 14904                                                                                                                                             Pretty Woman
## 14905                                                                                                                                                    Fargo
## 14906                                                                                     Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb
## 14907                                                                                                                                           Godfather, The
## 14908                                                                                                                                      Singin' in the Rain
## 14909                                                                                                                                              Rear Window
## 14910                                                                                                                                       North by Northwest
## 14911                                                                                                                                               Casablanca
## 14912                                                                                                                                             Citizen Kane
## 14913                                                                                                                                            All About Eve
## 14914                                                                                                                                                 Die Hard
## 14915                                                                                                                                         Bonnie and Clyde
## 14916                                                                                                                                            Dirty Dancing
## 14917                                                                                                                                           Reservoir Dogs
## 14918                                                                                                                          Monty Python and the Holy Grail
## 14919                                                                                                                          One Flew Over the Cuckoo's Nest
## 14920                                                                                                           Star Wars: Episode V - The Empire Strikes Back
## 14921                                                                                                                                      Princess Bride, The
## 14922                                                                                  Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 14923                                                                                                                                                   Aliens
## 14924                                                                                       Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il)
## 14925                                                                                                                                             12 Angry Men
## 14926                                                                                                                                       Lawrence of Arabia
## 14927                                                                                                                                    To Kill a Mockingbird
## 14928                                                                                                                                           Apocalypse Now
## 14929                                                                                                               Star Wars: Episode VI - Return of the Jedi
## 14930                                                                                                                                           Third Man, The
## 14931                                                                                                                                               Goodfellas
## 14932                                                                                                                                                   Psycho
## 14933                                                                                                                                  Godfather: Part II, The
## 14934                                                                                                                                              Raging Bull
## 14935                                                                                                                                          Terminator, The
## 14936                                                                                                                                        Great Escape, The
## 14937                                                                                                                                            Groundhog Day
## 14938                                                                                                                                Manchurian Candidate, The
## 14939                                                                                                                                       Back to the Future
## 14940                                                                                                                                       This Is Spinal Tap
## 14941                                                                                                                       Indiana Jones and the Last Crusade
## 14942                                                                                                                                                     Jaws
## 14943                                                                                                                                       Fifth Element, The
## 14944                                                                                                                                Men in Black (a.k.a. MIB)
## 14945                                                                                                                                                  Titanic
## 14946                                                                                                                                        Big Lebowski, The
## 14947                                                                                                                           Fear and Loathing in Las Vegas
## 14948                                                                                                                                            Exorcist, The
## 14949                                                                                                                                            Lethal Weapon
## 14950                                                                                                                     Seven Samurai (Shichinin no samurai)
## 14951                                                                                                                                      Saving Private Ryan
## 14952                                                                                                                      Life Is Beautiful (La Vita è bella)
## 14953                                                                                                                                                 Rushmore
## 14954                                                                                                                                             Office Space
## 14955                                                                                                                        Lock, Stock & Two Smoking Barrels
## 14956                                                                                                                                              Matrix, The
## 14957                                                                                                                      Ghostbusters (a.k.a. Ghost Busters)
## 14958                                                                                                                                                      Big
## 14959                                                                                                                                 Ferris Bueller's Day Off
## 14960                                                                                                                                               Fight Club
## 14961                                                                                                                                     Being John Malkovich
## 14962                                                                                                                                               Spaceballs
## 14963                                                                                                                                            Wayne's World
## 14964                                                                                                                                             Animal House
## 14965                                                                                                                       Close Encounters of the Third Kind
## 14966                                                                                                                                                 Predator
## 14967                                                                                                                                               Caddyshack
## 14968                                                                                                                                                Gladiator
## 14969                                                                                                          Naked Gun: From the Files of Police Squad!, The
## 14970                                                                                                                                             Best in Show
## 14971                                                                                                                                                  Memento
## 14972                                                                                                                                                Zoolander
## 14973                                                                                                                                             Donnie Darko
## 14974                                                                                                            Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 14975                                                                                                                                    Royal Tenenbaums, The
## 14976                                                                                                            Spirited Away (Sen to Chihiro no kamikakushi)
## 14977                                                                                                                                               Adaptation
## 14978                                                                                                                                              Equilibrium
## 14979                                                                                                                   Lord of the Rings: The Two Towers, The
## 14980                                                                                                                    My Neighbor Totoro (Tonari no Totoro)
## 14981                                                                                                                                      Lost in Translation
## 14982                                                                                                                                           School of Rock
## 14983                                                                                                           Lord of the Rings: The Return of the King, The
## 14984                                                                                                                    Eternal Sunshine of the Spotless Mind
## 14985                                                                                                                                        Napoleon Dynamite
## 14986                                                                                                                    Anchorman: The Legend of Ron Burgundy
## 14987                                                                                                                                             Garden State
## 14988                                                                                                                                                 Sideways
## 14989                                                                                                                                            The Machinist
## 14990                                                                                                                      Life Aquatic with Steve Zissou, The
## 14991                                                                                                              Howl's Moving Castle (Hauru no ugoku shiro)
## 14992                                                                                                                    Hitchhiker's Guide to the Galaxy, The
## 14993                                                                                                                                         Mr. & Mrs. Smith
## 14994                                                                                                                                           Broken Flowers
## 14995                                                                                                                                  40-Year-Old Virgin, The
## 14996                                                                                                                                               Inside Man
## 14997                                                                                                             Lives of Others, The (Das leben der Anderen)
## 14998                                                                                                                                     Little Miss Sunshine
## 14999                                                                                                              Talladega Nights: The Ballad of Ricky Bobby
## 15000                                                                                                                                    Stranger than Fiction
## 15001                                                                                                                Pan's Labyrinth (Laberinto del fauno, El)
## 15002                                                                                                                                            Departed, The
## 15003                                                                                                                                                 Superbad
## 15004                                                                                                                                  Darjeeling Limited, The
## 15005                                                                                                                                   No Country for Old Men
## 15006                                                                                                                                                     Juno
## 15007                                                                                                                                      There Will Be Blood
## 15008                                                                                                                                         Dark Knight, The
## 15009                                                                                                                                Forgetting Sarah Marshall
## 15010                                                                                                                                        Pineapple Express
## 15011                                                                                                                                        Fantastic Mr. Fox
## 15012                                                                                                                                   Dark Knight Rises, The
## 15013                                                                                                                                         Moonrise Kingdom
## 15014                                                                                                                                          American Sniper
## 15015                                                                                                                              Father of the Bride Part II
## 15016                                                                                                                                                 Clueless
## 15017                                                                                                                                             Pulp Fiction
## 15018                                                                                                                                  While You Were Sleeping
## 15019                                                                                                                                             Forrest Gump
## 15020                                                                                                                              Four Weddings and a Funeral
## 15021                                                                                                                                             Pretty Woman
## 15022                                                                                                                                               Craft, The
## 15023                                                                                                                                   Breakfast at Tiffany's
## 15024                                                                                                                                       Gone with the Wind
## 15025                                                                                                                                      Princess Bride, The
## 15026                                                                                  Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 15027                                                                                                                                         Army of Darkness
## 15028                                                                                                                              Evil Dead II (Dead by Dawn)
## 15029                                                                                                                                       Fifth Element, The
## 15030                                                                                                                                 My Best Friend's Wedding
## 15031                                                                                                                                        Good Will Hunting
## 15032                                                                                                                                                  Titanic
## 15033                                                                                                                                        Big Lebowski, The
## 15034                                                                                                                                                Labyrinth
## 15035                                                                                                                                          Sixteen Candles
## 15036                                                                                                                                                   Willow
## 15037                                                                                                                                            Pleasantville
## 15038                                                                                                                               10 Things I Hate About You
## 15039                                                                                                                                                 Election
## 15040                                                                                                                                               Mummy, The
## 15041                                                                                                                                            Runaway Bride
## 15042                                                                                                                                         Sixth Sense, The
## 15043                                                                                                                                          American Beauty
## 15044                                                                                                                                            Sleepy Hollow
## 15045                                                                                                                                                 Chocolat
## 15046                                                                                                                                    Bridget Jones's Diary
## 15047                                                                                                                                           Legally Blonde
## 15048                                                                                                                                             Donnie Darko
## 15049                                                                                                                                       Sweet Home Alabama
## 15050                                                                                                                                        Maid in Manhattan
## 15051                                                                                                                             How to Lose a Guy in 10 Days
## 15052                                                                                                               Lara Croft Tomb Raider: The Cradle of Life
## 15053                                                                                                                                            Freaky Friday
## 15054                                                                                                                                        Kill Bill: Vol. 1
## 15055                                                                                                                                             I'm No Angel
## 15056                                                                                                                                          Mona Lisa Smile
## 15057                                                                                                                                        Kill Bill: Vol. 2
## 15058                                                                                                                                           13 Going on 30
## 15059                                                                                                                                                     Troy
## 15060                                                                                                                                                  Shrek 2
## 15061                                                                                                                                      My Little Chickadee
## 15062                                                                                                                                            Notebook, The
## 15063                                                                                                                                        Shaun of the Dead
## 15064                                                                                                                        Bridget Jones: The Edge of Reason
## 15065                                                                                                                                       She Done Him Wrong
## 15066                                                                                                                                                    Hitch
## 15067                                                                                                                                   Devil Wears Prada, The
## 15068                                                                                                                                   Lars and the Real Girl
## 15069                                                                                                                                               27 Dresses
## 15070                                                                                        Boy in the Striped Pajamas, The (Boy in the Striped Pyjamas, The)
## 15071                                                                                                                                                       Up
## 15072                                                                                                                                               Zombieland
## 15073                                                                                                                                Where the Wild Things Are
## 15074                                                                                                                                                Inception
## 15075                                                                                                             Harry Potter and the Deathly Hallows: Part 1
## 15076                                                                                                                                      No Strings Attached
## 15077                                                                                                                                     Crazy, Stupid, Love.
## 15078                                                                                                                                                Help, The
## 15079                                                                                                                          The Hunger Games: Catching Fire
## 15080                                                                                                                                 Wolf of Wall Street, The
## 15081                                                                                                                                               Big Hero 6
## 15082                                                                                                                                                 Deadpool
## 15083                                                                                                                                              Zoolander 2
## 15084                                                                                                                          Pride and Prejudice and Zombies
## 15085                                                                                                                           Ice Age: The Great Egg-Scapade
## 15086                                                                                                                                                Toy Story
## 15087                                                                                                                                                  Jumanji
## 15088                                                                                                                                    Sense and Sensibility
## 15089                                                                                                                                               Persuasion
## 15090                                                                                                                                                 Clueless
## 15091                                                                                                                                     Seven (a.k.a. Se7en)
## 15092                                                                                                                                      Usual Suspects, The
## 15093                                                                                                                           Bridges of Madison County, The
## 15094                                                                                                                                               Braveheart
## 15095                                                                                                                        Beauty of the Day (Belle de jour)
## 15096                                                                                                                                                    Congo
## 15097                                                                                                                                                  Hackers
## 15098                                                                                                                                               Waterworld
## 15099                                                                                                                                             Pulp Fiction
## 15100                                                                                                                                                 Stargate
## 15101                                                                                                                                Shawshank Redemption, The
## 15102                                                                                                                                             Forrest Gump
## 15103                                                                                                                              Four Weddings and a Funeral
## 15104                                                                                                                                                Mask, The
## 15105                                                                                                                                                    Speed
## 15106                                                                                                                                                True Lies
## 15107                                                                                                                                               Free Willy
## 15108                                                                                                                                            Fugitive, The
## 15109                                                                                              Englishman Who Went Up a Hill But Came Down a Mountain, The
## 15110                                                                                                                                            Jurassic Park
## 15111                                                                                                                                   Much Ado About Nothing
## 15112                                                                                                                                               Piano, The
## 15113                                                                                                                                         Schindler's List
## 15114                                                                                                                                        Super Mario Bros.
## 15115                                                                                                                                                  Aladdin
## 15116                                                                                                                                Silence of the Lambs, The
## 15117                                                                                                                                     Beauty and the Beast
## 15118                                                                                                                                                Pinocchio
## 15119                                                                                                                                                    Fargo
## 15120                                                                                                                                       Courage Under Fire
## 15121                                                                                                          Wallace & Gromit: The Best of Aardman Animation
## 15122                                                                                                                                                Rock, The
## 15123                                                                                                                                                  Twister
## 15124                                                                                     Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb
## 15125                                                                                                                                                     Emma
## 15126                                                                                                                                  Philadelphia Story, The
## 15127                                                                                                                                      Singin' in the Rain
## 15128                                                                                                                                    American in Paris, An
## 15129                                                                                                                                   Breakfast at Tiffany's
## 15130                                                                                                                                                  Vertigo
## 15131                                                                                                                                              Rear Window
## 15132                                                                                                                                       North by Northwest
## 15133                                                                                                                                           Apartment, The
## 15134                                                                                                                                               Casablanca
## 15135                                                                                                                                      Maltese Falcon, The
## 15136                                                                                                                                             My Fair Lady
## 15137                                                                                                                                     Meet Me in St. Louis
## 15138                                                                                                                                             Citizen Kane
## 15139                                                                                                                                    2001: A Space Odyssey
## 15140                                                                                                                                                  Rebecca
## 15141                                                                                                                                          His Girl Friday
## 15142                                                                                                                                    It's a Wonderful Life
## 15143                                                                                                                                 Night of the Living Dead
## 15144                                                                                                                                       African Queen, The
## 15145                                                                                                                                               Old Yeller
## 15146                                                                                                                                                Pollyanna
## 15147                                                                                                                                          Shaggy Dog, The
## 15148                                                                                                                                    Swiss Family Robinson
## 15149                                                                                                                             20,000 Leagues Under the Sea
## 15150                                                                                                                                               Cinderella
## 15151                                                                                                                                  Sword in the Stone, The
## 15152                                                                                                                                             Mary Poppins
## 15153                                                                                                                                                    Dumbo
## 15154                                                                                                                                      Alice in Wonderland
## 15155                                                                                                                                      Sound of Music, The
## 15156                                                                                                                                          Great Race, The
## 15157                                                                                                                                         Bonnie and Clyde
## 15158                                                                                                                                    Rebel Without a Cause
## 15159                                                                                                                                     English Patient, The
## 15160                                                                                                                                       Lawrence of Arabia
## 15161                                                                                                                                    To Kill a Mockingbird
## 15162                                                                                                               Star Wars: Episode VI - Return of the Jedi
## 15163                                                                                                                                                   Psycho
## 15164                                                                                                                                    Boot, Das (Boat, The)
## 15165                                                                                                                                            Graduate, The
## 15166                                                                                                                            Bridge on the River Kwai, The
## 15167                                                                                                                                           Cool Hand Luke
## 15168                                                                                                                                                 Fantasia
## 15169                                                                                                                                           Big Sleep, The
## 15170                                                                                                                       Butch Cassidy and the Sundance Kid
## 15171                                                                                                                                               Birds, The
## 15172                                                                                                                                                Blob, The
## 15173                                                                                                                                              Sling Blade
## 15174                                                                                                                                            Jerry Maguire
## 15175                                                                                                                                Men in Black (a.k.a. MIB)
## 15176                                                                                                                                                G.I. Jane
## 15177                                                                                                                                                 Cop Land
## 15178                                                                                                                                                    Spawn
## 15179                                                                                                                                        L.A. Confidential
## 15180                                                                                                                                     Seven Years in Tibet
## 15181                                                                                                                                      Welcome to Sarajevo
## 15182                                                                                                                                        Starship Troopers
## 15183                                                                                                                                                  Titanic
## 15184                                                                                                                                        Big Lebowski, The
## 15185                                                                                                                                       Great Expectations
## 15186                                                                                                                                                Dark City
## 15187                                                                                                                                      Wedding Singer, The
## 15188                                                                                                                           X-Files: Fight the Future, The
## 15189                                                                                                                                           Small Soldiers
## 15190                                                                                                                                             Going My Way
## 15191                                                                                                                                        On the Waterfront
## 15192                                                                                                                                          West Side Story
## 15193                                                                                                                                                Tom Jones
## 15194                                                                                                                                   Man for All Seasons, A
## 15195                                                                                                                                 In the Heat of the Night
## 15196                                                                                                                                                  Oliver!
## 15197                                                                                                                                          Midnight Cowboy
## 15198                                                                                                                                       Mask of Zorro, The
## 15199                                                                                                                             Absent-Minded Professor, The
## 15200                                                                                                                                                    Bambi
## 15201                                                                                                                                      Saving Private Ryan
## 15202                                                                                                                                           Doctor Zhivago
## 15203                                                                                                                                       Lady and the Tramp
## 15204                                                                                                          101 Dalmatians (One Hundred and One Dalmatians)
## 15205                                                                                                                                           Rocketeer, The
## 15206                                                                                                                                          Sleeping Beauty
## 15207                                                                                                                                        Song of the South
## 15208                                                                                                                                               Swing Kids
## 15209                                                                                                                                               Snake Eyes
## 15210                                                                                                                          Who's Afraid of Virginia Woolf?
## 15211                                                                                                                                          Doctor Dolittle
## 15212                                                                                                                                     Nutty Professor, The
## 15213                                                                                                                                          Rosemary's Baby
## 15214                                                                                                                      Life Is Beautiful (La Vita è bella)
## 15215                                                                                                                                            Bug's Life, A
## 15216                                                                                                                                           Simple Plan, A
## 15217                                                                                                                                  Star Trek: Insurrection
## 15218                                                                                                                                      Shakespeare in Love
## 15219                                                                                                                                          You've Got Mail
## 15220                                                                                                                                       Thin Red Line, The
## 15221                                                                                                                                       Tea with Mussolini
## 15222                                                                                                                                        Hilary and Jackie
## 15223                                                                                                                                       Planet of the Apes
## 15224                                                                                                                                             Analyze This
## 15225                                                                                                                                          King and I, The
## 15226                                                                                                                                                 Election
## 15227                                                                                                                                  Buena Vista Social Club
## 15228                                                                                                                                                   Tarzan
## 15229                                                                                                                                Run Lola Run (Lola rennt)
## 15230                                                                                                                                          Iron Giant, The
## 15231                                                                                                               Oscar and Lucinda (a.k.a. Oscar & Lucinda)
## 15232                                                                                                                                       Outside Providence
## 15233                                                                                                                                          American Beauty
## 15234                                                                                                                                           Boys Don't Cry
## 15235                                                                                                                                               Limey, The
## 15236                                                                                                                                               Fight Club
## 15237                                                                                                                                      Straight Story, The
## 15238                                                                                                                                     Being John Malkovich
## 15239                                                                                                                                   End of the Affair, The
## 15240                                                                                                                                        Sweet and Lowdown
## 15241                                                                                                                                          Green Mile, The
## 15242                                                                                                                                                 Magnolia
## 15243                                                                                                                                          Man on the Moon
## 15244                                                                                                                                        Girl, Interrupted
## 15245                                                                                                                                              Boiler Room
## 15246                                                                                                                                          Erin Brockovich
## 15247                                                                                                                                                Gladiator
## 15248                                                                                                                                       Me, Myself & Irene
## 15249                                                                                                                                                 Croupier
## 15250                                                                                                                                            Almost Famous
## 15251                                                                                                                                       Dancer in the Dark
## 15252                                                                                                                                             Best in Show
## 15253                                                                                                                                         Meet the Parents
## 15254                                                                                                                                             Billy Elliot
## 15255                                                                                                         Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 15256                                                                                                                                                 Chocolat
## 15257                                                                                                                                        Finding Forrester
## 15258                                                                                                                                                Cast Away
## 15259                                                                                                                               O Brother, Where Art Thou?
## 15260                                                                                                                                            Thirteen Days
## 15261                                                                                                                                                  Traffic
## 15262                                                                                                                                                  Memento
## 15263                                                                                                                                    Bridget Jones's Diary
## 15264                                                                                            Princess and the Warrior, The (Krieger und die Kaiserin, Der)
## 15265                                                                                                                                              Ghost World
## 15266                                                                                                                                Man Who Wasn't There, The
## 15267                                                                                                            Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 15268                                                                                                       Lord of the Rings: The Fellowship of the Ring, The
## 15269                                                                                                                                        Beautiful Mind, A
## 15270                                                                                                                                             Gosford Park
## 15271                                                                                                                                               Spider-Man
## 15272                                                                                                                   Lord of the Rings: The Two Towers, The
## 15273                                                                                                                                                  Chicago
## 15274                                                                                                                                                Toy Story
## 15275                                                                                                                                         Grumpier Old Men
## 15276                                                                                                                                                     Heat
## 15277                                                                                                                                                  Sabrina
## 15278                                                                                                                                        Leaving Las Vegas
## 15279                                                                                                                       Twelve Monkeys (a.k.a. 12 Monkeys)
## 15280                                                                                                                                         Mighty Aphrodite
## 15281                                                                                                                                       Mr. Holland's Opus
## 15282                                                                                                                                             White Squall
## 15283                                                                                                                                              Black Sheep
## 15284                                                                                                                                             Broken Arrow
## 15285                                                                                                                                           Down Periscope
## 15286                                                                                                                                            Birdcage, The
## 15287                                                                                                                                                    Fargo
## 15288                                                                                                                                      Mission: Impossible
## 15289                                                                                                                                James and the Giant Peach
## 15290                                                                                                                             Truth About Cats & Dogs, The
## 15291                                                                                                                                                Rock, The
## 15292                                                                                                                                                  Twister
## 15293                                                                                                                          Wallace & Gromit: A Close Shave
## 15294                                                                                                                            Independence Day (a.k.a. ID4)
## 15295                                                                                                                                                   Eraser
## 15296                                                                                                                                               Phenomenon
## 15297                                                                                                                      Willy Wonka & the Chocolate Factory
## 15298                                                                                                                                 Star Trek: First Contact
## 15299                                                                                                                                                 Bad Boys
## 15300                                                                                                                                                Desperado
## 15301                                                                                                                                          Johnny Mnemonic
## 15302                                                                                                                                                  Species
## 15303                                                                                                                       Star Wars: Episode IV - A New Hope
## 15304                                                                                                                                          Specialist, The
## 15305                                                                                                                                Shawshank Redemption, The
## 15306                                                                                                                       Naked Gun 33 1/3: The Final Insult
## 15307                                                                                                                                            Fugitive, The
## 15308                                                                                                                                Robin Hood: Men in Tights
## 15309                                                                                                                                         Schindler's List
## 15310                                                                                                                                             Blade Runner
## 15311                                                                                                                               Terminator 2: Judgment Day
## 15312                                                                                                                                               Striptease
## 15313                                                                                                                                                 Die Hard
## 15314                                                                                                           Star Wars: Episode V - The Empire Strikes Back
## 15315                                                                                  Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 15316                                                                                                                                                   Aliens
## 15317                                                                                                               Star Wars: Episode VI - Return of the Jedi
## 15318                                                                                                                                                    Alien
## 15319                                                                                                                                          Terminator, The
## 15320                                                                                                                                       Back to the Future
## 15321                                                                                                                       Indiana Jones and the Last Crusade
## 15322                                                                                                                          Star Trek II: The Wrath of Khan
## 15323                                                                                                                            Star Trek IV: The Voyage Home
## 15324                                                                                                                                Hunt for Red October, The
## 15325                                                                                                                           X-Files: Fight the Future, The
## 15326                                                                                                                                            Lethal Weapon
## 15327                                                                                                                                          Lethal Weapon 2
## 15328                                                                                                                     Seven Samurai (Shichinin no samurai)
## 15329                                                                                                                                      Saving Private Ryan
## 15330                                                                                                                                          Few Good Men, A
## 15331                                                                                                                                          My Cousin Vinny
## 15332                                                                                                                                       Enemy of the State
## 15333                                                                                                                                              Matrix, The
## 15334                                                                                                                                            Arachnophobia
## 15335                                                                                                                      Ghostbusters (a.k.a. Ghost Busters)
## 15336                                                                                                                                                Bowfinger
## 15337                                                                                                                                          Green Mile, The
## 15338                                                                                                                       Close Encounters of the Third Kind
## 15339                                                                                                                                                 Predator
## 15340                                                                                                       Lord of the Rings: The Fellowship of the Ring, The
## 15341                                                                                                                   Lord of the Rings: The Two Towers, The
## 15342                                                                                                           Lord of the Rings: The Return of the King, The
## 15343                                                                                                  Patlabor: The Movie (Kidô keisatsu patorebâ: The Movie)
## 15344                                                                                                                                     Battlestar Galactica
## 15345                                                                                                                                            Batman Begins
## 15346                                                                                                                                               Inside Man
## 15347                                                                                                                                    Bourne Ultimatum, The
## 15348                                                                                                                              Battlestar Galactica: Razor
## 15349                                                                                                                                         Dark Knight, The
## 15350                                                                                                                                                     Moon
## 15351                                                                                                                                                Star Trek
## 15352                                                                                                                                               District 9
## 15353                                                                                                                                                Inception
## 15354                                                                                                                                                    Nixon
## 15355                                                                                                                                        Leaving Las Vegas
## 15356                                                                                                                                               Persuasion
## 15357                                                                                                                                                     Babe
## 15358                                                                                                                                               Carrington
## 15359                                                                                                                                         Dead Man Walking
## 15360                                                                                                                                   Across the Sea of Time
## 15361                                                                                                                                               To Die For
## 15362                                                                                                                                     Seven (a.k.a. Se7en)
## 15363                                                                                                                                      Usual Suspects, The
## 15364                                                                                                                                         Mighty Aphrodite
## 15365                                                                                                                               Postman, The (Postino, Il)
## 15366                                                                                                                                      From Dusk Till Dawn
## 15367                                                                                                                                      Crossing Guard, The
## 15368                                                                                                                                          Beautiful Girls
## 15369                                                                                                                                              Taxi Driver
## 15370                                                                                                                           Young Poisoner's Handbook, The
## 15371                                                                                                                                   Flirting With Disaster
## 15372                                                                                                                                  Basketball Diaries, The
## 15373                                                                                                                                                Apollo 13
## 15374                                                                                                                                                 Clockers
## 15375                                                                                                                                                    Crumb
## 15376                                                                                                                                                    Smoke
## 15377                                                                                                                                            Total Eclipse
## 15378                                                                                                                                         Don Juan DeMarco
## 15379                                                                                                                                                  Ed Wood
## 15380                                                                                                                                              Hoop Dreams
## 15381                                                                                                                                       Heavenly Creatures
## 15382                                                                                                       Interview with the Vampire: The Vampire Chronicles
## 15383                                                                                                                       Star Wars: Episode IV - A New Hope
## 15384                                                                                                                                             Little Women
## 15385                                                                                                                              Madness of King George, The
## 15386                                                                                                                                      Murder in the First
## 15387                                                                                                                                             Pulp Fiction
## 15388                                                                                                                                                Quiz Show
## 15389                                                                                                                                  Quick and the Dead, The
## 15390                                                                                                                                Secret of Roan Inish, The
## 15391                                                                                                                                Shawshank Redemption, The
## 15392                                                                                                                                     Vanya on 42nd Street
## 15393                                                                                                                              What's Eating Gilbert Grape
## 15394                                                                                                                                         Muriel's Wedding
## 15395                                                                                                        Adventures of Priscilla, Queen of the Desert, The
## 15396                                                                                                                                                 Backbeat
## 15397                                                                                                                                    Bullets Over Broadway
## 15398                                                                                                                                                 Crooklyn
## 15399                                                                                                                                                     Wolf
## 15400                                                                                                                                     Addams Family Values
## 15401                                                                                                                                                Barcelona
## 15402                                                                                                                                              Cliffhanger
## 15403                                                                                                                                       Dazed and Confused
## 15404                                                                                                                                            Fugitive, The
## 15405                                                                                                                                     Hudsucker Proxy, The
## 15406                                                                                                                                      In the Line of Fire
## 15407                                                                                                                                 Manhattan Murder Mystery
## 15408                                                                                                                                                    Naked
## 15409                                                                                                                                                  Orlando
## 15410                                                                                                                                         Perfect World, A
## 15411                                                                                                                                             Philadelphia
## 15412                                                                                                                                         Schindler's List
## 15413                                                                                                                              Searching for Bobby Fischer
## 15414                                                                                                                                               Serial Mom
## 15415                                                                                                                                               Short Cuts
## 15416                                                                                                                                Six Degrees of Separation
## 15417                                                                                                                                             Blade Runner
## 15418                                                                                                                 Thirty-Two Short Films About Glenn Gould
## 15419                                                                                                                          Nightmare Before Christmas, The
## 15420                                                                                                                                             True Romance
## 15421                                                                                                                                            War Room, The
## 15422                                                                                                                                 Welcome to the Dollhouse
## 15423                                                                                                                                      Spanking the Monkey
## 15424                                                                                                                                    Celluloid Closet, The
## 15425                                                                                                                                       Dances with Wolves
## 15426                                                                                                                                                   Batman
## 15427                                                                                                                                Silence of the Lambs, The
## 15428                                                                                                                          Snow White and the Seven Dwarfs
## 15429                                                                                                                                                Pinocchio
## 15430                                                                                                                                          Wild Bunch, The
## 15431                                                                                                                                                    Fargo
## 15432                                                                                                                                          Aristocats, The
## 15433                                                                                                                                James and the Giant Peach
## 15434                                                                                                                          Wallace & Gromit: A Close Shave
## 15435                                                                                     Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb
## 15436                                                                                                                                       I Shot Andy Warhol
## 15437                                                                                                                                            Trainspotting
## 15438                                                                                                                            Independence Day (a.k.a. ID4)
## 15439                                                                                                                                         Frighteners, The
## 15440                                                                                                                                                Lone Star
## 15441                                                                                                                                               Phenomenon
## 15442                                                                                                                                           Godfather, The
## 15443                                                                                                                                  Philadelphia Story, The
## 15444                                                                                                                                      Singin' in the Rain
## 15445                                                                                                                                   Breakfast at Tiffany's
## 15446                                                                                                                                                  Vertigo
## 15447                                                                                                                                              Rear Window
## 15448                                                                                                                                    It Happened One Night
## 15449                                                                                                                                       North by Northwest
## 15450                                                                                                                                           Apartment, The
## 15451                                                                                                                                         Some Like It Hot
## 15452                                                                                                                                               Casablanca
## 15453                                                                                                                                      Maltese Falcon, The
## 15454                                                                                                                                             My Fair Lady
## 15455                                                                                                                                     Meet Me in St. Louis
## 15456                                                                                                                                        Wizard of Oz, The
## 15457                                                                                                                                       Gone with the Wind
## 15458                                                                                                                                         My Favorite Year
## 15459                                                                                                                   Sunset Blvd. (a.k.a. Sunset Boulevard)
## 15460                                                                                                                                             Citizen Kane
## 15461                                                                                                                                    2001: A Space Odyssey
## 15462                                                                                                                                            All About Eve
## 15463                                                                                                                                               Women, The
## 15464                                                                                                                                                  Rebecca
## 15465                                                                                                                                                Notorious
## 15466                                                                                                                                               Spellbound
## 15467                                                                                                                                                  Top Hat
## 15468                                                                                                                                                    Giant
## 15469                                                                                                                                             East of Eden
## 15470                                                                                                                                            Thin Man, The
## 15471                                                                                                                                    It's a Wonderful Life
## 15472                                                                                                                             Mr. Smith Goes to Washington
## 15473                                                                                                                                         Bringing Up Baby
## 15474                                                                                                                                            39 Steps, The
## 15475                                                                                                                                 Night of the Living Dead
## 15476                                                                                                                                       African Queen, The
## 15477                                                                                                                                    Cat on a Hot Tin Roof
## 15478                                                                                                                                            Meet John Doe
## 15479                                                                                                                                                   Picnic
## 15480                                                                                                                                                Big Night
## 15481                                                                                                                                 Escape to Witch Mountain
## 15482                                                                                                                                            Love Bug, The
## 15483                                                                                                                                               Old Yeller
## 15484                                                                                                                             20,000 Leagues Under the Sea
## 15485                                                                                                                                             Mary Poppins
## 15486                                                                                                                                                    Dumbo
## 15487                                                                                                                                      Sound of Music, The
## 15488                                                                                                                                                 Die Hard
## 15489                                                                                                                                          Beautiful Thing
## 15490                                                                                                                                 Everyone Says I Love You
## 15491                                                                                                                                                 Sleepers
## 15492                                                                                                                      Willy Wonka & the Chocolate Factory
## 15493                                                                                                                                                  Sleeper
## 15494                                                                                                                                                  Bananas
## 15495                                                                                                                                     Fish Called Wanda, A
## 15496                                                                                                                             Monty Python's Life of Brian
## 15497                                                                                                                                          Victor/Victoria
## 15498                                                                                                                                           Candidate, The
## 15499                                                                                                                                         Bonnie and Clyde
## 15500                                                                                                                                        Dial M for Murder
## 15501                                                                                                                                           Reservoir Dogs
## 15502                                                                                                                                                  Platoon
## 15503                                                                                                                                               Doors, The
## 15504                                                                                                                                         Crying Game, The
## 15505                                                                                                                                      Glengarry Glen Ross
## 15506                                                                                                                                          Sophie's Choice
## 15507                                                                                                                               E.T. the Extra-Terrestrial
## 15508                                                                                                                                    Rebel Without a Cause
## 15509                                                                                                                                Streetcar Named Desire, A
## 15510                                                                                                                              People vs. Larry Flynt, The
## 15511                                                                                                                                           On Golden Pond
## 15512                                                                                                                          Return of the Pink Panther, The
## 15513                                                                                                                                                 Fog, The
## 15514                                                                                                                                         Jean de Florette
## 15515                                                                                                                  Manon of the Spring (Manon des sources)
## 15516                                                                                                                          Monty Python and the Holy Grail
## 15517                                                                                                                                       When We Were Kings
## 15518                                                                                                                     Wallace & Gromit: The Wrong Trousers
## 15519                                                                                                                                              Bob Roberts
## 15520                                                                                                                  Cinema Paradiso (Nuovo cinema Paradiso)
## 15521                                                                                                                 Cook the Thief His Wife & Her Lover, The
## 15522                                                                                                                                             Delicatessen
## 15523                                                                                                                                           Paths of Glory
## 15524                                                                                                                                            Grifters, The
## 15525                                                                                                                                             My Left Foot
## 15526                                                                                                                                 Sex, Lies, and Videotape
## 15527                                                                                                                                        Strictly Ballroom
## 15528                                                                                                                                      Thin Blue Line, The
## 15529                                                                                                                                         Paris Is Burning
## 15530                                                                                                                          One Flew Over the Cuckoo's Nest
## 15531                                                                                                           Star Wars: Episode V - The Empire Strikes Back
## 15532                                                                                                                                      Princess Bride, The
## 15533                                                                                  Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 15534                                                                                                                                                   Aliens
## 15535                                                                                       Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il)
## 15536                                                                                                                                             12 Angry Men
## 15537                                                                                                                                       Lawrence of Arabia
## 15538                                                                                                                                    To Kill a Mockingbird
## 15539                                                                                                                                           Apocalypse Now
## 15540                                                                                                   Once Upon a Time in the West (C'era una volta il West)
## 15541                                                                                                               Star Wars: Episode VI - Return of the Jedi
## 15542                                                                                                                Wings of Desire (Himmel über Berlin, Der)
## 15543                                                                                                                                           Third Man, The
## 15544                                                                                                                                               Goodfellas
## 15545                                                                                                                                                    Alien
## 15546                                                                                                                                                      Ran
## 15547                                                                                                                       Killer, The (Die xue shuang xiong)
## 15548                                                                                                                                                   Psycho
## 15549                                                                                                                                      Blues Brothers, The
## 15550                                                                                                                                  Godfather: Part II, The
## 15551                                                                                                                                        Full Metal Jacket
## 15552                                                                                                                                                  Henry V
## 15553                                                                                                                                                  Amadeus
## 15554                                                                                                                              Once Upon a Time in America
## 15555                                                                                                                                              Raging Bull
## 15556                                                                                                                                               Annie Hall
## 15557                                                                                                                                         Right Stuff, The
## 15558                                                                                                                                    Boot, Das (Boat, The)
## 15559                                                                                                                                               Sting, The
## 15560                                                                                                                                         Harold and Maude
## 15561                                                                                                                 Seventh Seal, The (Sjunde inseglet, Det)
## 15562                                                                                                                                               Local Hero
## 15563                                                                                                                                          Terminator, The
## 15564                                                                                                                                                    Glory
## 15565                                                                                                                    Rosencrantz and Guildenstern Are Dead
## 15566                                                                                                                                                Manhattan
## 15567                                                                                                                                        Miller's Crossing
## 15568                                                                                                                                       Dead Poets Society
## 15569                                                                                                                                            Graduate, The
## 15570                                                                                                                                            Touch of Evil
## 15571                                                                                                                                Femme Nikita, La (Nikita)
## 15572                                                                                                                            Bridge on the River Kwai, The
## 15573                                                                                                                                               8 1/2 (8½)
## 15574                                                                                                                                                Chinatown
## 15575                                                                                                                           Day the Earth Stood Still, The
## 15576                                                                                                                                                Duck Soup
## 15577                                                                                                                                             Shining, The
## 15578                                                                                                                                              Stand by Me
## 15579                                                                                                                                                        M
## 15580                                                                                                                                        Great Escape, The
## 15581                                                                                                                                         Deer Hunter, The
## 15582                                                                                                                                                     Diva
## 15583                                                                                                                                            Groundhog Day
## 15584                                                                                                                                               Unforgiven
## 15585                                                                                                                                Manchurian Candidate, The
## 15586                                                                                                                                       Pump Up the Volume
## 15587                                                                                                                                       Back to the Future
## 15588                                                                                                                                                   Patton
## 15589                                                                                                                                              Down by Law
## 15590                                                                                                                                           Cool Hand Luke
## 15591                                                                                                                                       Young Frankenstein
## 15592                                                                                                                                           Night on Earth
## 15593                                                                                                                                      Great Dictator, The
## 15594                                                                                                                                                 Fantasia
## 15595                                                                                                                                                High Noon
## 15596                                                                                                                                           Big Sleep, The
## 15597                                                                                                                                                 Heathers
## 15598                                                                                                                                                  Ben-Hur
## 15599                                                                                                                                       This Is Spinal Tap
## 15600                                                                                                Koyaanisqatsi (a.k.a. Koyaanisqatsi: Life Out of Balance)
## 15601                                                                                                                                              Being There
## 15602                                                                                                                                                   Gandhi
## 15603                                                                                                                                      Room with a View, A
## 15604                                                                                                                                      Killing Fields, The
## 15605                                                                                                                     My Life as a Dog (Mitt liv som hund)
## 15606                                                                                                                                          Field of Dreams
## 15607                                                                                                                       Butch Cassidy and the Sundance Kid
## 15608                                                                                                                                  When Harry Met Sally...
## 15609                                                                                                                                  Alien³ (a.k.a. Alien 3)
## 15610                                                                                                                          American Werewolf in London, An
## 15611                                                                                                                                           Amityville 3-D
## 15612                                                                                                                                   Amityville Horror, The
## 15613                                                                                                                                               Birds, The
## 15614                                                                                                                          Dracula (Bram Stoker's Dracula)
## 15615                                                                                                       Bride of Frankenstein, The (Bride of Frankenstein)
## 15616                                                                                                                                          Burnt Offerings
## 15617                                                                                                                                                 Candyman
## 15618                                                                                                                                                   Carrie
## 15619                                                                                                                                               Cat People
## 15620                                                                                                                               Nightmare on Elm Street, A
## 15621                                                                                                        Nosferatu (Nosferatu, eine Symphonie des Grauens)
## 15622                                                                                                                                                Omen, The
## 15623                                                                                                                                                    Shine
## 15624                                                                                                                                              Sling Blade
## 15625                                                                                                     Paradise Lost: The Child Murders at Robin Hood Hills
## 15626                                                                                                                                            Crucible, The
## 15627                                                                                                                          Star Trek II: The Wrath of Khan
## 15628                                                                                                                                           Batman Returns
## 15629                                                                                                                                                   Grease
## 15630                                                                                                                                   Substance of Fire, The
## 15631                                                                                                                                                     Jaws
## 15632                                                                                                                                                 Jaws 3-D
## 15633                                                                                                                                            Jerry Maguire
## 15634                                                                                                                                          Raising Arizona
## 15635                                                                                                                          Beavis and Butt-Head Do America
## 15636                                                                                                                                                   Scream
## 15637                                                                                                                                                   Hamlet
## 15638                                                                                                              Message to Love: The Isle of Wight Festival
## 15639                                                                                                                                      Waiting for Guffman
## 15640                                                                                                                                            Donnie Brasco
## 15641                                                                                                                               Children of the Revolution
## 15642                                                                                                              Austin Powers: International Man of Mystery
## 15643                                                                                                                                Love! Valour! Compassion!
## 15644                                                                                                                                         Pillow Book, The
## 15645                                                                                                                                                  Contact
## 15646                                                                                                                                    In the Company of Men
## 15647                                                                                                                                Hunt for Red October, The
## 15648                                                                                                                                     My Own Private Idaho
## 15649                                                                                                                                        L.A. Confidential
## 15650                                                                                                                          I Know What You Did Last Summer
## 15651                                                                                                                                        House of Yes, The
## 15652                                                                                                                                                  Stripes
## 15653                                                                                                                                            Boogie Nights
## 15654                                                                                                                                      Alien: Resurrection
## 15655                                                                                                                                     Deconstructing Harry
## 15656                                                                                                                                        Good Will Hunting
## 15657                                                                                                                                                 Scream 2
## 15658                                                                                                                                     Sweet Hereafter, The
## 15659                                                                                                                                             Jackie Brown
## 15660                                                                                                                                        Big Lebowski, The
## 15661                                                                                                                         My Life in Pink (Ma vie en rose)
## 15662                                                                                                                                            Men with Guns
## 15663                                                                                                                                                  Everest
## 15664                                                                                                                                  Last Days of Disco, The
## 15665                                                                                                                                     Gingerbread Man, The
## 15666                                                                                                                                          Kurt & Courtney
## 15667                                                                                                                                                 Bulworth
## 15668                                                                                                                           Fear and Loathing in Las Vegas
## 15669                                                                                                                                              Hope Floats
## 15670                                                                                                                                        Can't Hardly Wait
## 15671                                                                                                                             There's Something About Mary
## 15672                                                                                                                                  Plan 9 from Outer Space
## 15673                                                                                                                           All Quiet on the Western Front
## 15674                                                                                                                                              Grand Hotel
## 15675                                                                                                                                     Mutiny on the Bounty
## 15676                                                                                                                             Best Years of Our Lives, The
## 15677                                                                                                                                                   Hamlet
## 15678                                                                                                                                    From Here to Eternity
## 15679                                                                                                                                        On the Waterfront
## 15680                                                                                                                                                    Marty
## 15681                                                                                                                                          West Side Story
## 15682                                                                                                                                 In the Heat of the Night
## 15683                                                                                                                                          Midnight Cowboy
## 15684                                                                                                                                   French Connection, The
## 15685                                                                                                                                                    Rocky
## 15686                                                                                                                                        Kramer vs. Kramer
## 15687                                                                                                                                          Ordinary People
## 15688                                                                                                                                         Chariots of Fire
## 15689                                                                                                                                      Terms of Endearment
## 15690                                                                                                                                        Last Emperor, The
## 15691                                                                                                                                                 Rain Man
## 15692                                                                                                                                       Driving Miss Daisy
## 15693                                                                                                                                                 Repo Man
## 15694                                                                                                                                             Metropolitan
## 15695                                                                                                                                      Breakfast Club, The
## 15696                                                                                                           Nightmare on Elm Street 2: Freddy's Revenge, A
## 15697                                                                                                                                          Friday the 13th
## 15698                                                                                                                                                Halloween
## 15699                                                                                                                                               Prom Night
## 15700                                                                                                                                              Poltergeist
## 15701                                                                                                                                            Exorcist, The
## 15702                                                                                                                                        Exorcist III, The
## 15703                                                                                                                                            Lethal Weapon
## 15704                                                                                                                                          Lethal Weapon 2
## 15705                                                                                                                                                 Gremlins
## 15706                                                                                                                                               Metropolis
## 15707                                                                                                                                            Freaky Friday
## 15708                                                                                                                                                    Bambi
## 15709                                                                                                                     Seven Samurai (Shichinin no samurai)
## 15710                                                                                                                                       Dangerous Liaisons
## 15711                                                                                                                                                     Dune
## 15712                                                                                                                                 Godfather: Part III, The
## 15713                                                                                                                       Darby O'Gill and the Little People
## 15714                                                                                                                                               Roger & Me
## 15715                                                                                                                                Purple Rose of Cairo, The
## 15716                                                                                                                                           Doctor Zhivago
## 15717                                                                                                                Fanny and Alexander (Fanny och Alexander)
## 15718                                                                                                                                   Trip to Bountiful, The
## 15719                                                                                                                                           Tender Mercies
## 15720                                                                                                                                                 Mephisto
## 15721                                                                                                                                              Blue Velvet
## 15722                                                                                                                                         Jungle Book, The
## 15723                                                                                                                                       Lady and the Tramp
## 15724                                                                                                          101 Dalmatians (One Hundred and One Dalmatians)
## 15725                                                                                                                                                Peter Pan
## 15726                                                                                                                                                   Popeye
## 15727                                                                                                                                            Rescuers, The
## 15728                                                                                                                          Something Wicked This Way Comes
## 15729                                                                                                                                        Song of the South
## 15730                                                                                                                                                   Splash
## 15731                                                                                                                                                     Tron
## 15732                                                                                Halloween H20: 20 Years Later (Halloween 7: The Revenge of Laurie Strode)
## 15733                                                                                                                                                Jerk, The
## 15734                                                                                                                                Dead Men Don't Wear Plaid
## 15735                                                                                                                                             Grand Canyon
## 15736                                                                                                                                           Dead Zone, The
## 15737                                                                                                                                                     Cujo
## 15738                                                                                                                                       Addams Family, The
## 15739                                                                                                                                            Atlantic City
## 15740                                                                                                                          Who's Afraid of Virginia Woolf?
## 15741                                                                                                                                          Doctor Dolittle
## 15742                                                                                                                                          Charlotte's Web
## 15743                                                                                                                                           Watership Down
## 15744                                                                                                                                        Dark Crystal, The
## 15745                                                                                                                                          Sixteen Candles
## 15746                                                                                                                                           Pretty in Pink
## 15747                                                                                                                                          St. Elmo's Fire
## 15748                                                                                                                                          Rosemary's Baby
## 15749                                                                                                                           Attack of the Killer Tomatoes!
## 15750                                                                                                                                              Beetlejuice
## 15751                                                                                                                                     Strangers on a Train
## 15752                                                                                                                                                   Willow
## 15753                                                                                                                                        Untouchables, The
## 15754                                                                                                                                                 Lifeboat
## 15755                                                                                                                                        Shadow of a Doubt
## 15756                                                                                                                                       Lady Vanishes, The
## 15757                                                                                                                                                  Murder!
## 15758                                                                                                                   Lodger: A Story of the London Fog, The
## 15759                                                                                                                                             My Bodyguard
## 15760                                                                                                                                           Broadcast News
## 15761                                                                                                                                          Say Anything...
## 15762                                                                                                                                          Few Good Men, A
## 15763                                                                                                                                                   Pecker
## 15764                                                                                                                                              Player, The
## 15765                                                                                                                                        Stardust Memories
## 15766                                                                                                                                      Edward Scissorhands
## 15767                                                                                                                                           Producers, The
## 15768                                                                                                                             History of the World: Part I
## 15769                                                                                                                                                Nashville
## 15770                                                                                                                                 Children of a Lesser God
## 15771                                                                                                                                        Elephant Man, The
## 15772                                                                                                                                                Happiness
## 15773                                                                                                                                            Pleasantville
## 15774                                                                                                                                        Gods and Monsters
## 15775                                                                                                                                                Elizabeth
## 15776                                                                                                                                            Runaway Train
## 15777                                                                                                                                             Desert Bloom
## 15778                                                                                                                 Nights of Cabiria (Notti di Cabiria, Le)
## 15779                                                                                                                                           Big Chill, The
## 15780                                                                                                                                                Celebrity
## 15781                                                                                                                                           Pink Flamingos
## 15782                                                                                                                                           Glen or Glenda
## 15783                                                                                                                                                King Kong
## 15784                                                                                                                                                King Kong
## 15785                                                                                                                                           Simple Plan, A
## 15786                                                                                                                                                 Rushmore
## 15787                                                                                                                                      Shakespeare in Love
## 15788                                                                                                                                              Mass Appeal
## 15789                                                                                                                                      Romancing the Stone
## 15790                                                                                                                                                   Cocoon
## 15791                                                                                                                                          Karate Kid, The
## 15792                                                                                               Christmas Vacation (National Lampoon's Christmas Vacation)
## 15793                                                                                                                                               Affliction
## 15794                                                                                                                                   Boy Who Could Fly, The
## 15795                                                                                                                                                 Fly, The
## 15796                                                                                                                                                 Fly, The
## 15797                                                                                                                             Texas Chainsaw Massacre, The
## 15798                                                                                                                                                Christine
## 15799                                                                                                                                                  Airport
## 15800                                                                                                                                    Towering Inferno, The
## 15801                                                                                                                                                Westworld
## 15802                                                                                                                                         Cruel Intentions
## 15803                                                                                                                                      Rage: Carrie 2, The
## 15804                                                                                                                                                 Election
## 15805                                                                                                                                               Dick Tracy
## 15806                                                                                                                Star Wars: Episode I - The Phantom Menace
## 15807                                                                                                                                           Mommie Dearest
## 15808                                                                                                                                                  Dracula
## 15809                                                                                                                           Rocky Horror Picture Show, The
## 15810                                                                                                                                   War of the Worlds, The
## 15811                                                                                                                           Invasion of the Body Snatchers
## 15812                                                                                                                                    Thirteenth Floor, The
## 15813                                                                                                                    Austin Powers: The Spy Who Shagged Me
## 15814                                                                                                                                Run Lola Run (Lola rennt)
## 15815                                                                                                                                            Summer of Sam
## 15816                                                                                                                                 Blair Witch Project, The
## 15817                                                                                                                                           Eyes Wide Shut
## 15818                                                                                                                      Ghostbusters (a.k.a. Ghost Busters)
## 15819                                                                                                                                          Ghostbusters II
## 15820                                                                                                                                         Twin Falls Idaho
## 15821                                                                                                                                             Killing, The
## 15822                                                                                                                                                Spartacus
## 15823                                                                                                                                                   Lolita
## 15824                                                                                                                                             Barry Lyndon
## 15825                                                                                                                  400 Blows, The (Les quatre cents coups)
## 15826                                                                                                                                      Mosquito Coast, The
## 15827                                                                                                                                        Color Purple, The
## 15828                                                                                                                                   Little Shop of Horrors
## 15829                                                                                                                              Little Shop of Horrors, The
## 15830                                                                                                                                       Morning After, The
## 15831                                                                                                                                               Radio Days
## 15832                                                                                                                                                  Frances
## 15833                                                                                                                                         Sixth Sense, The
## 15834                                                                                                                                 Thomas Crown Affair, The
## 15835                                                                                                                                          Heaven Can Wait
## 15836                                                                                                                             Masque of the Red Death, The
## 15837                                                                                                                                                Airplane!
## 15838                                                                                                                           American Werewolf in Paris, An
## 15839                                                                                                                              National Lampoon's Vacation
## 15840                                                                                                                                                      Big
## 15841                                                                                                                                       Christmas Story, A
## 15842                                                                                                                                                   Hamlet
## 15843                                                                                                                                           Minus Man, The
## 15844                                                                                                                                       Soldier's Story, A
## 15845                                                                                                                                         Yellow Submarine
## 15846                                                                                                                                          American Beauty
## 15847                                                                                                                                        Stop Making Sense
## 15848                                                                                                                                      Hard Day's Night, A
## 15849                                                                                                                                   Buddy Holly Story, The
## 15850                                                                                                                                              Deliverance
## 15851                                                                                                                                                Excalibur
## 15852                                                                                                                                                  Mumford
## 15853                                                                                                                                              Three Kings
## 15854                                                                                                                                                Psycho II
## 15855                                                                                                                                           Risky Business
## 15856                                                                                                                                                Body Heat
## 15857                                                                                                                                 Ferris Bueller's Day Off
## 15858                                                                                                                          Year of Living Dangerously, The
## 15859                                                                                                            Children of Paradise (Les enfants du paradis)
## 15860                                                                                                                                      High Plains Drifter
## 15861                                                                                                                                            Hang 'Em High
## 15862                                                                                                                        Conformist, The (Conformista, Il)
## 15863                                                                                                                                                Hairspray
## 15864                                                                                                                                                     Reds
## 15865                                                                                                                                           Days of Heaven
## 15866                                                                                                                                         Dirty Dozen, The
## 15867                                                                                                                                               Goldfinger
## 15868                                                                                                                                    From Russia with Love
## 15869                                                                                                                                                   Dr. No
## 15870                                                                                                          Fistful of Dollars, A (Per un pugno di dollari)
## 15871                                                                                                                                      Straight Story, The
## 15872                                                                                                                                             Time Bandits
## 15873                                                                                                                                             Fitzcarraldo
## 15874                                                                                                                                  Crimes and Misdemeanors
## 15875                                                                                                                                 Who Framed Roger Rabbit?
## 15876                                                                                                                                              Thunderball
## 15877                                                                                                                                     Being John Malkovich
## 15878                                                                                                                                             Insider, The
## 15879                                                                                                                                           American Movie
## 15880                                                                                                                           They Shoot Horses, Don't They?
## 15881                                                                                                                                              Re-Animator
## 15882                                                                                                                                         Drugstore Cowboy
## 15883                                                                                                                                             General, The
## 15884                                                                                                                                           Little Big Man
## 15885                                                                                                                                           Trading Places
## 15886                                                                                                                                         Commitments, The
## 15887                                                                                                                                              Holiday Inn
## 15888                                                                                                                                         Longest Day, The
## 15889                                                                                                                                        Tora! Tora! Tora!
## 15890                                                                     Women on the Verge of a Nervous Breakdown (Mujeres al borde de un ataque de nervios)
## 15891                                                                                                                                             Verdict, The
## 15892                                                                                                                                        Stand and Deliver
## 15893                                                                                                                                               Moonstruck
## 15894                                                                                                                                            Sleepy Hollow
## 15895                                                                                                                                                   Harvey
## 15896                                                            Bicycle Thieves (a.k.a. The Bicycle Thief) (a.k.a. The Bicycle Thieves) (Ladri di biciclette)
## 15897                                                                                                                                     McCabe & Mrs. Miller
## 15898                                                                                                                                     Grapes of Wrath, The
## 15899                                                                                                                                             Natural, The
## 15900                                                                                                                                        Sweet and Lowdown
## 15901                                                                                                                                  Bonfire of the Vanities
## 15902                                                                                                                      Grand Illusion (La grande illusion)
## 15903                                                                                                                                         Cradle Will Rock
## 15904                                                                                                                                          Green Mile, The
## 15905                                                                                                                                   Last Picture Show, The
## 15906                                                                                                                                              Topsy-Turvy
## 15907                                                                                                                                               Easy Rider
## 15908                                                                                                                               The Falcon and the Snowman
## 15909                                                                                                                                 Talented Mr. Ripley, The
## 15910                                                                                                                                           Angela's Ashes
## 15911                                                                                                                                                Stalag 17
## 15912                                                                                                                                                 Papillon
## 15913                                                                                                                                         Five Easy Pieces
## 15914                                                                                                                                                Dead Calm
## 15915                                                                                                                             Fast Times at Ridgemont High
## 15916                                                                                                                                                   Poison
## 15917                                                                                                                                     Zed & Two Noughts, A
## 15918                                                                                                                        Woman in the Dunes (Suna no onna)
## 15919                                                                                                                                                Malcolm X
## 15920                                                                                                                                                    Alive
## 15921                                                                                                                                             Agnes of God
## 15922                                                                                                                                            Wayne's World
## 15923                                                                                                                                   League of Their Own, A
## 15924                                                                                                                            Twin Peaks: Fire Walk with Me
## 15925                                                                                                                                 Buffy the Vampire Slayer
## 15926                                                                                                                           Hard-Boiled (Lat sau san taam)
## 15927                                                                                                           Man Bites Dog (C'est arrivé près de chez vous)
## 15928                                                                                                                                                 Scream 3
## 15929                                                                                                                                               Beach, The
## 15930                                                                                                                                    Whole Nine Yards, The
## 15931                                                                                                                                              City Lights
## 15932                                                                                                                                        Flamingo Kid, The
## 15933                                                                                                                                              Wonder Boys
## 15934                                                                                                                                            Drowning Mona
## 15935                                                                                                                                           Beyond the Mat
## 15936                                                                                                                                  The Year My Voice Broke
## 15937                                                                                                                                                    Birdy
## 15938                                                                                                                                     Raisin in the Sun, A
## 15939                                                                                                                                          Mission to Mars
## 15940                                                                                                                                      Defending Your Life
## 15941                                                                                                                              Hoosiers (a.k.a. Best Shot)
## 15942                                                                                                                                              Bull Durham
## 15943                                                                                                                                        Dog Day Afternoon
## 15944                                                                                                                                        American Graffiti
## 15945                                                                                                                                           Searchers, The
## 15946                                                                                                                                                      JFK
## 15947                                                                                                                                        Muppet Movie, The
## 15948                                                                                                                                          Erin Brockovich
## 15949                                                                                                                                          Thelma & Louise
## 15950                                                                                                                                   ...And Justice for All
## 15951                                                                                                                                             Animal House
## 15952                                                                                                                                      She's Gotta Have It
## 15953                                                                                                                                       Do the Right Thing
## 15954                                                                                                                                             Jungle Fever
## 15955                                                                                                                                               Champ, The
## 15956                                                                                                                                         Double Indemnity
## 15957                                                                                                                                                 Red Dawn
## 15958                                                                                                                                    Good Morning, Vietnam
## 15959                                                                                                                             Guess Who's Coming to Dinner
## 15960                                                                                                                                        Lord of the Flies
## 15961                                                                                                                                             Modern Times
## 15962                                                                                                                                             Hustler, The
## 15963                                                                                                                                         Inherit the Wind
## 15964                                                                                                                       Close Encounters of the Third Kind
## 15965                                                                                                                                                Bamba, La
## 15966                                                                                                                                                Ladyhawke
## 15967                                                                                                                                            High Fidelity
## 15968                                                                                                                                              Skulls, The
## 15969                                                                                                                                                   Misery
## 15970                                                                                                                                       Solaris (Solyaris)
## 15971                                                                                                                                                  Network
## 15972                                                                                                                                  Outlaw Josey Wales, The
## 15973                                                                                                                                          Ready to Rumble
## 15974                                                                                                                                   Force 10 from Navarone
## 15975                                                                                                                                            Mystery Train
## 15976                                                                                                                                               Parenthood
## 15977                                                                                                                                     Prince of Tides, The
## 15978                                                                                                                          Postman Always Rings Twice, The
## 15979                                                                                                                                             East is East
## 15980                                                                                                                                                    Diner
## 15981                                                                                                                                         Shakes the Clown
## 15982                                                                                                                                                  Cabaret
## 15983                                                                                                                         What Ever Happened to Baby Jane?
## 15984                                                                                                                                       Prick Up Your Ears
## 15985                                                                                                                                              Auntie Mame
## 15986                                                                                                                                           Guys and Dolls
## 15987                                                                                                                                               The Hunger
## 15988                                                                                                                                             Marathon Man
## 15989                                                                                                                                               Caddyshack
## 15990                                                                                                                      Flintstones in Viva Rock Vegas, The
## 15991                                                                                                                                       Where the Heart Is
## 15992                                                                                                                                          Big Kahuna, The
## 15993                                                                                                                              King of Marvin Gardens, The
## 15994                                                                                                                                   Lords of Flatbush, The
## 15995                                                                                                                                                  Mr. Mom
## 15996                                                                                                                                              On the Town
## 15997                                                                                                                                  Pee-wee's Big Adventure
## 15998                                                                                                                                         Regret to Inform
## 15999                                                                                                                                       Honeymoon in Vegas
## 16000                                                                                                                                        Small Time Crooks
## 16001                                                                                                                          On Her Majesty's Secret Service
## 16002                                                                                                                                    Spy Who Loved Me, The
## 16003                                                                                                                             Man with the Golden Gun, The
## 16004                                                                                                                              Blow-Out (La grande bouffe)
## 16005                                                                                                                                         Romeo and Juliet
## 16006                                                                                                                                          Blazing Saddles
## 16007                                                                                                                                          White Christmas
## 16008                                                                                                                                               Eraserhead
## 16009                                                                                                                             Man with the Golden Arm, The
## 16010                                                                                                                     Decline of Western Civilization, The
## 16011                                                                                            Decline of Western Civilization Part II: The Metal Years, The
## 16012                                                                                                      For a Few Dollars More (Per qualche dollaro in più)
## 16013                                                                                                                                             Blood Simple
## 16014                                                                                                                                           Prizzi's Honor
## 16015                                                                                                                                         Running Man, The
## 16016                                                                                                                         Brother from Another Planet, The
## 16017                                                                                                                                                  Mad Max
## 16018                                                                                                                            Road Warrior, The (Mad Max 2)
## 16019                                                                                                                               Mad Max Beyond Thunderdome
## 16020                                                                                                                                              Angel Heart
## 16021                                                                                                                                              Firestarter
## 16022                                                                                                                                              Coming Home
## 16023                                                                                                                                                    Shaft
## 16024                                                                                                                                        Conversation, The
## 16025                                                                                                                                         Paper Chase, The
## 16026                                                                                                                                       Prince of the City
## 16027                                                                                                                                                  Serpico
## 16028                                                                                                                              Big Trouble in Little China
## 16029                                                                                                                                                 Badlands
## 16030                                                                                                                                      Battleship Potemkin
## 16031                                                                                                                                    M*A*S*H (a.k.a. MASH)
## 16032                                                                                                 City of Lost Children, The (Cité des enfants perdus, La)
## 16033                                                                                                                       Twelve Monkeys (a.k.a. 12 Monkeys)
## 16034                                                                                                                                     Seven (a.k.a. Se7en)
## 16035                                                                                                                                                Fair Game
## 16036                                                                                                                                                  Species
## 16037                                                                                                  Léon: The Professional (a.k.a. The Professional) (Léon)
## 16038                                                                                                                                           Street Fighter
## 16039                                                                                                                                                RoboCop 3
## 16040                                                                                                                                             Blade Runner
## 16041                                                                                                                               Terminator 2: Judgment Day
## 16042                                                                                                                                                   Batman
## 16043                                                                                                                                Silence of the Lambs, The
## 16044                                                                                                                  Mystery Science Theater 3000: The Movie
## 16045                                                                                                                      Cemetery Man (Dellamorte Dellamore)
## 16046                                                                                                                                                  Twister
## 16047                                                                                                                      Ghost in the Shell (Kôkaku kidôtai)
## 16048                                                                                                                                            Trainspotting
## 16049                                                                                                                            Independence Day (a.k.a. ID4)
## 16050                                                                                                                                                    Bound
## 16051                                                                                                                                       Lawnmower Man, The
## 16052                                                                                                                                                  Top Gun
## 16053                                                                                                                                     Escape from New York
## 16054                                                                                                                                                   Brazil
## 16055                                                                                                                                                   Aliens
## 16056                                                                                                                                                    Alien
## 16057                                                                                                                                         Army of Darkness
## 16058                                                                                                                                          Terminator, The
## 16059                                                                                                                                   Dead Alive (Braindead)
## 16060                                                                                                                                                Bad Taste
## 16061                                                                                                                              Evil Dead II (Dead by Dawn)
## 16062                                                                                                                                                    Akira
## 16063                                                                                                                                  Alien³ (a.k.a. Alien 3)
## 16064                                                                                                                          Dracula (Bram Stoker's Dracula)
## 16065                                                                                                                                              Under Siege
## 16066                                                                                                                                                 Jaws 3-D
## 16067                                                                                                                                       Fifth Element, The
## 16068                                                                                                                                                  Con Air
## 16069                                                                                                                                           Batman & Robin
## 16070                                                                                                                                Men in Black (a.k.a. MIB)
## 16071                                                                                                                                                  Contact
## 16072                                                                                                                                                    Steel
## 16073                                                                                                                                     The Devil's Advocate
## 16074                                                                                                                                                  Gattaca
## 16075                                                                                                                                        Starship Troopers
## 16076                                                                                                                                      Alien: Resurrection
## 16077                                                                                                                                                  Titanic
## 16078                                                                                                                                              Wild Things
## 16079                                                                                                                                                     Dune
## 16080                                                                                                                                                     Cube
## 16081                                                                                                                                       American History X
## 16082                                                                                                                                   Jewel of the Nile, The
## 16083                                                                                                                                           Wing Commander
## 16084                                                                                                                                              Matrix, The
## 16085                                                                                                                                               Entrapment
## 16086                                                                                                                                           Wild Wild West
## 16087                                                                                                                                          American Beauty
## 16088                                                                                                                                             Total Recall
## 16089                                                                                                                                               Fight Club
## 16090                                                                                                                                                  RoboCop
## 16091                                                                                                                                               Spaceballs
## 16092                                                                                                                                             Galaxy Quest
## 16093                                                                                                                                                 Predator
## 16094                                                                                                                                                Gladiator
## 16095                                                                                                                                               Predator 2
## 16096                                                                                                                                                    X-Men
## 16097                                                                                                                                                Cell, The
## 16098                                                                                                                                           Evil Dead, The
## 16099                                                                                                                                                  Memento
## 16100                                                                                                                             A.I. Artificial Intelligence
## 16101                                                                                                                           Beast of War, The (Beast, The)
## 16102                                                                                                                                         Mulholland Drive
## 16103                                                                  Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 16104                                                                                                            Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 16105                                                                                                                                               Spider-Man
## 16106                                                                                                                                          Minority Report
## 16107                                                                                                                                           One Hour Photo
## 16108                                                                                                                                              The Pumaman
## 16109                                                                                                                  Harry Potter and the Chamber of Secrets
## 16110                                                                                                                                             Ringu (Ring)
## 16111                                                                                                                                         X2: X-Men United
## 16112                                                                                                                                            28 Days Later
## 16113                                                                                                                                                   Avalon
## 16114                                                                                                                            Ninja Scroll (Jûbei ninpûchô)
## 16115                                                                                                                                        Kill Bill: Vol. 1
## 16116                                                                                                                            Highlander II: The Quickening
## 16117                                                                                                                          Battle Royale (Batoru rowaiaru)
## 16118                                                                                                                                        Hero (Ying xiong)
## 16119                                                                                                                            Ichi the Killer (Koroshiya 1)
## 16120                                                                                                                                        Kill Bill: Vol. 2
## 16121                                                                                                                                               Enemy Mine
## 16122                                                                                                                 Dark Water (Honogurai mizu no soko kara)
## 16123                                                                                                                                            Shiri (Swiri)
## 16124                                                                                                                       Jin Roh: The Wolf Brigade (Jin-Rô)
## 16125                                                                                                                                             Spider-Man 2
## 16126                                                                                                                                               Braveheart
## 16127                                                                                                                                                Apollo 13
## 16128                                                                                                                       Star Wars: Episode IV - A New Hope
## 16129                                                                                                  Léon: The Professional (a.k.a. The Professional) (Léon)
## 16130                                                                                                                                             Pulp Fiction
## 16131                                                                                                                                Shawshank Redemption, The
## 16132                                                                                                                               Terminator 2: Judgment Day
## 16133                                                                                                                                                Rock, The
## 16134                                                                                                                                                 Die Hard
## 16135                                                                                                           Star Wars: Episode V - The Empire Strikes Back
## 16136                                                                                                                                                 Face/Off
## 16137                                                                                                                                              Matrix, The
## 16138                                                                                                                                                Gladiator
## 16139                                                                                                       Lord of the Rings: The Fellowship of the Ring, The
## 16140                                                                                                                                        Beautiful Mind, A
## 16141                                                                                                                                                   Wasabi
## 16142                                                                                                                   Lord of the Rings: The Two Towers, The
## 16143                                                                                                                                        Gangs of New York
## 16144                                                                                                                                     Matrix Reloaded, The
## 16145                                                                                                   Pirates of the Caribbean: The Curse of the Black Pearl
## 16146                                                                                                                                               Underworld
## 16147                                                                                                           Lord of the Rings: The Return of the King, The
## 16148                                                                                                                                                     Troy
## 16149                                                                                                                               Chronicles of Riddick, The
## 16150                                                                                                                                             Spider-Man 2
## 16151                                                                                                                                                 I, Robot
## 16152                                                                                                                                        National Treasure
## 16153                                                                                                                                     Battlestar Galactica
## 16154                                                                                                                                            Batman Begins
## 16155                                                                                                                                    Underworld: Evolution
## 16156                                                                                                                                Pursuit of Happyness, The
## 16157                                                                                                                                            Fountain, The
## 16158                                                                                                                                            Prestige, The
## 16159                                                                                                                                                      300
## 16160                                                                                                                 Pirates of the Caribbean: At World's End
## 16161                                                                                                                                    Live Free or Die Hard
## 16162                                                                                                                              Hellboy II: The Golden Army
## 16163                                                                                                                                         Dark Knight, The
## 16164                                                                                                                                                 Iron Man
## 16165                                                                                                                                                   WALL·E
## 16166                                                                                                                                              Gran Torino
## 16167                                                                                                                     Curious Case of Benjamin Button, The
## 16168                                                                                                                           Underworld: Rise of the Lycans
## 16169                                                                                                                                                Star Trek
## 16170                                                                                                                                               District 9
## 16171                                                                                                                                                 Pandorum
## 16172                                                                                                                                               Zombieland
## 16173                                                                                                                                                   Avatar
## 16174                                                                                                                                          Sherlock Holmes
## 16175                                                                                                                                           Shutter Island
## 16176                                                                                                                                 How to Train Your Dragon
## 16177                                                                                                                                               Iron Man 2
## 16178                                                                                                                                                Inception
## 16179                                                                                                                                                  Machete
## 16180                                                                                                                                             Tron: Legacy
## 16181                                                                                                                                                Limitless
## 16182                                                                                                                                       Brother 2 (Brat 2)
## 16183                                                                                                                  Fast Five (Fast and the Furious 5, The)
## 16184                                                                                                                       Captain America: The First Avenger
## 16185                                                                                                                           Rise of the Planet of the Apes
## 16186                                                                                                                                            Avengers, The
## 16187                                                                                                                                   Dark Knight Rises, The
## 16188                                                                                                                                             Intouchables
## 16189                                                                                                                    Men in Black III (M.III.B.) (M.I.B.³)
## 16190                                                                                                                                              Pacific Rim
## 16191                                                                                                                                     Thor: The Dark World
## 16192                                                                                                                     Hobbit: The Desolation of Smaug, The
## 16193                                                                                                                                             Interstellar
## 16194                                                                                                                               X-Men: Days of Future Past
## 16195                                                                                                                                           Equalizer, The
## 16196                                                                                                                                                Gone Girl
## 16197                                                                                                                                  Guardians of the Galaxy
## 16198                                                                                                                                               Big Hero 6
## 16199                                                                                                                                       Mad Max: Fury Road
## 16200                                                                                                                                  Avengers: Age of Ultron
## 16201                                                                                                                                                    Focus
## 16202                                                                                                                                                     Heat
## 16203                                                                                                                                                GoldenEye
## 16204                                                                                                                                  American President, The
## 16205                                                                                                                                                   Casino
## 16206                                                                                                                           Ace Ventura: When Nature Calls
## 16207                                                                                                                                               Get Shorty
## 16208                                                                                                                                                  Copycat
## 16209                                                                                                                                        Leaving Las Vegas
## 16210                                                                                                                       Twelve Monkeys (a.k.a. 12 Monkeys)
## 16211                                                                                                                                         Dead Man Walking
## 16212                                                                                                                                     Seven (a.k.a. Se7en)
## 16213                                                                                                                                      Usual Suspects, The
## 16214                                                                                                                                         Mighty Aphrodite
## 16215                                                                                                                                             Broken Arrow
## 16216                                                                                                                                            Happy Gilmore
## 16217                                                                                                                           Bridges of Madison County, The
## 16218                                                                                                                                               Braveheart
## 16219                                                                                                                                              Taxi Driver
## 16220                                                                                                                                                Apollo 13
## 16221                                                                                                                                                  Rob Roy
## 16222                                                                                                                                           Batman Forever
## 16223                                                                                                                                    Devil in a Blue Dress
## 16224                                                                                                                               Die Hard: With a Vengeance
## 16225                                                                                                                                             First Knight
## 16226                                                                                                                                              Judge Dredd
## 16227                                                                                                                                                  Species
## 16228                                                                                                                                             Strange Days
## 16229                                                                                                                                               Waterworld
## 16230                                                                                                       Interview with the Vampire: The Vampire Chronicles
## 16231                                                                                                                       Star Wars: Episode IV - A New Hope
## 16232                                                                                                                              Madness of King George, The
## 16233                                                                                                                                     Natural Born Killers
## 16234                                                                                                                                       Once Were Warriors
## 16235                                                                                                                                                 Outbreak
## 16236                                                                                                  Léon: The Professional (a.k.a. The Professional) (Léon)
## 16237                                                                                                                                             Pulp Fiction
## 16238                                                                                                                                                Quiz Show
## 16239                                                                                                                            Ready to Wear (Pret-A-Porter)
## 16240                                                                                                                                                 Stargate
## 16241                                                                                                                                Shawshank Redemption, The
## 16242                                                                                                                                  While You Were Sleeping
## 16243                                                                                                                               Ace Ventura: Pet Detective
## 16244                                                                                                                                    Bullets Over Broadway
## 16245                                                                                                                                 Clear and Present Danger
## 16246                                                                                                                                             Forrest Gump
## 16247                                                                                                                              Four Weddings and a Funeral
## 16248                                                                                                                                           Lion King, The
## 16249                                                                                                                                                Mask, The
## 16250                                                                                                                                                 Maverick
## 16251                                                                                                                       Naked Gun 33 1/3: The Final Insult
## 16252                                                                                                                                                    Speed
## 16253                                                                                                                                                True Lies
## 16254                                                                                                                                 When a Man Loves a Woman
## 16255                                                                                                                                                     Wolf
## 16256                                                                                                                                               Wyatt Earp
## 16257                                                                                                                                     Addams Family Values
## 16258                                                                                                                                    Beverly Hills Cop III
## 16259                                                                                                                                            Boxing Helena
## 16260                                                                                                                                            Carlito's Way
## 16261                                                                                                             City Slickers II: The Legend of Curly's Gold
## 16262                                                                                                                                              Cliffhanger
## 16263                                                                                                                                                Coneheads
## 16264                                                                                                                                                     Dave
## 16265                                                                                                                                           Demolition Man
## 16266                                                                                                                                                Firm, The
## 16267                                                                                                                                            Fugitive, The
## 16268                                                                                                                             Geronimo: An American Legend
## 16269                                                                                                                                             Getaway, The
## 16270                                                                                              Englishman Who Went Up a Hill But Came Down a Mountain, The
## 16271                                                                                                                                     Hudsucker Proxy, The
## 16272                                                                                                                                      In the Line of Fire
## 16273                                                                                                                                            Jurassic Park
## 16274                                                                                                                                               Kalifornia
## 16275                                                                                                                                   Much Ado About Nothing
## 16276                                                                                                                                           Mrs. Doubtfire
## 16277                                                                                                                                             Philadelphia
## 16278                                                                                                                                               Piano, The
## 16279                                                                                                                                           Romper Stomper
## 16280                                                                                                                                               Short Cuts
## 16281                                                                                                                                     Sleepless in Seattle
## 16282                                                                                                                                             Blade Runner
## 16283                                                                                                                                             True Romance
## 16284                                                                                                                                               Home Alone
## 16285                                                                                                                                                    Ghost
## 16286                                                                                                                               Terminator 2: Judgment Day
## 16287                                                                                                                                       Dances with Wolves
## 16288                                                                                                                                                   Batman
## 16289                                                                                                                                Silence of the Lambs, The
## 16290                                                                                                                                             Pretty Woman
## 16291                                                                                                                                                    Fargo
## 16292                                                                                                                                      Mission: Impossible
## 16293                                                                                                                                              Dragonheart
## 16294                                                                                                                                     Operation Dumbo Drop
## 16295                                                                                                                                                Rock, The
## 16296                                                                                                                                                  Twister
## 16297                                                                                                                                               Striptease
## 16298                                                                                                                                            Trainspotting
## 16299                                                                                                                            Independence Day (a.k.a. ID4)
## 16300                                                                                                                                           Cable Guy, The
## 16301                                                                                                                                                  Kingpin
## 16302                                                                                                                                     Nutty Professor, The
## 16303                                                                                                                                                   Ransom
## 16304                                                                                                                                                  Tin Cup
## 16305                                                                                                                                           Godfather, The
## 16306                                                                                                                                                    Bound
## 16307                                                                                                                                               Casablanca
## 16308                                                                                                                                             Citizen Kane
## 16309                                                                                                                                        Last Man Standing
## 16310                                                                                                                                            Cool Runnings
## 16311                                                                                                                            Robin Hood: Prince of Thieves
## 16312                                                                                                                                                 Die Hard
## 16313                                                                                                                                 Long Kiss Goodnight, The
## 16314                                                                                                                                 Everyone Says I Love You
## 16315                                                                                                                                                 Sleepers
## 16316                                                                                                                                     Fish Called Wanda, A
## 16317                                                                                                                             Monty Python's Life of Brian
## 16318                                                                                                                                            Dirty Dancing
## 16319                                                                                                                                           Reservoir Dogs
## 16320                                                                                                                                                  Platoon
## 16321                                                                                                                                         Crying Game, The
## 16322                                                                                                                                                  Top Gun
## 16323                                                                                                                              People vs. Larry Flynt, The
## 16324                                                                                                                                               Abyss, The
## 16325                                                                                                                                     Escape from New York
## 16326                                                                                                                          Monty Python and the Holy Grail
## 16327                                                                                                                                       When We Were Kings
## 16328                                                                                                                 Cook the Thief His Wife & Her Lover, The
## 16329                                                                                                                                             Delicatessen
## 16330                                                                                                                                            Grifters, The
## 16331                                                                                                                                     English Patient, The
## 16332                                                                                                                                             My Left Foot
## 16333                                                                                                                                 Sex, Lies, and Videotape
## 16334                                                                                                                                             Passion Fish
## 16335                                                                                                                          One Flew Over the Cuckoo's Nest
## 16336                                                                                                           Star Wars: Episode V - The Empire Strikes Back
## 16337                                                                                  Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 16338                                                                                                                                                   Brazil
## 16339                                                                                                                                                   Aliens
## 16340                                                                                                                                             Withnail & I
## 16341                                                                                                                                      Clockwork Orange, A
## 16342                                                                                                                                           Apocalypse Now
## 16343                                                                                                               Star Wars: Episode VI - Return of the Jedi
## 16344                                                                                                                                               Goodfellas
## 16345                                                                                                                                                    Alien
## 16346                                                                                                                           Big Blue, The (Grand bleu, Le)
## 16347                                                                                                                                      Blues Brothers, The
## 16348                                                                                                                                  Godfather: Part II, The
## 16349                                                                                                                                        Full Metal Jacket
## 16350                                                                                                                                                  Amadeus
## 16351                                                                                                                              Once Upon a Time in America
## 16352                                                                                                                                    Boot, Das (Boat, The)
## 16353                                                                                                                                               Sting, The
## 16354                                                                                                                                               Local Hero
## 16355                                                                                                                                          Terminator, The
## 16356                                                                                                                                       Dead Poets Society
## 16357                                                                                                                                            Graduate, The
## 16358                                                                                                                                Femme Nikita, La (Nikita)
## 16359                                                                                                                                                Chinatown
## 16360                                                                                                                                             Shining, The
## 16361                                                                                                                                              Stand by Me
## 16362                                                                                                                                         Deer Hunter, The
## 16363                                                                                                                                            Groundhog Day
## 16364                                                                                                                                       Back to the Future
## 16365                                                                                                                                               Highlander
## 16366                                                                                                                                       Cyrano de Bergerac
## 16367                                                                                                                                       Young Frankenstein
## 16368                                                                                                                       Indiana Jones and the Last Crusade
## 16369                                                                                                                                     Pink Floyd: The Wall
## 16370                                                                                                                                      Killing Fields, The
## 16371                                                                                                                     My Life as a Dog (Mitt liv som hund)
## 16372                                                                                                                                             Paris, Texas
## 16373                                                                                                                                  When Harry Met Sally...
## 16374                                                                                                                                  Alien³ (a.k.a. Alien 3)
## 16375                                                                                                                          American Werewolf in London, An
## 16376                                                                                                                                               Birds, The
## 16377                                                                                                                                               Cat People
## 16378                                                                                                                                           101 Dalmatians
## 16379                                                                                                                                               Die Hard 2
## 16380                                                                                                                                           Batman Returns
## 16381                                                                                                                                               Young Guns
## 16382                                                                                                                                                   Grease
## 16383                                                                                                                                                     Jaws
## 16384                                                                                                                                            Mars Attacks!
## 16385                                                                                                                                             Citizen Ruth
## 16386                                                                                                                                            Jerry Maguire
## 16387                                                                                                                                          Raising Arizona
## 16388                                                                                                                                                  Tin Men
## 16389                                                                                                                                                   Scream
## 16390                                                                                                                                             Dante's Peak
## 16391                                                                                                                                            Donnie Brasco
## 16392                                                                                                                                   Smilla's Sense of Snow
## 16393                                                                                                                                                 Anaconda
## 16394                                                                                                                                      Grosse Pointe Blank
## 16395                                                                                                                                  8 Heads in a Duffel Bag
## 16396                                                                                                                                       Fifth Element, The
## 16397                                                                                                                           Lost World: Jurassic Park, The
## 16398                                                                                                                                                  Con Air
## 16399                                                                                                                                                 Face/Off
## 16400                                                                                                                                Men in Black (a.k.a. MIB)
## 16401                                                                                                                                                G.I. Jane
## 16402                                                                                                                                                 Cop Land
## 16403                                                                                                                                            Air Force One
## 16404                                                                                                                                Hunt for Red October, The
## 16405                                                                                                                                        L.A. Confidential
## 16406                                                                                                                                                Game, The
## 16407                                                                                                                                           Ice Storm, The
## 16408                                                                                                                                          Full Monty, The
## 16409                                                                                                                                            Boogie Nights
## 16410                                                                                                                                         Truman Show, The
## 16411                                                                                                                                                  Titanic
## 16412                                                                                                                                     Horse Whisperer, The
## 16413                                                                                                                                             Jackie Brown
## 16414                                                                                                                                        Big Lebowski, The
## 16415                                                                                                                                       As Good as It Gets
## 16416                                                                                                                                Man in the Iron Mask, The
## 16417                                                                                                                                           Primary Colors
## 16418                                                                                                                                             Nil By Mouth
## 16419                                                                                                                                                 Godzilla
## 16420                                                                                                                           Fear and Loathing in Las Vegas
## 16421                                                                                                                                                 Insomnia
## 16422                                                                                                                                   Picnic at Hanging Rock
## 16423                                                                                                                                               Armageddon
## 16424                                                                                                                             There's Something About Mary
## 16425                                                                                                                                   French Connection, The
## 16426                                                                                                                                                 Rain Man
## 16427                                                                                                                                       Driving Miss Daisy
## 16428                                                                                                                                                 Repo Man
## 16429                                                                                                                                      Breakfast Club, The
## 16430                                                                                                                                            Exorcist, The
## 16431                                                                                                                                            Lethal Weapon
## 16432                                                                                                                                          Lethal Weapon 2
## 16433                                                                                                                                          Lethal Weapon 3
## 16434                                                                                                                                       Mask of Zorro, The
## 16435                                                                                                                               Back to the Future Part II
## 16436                                                                                                                                       Dangerous Liaisons
## 16437                                                                                                                                 Godfather: Part III, The
## 16438                                                                                                                                      Saving Private Ryan
## 16439                                                                                                                                          Negotiator, The
## 16440                                                                                                                     Indiana Jones and the Temple of Doom
## 16441                                                                                                                                   Lord of the Rings, The
## 16442                                                                                                                                       Addams Family, The
## 16443                                                                                                                                               Snake Eyes
## 16444                                                                                                                       Henry: Portrait of a Serial Killer
## 16445                                                                                                                                                    Blade
## 16446                                                                                                                                              Beetlejuice
## 16447                                                                                                                                        Untouchables, The
## 16448                                                                                                                                                 Rounders
## 16449                                                                                                                                           Broadcast News
## 16450                                                                                                                                       Married to the Mob
## 16451                                                                                                                                          Few Good Men, A
## 16452                                                                                                                                               Thing, The
## 16453                                                                                                                                      Edward Scissorhands
## 16454                                                                                                                                                     Antz
## 16455                                                                                                                                       American History X
## 16456                                                                                                                                           Big Chill, The
## 16457                                                                                                                                       Enemy of the State
## 16458                                                                                                                                     Prince of Egypt, The
## 16459                                                                                                                                                 Rushmore
## 16460                                                                                                                                      Shakespeare in Love
## 16461                                                                                                                                   Jewel of the Nile, The
## 16462                                                                                                                                      Romancing the Stone
## 16463                                                                                               Christmas Vacation (National Lampoon's Christmas Vacation)
## 16464                                                                                                                                       Thin Red Line, The
## 16465                                                                                                                                                 Fly, The
## 16466                                                                                                               Name of the Rose, The (Name der Rose, Der)
## 16467                                                                                                                                           ¡Three Amigos!
## 16468                                                                                                                                             Office Space
## 16469                                                                                                                                             Pet Sematary
## 16470                                                                                                                                       Planet of the Apes
## 16471                                                                                                                                             Analyze This
## 16472                                                                                                                        Lock, Stock & Two Smoking Barrels
## 16473                                                                                                                                             Dead Ringers
## 16474                                                                                                                                              Matrix, The
## 16475                                                                                                                                                       Go
## 16476                                                                                                                                               Dick Tracy
## 16477                                                                                                                                               Mummy, The
## 16478                                                                                                                                                 Superman
## 16479                                                                                                                                             Notting Hill
## 16480                                                                                                                    Austin Powers: The Spy Who Shagged Me
## 16481                                                                                                                                Run Lola Run (Lola rennt)
## 16482                                                                                                                                            Arachnophobia
## 16483                                                                                                                                           Wild Wild West
## 16484                                                                                                                                 Blair Witch Project, The
## 16485                                                                                                                                           Eyes Wide Shut
## 16486                                                                                                                      Ghostbusters (a.k.a. Ghost Busters)
## 16487                                                                                                                                          Ghostbusters II
## 16488                                                                                                                                   Little Shop of Horrors
## 16489                                                                                                                                         Sixth Sense, The
## 16490                                                                                                                                 Thomas Crown Affair, The
## 16491                                                                                                Final Conflict, The (a.k.a. Omen III: The Final Conflict)
## 16492                                                                                                                           American Werewolf in Paris, An
## 16493                                                                                                                                                      Big
## 16494                                                                                                                                             Medicine Man
## 16495                                                                                                                                          American Beauty
## 16496                                                                                                                                                 Caligula
## 16497                                                                                                                                              Three Kings
## 16498                                                                                                                                             Total Recall
## 16499                                                                                                                                                Body Heat
## 16500                                                                                                                          Year of Living Dangerously, The
## 16501                                                                                                                                               Flashdance
## 16502                                                                                                                                               Fight Club
## 16503                                                                                                                                             Time Bandits
## 16504                                                                                                                                                  RoboCop
## 16505                                                                                                                                 Who Framed Roger Rabbit?
## 16506                                                                                                                                     Being John Malkovich
## 16507                                                                                                                                             Insider, The
## 16508                                                                                                                                         Drugstore Cowboy
## 16509                                                                                                                                             Falling Down
## 16510                                                                                                                                           Little Big Man
## 16511                                                                                                                                               Moonstruck
## 16512                                                                                                                                            Sleepy Hollow
## 16513                                                                                                                                 World Is Not Enough, The
## 16514                                                                                                                                             Midnight Run
## 16515                                                                                                                                               Holy Smoke
## 16516                                                                                                                                  Bonfire of the Vanities
## 16517                                                                                                                                           Two Jakes, The
## 16518                                                                                                                                          Green Mile, The
## 16519                                                                                                                                            Stuart Little
## 16520                                                                                                                                               Easy Rider
## 16521                                                                                                                                 Talented Mr. Ripley, The
## 16522                                                                                                                                   Snow Falling on Cedars
## 16523                                                                                                                                                 Papillon
## 16524                                                                                                                                         Five Easy Pieces
## 16525                                                                                                                             Fast Times at Ridgemont High
## 16526                                                                                                                                                Malcolm X
## 16527                                                                                                                                            Wayne's World
## 16528                                                                                                                                   League of Their Own, A
## 16529                                                                                                                                           Bodyguard, The
## 16530                                                                                                                                     White Men Can't Jump
## 16531                                                                                                                                          Of Mice and Men
## 16532                                                                                                                                               Beach, The
## 16533                                                                                                                                            Drowning Mona
## 16534                                                                                                                        Ghost Dog: The Way of the Samurai
## 16535                                                                                                                                                      JFK
## 16536                                                                                                                                          Erin Brockovich
## 16537                                                                                                                                          Thelma & Louise
## 16538                                                                                                                                             Animal House
## 16539                                                                                                                                       Do the Right Thing
## 16540                                                                                                                                             Jungle Fever
## 16541                                                                                                                                    Good Morning, Vietnam
## 16542                                                                                                                                           Grumpy Old Men
## 16543                                                                                                                       Close Encounters of the Third Kind
## 16544                                                                                                                                           Jacob's Ladder
## 16545                                                                                                                                            High Fidelity
## 16546                                                                                                                                                     Hook
## 16547                                                                                                                                         Midnight Express
## 16548                                                                                                                                                   Misery
## 16549                                                                                                                                       Solaris (Solyaris)
## 16550                                                                                                                                                 Predator
## 16551                                                                                                                          Postman Always Rings Twice, The
## 16552                                                                                                                                               Caddyshack
## 16553                                                                                                                                               Jennifer 8
## 16554                                                                                                                                                Gladiator
## 16555                                                                                                                                               Breathless
## 16556                                                                                                                                       Honeymoon in Vegas
## 16557                                                                                                                                               Eraserhead
## 16558                                                                                                                                             Magnum Force
## 16559                                                                                                                                             Blood Simple
## 16560                                                                                                                                           Prizzi's Honor
## 16561                                                                                                                                               Flatliners
## 16562                                                                                                                                               Predator 2
## 16563                                                                                                                                                  Mad Max
## 16564                                                                                                                            Road Warrior, The (Mad Max 2)
## 16565                                                                                                                                       Gone in 60 Seconds
## 16566                                                                                                                                                  Serpico
## 16567                                                                                                                              Big Trouble in Little China
## 16568                                                                                                                                                    Shaft
## 16569                                                                                                                                       Me, Myself & Irene
## 16570                                                                                                                                             Patriot, The
## 16571                                                                                                                                       Perfect Storm, The
## 16572                                                                                                                                                 Croupier
## 16573                                                                                                                                                    X-Men
## 16574                                                                                                                                          What About Bob?
## 16575                                                                                                                                              Coyote Ugly
## 16576                                                                                                                                               Hollow Man
## 16577                                                                                                                                             Saving Grace
## 16578                                                                                                                                           Kelly's Heroes
## 16579                                                                                                                                               Hellraiser
## 16580                                                                                                                                 Hellbound: Hellraiser II
## 16581                                                                                                                                               Get Carter
## 16582                                                                                                                                             Billy Elliot
## 16583                                                                                                                                             Men of Honor
## 16584                                                                                                         Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 16585                                                                                                                             Planes, Trains & Automobiles
## 16586                                                                                                                                              Wall Street
## 16587                                                                                                                                                   Snatch
## 16588                                                                                                                               O Brother, Where Art Thou?
## 16589                                                                                                                                                  Traffic
## 16590                                                                                                                              Officer and a Gentleman, An
## 16591                                                                                                                                              Pledge, The
## 16592                                                                                                                                     Beverly Hills Cop II
## 16593                                                                                                                                                 Hannibal
## 16594                                                                                                                                             Mexican, The
## 16595                                                                                                                     Harley Davidson and the Marlboro Man
## 16596                                                                                                                                                Manhunter
## 16597                                                                                                                                             River's Edge
## 16598                                                                                                                                       Enemy at the Gates
## 16599                                                                                                                                                  Memento
## 16600                                                                                                                                    Tailor of Panama, The
## 16601                                                                                                                           Amores Perros (Love's a Bitch)
## 16602                                                                                                                                                     Blow
## 16603                                                                                                                                    Bridget Jones's Diary
## 16604                                                                                                                                                  Chopper
## 16605                                                                                                                                                 Scarface
## 16606                                                                                                                             World According to Garp, The
## 16607                                                                                                                                            City Slickers
## 16608                                                                                                                                      Mississippi Burning
## 16609                                                                                                                                                  Tootsie
## 16610                                                                                                                                  Lara Croft: Tomb Raider
## 16611                                                                                                                                                 Salvador
## 16612                                                                                                                                               Score, The
## 16613                                                                                                                      Adventures of Baron Munchausen, The
## 16614                                                                                                                                                     Bird
## 16615                                                                                                                                  Bright Lights, Big City
## 16616                                                                                                                                                 Cocktail
## 16617                                                                                                                            Tucker: The Man and His Dream
## 16618                                                                                                                                                    Twins
## 16619                                                                                                                                               Black Rain
## 16620                                                                                                                                       Planet of the Apes
## 16621                                                                                                                                               Road House
## 16622                                                                                                                                             Tango & Cash
## 16623                                                                                                                                               Uncle Buck
## 16624                                                                                                                                    War of the Roses, The
## 16625                                                                                                                                            Osmosis Jones
## 16626                                                                                                                                              Dinner Rush
## 16627                                                                                                                                             Training Day
## 16628                                                                                                                                                 Cruising
## 16629                                                                                                                                              Dirty Harry
## 16630                                                                                                                                             Donnie Darko
## 16631                                                                  Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 16632                                                                                                                                                 Spy Game
## 16633                                                                                                                                       Behind Enemy Lines
## 16634                                                                                                                                           Ocean's Eleven
## 16635                                                                                                                                    Royal Tenenbaums, The
## 16636                                                                                                       Lord of the Rings: The Fellowship of the Ring, The
## 16637                                                                                                                                        Beautiful Mind, A
## 16638                                                                                                                         Nine Lives of Fritz the Cat, The
## 16639                                                                                                                                             Gosford Park
## 16640                                                                                                            Brotherhood of the Wolf (Pacte des loups, Le)
## 16641                                                                                                                                                  48 Hrs.
## 16642                                                                                                                                    M*A*S*H (a.k.a. MASH)
## 16643                                                                                                                         Great Rock 'n' Roll Swindle, The
## 16644                                                                                                                                                  Ice Age
## 16645                                                                                                                                 My Big Fat Greek Wedding
## 16646                                                                                                                                                 Breakout
## 16647                                                                                                                                     Three Men and a Baby
## 16648                                                                                                                              Three Men and a Little Lady
## 16649                                                                                                                                             Cadillac Man
## 16650                                                                                                                                               Spider-Man
## 16651                                                                                                                                              About a Boy
## 16652                                                                                                                                                 Insomnia
## 16653                                                                                                                                    Sum of All Fears, The
## 16654                                                                                                                                     Bourne Identity, The
## 16655                                                                                                                                               Scooby-Doo
## 16656                                                                                                                                          Minority Report
## 16657                                                                                                                                           Sunshine State
## 16658                                                                                                                                        Road to Perdition
## 16659                                                                                                                                               Red Dragon
## 16660                                                                                                                                    Bowling for Columbine
## 16661                                                                                                                                     Saturday Night Fever
## 16662                                                                                                                                                Gallipoli
## 16663                                                                                                                  Harry Potter and the Chamber of Secrets
## 16664                                                                                                                                                    Thief
## 16665                                                                                                                             Talk to Her (Hable con Ella)
## 16666                                                                                                                                             Analyze That
##         timestamp n_year
## 1      1260759144   2009
## 2      1260759179   2009
## 3      1260759182   2009
## 4      1260759185   2009
## 5      1260759205   2009
## 6      1260759151   2009
## 7      1260759187   2009
## 8      1260759148   2009
## 9      1260759125   2009
## 10     1260759131   2009
## 11     1260759135   2009
## 12     1260759203   2009
## 13     1260759191   2009
## 14     1260759139   2009
## 15     1260759194   2009
## 16     1260759198   2009
## 17     1260759108   2009
## 18     1260759113   2009
## 19     1260759200   2009
## 20     1260759117   2009
## 21      835355493   1996
## 22      835355681   1996
## 23      835355604   1996
## 24      835355552   1996
## 25      835355586   1996
## 26      835356031   1996
## 27      835355749   1996
## 28      835355532   1996
## 29      835356016   1996
## 30      835355395   1996
## 31      835355441   1996
## 32      835355493   1996
## 33      835355441   1996
## 34      835355710   1996
## 35      835355511   1996
## 36      835355664   1996
## 37      835355511   1996
## 38      835355840   1996
## 39      835355749   1996
## 40      835355552   1996
## 41      835355664   1996
## 42      835355896   1996
## 43      835355511   1996
## 44      835355681   1996
## 45      835355697   1996
## 46      835355586   1996
## 47      835355767   1996
## 48      835355779   1996
## 49      835355492   1996
## 50      835355395   1996
## 51      835355532   1996
## 52      835356044   1996
## 53      835355551   1996
## 54      835355918   1996
## 55      835355492   1996
## 56      835355441   1996
## 57      835355697   1996
## 58      835355628   1996
## 59      835355749   1996
## 60      835355604   1996
## 61      835355619   1996
## 62      835355932   1996
## 63      835355968   1996
## 64      835356094   1996
## 65      835355710   1996
## 66      835356165   1996
## 67      835356246   1996
## 68      835355532   1996
## 69      835355604   1996
## 70      835355511   1996
## 71      835355790   1996
## 72      835355828   1996
## 73      835355643   1996
## 74      835355918   1996
## 75      835355880   1996
## 76      835355731   1996
## 77      835355860   1996
## 78      835355719   1996
## 79      835355817   1996
## 80      835355731   1996
## 81      835356199   1996
## 82      835355767   1996
## 83      835356109   1996
## 84      835355767   1996
## 85      835355860   1996
## 86      835355817   1996
## 87      835355790   1996
## 88      835355779   1996
## 89      835355441   1996
## 90      835355697   1996
## 91      835355395   1996
## 92      835355395   1996
## 93      835355511   1996
## 94      835355932   1996
## 95      835356141   1996
## 96      835355978   1996
## 97     1298861675   2011
## 98     1298922049   2011
## 99     1298861637   2011
## 100    1298861761   2011
## 101    1298862418   2011
## 102    1298862121   2011
## 103    1298861589   2011
## 104    1298862167   2011
## 105    1298923242   2011
## 106    1298862528   2011
## 107    1298922100   2011
## 108    1298923247   2011
## 109    1298921840   2011
## 110    1298923260   2011
## 111    1298932787   2011
## 112    1298863157   2011
## 113    1298861687   2011
## 114    1298932770   2011
## 115    1298921795   2011
## 116    1298861628   2011
## 117    1298861605   2011
## 118    1298861658   2011
## 119    1298922089   2011
## 120    1298923236   2011
## 121    1298863143   2011
## 122    1298921862   2011
## 123    1298861753   2011
## 124    1298861789   2011
## 125    1298862710   2011
## 126    1298861796   2011
## 127    1298924017   2011
## 128    1298922057   2011
## 129    1298861733   2011
## 130    1298921825   2011
## 131    1298862874   2011
## 132    1298861968   2011
## 133    1298861633   2011
## 134    1298863174   2011
## 135    1298923266   2011
## 136    1298862672   2011
## 137    1298922080   2011
## 138    1298921787   2011
## 139    1298922065   2011
## 140    1298861650   2011
## 141    1298932766   2011
## 142    1298862555   2011
## 143    1298932740   2011
## 144    1298862361   2011
## 145    1298862467   2011
## 146    1298922071   2011
## 147    1298922130   2011
## 148     949810645   2000
## 149     949919556   2000
## 150     949810582   2000
## 151     949919681   2000
## 152     949811346   2000
## 153     949811346   2000
## 154     949920047   2000
## 155     949779042   2000
## 156     949778802   2000
## 157     949895708   2000
## 158     949810618   2000
## 159     949810582   2000
## 160     949919763   2000
## 161     949919681   2000
## 162     949949538   2000
## 163     949895887   2000
## 164     949810534   2000
## 165     949919883   2000
## 166     949895772   2000
## 167     949810688   2000
## 168     949920135   2000
## 169     949919802   2000
## 170     949920028   2000
## 171     949811315   2000
## 172     949810582   2000
## 173     949779091   2000
## 174     949949486   2000
## 175     949919938   2000
## 176     949810534   2000
## 177     949949538   2000
## 178     949949638   2000
## 179     949982238   2000
## 180     949949444   2000
## 181     949779022   2000
## 182     949919189   2000
## 183     949919306   2000
## 184     949919247   2000
## 185     949949396   2000
## 186     949919454   2000
## 187     949919322   2000
## 188     949949638   2000
## 189     949949638   2000
## 190     949896377   2000
## 191     949896377   2000
## 192     949949538   2000
## 193     949949638   2000
## 194     949896244   2000
## 195     949919372   2000
## 196     949811523   2000
## 197     949895732   2000
## 198     949778771   2000
## 199     949919399   2000
## 200     949896275   2000
## 201     949919372   2000
## 202     949919419   2000
## 203     949779173   2000
## 204     949811490   2000
## 205     949779173   2000
## 206     949896244   2000
## 207     949896159   2000
## 208     949779173   2000
## 209     949778714   2000
## 210     949895708   2000
## 211     949810261   2000
## 212     949779173   2000
## 213     949811523   2000
## 214     949918693   2000
## 215     949779173   2000
## 216     949919372   2000
## 217     949896244   2000
## 218     949919519   2000
## 219     949811602   2000
## 220     949918743   2000
## 221     949811559   2000
## 222     949919591   2000
## 223     949811523   2000
## 224     949919372   2000
## 225     949949396   2000
## 226     949811559   2000
## 227     949811490   2000
## 228     949918743   2000
## 229     949918927   2000
## 230     949811602   2000
## 231     949896275   2000
## 232     949982274   2000
## 233     949919247   2000
## 234     949810582   2000
## 235     949810302   2000
## 236     949920004   2000
## 237     949918787   2000
## 238     949918904   2000
## 239     949810688   2000
## 240     949896377   2000
## 241     949810261   2000
## 242     949810302   2000
## 243     949895772   2000
## 244     949811230   2000
## 245     949919978   2000
## 246     949811559   2000
## 247     949896244   2000
## 248     949895864   2000
## 249     949919738   2000
## 250     949810688   2000
## 251     949895956   2000
## 252     949810261   2000
## 253     949810261   2000
## 254     949918743   2000
## 255     949949538   2000
## 256     949811559   2000
## 257     949896309   2000
## 258     949811602   2000
## 259     949895907   2000
## 260     949918970   2000
## 261     949896070   2000
## 262     949919454   2000
## 263     949778771   2000
## 264     949811738   2000
## 265     949896114   2000
## 266     949982239   2000
## 267     949896183   2000
## 268     949810618   2000
## 269     949896114   2000
## 270     949918648   2000
## 271     949949444   2000
## 272     949919306   2000
## 273     949982239   2000
## 274     949949444   2000
## 275     949896114   2000
## 276     949949638   2000
## 277     949896183   2000
## 278     949920028   2000
## 279     949949538   2000
## 280     949896114   2000
## 281     949949396   2000
## 282     949896114   2000
## 283     949919399   2000
## 284     949896309   2000
## 285     949918927   2000
## 286     949918994   2000
## 287     949919763   2000
## 288     949896070   2000
## 289     949982239   2000
## 290     949896114   2000
## 291     949811603   2000
## 292     949896070   2000
## 293     949896070   2000
## 294     949896070   2000
## 295     949918764   2000
## 296     949811559   2000
## 297     949896309   2000
## 298     949895772   2000
## 299     949919556   2000
## 300     949918927   2000
## 301     949811603   2000
## 302     949918994   2000
## 303     949918994   2000
## 304     949810302   2000
## 305     949982274   2000
## 306     949918875   2000
## 307     949896275   2000
## 308     949895993   2000
## 309     949810582   2000
## 310     949810261   2000
## 311     949918671   2000
## 312     949896497   2000
## 313     949896497   2000
## 314     949811523   2000
## 315     949810582   2000
## 316     949778714   2000
## 317     949896521   2000
## 318     949919399   2000
## 319     949811490   2000
## 320     949811603   2000
## 321     949896070   2000
## 322     949811738   2000
## 323     949811230   2000
## 324     949918875   2000
## 325     949896114   2000
## 326     949896377   2000
## 327     949896309   2000
## 328     949896309   2000
## 329     949810534   2000
## 330     949811559   2000
## 331     949896070   2000
## 332     949896015   2000
## 333     949918807   2000
## 334     949810261   2000
## 335     949896543   2000
## 336     949949444   2000
## 337     949811559   2000
## 338     949919419   2000
## 339     949919656   2000
## 340     949918715   2000
## 341     949896275   2000
## 342     949811603   2000
## 343     949919738   2000
## 344     949918904   2000
## 345     949778946   2000
## 346     949811523   2000
## 347     949918970   2000
## 348     949919738   2000
## 349     949919845   2000
## 350     949895732   2000
## 351     949982238   2000
## 352    1163374957   2006
## 353    1163374952   2006
## 354    1163374639   2006
## 355    1163374242   2006
## 356    1163374404   2006
## 357    1163373762   2006
## 358    1163373208   2006
## 359    1163373636   2006
## 360    1163374152   2006
## 361    1163373752   2006
## 362    1163373755   2006
## 363    1163373610   2006
## 364    1163374477   2006
## 365    1163373718   2006
## 366    1163374392   2006
## 367    1163373551   2006
## 368    1163374190   2006
## 369    1163373711   2006
## 370    1163374993   2006
## 371    1163373651   2006
## 372    1163373135   2006
## 373    1163374286   2006
## 374    1163373316   2006
## 375    1163373103   2006
## 376    1163374173   2006
## 377    1163374239   2006
## 378    1163374582   2006
## 379    1163374495   2006
## 380    1163373044   2006
## 381    1163374165   2006
## 382    1163374608   2006
## 383    1163374562   2006
## 384    1163374214   2006
## 385    1163373744   2006
## 386    1163374601   2006
## 387    1163374251   2006
## 388    1163373726   2006
## 389    1163373675   2006
## 390    1163374324   2006
## 391    1163374593   2006
## 392    1163373188   2006
## 393    1163373109   2006
## 394    1163373276   2006
## 395    1163373251   2006
## 396    1163374184   2006
## 397    1163373193   2006
## 398    1163374290   2006
## 399    1163373679   2006
## 400    1163373293   2006
## 401    1163374246   2006
## 402    1163373743   2006
## 403    1163374947   2006
## 404    1163374278   2006
## 405    1163374127   2006
## 406    1163374263   2006
## 407    1163374408   2006
## 408    1163374137   2006
## 409    1163373148   2006
## 410    1163374235   2006
## 411    1163374198   2006
## 412    1163373273   2006
## 413    1163375025   2006
## 414    1163373696   2006
## 415    1163375145   2006
## 416    1163374103   2006
## 417    1163374354   2006
## 418    1163375033   2006
## 419    1163375131   2006
## 420    1163373548   2006
## 421    1163373616   2006
## 422    1163374995   2006
## 423    1163373299   2006
## 424    1163373606   2006
## 425    1163374443   2006
## 426    1163374206   2006
## 427    1163374389   2006
## 428    1163373688   2006
## 429    1163374533   2006
## 430    1163374491   2006
## 431    1163374572   2006
## 432    1163373626   2006
## 433    1163374455   2006
## 434    1163373238   2006
## 435    1163374511   2006
## 436    1163374742   2006
## 437    1163374381   2006
## 438    1163374118   2006
## 439    1163373593   2006
## 440    1163374426   2006
## 441    1163374340   2006
## 442    1163374702   2006
## 443    1163374177   2006
## 444    1163374211   2006
## 445    1163374517   2006
## 446    1163374227   2006
## 447    1163374275   2006
## 448    1163374283   2006
## 449    1163374144   2006
## 450    1163374167   2006
## 451    1163374357   2006
## 452    1109258212   2005
## 453    1108134263   2005
## 454    1109258228   2005
## 455    1108134539   2005
## 456    1108134269   2005
## 457    1108134299   2005
## 458    1108134266   2005
## 459    1108134284   2005
## 460    1109258196   2005
## 461    1108134309   2005
## 462    1108134339   2005
## 463    1109258181   2005
## 464    1109258179   2005
## 465    1109258281   2005
## 466    1109258194   2005
## 467    1108134334   2005
## 468    1108134344   2005
## 469    1108134289   2005
## 470    1109258270   2005
## 471    1109258285   2005
## 472    1109258175   2005
## 473    1108134291   2005
## 474    1109258245   2005
## 475    1108134293   2005
## 476    1109258202   2005
## 477    1108134271   2005
## 478    1108134274   2005
## 479    1109258257   2005
## 480    1108134545   2005
## 481    1109258199   2005
## 482    1108134337   2005
## 483    1109258183   2005
## 484    1109258250   2005
## 485    1109258190   2005
## 486    1109258217   2005
## 487    1109258226   2005
## 488    1108134311   2005
## 489    1108134534   2005
## 490    1108134519   2005
## 491    1108134524   2005
## 492    1108134526   2005
## 493    1108134537   2005
## 494    1108134531   2005
## 495    1108134521   2005
## 496     851866703   1996
## 497     851869035   1996
## 498     851867289   1996
## 499     851868750   1996
## 500     851867861   1996
## 501     851866901   1996
## 502     851866744   1996
## 503     851868188   1996
## 504     851866720   1996
## 505     851866704   1996
## 506     851868206   1996
## 507     851868704   1996
## 508     851868705   1996
## 509     851869062   1996
## 510     851868188   1996
## 511     851869161   1996
## 512     851868187   1996
## 513     851868524   1996
## 514     851867345   1996
## 515     851867621   1996
## 516     851867941   1996
## 517     851868188   1996
## 518     851867436   1996
## 519     851868020   1996
## 520     851867790   1996
## 521     851869291   1996
## 522     851869291   1996
## 523     851869161   1996
## 524     851867669   1996
## 525     851868246   1996
## 526     851867688   1996
## 527     851869035   1996
## 528     851868019   1996
## 529     851868044   1996
## 530     851869140   1996
## 531     851868186   1996
## 532     851868863   1996
## 533     851868020   1996
## 534     851868044   1996
## 535     851868074   1996
## 536     851866806   1996
## 537     851866744   1996
## 538     851868019   1996
## 539     851866784   1996
## 540     851866704   1996
## 541     851866763   1996
## 542     851868020   1996
## 543     851866703   1996
## 544     851866744   1996
## 545     851868289   1996
## 546     851869102   1996
## 547     851866744   1996
## 548     851867320   1996
## 549     851867289   1996
## 550     851868308   1996
## 551     851867553   1996
## 552     851869103   1996
## 553     851867289   1996
## 554     851868019   1996
## 555     851869034   1996
## 556     851867289   1996
## 557     851869035   1996
## 558     851869034   1996
## 559     851867379   1996
## 560     851868044   1996
## 561     851868246   1996
## 562     851868321   1996
## 563     851869062   1996
## 564     851868289   1996
## 565     851867436   1996
## 566     851869080   1996
## 567     851867436   1996
## 568     851868332   1996
## 569     851867401   1996
## 570     851867320   1996
## 571     851868471   1996
## 572     851868471   1996
## 573     851867401   1996
## 574     851866935   1996
## 575     851869160   1996
## 576     851869102   1996
## 577     851869230   1996
## 578     851869035   1996
## 579     851869140   1996
## 580     851869062   1996
## 581     851867688   1996
## 582     851866978   1996
## 583     851869140   1996
## 584    1154465405   2006
## 585    1154389572   2006
## 586    1154464836   2006
## 587    1154400173   2006
## 588    1154473268   2006
## 589    1154464829   2006
## 590    1154389420   2006
## 591    1154465380   2006
## 592    1154464714   2006
## 593    1154400390   2006
## 594    1154400475   2006
## 595    1154389356   2006
## 596    1154400357   2006
## 597    1154400170   2006
## 598    1154389386   2006
## 599    1154464853   2006
## 600    1154464833   2006
## 601    1154400284   2006
## 602    1154389432   2006
## 603    1154400181   2006
## 604    1154464841   2006
## 605    1154464887   2006
## 606    1154464730   2006
## 607    1154464769   2006
## 608    1154465573   2006
## 609    1154465394   2006
## 610    1154465555   2006
## 611    1154464811   2006
## 612    1154465230   2006
## 613    1154464747   2006
## 614    1154464720   2006
## 615    1154400465   2006
## 616    1154474527   2006
## 617    1154465285   2006
## 618    1154400324   2006
## 619    1154465235   2006
## 620    1154389408   2006
## 621    1154464990   2006
## 622    1154389385   2006
## 623    1154389491   2006
## 624    1154473252   2006
## 625    1154400308   2006
## 626    1154400458   2006
## 627    1154389528   2006
## 628    1154473322   2006
## 629    1154473259   2006
## 630    1154389460   2006
## 631    1154465222   2006
## 632    1154464735   2006
## 633    1154400414   2006
## 634    1154464850   2006
## 635    1154473217   2006
## 636    1154389340   2006
## 637    1154400351   2006
## 638    1154464889   2006
## 639    1154464738   2006
## 640    1154464944   2006
## 641    1154464717   2006
## 642    1154389541   2006
## 643    1154465558   2006
## 644    1154400340   2006
## 645    1154473419   2006
## 646    1154400360   2006
## 647    1154464950   2006
## 648    1154473364   2006
## 649    1154464901   2006
## 650    1154400266   2006
## 651    1154400441   2006
## 652    1154400198   2006
## 653    1154389482   2006
## 654    1154465526   2006
## 655    1154464873   2006
## 656    1154400245   2006
## 657    1154465279   2006
## 658    1154464905   2006
## 659    1154464915   2006
## 660    1154400334   2006
## 661    1154464808   2006
## 662    1154400398   2006
## 663    1154400383   2006
## 664    1154465373   2006
## 665    1154464819   2006
## 666    1154389449   2006
## 667    1154400236   2006
## 668    1154389552   2006
## 669    1154400449   2006
## 670    1154464756   2006
## 671    1154400407   2006
## 672    1154465399   2006
## 673    1154465385   2006
## 674    1154464762   2006
## 675    1154400444   2006
## 676    1154389474   2006
## 677    1154400191   2006
## 678    1154464895   2006
## 679    1154465296   2006
## 680    1154400253   2006
## 681    1154400294   2006
## 682    1154464753   2006
## 683    1154465367   2006
## 684    1154464994   2006
## 685    1154400471   2006
## 686    1154464868   2006
## 687    1154465499   2006
## 688    1154465548   2006
## 689    1154465243   2006
## 690    1154473310   2006
## 691    1154400263   2006
## 692    1154464726   2006
## 693    1154400423   2006
## 694    1154473088   2006
## 695    1154473264   2006
## 696    1154473042   2006
## 697    1154473022   2006
## 698    1154473014   2006
## 699    1154473017   2006
## 700     938629179   1999
## 701     938628337   1999
## 702     938628655   1999
## 703     938629110   1999
## 704     938628897   1999
## 705     938628966   1999
## 706     938628777   1999
## 707     938628577   1999
## 708     938628843   1999
## 709     938628337   1999
## 710     938628843   1999
## 711     938628843   1999
## 712     938628337   1999
## 713     938629250   1999
## 714     938629470   1999
## 715     938628655   1999
## 716     938628450   1999
## 717     938628655   1999
## 718     938628777   1999
## 719     938629341   1999
## 720     938629054   1999
## 721     938628690   1999
## 722     938628966   1999
## 723     938629470   1999
## 724     938628966   1999
## 725     938629341   1999
## 726     938629522   1999
## 727     938629747   1999
## 728     938629053   1999
## 729     938629053   1999
## 730     938628777   1999
## 731     938628897   1999
## 732     938629341   1999
## 733     938629250   1999
## 734     938628843   1999
## 735     939122916   1999
## 736     938628577   1999
## 737     938629681   1999
## 738     938629681   1999
## 739     938628966   1999
## 740     938629341   1999
## 741     938628450   1999
## 742     938628843   1999
## 743     938627748   1999
## 744     938629681   1999
## 745     942766420   1999
## 746     942766793   1999
## 747     942766515   1999
## 748     942766603   1999
## 749     942766603   1999
## 750     942767328   1999
## 751     942766974   1999
## 752     942767258   1999
## 753     942766420   1999
## 754     942767328   1999
## 755     942767328   1999
## 756     942767258   1999
## 757     942767258   1999
## 758     942767258   1999
## 759     942767258   1999
## 760     942767258   1999
## 761     942767328   1999
## 762     942767258   1999
## 763     942767258   1999
## 764     942766420   1999
## 765     942766420   1999
## 766     942766725   1999
## 767     942766845   1999
## 768     942767029   1999
## 769     942766679   1999
## 770     942766472   1999
## 771     942766472   1999
## 772     942766845   1999
## 773     942766515   1999
## 774     942766472   1999
## 775     942766991   1999
## 776     942767328   1999
## 777     942767328   1999
## 778     942766845   1999
## 779     942766515   1999
## 780     942766109   1999
## 781     942766251   1999
## 782     942766213   1999
## 783     942766029   1999
## 784     942766164   1999
## 785     942765978   1999
## 786     942766213   1999
## 787     942767121   1999
## 788     942766251   1999
## 789     942766059   1999
## 790     942767571   1999
## 791    1391658537   2014
## 792    1391656827   2014
## 793    1391657561   2014
## 794    1391657297   2014
## 795    1391658423   2014
## 796    1391658505   2014
## 797    1391656845   2014
## 798    1391658556   2014
## 799    1391658634   2014
## 800    1391658440   2014
## 801    1391658667   2014
## 802    1391657062   2014
## 803    1391657376   2014
## 804    1391657543   2014
## 805    1391658583   2014
## 806    1391657112   2014
## 807    1391658601   2014
## 808    1391657861   2014
## 809    1391658574   2014
## 810    1391658450   2014
## 811    1391657605   2014
## 812    1391657459   2014
## 813    1391657720   2014
## 814    1391658141   2014
## 815    1391658115   2014
## 816    1391658399   2014
## 817    1391658137   2014
## 818    1391658210   2014
## 819    1391658218   2014
## 820    1391658385   2014
## 821    1391658311   2014
## 822    1391658125   2014
## 823    1391658270   2014
## 824    1391658186   2014
## 825    1391657924   2014
## 826    1391657610   2014
## 827    1391658157   2014
## 828    1391657798   2014
## 829     968045587   2000
## 830     968045407   2000
## 831     968045438   2000
## 832     968045353   2000
## 833     968045732   2000
## 834     968045680   2000
## 835     968045764   2000
## 836     968045500   2000
## 837     968045561   2000
## 838     968045500   2000
## 839     955407153   2000
## 840     968045353   2000
## 841     955407153   2000
## 842     968045354   2000
## 843     968045354   2000
## 844     955407153   2000
## 845     968045475   2000
## 846     968045475   2000
## 847     968045438   2000
## 848     968045529   2000
## 849     955407153   2000
## 850     968045475   2000
## 851     968045680   2000
## 852     968045475   2000
## 853     968045764   2000
## 854     968045407   2000
## 855     968045732   2000
## 856     968045379   2000
## 857     968045649   2000
## 858     968045354   2000
## 859     968045529   2000
## 860     968045732   2000
## 861     968045379   2000
## 862     955407153   2000
## 863     968045619   2000
## 864     968045680   2000
## 865     968045619   2000
## 866     968045232   2000
## 867     968045232   2000
## 868     968045232   2000
## 869     968045232   2000
## 870     968045198   2000
## 871     968045198   2000
## 872     968045172   2000
## 873     968045142   2000
## 874     968045142   2000
## 875     968045106   2000
## 876     968045106   2000
## 877     968045074   2000
## 878     968045074   2000
## 879     968045015   2000
## 880     968045015   2000
## 881     968045015   2000
## 882     968045015   2000
## 883     968044981   2000
## 884     968044981   2000
## 885     968044981   2000
## 886     968044949   2000
## 887     968044949   2000
## 888     968044949   2000
## 889     968045173   2000
## 890    1331380058   2012
## 891    1331380914   2012
## 892    1331380038   2012
## 893    1331379348   2012
## 894    1331380895   2012
## 895    1331380029   2012
## 896    1331380018   2012
## 897    1331379479   2012
## 898    1331380025   2012
## 899    1331379485   2012
## 900    1331380901   2012
## 901    1331379483   2012
## 902    1331380851   2012
## 903    1331380062   2012
## 904    1331379366   2012
## 905    1331380871   2012
## 906    1331379520   2012
## 907    1331380814   2012
## 908    1331380845   2012
## 909    1331379386   2012
## 910    1331380745   2012
## 911    1331380741   2012
## 912    1331380888   2012
## 913    1331379777   2012
## 914    1331379470   2012
## 915    1331380765   2012
## 916    1331380731   2012
## 917    1331379494   2012
## 918    1331380761   2012
## 919    1331380738   2012
## 920    1331380752   2012
## 921    1331379342   2012
## 922    1331379599   2012
## 923    1331379574   2012
## 924    1331380721   2012
## 925    1331379506   2012
## 926    1331379589   2012
## 927    1331379530   2012
## 928    1331380145   2012
## 929    1331380834   2012
## 930    1331380883   2012
## 931    1331380785   2012
## 932    1331380734   2012
## 933    1331380159   2012
## 934    1331380306   2012
## 935    1331380782   2012
## 936    1331380873   2012
## 937    1331380830   2012
## 938    1331379748   2012
## 939    1331380725   2012
## 940    1331380387   2012
## 941    1331380390   2012
## 942    1331379985   2012
## 943     976243997   2000
## 944     976243997   2000
## 945     976243912   2000
## 946     976244179   2000
## 947     976244179   2000
## 948     976244471   2000
## 949     976243933   2000
## 950     976244131   2000
## 951     976244313   2000
## 952     976244367   2000
## 953     976244524   2000
## 954     976244287   2000
## 955     976244591   2000
## 956     976244564   2000
## 957     976244313   2000
## 958     976243997   2000
## 959     976244423   2000
## 960     976244205   2000
## 961     976244107   2000
## 962     976244343   2000
## 963     997938310   2001
## 964    1134521380   2005
## 965    1093070098   2004
## 966    1040205753   2002
## 967    1093028290   2004
## 968    1093028381   2004
## 969    1166586286   2006
## 970    1093070150   2004
## 971     997939404   2001
## 972    1093028409   2004
## 973    1058249528   2003
## 974    1093070415   2004
## 975    1033345172   2002
## 976     997938466   2001
## 977     997938310   2001
## 978    1033345287   2002
## 979    1093028334   2004
## 980    1122576665   2005
## 981    1054449816   2003
## 982     997938500   2001
## 983    1093070271   2004
## 984    1093028336   2004
## 985    1093070467   2004
## 986    1044220302   2003
## 987    1166587063   2006
## 988    1093028331   2004
## 989    1134522072   2005
## 990    1093070113   2004
## 991    1166586594   2006
## 992    1040205792   2002
## 993     997938500   2001
## 994    1093070156   2004
## 995     997938358   2001
## 996    1245362506   2009
## 997    1134521543   2005
## 998    1075142933   2004
## 999     997939380   2001
## 1000   1128274517   2005
## 1001   1052896975   2003
## 1002   1093028411   2004
## 1003   1093028319   2004
## 1004    997938676   2001
## 1005   1166586021   2006
## 1006    997938413   2001
## 1007   1093028183   2004
## 1008   1166586376   2006
## 1009   1093070329   2004
## 1010   1166587180   2006
## 1011   1046209579   2003
## 1012   1166586276   2006
## 1013   1052896916   2003
## 1014   1193435347   2007
## 1015   1093070170   2004
## 1016   1134521967   2005
## 1017   1193435482   2007
## 1018   1033345241   2002
## 1019   1054449903   2003
## 1020   1349622582   2012
## 1021    997939415   2001
## 1022   1134521432   2005
## 1023   1033345068   2002
## 1024   1093028308   2004
## 1025   1033345227   2002
## 1026   1033344772   2002
## 1027    997939415   2001
## 1028   1166586251   2006
## 1029    997938656   2001
## 1030    997938567   2001
## 1031   1093070318   2004
## 1032   1093028328   2004
## 1033    997938437   2001
## 1034   1058250479   2003
## 1035   1093028372   2004
## 1036   1093028298   2004
## 1037    997938567   2001
## 1038    997938771   2001
## 1039   1054449869   2003
## 1040    997938737   2001
## 1041    997938894   2001
## 1042   1052897100   2003
## 1043   1052896866   2003
## 1044   1093028399   2004
## 1045    997938727   2001
## 1046   1120209787   2005
## 1047   1093028255   2004
## 1048    997938391   2001
## 1049   1122576622   2005
## 1050   1058250589   2003
## 1051   1093028220   2004
## 1052    997939193   2001
## 1053   1093070088   2004
## 1054   1122576667   2005
## 1055   1058250631   2003
## 1056   1058250490   2003
## 1057    997939065   2001
## 1058   1374637824   2013
## 1059   1122576670   2005
## 1060   1443385370   2015
## 1061   1465793100   2016
## 1062   1054449871   2003
## 1063   1033344267   2002
## 1064    997939179   2001
## 1065   1166586661   2006
## 1066   1465955324   2016
## 1067   1132469126   2005
## 1068   1093028320   2004
## 1069   1093070102   2004
## 1070   1058250627   2003
## 1071    997938322   2001
## 1072   1193435522   2007
## 1073   1093028323   2004
## 1074    997938567   2001
## 1075   1134521456   2005
## 1076   1166586067   2006
## 1077   1093028384   2004
## 1078    997939193   2001
## 1079   1166586748   2006
## 1080    997938905   2001
## 1081   1093070332   2004
## 1082   1093028414   2004
## 1083   1035258747   2002
## 1084   1093028394   2004
## 1085   1093028389   2004
## 1086   1443384915   2015
## 1087   1166586387   2006
## 1088    997937239   2001
## 1089   1033345148   2002
## 1090   1093028325   2004
## 1091   1240203835   2009
## 1092    997938438   2001
## 1093   1093070381   2004
## 1094    997938676   2001
## 1095    997939055   2001
## 1096   1033344257   2002
## 1097   1361078504   2013
## 1098   1166586512   2006
## 1099   1141391972   2006
## 1100   1093028377   2004
## 1101   1093028322   2004
## 1102   1093028161   2004
## 1103    997938451   2001
## 1104   1093028142   2004
## 1105    997939162   2001
## 1106    997938500   2001
## 1107   1245021392   2009
## 1108   1093028267   2004
## 1109    997938500   2001
## 1110   1052896916   2003
## 1111   1093070326   2004
## 1112   1134521628   2005
## 1113   1093028231   2004
## 1114   1035258608   2002
## 1115    997939348   2001
## 1116   1052896916   2003
## 1117   1052896867   2003
## 1118   1093028406   2004
## 1119   1033345122   2002
## 1120   1166586237   2006
## 1121   1093028260   2004
## 1122   1093028237   2004
## 1123    997938288   2001
## 1124   1166586565   2006
## 1125    997938438   2001
## 1126   1093070454   2004
## 1127   1054450167   2003
## 1128   1093028151   2004
## 1129   1093070207   2004
## 1130   1033344834   2002
## 1131   1093028395   2004
## 1132   1134521382   2005
## 1133   1136904835   2006
## 1134    997938391   2001
## 1135   1128274713   2005
## 1136   1054450008   2003
## 1137   1134522085   2005
## 1138   1166586002   2006
## 1139   1166586995   2006
## 1140   1035258747   2002
## 1141    997938703   2001
## 1142    997938567   2001
## 1143   1058250570   2003
## 1144    997938346   2001
## 1145    997938346   2001
## 1146    997938500   2001
## 1147    997939604   2001
## 1148   1122576681   2005
## 1149   1058250459   2003
## 1150    997938140   2001
## 1151   1416119525   2014
## 1152   1058250501   2003
## 1153   1128274460   2005
## 1154    997938737   2001
## 1155   1093070090   2004
## 1156   1040205624   2002
## 1157    997938727   2001
## 1158    997938358   2001
## 1159   1044219825   2003
## 1160   1058250466   2003
## 1161    997938800   2001
## 1162    997939453   2001
## 1163   1166586619   2006
## 1164   1034544304   2002
## 1165    997938528   2001
## 1166    997938905   2001
## 1167   1348976598   2012
## 1168   1166586136   2006
## 1169   1054450184   2003
## 1170    997938603   2001
## 1171    997937239   2001
## 1172    997938787   2001
## 1173   1122576683   2005
## 1174    997938528   2001
## 1175   1193436089   2007
## 1176   1166586415   2006
## 1177   1033345199   2002
## 1178   1040205624   2002
## 1179    997938466   2001
## 1180   1458506296   2016
## 1181   1093070163   2004
## 1182   1055439464   2003
## 1183    997939162   2001
## 1184   1345397949   2012
## 1185   1128274586   2005
## 1186   1386368101   2013
## 1187    997938288   2001
## 1188   1054449673   2003
## 1189   1193435335   2007
## 1190    997938862   2001
## 1191    997938771   2001
## 1192   1033344257   2002
## 1193   1443384910   2015
## 1194   1166586456   2006
## 1195   1361078481   2013
## 1196    997938760   2001
## 1197    997938438   2001
## 1198   1040205753   2002
## 1199    997939111   2001
## 1200   1093070386   2004
## 1201    997938528   2001
## 1202   1345398232   2012
## 1203    997938784   2001
## 1204    997939111   2001
## 1205    997938438   2001
## 1206   1044347743   2003
## 1207    997938822   2001
## 1208   1345398245   2012
## 1209    997938466   2001
## 1210   1058250487   2003
## 1211   1166586696   2006
## 1212    997938749   2001
## 1213    997938203   2001
## 1214   1054271469   2003
## 1215   1055439440   2003
## 1216    997939207   2001
## 1217    997938203   2001
## 1218   1093070109   2004
## 1219    997938712   2001
## 1220    997939614   2001
## 1221    997938288   2001
## 1222   1034544304   2002
## 1223    997938800   2001
## 1224   1044347881   2003
## 1225   1054450216   2003
## 1226    997938727   2001
## 1227   1054450238   2003
## 1228   1166586368   2006
## 1229    997938451   2001
## 1230   1033345172   2002
## 1231    997938151   2001
## 1232   1093070174   2004
## 1233    997938171   2001
## 1234    997938509   2001
## 1235    997938500   2001
## 1236    997938760   2001
## 1237    997938749   2001
## 1238    997938346   2001
## 1239   1345398347   2012
## 1240    997938219   2001
## 1241    997938917   2001
## 1242    997938981   2001
## 1243   1134521651   2005
## 1244   1120208625   2005
## 1245    997938162   2001
## 1246    997938171   2001
## 1247    997939360   2001
## 1248    997938500   2001
## 1249    997938451   2001
## 1250   1054450246   2003
## 1251   1054450208   2003
## 1252    997938941   2001
## 1253   1063565335   2003
## 1254   1416120074   2014
## 1255   1345397986   2012
## 1256   1033345087   2002
## 1257   1163876491   2006
## 1258   1465793922   2016
## 1259   1035258608   2002
## 1260    997939144   2001
## 1261    997938894   2001
## 1262   1166587005   2006
## 1263   1093070459   2004
## 1264   1054450251   2003
## 1265   1040205753   2002
## 1266    997938162   2001
## 1267   1134521497   2005
## 1268    997938219   2001
## 1269   1052896916   2003
## 1270   1134521654   2005
## 1271   1033345050   2002
## 1272   1052896819   2003
## 1273    997938500   2001
## 1274   1361078494   2013
## 1275   1093070198   2004
## 1276   1093070479   2004
## 1277   1166586012   2006
## 1278   1458506268   2016
## 1279   1040205754   2002
## 1280   1093070145   2004
## 1281   1058250612   2003
## 1282    997939021   2001
## 1283   1055439459   2003
## 1284   1052897043   2003
## 1285    997938219   2001
## 1286    997939358   2001
## 1287    997938391   2001
## 1288    997939439   2001
## 1289   1134522057   2005
## 1290   1338699256   2012
## 1291   1193435343   2007
## 1292    997938358   2001
## 1293   1093070397   2004
## 1294   1093070210   2004
## 1295   1425876701   2015
## 1296   1035258747   2002
## 1297   1033344937   2002
## 1298    997939453   2001
## 1299   1052896819   2003
## 1300    997939393   2001
## 1301   1093070319   2004
## 1302    997938322   2001
## 1303   1134521507   2005
## 1304   1166587010   2006
## 1305   1166586212   2006
## 1306   1134521624   2005
## 1307    997938476   2001
## 1308    997939179   2001
## 1309   1052896685   2003
## 1310   1093028013   2004
## 1311   1134521585   2005
## 1312   1093070221   2004
## 1313   1040205754   2002
## 1314    997939193   2001
## 1315   1166587214   2006
## 1316    997938346   2001
## 1317    997938391   2001
## 1318   1033345134   2002
## 1319   1054449877   2003
## 1320   1166586517   2006
## 1321    997938413   2001
## 1322    997938647   2001
## 1323   1052896685   2003
## 1324   1058250115   2003
## 1325   1033345299   2002
## 1326   1052896916   2003
## 1327   1166586583   2006
## 1328    997939424   2001
## 1329   1465880892   2016
## 1330   1134521603   2005
## 1331    997938879   2001
## 1332   1033345148   2002
## 1333   1166586533   2006
## 1334    997938931   2001
## 1335   1093028339   2004
## 1336   1134521534   2005
## 1337   1033344286   2002
## 1338   1054449676   2003
## 1339   1166981862   2006
## 1340   1134521589   2005
## 1341    997938451   2001
## 1342   1469330699   2016
## 1343   1349622617   2012
## 1344   1460076717   2016
## 1345   1134521514   2005
## 1346   1166586707   2006
## 1347   1033345287   2002
## 1348   1458506454   2016
## 1349    997938391   2001
## 1350   1093028022   2004
## 1351   1166587162   2006
## 1352   1465881179   2016
## 1353    997938676   2001
## 1354   1166586439   2006
## 1355   1058250734   2003
## 1356   1469330727   2016
## 1357   1052897012   2003
## 1358    997938834   2001
## 1359    997939439   2001
## 1360   1469330647   2016
## 1361   1134521539   2005
## 1362   1166586478   2006
## 1363   1052897043   2003
## 1364   1054449827   2003
## 1365   1469330584   2016
## 1366   1054450597   2003
## 1367   1075142949   2004
## 1368   1052896819   2003
## 1369   1033345241   2002
## 1370   1054449899   2003
## 1371   1052896916   2003
## 1372   1052896819   2003
## 1373   1054449908   2003
## 1374    997938954   2001
## 1375   1058249502   2003
## 1376    997938810   2001
## 1377    997938528   2001
## 1378   1040205792   2002
## 1379   1338698424   2012
## 1380   1166587036   2006
## 1381   1093028404   2004
## 1382   1033345068   2002
## 1383    997938372   2001
## 1384   1052897128   2003
## 1385   1166586228   2006
## 1386    997938255   2001
## 1387   1052896975   2003
## 1388   1034544351   2002
## 1389    997938630   2001
## 1390   1035258747   2002
## 1391   1052896685   2003
## 1392   1044219825   2003
## 1393   1046209705   2003
## 1394   1044347881   2003
## 1395   1134521638   2005
## 1396   1379040745   2013
## 1397   1465881239   2016
## 1398    997938784   2001
## 1399   1033344732   2002
## 1400    997938630   2001
## 1401   1166586203   2006
## 1402   1052896975   2003
## 1403   1338698431   2012
## 1404    997938413   2001
## 1405    997938603   2001
## 1406   1052896867   2003
## 1407   1058250482   2003
## 1408   1193435562   2007
## 1409   1033345050   2002
## 1410   1166587068   2006
## 1411   1166587080   2006
## 1412   1122576686   2005
## 1413   1052896819   2003
## 1414   1034544351   2002
## 1415    997937311   2001
## 1416   1166586521   2006
## 1417    997938630   2001
## 1418    997939162   2001
## 1419    997938603   2001
## 1420    997938528   2001
## 1421   1040205754   2002
## 1422   1052897043   2003
## 1423    997938466   2001
## 1424   1128274472   2005
## 1425   1054449665   2003
## 1426   1093070270   2004
## 1427   1465881227   2016
## 1428   1166586189   2006
## 1429   1134521675   2005
## 1430   1469330645   2016
## 1431   1052896740   2003
## 1432    997938322   2001
## 1433    997939439   2001
## 1434   1052897012   2003
## 1435   1093070399   2004
## 1436    997938931   2001
## 1437   1052896916   2003
## 1438   1345397769   2012
## 1439   1054449678   2003
## 1440   1122576690   2005
## 1441    997939328   2001
## 1442   1054450149   2003
## 1443   1033344795   2002
## 1444   1469330601   2016
## 1445   1033344772   2002
## 1446   1134522028   2005
## 1447   1044347881   2003
## 1448   1134521484   2005
## 1449    997939055   2001
## 1450    997938834   2001
## 1451    997937311   2001
## 1452   1040205792   2002
## 1453   1033344752   2002
## 1454   1166586655   2006
## 1455    997937311   2001
## 1456   1465880711   2016
## 1457    997938567   2001
## 1458    997939404   2001
## 1459    997938162   2001
## 1460   1052897012   2003
## 1461   1458506447   2016
## 1462   1052896819   2003
## 1463   1425875796   2015
## 1464   1134521618   2005
## 1465   1040205754   2002
## 1466   1033344782   2002
## 1467    997939328   2001
## 1468   1122576697   2005
## 1469   1166586146   2006
## 1470    997938413   2001
## 1471   1122576699   2005
## 1472   1033344906   2002
## 1473    997938760   2001
## 1474   1033344897   2002
## 1475   1122576701   2005
## 1476   1347937598   2012
## 1477   1465880194   2016
## 1478   1033344732   2002
## 1479    997939415   2001
## 1480   1033344917   2002
## 1481   1469330735   2016
## 1482    997938438   2001
## 1483   1033344641   2002
## 1484   1033344897   2002
## 1485   1033344772   2002
## 1486   1054449822   2003
## 1487    997939393   2001
## 1488   1033344897   2002
## 1489   1033344865   2002
## 1490    997938466   2001
## 1491   1166587193   2006
## 1492    997939021   2001
## 1493   1033344995   2002
## 1494   1033344772   2002
## 1495   1093070339   2004
## 1496    997939255   2001
## 1497   1093028374   2004
## 1498    997939179   2001
## 1499    997938219   2001
## 1500   1052896819   2003
## 1501    997939653   2001
## 1502   1033344752   2002
## 1503   1033344657   2002
## 1504    997938372   2001
## 1505    997938151   2001
## 1506   1033345068   2002
## 1507   1033344958   2002
## 1508   1245361903   2009
## 1509   1122576707   2005
## 1510   1033344657   2002
## 1511   1033344663   2002
## 1512   1033344878   2002
## 1513   1033344702   2002
## 1514    997939623   2001
## 1515   1033344834   2002
## 1516    997938219   2001
## 1517   1465793437   2016
## 1518   1469330590   2016
## 1519   1033344732   2002
## 1520   1033344897   2002
## 1521   1054450195   2003
## 1522    997939653   2001
## 1523   1033344752   2002
## 1524    997939037   2001
## 1525    997938500   2001
## 1526   1033344970   2002
## 1527    997937762   2001
## 1528   1033344702   2002
## 1529    997939008   2001
## 1530   1065197456   2003
## 1531    997938603   2001
## 1532   1166587203   2006
## 1533    997938567   2001
## 1534   1033344958   2002
## 1535   1033344958   2002
## 1536    997938310   2001
## 1537    997939144   2001
## 1538   1033344752   2002
## 1539   1054450160   2003
## 1540   1040205754   2002
## 1541    997938879   2001
## 1542   1040205754   2002
## 1543   1345397822   2012
## 1544    997938466   2001
## 1545   1054449710   2003
## 1546   1166585692   2006
## 1547   1040205655   2002
## 1548   1040205655   2002
## 1549   1054449851   2003
## 1550    997938894   2001
## 1551    997939623   2001
## 1552   1469330578   2016
## 1553    997938576   2001
## 1554   1052896740   2003
## 1555    997939144   2001
## 1556   1345398317   2012
## 1557   1345381197   2012
## 1558    997938310   2001
## 1559    997939086   2001
## 1560   1033344685   2002
## 1561   1033344702   2002
## 1562    997938800   2001
## 1563   1361078485   2013
## 1564   1033344865   2002
## 1565    997938727   2001
## 1566    997938954   2001
## 1567   1166586681   2006
## 1568    997939021   2001
## 1569   1052896867   2003
## 1570   1033344267   2002
## 1571   1058250603   2003
## 1572    997939653   2001
## 1573   1052896975   2003
## 1574   1033345241   2002
## 1575   1033344958   2002
## 1576   1166586269   2006
## 1577    997938310   2001
## 1578    997938895   2001
## 1579    997937311   2001
## 1580   1040205792   2002
## 1581   1316395917   2011
## 1582    997939453   2001
## 1583   1166587025   2006
## 1584   1033344983   2002
## 1585    997938931   2001
## 1586   1054449917   2003
## 1587   1044347881   2003
## 1588   1460076724   2016
## 1589    997939415   2001
## 1590   1134521933   2005
## 1591   1245361773   2009
## 1592    997938931   2001
## 1593   1033344970   2002
## 1594    997938941   2001
## 1595   1338698402   2012
## 1596   1122576723   2005
## 1597   1033344865   2002
## 1598    997939162   2001
## 1599    997938413   2001
## 1600    997939393   2001
## 1601    997937726   2001
## 1602   1033344958   2002
## 1603   1054449670   2003
## 1604   1033344897   2002
## 1605    997938046   2001
## 1606   1033345148   2002
## 1607   1034544351   2002
## 1608    997939639   2001
## 1609   1134521644   2005
## 1610   1361831567   2013
## 1611   1058250521   2003
## 1612    997938391   2001
## 1613   1345397753   2012
## 1614   1034544304   2002
## 1615   1063565307   2003
## 1616   1033345227   2002
## 1617    997937890   2001
## 1618   1347936677   2012
## 1619   1416119608   2014
## 1620    997937999   2001
## 1621   1033344702   2002
## 1622    997937876   2001
## 1623   1044348420   2003
## 1624   1082220247   2004
## 1625   1416119948   2014
## 1626    997937786   2001
## 1627    997937986   2001
## 1628   1040205943   2002
## 1629    997937748   2001
## 1630   1096005300   2004
## 1631   1054449689   2003
## 1632   1120209453   2005
## 1633    997938391   2001
## 1634    997937239   2001
## 1635   1033344772   2002
## 1636    997937902   2001
## 1637   1040205754   2002
## 1638   1063565279   2003
## 1639    997938310   2001
## 1640   1054450188   2003
## 1641   1193436085   2007
## 1642    997939144   2001
## 1643   1063565329   2003
## 1644   1034544304   2002
## 1645   1465881233   2016
## 1646   1093028035   2004
## 1647    997937748   2001
## 1648   1465880417   2016
## 1649   1166586405   2006
## 1650    997938242   2001
## 1651    997938810   2001
## 1652   1134521930   2005
## 1653   1033344795   2002
## 1654    997937926   2001
## 1655   1052896819   2003
## 1656    997937935   2001
## 1657    997937822   2001
## 1658    997937808   2001
## 1659   1096005190   2004
## 1660   1033344752   2002
## 1661   1465880183   2016
## 1662   1166586553   2006
## 1663    997937786   2001
## 1664    997937902   2001
## 1665    997937682   2001
## 1666    997937848   2001
## 1667   1465954636   2016
## 1668   1033344795   2002
## 1669    997937762   2001
## 1670    997937822   2001
## 1671    997937876   2001
## 1672   1033344878   2002
## 1673   1122576735   2005
## 1674    997937961   2001
## 1675   1345381200   2012
## 1676   1044347881   2003
## 1677   1345397811   2012
## 1678   1345398289   2012
## 1679   1345397721   2012
## 1680   1166586157   2006
## 1681    997938800   2001
## 1682   1465881231   2016
## 1683   1163876415   2006
## 1684   1443385280   2015
## 1685    997938346   2001
## 1686    997938822   2001
## 1687   1082220261   2004
## 1688    997937836   2001
## 1689    997937700   2001
## 1690    997937726   2001
## 1691    997937971   2001
## 1692   1416119541   2014
## 1693   1122576740   2005
## 1694    997937700   2001
## 1695    997937822   2001
## 1696   1033344712   2002
## 1697    997937795   2001
## 1698    997938391   2001
## 1699    997937808   2001
## 1700    997937914   2001
## 1701    997937999   2001
## 1702   1039243666   2002
## 1703    997938372   2001
## 1704    997937726   2001
## 1705    997938015   2001
## 1706    997938035   2001
## 1707   1134522068   2005
## 1708   1044348420   2003
## 1709   1240203682   2009
## 1710   1044348492   2003
## 1711    997937860   2001
## 1712   1134521920   2005
## 1713    997937890   2001
## 1714   1039243705   2002
## 1715    997937860   2001
## 1716    997937890   2001
## 1717    997937700   2001
## 1718    997937848   2001
## 1719    997937427   2001
## 1720    997937700   2001
## 1721    997937860   2001
## 1722   1044348382   2003
## 1723    997937413   2001
## 1724    997937890   2001
## 1725    997937986   2001
## 1726    997937762   2001
## 1727   1425876021   2015
## 1728    997937459   2001
## 1729    997937848   2001
## 1730    997938035   2001
## 1731   1033344924   2002
## 1732    997937413   2001
## 1733   1338698406   2012
## 1734    997937926   2001
## 1735    997937961   2001
## 1736   1166587057   2006
## 1737    997937700   2001
## 1738    997937999   2001
## 1739    997937902   2001
## 1740    997937442   2001
## 1741    997937413   2001
## 1742    997937614   2001
## 1743    997937459   2001
## 1744   1345398275   2012
## 1745   1052896916   2003
## 1746   1426110367   2015
## 1747   1033345087   2002
## 1748    997937606   2001
## 1749   1044348492   2003
## 1750    997937442   2001
## 1751    997937413   2001
## 1752   1044348492   2003
## 1753   1416119589   2014
## 1754    997937442   2001
## 1755    997937427   2001
## 1756    997937413   2001
## 1757    997937442   2001
## 1758   1044348492   2003
## 1759    997937606   2001
## 1760   1033343955   2002
## 1761    997937459   2001
## 1762   1084489330   2004
## 1763    997937413   2001
## 1764    997937427   2001
## 1765    997938372   2001
## 1766    997937442   2001
## 1767   1033344023   2002
## 1768    997937442   2001
## 1769    997938994   2001
## 1770   1052896685   2003
## 1771   1034544351   2002
## 1772   1345398332   2012
## 1773   1033344307   2002
## 1774    997937700   2001
## 1775    997938035   2001
## 1776   1349622626   2012
## 1777    997937459   2001
## 1778    997937914   2001
## 1779    997937986   2001
## 1780   1040205943   2002
## 1781   1061496845   2003
## 1782    997937775   2001
## 1783    997937762   2001
## 1784    997937682   2001
## 1785    997939162   2001
## 1786    997937713   2001
## 1787    997937986   2001
## 1788    997937808   2001
## 1789    997937713   2001
## 1790   1349622526   2012
## 1791   1120209753   2005
## 1792   1166586578   2006
## 1793    997937762   2001
## 1794   1374637769   2013
## 1795    997937808   2001
## 1796   1033343955   2002
## 1797   1033343955   2002
## 1798    997937366   2001
## 1799    997939193   2001
## 1800   1345397847   2012
## 1801    997937949   2001
## 1802    997937334   2001
## 1803   1349048073   2012
## 1804    997938151   2001
## 1805    997937374   2001
## 1806    997937366   2001
## 1807    997937822   2001
## 1808   1039243666   2002
## 1809   1033343955   2002
## 1810   1033345068   2002
## 1811    997937346   2001
## 1812    997937775   2001
## 1813    997937384   2001
## 1814   1416119736   2014
## 1815    997939653   2001
## 1816    997937334   2001
## 1817   1096005216   2004
## 1818    997937822   2001
## 1819   1054774846   2003
## 1820   1075143282   2004
## 1821   1345397842   2012
## 1822    997938203   2001
## 1823    997938617   2001
## 1824    997937575   2001
## 1825    997937575   2001
## 1826    997937346   2001
## 1827   1033344625   2002
## 1828   1033343955   2002
## 1829   1469330631   2016
## 1830    997937346   2001
## 1831    997937551   2001
## 1832    997937544   2001
## 1833    997937539   2001
## 1834    997937530   2001
## 1835    997937519   2001
## 1836    997937519   2001
## 1837    997937366   2001
## 1838    997937366   2001
## 1839    997937494   2001
## 1840   1044348492   2003
## 1841   1374637779   2013
## 1842   1039243705   2002
## 1843   1054449465   2003
## 1844   1052896975   2003
## 1845   1044348492   2003
## 1846   1033344023   2002
## 1847   1044348420   2003
## 1848   1075143297   2004
## 1849   1039243705   2002
## 1850   1054449369   2003
## 1851   1166586875   2006
## 1852   1416119762   2014
## 1853   1044348492   2003
## 1854   1054449351   2003
## 1855   1040206368   2002
## 1856   1039243666   2002
## 1857   1054449340   2003
## 1858   1033344055   2002
## 1859   1054449355   2003
## 1860   1033343866   2002
## 1861   1040206325   2002
## 1862   1054449484   2003
## 1863   1033343828   2002
## 1864   1033939395   2002
## 1865   1465880321   2016
## 1866   1469330599   2016
## 1867   1044348382   2003
## 1868   1033343815   2002
## 1869   1349622574   2012
## 1870   1040205965   2002
## 1871   1033343841   2002
## 1872   1425876112   2015
## 1873   1033343815   2002
## 1874   1033343815   2002
## 1875   1443385401   2015
## 1876   1120209745   2005
## 1877   1054449333   2003
## 1878   1033343815   2002
## 1879   1033344055   2002
## 1880   1041532617   2003
## 1881   1054450221   2003
## 1882   1033343866   2002
## 1883   1044348382   2003
## 1884   1096005077   2004
## 1885   1033344006   2002
## 1886   1416119882   2014
## 1887   1345397962   2012
## 1888   1033343934   2002
## 1889   1044348382   2003
## 1890   1033343901   2002
## 1891   1416119747   2014
## 1892   1033344044   2002
## 1893   1033343934   2002
## 1894   1033343919   2002
## 1895   1122925555   2005
## 1896   1075143288   2004
## 1897   1033343866   2002
## 1898   1033344286   2002
## 1899   1240203827   2009
## 1900   1054449705   2003
## 1901   1033343934   2002
## 1902   1416120007   2014
## 1903   1033343841   2002
## 1904   1465880704   2016
## 1905   1367800223   2013
## 1906   1416119542   2014
## 1907   1465794274   2016
## 1908   1033343919   2002
## 1909   1054449455   2003
## 1910   1345397799   2012
## 1911   1465954627   2016
## 1912   1039243048   2002
## 1913   1033343901   2002
## 1914   1465881201   2016
## 1915   1096005096   2004
## 1916   1039243048   2002
## 1917   1166586831   2006
## 1918   1367800228   2013
## 1919   1039243048   2002
## 1920   1052896740   2003
## 1921   1096005195   2004
## 1922   1033344065   2002
## 1923   1039243069   2002
## 1924   1040205624   2002
## 1925   1033344034   2002
## 1926   1033344188   2002
## 1927   1033344374   2002
## 1928   1033344188   2002
## 1929   1033344188   2002
## 1930   1166586482   2006
## 1931   1033344357   2002
## 1932   1052896819   2003
## 1933   1033344374   2002
## 1934   1033344296   2002
## 1935   1033344129   2002
## 1936   1033344119   2002
## 1937   1033344145   2002
## 1938   1054503542   2003
## 1939   1033344401   2002
## 1940   1033344137   2002
## 1941   1033344334   2002
## 1942   1035258747   2002
## 1943   1035258747   2002
## 1944   1035258747   2002
## 1945   1054513297   2003
## 1946   1222576379   2008
## 1947   1084489317   2004
## 1948   1425876082   2015
## 1949   1055439475   2003
## 1950   1034544351   2002
## 1951   1035258564   2002
## 1952   1046209630   2003
## 1953   1075142963   2004
## 1954   1035258362   2002
## 1955   1039242955   2002
## 1956   1054449327   2003
## 1957   1052906939   2003
## 1958   1416119666   2014
## 1959   1166587383   2006
## 1960   1066591270   2003
## 1961   1040205624   2002
## 1962   1044220069   2003
## 1963   1357110234   2013
## 1964   1096005087   2004
## 1965   1096005111   2004
## 1966   1040448133   2002
## 1967   1084489297   2004
## 1968   1163876422   2006
## 1969   1075143302   2004
## 1970   1443385275   2015
## 1971   1040205624   2002
## 1972   1134521661   2005
## 1973   1096005123   2004
## 1974   1120209437   2005
## 1975   1096005130   2004
## 1976   1093027992   2004
## 1977   1046209643   2003
## 1978   1465954655   2016
## 1979   1416119908   2014
## 1980   1416119753   2014
## 1981   1416119690   2014
## 1982   1046209705   2003
## 1983   1416119611   2014
## 1984   1046209705   2003
## 1985   1096005101   2004
## 1986   1052897100   2003
## 1987   1163876393   2006
## 1988   1416119893   2014
## 1989   1425876025   2015
## 1990   1096005116   2004
## 1991   1075142952   2004
## 1992   1055439424   2003
## 1993   1084489307   2004
## 1994   1120208617   2005
## 1995   1052896685   2003
## 1996   1054271424   2003
## 1997   1134522002   2005
## 1998   1061496771   2003
## 1999   1122576748   2005
## 2000   1166585438   2006
## 2001   1084489293   2004
## 2002   1465793939   2016
## 2003   1054449659   2003
## 2004   1055439392   2003
## 2005   1056617566   2003
## 2006   1058249439   2003
## 2007   1134521973   2005
## 2008   1061496778   2003
## 2009   1058249457   2003
## 2010   1061496766   2003
## 2011   1061496761   2003
## 2012   1082220233   2004
## 2013   1416119958   2014
## 2014   1096005208   2004
## 2015   1082220241   2004
## 2016   1093028561   2004
## 2017   1120209771   2005
## 2018   1082220217   2004
## 2019   1065197251   2003
## 2020   1425876028   2015
## 2021   1465881072   2016
## 2022   1082220258   2004
## 2023   1120209297   2005
## 2024   1096005320   2004
## 2025   1067797435   2003
## 2026   1082220208   2004
## 2027   1093981691   2004
## 2028   1068955127   2003
## 2029   1096005187   2004
## 2030   1067797349   2003
## 2031   1096005180   2004
## 2032   1416119807   2014
## 2033   1465954640   2016
## 2034   1075142920   2004
## 2035   1338699263   2012
## 2036   1075142924   2004
## 2037   1088621558   2004
## 2038   1465794270   2016
## 2039   1347936706   2012
## 2040   1083003232   2004
## 2041   1222576385   2008
## 2042   1240203829   2009
## 2043   1093028559   2004
## 2044   1097770851   2004
## 2045   1257734253   2009
## 2046   1348976559   2012
## 2047   1367800233   2013
## 2048   1374637760   2013
## 2049   1240203970   2009
## 2050   1465954687   2016
## 2051   1132469120   2005
## 2052   1443384409   2015
## 2053   1120209290   2005
## 2054   1347936794   2012
## 2055   1096005056   2004
## 2056   1088621554   2004
## 2057   1088621484   2004
## 2058   1075142916   2004
## 2059   1120209458   2005
## 2060   1075142909   2004
## 2061   1416119886   2014
## 2062   1096005109   2004
## 2063   1166587408   2006
## 2064   1193435338   2007
## 2065   1093028019   2004
## 2066   1082220195   2004
## 2067   1222576372   2008
## 2068   1416119755   2014
## 2069   1082220223   2004
## 2070   1465954961   2016
## 2071   1093028001   2004
## 2072   1082220175   2004
## 2073   1097770844   2004
## 2074   1134521979   2005
## 2075   1093981610   2004
## 2076   1425876074   2015
## 2077   1416119694   2014
## 2078   1416119705   2014
## 2079   1166587430   2006
## 2080   1338698422   2012
## 2081   1240203696   2009
## 2082   1093070784   2004
## 2083   1345397687   2012
## 2084   1345398305   2012
## 2085   1345381192   2012
## 2086   1345397672   2012
## 2087   1096005042   2004
## 2088   1093027976   2004
## 2089   1465793979   2016
## 2090   1134522006   2005
## 2091   1093027865   2004
## 2092   1088621517   2004
## 2093   1163876352   2006
## 2094   1166587363   2006
## 2095   1416119547   2014
## 2096   1122576284   2005
## 2097   1257734240   2009
## 2098   1465880288   2016
## 2099   1361078268   2013
## 2100   1120209740   2005
## 2101   1163876408   2006
## 2102   1096005049   2004
## 2103   1093027850   2004
## 2104   1128274489   2005
## 2105   1349622612   2012
## 2106   1163876378   2006
## 2107   1120210020   2005
## 2108   1093027853   2004
## 2109   1416119915   2014
## 2110   1134521997   2005
## 2111   1166586987   2006
## 2112   1349622634   2012
## 2113   1166981777   2006
## 2114   1122925517   2005
## 2115   1120210034   2005
## 2116   1101423864   2004
## 2117   1465880526   2016
## 2118   1166585434   2006
## 2119   1166981765   2006
## 2120   1120209300   2005
## 2121   1357110243   2013
## 2122   1134522096   2005
## 2123   1134522079   2005
## 2124   1101423869   2004
## 2125   1163876370   2006
## 2126   1374637712   2013
## 2127   1374637844   2013
## 2128   1166981834   2006
## 2129   1222575895   2008
## 2130   1134521251   2005
## 2131   1416120087   2014
## 2132   1166585398   2006
## 2133   1166587331   2006
## 2134   1240203954   2009
## 2135   1349622724   2012
## 2136   1166587397   2006
## 2137   1134521148   2005
## 2138   1348976609   2012
## 2139   1120209293   2005
## 2140   1347936774   2012
## 2141   1127035004   2005
## 2142   1120208607   2005
## 2143   1136904803   2006
## 2144   1416119604   2014
## 2145   1416119717   2014
## 2146   1361831527   2013
## 2147   1127035028   2005
## 2148   1136087271   2005
## 2149   1127035016   2005
## 2150   1338702522   2012
## 2151   1132469115   2005
## 2152   1132469077   2005
## 2153   1136904851   2006
## 2154   1120208603   2005
## 2155   1316395912   2011
## 2156   1361078474   2013
## 2157   1416119744   2014
## 2158   1141391741   2006
## 2159   1316395893   2011
## 2160   1367765144   2013
## 2161   1357110418   2013
## 2162   1141391837   2006
## 2163   1135737540   2005
## 2164   1141391844   2006
## 2165   1138537176   2006
## 2166   1416119600   2014
## 2167   1465954599   2016
## 2168   1141391812   2006
## 2169   1425876066   2015
## 2170   1222576339   2008
## 2171   1338698465   2012
## 2172   1166587434   2006
## 2173   1416119810   2014
## 2174   1416119662   2014
## 2175   1258259502   2009
## 2176   1348976510   2012
## 2177   1465880318   2016
## 2178   1240211404   2009
## 2179   1222576358   2008
## 2180   1222575879   2008
## 2181   1465794625   2016
## 2182   1316408165   2011
## 2183   1240211399   2009
## 2184   1357109999   2013
## 2185   1465793925   2016
## 2186   1316396016   2011
## 2187   1425876007   2015
## 2188   1338698829   2012
## 2189   1416119707   2014
## 2190   1374637848   2013
## 2191   1465794277   2016
## 2192   1416119790   2014
## 2193   1416120304   2014
## 2194   1416119889   2014
## 2195   1169616283   2007
## 2196   1338699292   2012
## 2197   1338702417   2012
## 2198   1367800237   2013
## 2199   1416119963   2014
## 2200   1374637631   2013
## 2201   1222576367   2008
## 2202   1245382906   2009
## 2203   1465793916   2016
## 2204   1416119898   2014
## 2205   1347937644   2012
## 2206   1257734226   2009
## 2207   1348976680   2012
## 2208   1222575856   2008
## 2209   1240211394   2009
## 2210   1222578045   2008
## 2211   1222578063   2008
## 2212   1316395906   2011
## 2213   1465880683   2016
## 2214   1443384396   2015
## 2215   1245361883   2009
## 2216   1222578101   2008
## 2217   1222576350   2008
## 2218   1222578057   2008
## 2219   1347936470   2012
## 2220   1349622540   2012
## 2221   1347936786   2012
## 2222   1443384826   2015
## 2223   1338699286   2012
## 2224   1349622826   2012
## 2225   1425876037   2015
## 2226   1443385025   2015
## 2227   1338702524   2012
## 2228   1338698806   2012
## 2229   1257734285   2009
## 2230   1416119677   2014
## 2231   1425875994   2015
## 2232   1258259468   2009
## 2233   1238804101   2009
## 2234   1338698617   2012
## 2235   1361078498   2013
## 2236   1416120041   2014
## 2237   1374638435   2013
## 2238   1222578076   2008
## 2239   1416119972   2014
## 2240   1361078252   2013
## 2241   1338698362   2012
## 2242   1443384839   2015
## 2243   1416119594   2014
## 2244   1374638451   2013
## 2245   1465793961   2016
## 2246   1443385030   2015
## 2247   1416119686   2014
## 2248   1425876060   2015
## 2249   1216576560   2008
## 2250   1338702423   2012
## 2251   1338698854   2012
## 2252   1347936713   2012
## 2253   1222024895   2008
## 2254   1240203919   2009
## 2255   1465793918   2016
## 2256   1216576545   2008
## 2257   1347936669   2012
## 2258   1216576555   2008
## 2259   1338698814   2012
## 2260   1357110059   2013
## 2261   1349622715   2012
## 2262   1216576611   2008
## 2263   1216576596   2008
## 2264   1216576570   2008
## 2265   1316396154   2011
## 2266   1416119795   2014
## 2267   1361831545   2013
## 2268   1316395628   2011
## 2269   1238801478   2009
## 2270   1240211388   2009
## 2271   1357110065   2013
## 2272   1222024906   2008
## 2273   1257734243   2009
## 2274   1349622731   2012
## 2275   1367764780   2013
## 2276   1443384812   2015
## 2277   1367800217   2013
## 2278   1357110411   2013
## 2279   1245309336   2009
## 2280   1338698608   2012
## 2281   1348976367   2012
## 2282   1245021120   2009
## 2283   1416119731   2014
## 2284   1416119711   2014
## 2285   1357110430   2013
## 2286   1465880993   2016
## 2287   1238804089   2009
## 2288   1240202854   2009
## 2289   1465880257   2016
## 2290   1465880651   2016
## 2291   1257733143   2009
## 2292   1338698623   2012
## 2293   1426110601   2015
## 2294   1257733150   2009
## 2295   1245021164   2009
## 2296   1374638441   2013
## 2297   1338702402   2012
## 2298   1338698899   2012
## 2299   1245021148   2009
## 2300   1338698337   2012
## 2301   1316396161   2011
## 2302   1465954712   2016
## 2303   1245021136   2009
## 2304   1316396225   2011
## 2305   1374637633   2013
## 2306   1338698886   2012
## 2307   1338702414   2012
## 2308   1389440855   2014
## 2309   1361831532   2013
## 2310   1465880996   2016
## 2311   1338698471   2012
## 2312   1458506351   2016
## 2313   1257733119   2009
## 2314   1257734187   2009
## 2315   1261945002   2009
## 2316   1316395878   2011
## 2317   1374637773   2013
## 2318   1465793997   2016
## 2319   1257734180   2009
## 2320   1465794388   2016
## 2321   1465793912   2016
## 2322   1465793920   2016
## 2323   1257735545   2009
## 2324   1425876002   2015
## 2325   1465880969   2016
## 2326   1338702430   2012
## 2327   1338698882   2012
## 2328   1357110070   2013
## 2329   1261944230   2009
## 2330   1273090173   2010
## 2331   1316395633   2011
## 2332   1338698316   2012
## 2333   1338702442   2012
## 2334   1367764758   2013
## 2335   1361831555   2013
## 2336   1458506610   2016
## 2337   1273090169   2010
## 2338   1273090163   2010
## 2339   1361831522   2013
## 2340   1379040852   2013
## 2341   1367765175   2013
## 2342   1367801385   2013
## 2343   1316395588   2011
## 2344   1458506646   2016
## 2345   1316395983   2011
## 2346   1338698896   2012
## 2347   1443384445   2015
## 2348   1367765128   2013
## 2349   1316395554   2011
## 2350   1458506381   2016
## 2351   1465880302   2016
## 2352   1349048062   2012
## 2353   1349622587   2012
## 2354   1367765181   2013
## 2355   1338698870   2012
## 2356   1465794431   2016
## 2357   1374638009   2013
## 2358   1361078260   2013
## 2359   1316395567   2011
## 2360   1465793930   2016
## 2361   1361078281   2013
## 2362   1367801466   2013
## 2363   1374638035   2013
## 2364   1348976539   2012
## 2365   1338698369   2012
## 2366   1316395900   2011
## 2367   1458506571   2016
## 2368   1367801474   2013
## 2369   1338698918   2012
## 2370   1338698461   2012
## 2371   1316396252   2011
## 2372   1465880518   2016
## 2373   1361078285   2013
## 2374   1367801456   2013
## 2375   1316396136   2011
## 2376   1367765123   2013
## 2377   1425875865   2015
## 2378   1345381190   2012
## 2379   1465880243   2016
## 2380   1367801369   2013
## 2381   1347936749   2012
## 2382   1316395607   2011
## 2383   1367801387   2013
## 2384   1348976211   2012
## 2385   1316395573   2011
## 2386   1338698824   2012
## 2387   1316395597   2011
## 2388   1458506593   2016
## 2389   1458506580   2016
## 2390   1458507263   2016
## 2391   1458505901   2016
## 2392   1458506624   2016
## 2393   1316395580   2011
## 2394   1374638031   2013
## 2395   1347936763   2012
## 2396   1338698810   2012
## 2397   1458507259   2016
## 2398   1316396021   2011
## 2399   1458506136   2016
## 2400   1443385461   2015
## 2401   1416120053   2014
## 2402   1338698356   2012
## 2403   1348976202   2012
## 2404   1386367929   2013
## 2405   1316408269   2011
## 2406   1316395487   2011
## 2407   1316395783   2011
## 2408   1367801460   2013
## 2409   1374638024   2013
## 2410   1458506641   2016
## 2411   1361078138   2013
## 2412   1338697857   2012
## 2413   1349048081   2012
## 2414   1338698848   2012
## 2415   1367801470   2013
## 2416   1348977157   2012
## 2417   1361078276   2013
## 2418   1338698144   2012
## 2419   1367801363   2013
## 2420   1348976195   2012
## 2421   1374637765   2013
## 2422   1338698014   2012
## 2423   1338698247   2012
## 2424   1465880427   2016
## 2425   1338697915   2012
## 2426   1347936860   2012
## 2427   1345350956   2012
## 2428   1348979143   2012
## 2429   1348976183   2012
## 2430   1338698134   2012
## 2431   1338698154   2012
## 2432   1338698344   2012
## 2433   1338698158   2012
## 2434   1338697924   2012
## 2435   1465880962   2016
## 2436   1338698152   2012
## 2437   1361831455   2013
## 2438   1338699137   2012
## 2439   1338697920   2012
## 2440   1458507291   2016
## 2441   1338697984   2012
## 2442   1338697905   2012
## 2443   1338697996   2012
## 2444   1338698001   2012
## 2445   1338698006   2012
## 2446   1338697991   2012
## 2447   1338697968   2012
## 2448   1345351002   2012
## 2449   1338697964   2012
## 2450   1345350968   2012
## 2451   1374638428   2013
## 2452   1345350979   2012
## 2453   1345350959   2012
## 2454   1465880715   2016
## 2455   1347937652   2012
## 2456   1357109952   2013
## 2457   1345350961   2012
## 2458   1357109941   2013
## 2459   1345350995   2012
## 2460   1361831420   2013
## 2461   1345350973   2012
## 2462   1361076608   2013
## 2463   1374637996   2013
## 2464   1357109969   2013
## 2465   1458506349   2016
## 2466   1367764836   2013
## 2467   1386368013   2013
## 2468   1361076604   2013
## 2469   1426110392   2015
## 2470   1386367936   2013
## 2471   1389482906   2014
## 2472   1465793928   2016
## 2473   1425876388   2015
## 2474   1416119923   2014
## 2475   1367764716   2013
## 2476   1465880234   2016
## 2477   1458506339   2016
## 2478   1425876390   2015
## 2479   1357109923   2013
## 2480   1386368031   2013
## 2481   1361831110   2013
## 2482   1361076617   2013
## 2483   1465880648   2016
## 2484   1361831156   2013
## 2485   1400818425   2014
## 2486   1381534422   2013
## 2487   1374638046   2013
## 2488   1465793952   2016
## 2489   1386367955   2013
## 2490   1367764695   2013
## 2491   1367764864   2013
## 2492   1465880292   2016
## 2493   1465880371   2016
## 2494   1400818444   2014
## 2495   1386367999   2013
## 2496   1458506656   2016
## 2497   1389482894   2014
## 2498   1386367981   2013
## 2499   1386367968   2013
## 2500   1400818394   2014
## 2501   1458506599   2016
## 2502   1386367923   2013
## 2503   1379040901   2013
## 2504   1465794267   2016
## 2505   1465954520   2016
## 2506   1465880282   2016
## 2507   1465880264   2016
## 2508   1458506673   2016
## 2509   1458506703   2016
## 2510   1425875562   2015
## 2511   1381534394   2013
## 2512   1386367735   2013
## 2513   1381534447   2013
## 2514   1425875553   2015
## 2515   1443384429   2015
## 2516   1386367830   2013
## 2517   1386367813   2013
## 2518   1389440765   2014
## 2519   1416120264   2014
## 2520   1416120141   2014
## 2521   1416119571   2014
## 2522   1465881258   2016
## 2523   1425875579   2015
## 2524   1426110023   2015
## 2525   1416120159   2014
## 2526   1458506323   2016
## 2527   1465954590   2016
## 2528   1465954969   2016
## 2529   1407125286   2014
## 2530   1458506369   2016
## 2531   1465794437   2016
## 2532   1416119568   2014
## 2533   1425875392   2015
## 2534   1416120169   2014
## 2535   1465793948   2016
## 2536   1425875503   2015
## 2537   1416120131   2014
## 2538   1416120162   2014
## 2539   1416120149   2014
## 2540   1416120159   2014
## 2541   1465880696   2016
## 2542   1443385454   2015
## 2543   1425875482   2015
## 2544   1416120099   2014
## 2545   1400818348   2014
## 2546   1407125275   2014
## 2547   1425875435   2015
## 2548   1416120100   2014
## 2549   1443384269   2015
## 2550   1407125270   2014
## 2551   1425875460   2015
## 2552   1426110071   2015
## 2553   1416120171   2014
## 2554   1443384078   2015
## 2555   1425875403   2015
## 2556   1407125273   2014
## 2557   1465880699   2016
## 2558   1416119564   2014
## 2559   1425875476   2015
## 2560   1465794105   2016
## 2561   1425875488   2015
## 2562   1425875497   2015
## 2563   1425875574   2015
## 2564   1465793290   2016
## 2565   1416120202   2014
## 2566   1425875463   2015
## 2567   1443384500   2015
## 2568   1425875406   2015
## 2569   1425875413   2015
## 2570   1443384091   2015
## 2571   1425875458   2015
## 2572   1425875401   2015
## 2573   1465794406   2016
## 2574   1425875449   2015
## 2575   1443384373   2015
## 2576   1425875426   2015
## 2577   1443384296   2015
## 2578   1443384084   2015
## 2579   1443384307   2015
## 2580   1443384336   2015
## 2581   1425875443   2015
## 2582   1443384294   2015
## 2583   1443384317   2015
## 2584   1465793971   2016
## 2585   1458507341   2016
## 2586   1443384389   2015
## 2587   1458505928   2016
## 2588   1466051442   2016
## 2589   1443384000   2015
## 2590   1443384283   2015
## 2591   1443384352   2015
## 2592   1458505916   2016
## 2593   1465793115   2016
## 2594   1465793601   2016
## 2595   1443385387   2015
## 2596   1458505982   2016
## 2597   1443384322   2015
## 2598   1458506093   2016
## 2599   1465794100   2016
## 2600   1465793706   2016
## 2601   1458506081   2016
## 2602   1443384337   2015
## 2603   1465794103   2016
## 2604   1458506026   2016
## 2605   1443384330   2015
## 2606   1458507347   2016
## 2607   1458505912   2016
## 2608   1443384275   2015
## 2609   1458506097   2016
## 2610   1458505921   2016
## 2611   1465794150   2016
## 2612   1469330276   2016
## 2613   1467259301   2016
## 2614   1469330245   2016
## 2615   1458506089   2016
## 2616   1458506078   2016
## 2617   1465793719   2016
## 2618   1458505989   2016
## 2619   1465793116   2016
## 2620   1443384531   2015
## 2621   1458505973   2016
## 2622   1458505986   2016
## 2623   1465793975   2016
## 2624   1458506009   2016
## 2625   1465956541   2016
## 2626   1458505917   2016
## 2627   1465793185   2016
## 2628   1443384516   2015
## 2629   1465793205   2016
## 2630   1458505911   2016
## 2631   1465793179   2016
## 2632   1458506017   2016
## 2633   1465793183   2016
## 2634   1465793201   2016
## 2635   1458506016   2016
## 2636   1458505924   2016
## 2637   1465793208   2016
## 2638   1458506107   2016
## 2639   1465793192   2016
## 2640   1465793700   2016
## 2641   1465793170   2016
## 2642   1465880375   2016
## 2643   1460076733   2016
## 2644   1465793639   2016
## 2645   1465793691   2016
## 2646   1465793621   2016
## 2647   1465793612   2016
## 2648   1467259316   2016
## 2649   1465793630   2016
## 2650   1465794051   2016
## 2651   1467259294   2016
## 2652   1465793091   2016
## 2653   1465880080   2016
## 2654   1465793093   2016
## 2655   1466802910   2016
## 2656   1469330481   2016
## 2657   1469330238   2016
## 2658   1466802905   2016
## 2659   1469330270   2016
## 2660   1469330266   2016
## 2661   1469330242   2016
## 2662   1469330307   2016
## 2663   1178364904   2007
## 2664   1178364881   2007
## 2665   1137577638   2006
## 2666   1178364921   2007
## 2667   1137577630   2006
## 2668   1137577694   2006
## 2669   1178363907   2007
## 2670   1178364916   2007
## 2671   1137577687   2006
## 2672   1137577912   2006
## 2673   1137577918   2006
## 2674   1137577616   2006
## 2675   1137577645   2006
## 2676   1148214528   2006
## 2677   1137577753   2006
## 2678   1137577979   2006
## 2679   1148214227   2006
## 2680   1137577889   2006
## 2681   1148214543   2006
## 2682   1148214272   2006
## 2683   1148214289   2006
## 2684   1148214251   2006
## 2685   1178364909   2007
## 2686   1137577776   2006
## 2687   1137577730   2006
## 2688   1178364961   2007
## 2689   1137578034   2006
## 2690   1137577905   2006
## 2691   1148214661   2006
## 2692   1127469542   2005
## 2693   1127469531   2005
## 2694   1127470880   2005
## 2695   1127469436   2005
## 2696   1127469535   2005
## 2697   1127469246   2005
## 2698   1127469450   2005
## 2699   1127469023   2005
## 2700   1127470242   2005
## 2701   1127468646   2005
## 2702   1127469509   2005
## 2703   1127470280   2005
## 2704   1127468896   2005
## 2705   1127469577   2005
## 2706   1127469684   2005
## 2707   1127471027   2005
## 2708   1127474688   2005
## 2709   1127469552   2005
## 2710   1127469604   2005
## 2711   1127469297   2005
## 2712   1127471192   2005
## 2713   1127469420   2005
## 2714   1127470013   2005
## 2715   1127469401   2005
## 2716   1127469444   2005
## 2717   1127471468   2005
## 2718   1127469407   2005
## 2719   1127475344   2005
## 2720   1127472949   2005
## 2721   1127469434   2005
## 2722   1127469561   2005
## 2723   1127469779   2005
## 2724   1127469416   2005
## 2725   1127469396   2005
## 2726   1127469440   2005
## 2727   1127472555   2005
## 2728   1127473893   2005
## 2729   1127469466   2005
## 2730   1127469230   2005
## 2731   1127469000   2005
## 2732   1127470263   2005
## 2733   1127468839   2005
## 2734   1127468627   2005
## 2735   1127468595   2005
## 2736   1127470036   2005
## 2737   1127471471   2005
## 2738   1127468808   2005
## 2739   1127468822   2005
## 2740   1127469756   2005
## 2741   1127469594   2005
## 2742   1127471079   2005
## 2743   1127472146   2005
## 2744   1127474822   2005
## 2745   1127470622   2005
## 2746   1127470607   2005
## 2747   1127473110   2005
## 2748   1127473686   2005
## 2749   1127469628   2005
## 2750   1127469308   2005
## 2751   1127469973   2005
## 2752   1127471148   2005
## 2753   1127470400   2005
## 2754   1127469568   2005
## 2755   1127472932   2005
## 2756   1127470987   2005
## 2757   1127469556   2005
## 2758   1127469923   2005
## 2759   1127469650   2005
## 2760   1127473503   2005
## 2761   1127468800   2005
## 2762   1127469622   2005
## 2763   1127474633   2005
## 2764   1127469667   2005
## 2765   1127469002   2005
## 2766   1127469749   2005
## 2767   1127471445   2005
## 2768   1127470230   2005
## 2769   1127469169   2005
## 2770   1127474779   2005
## 2771   1127472490   2005
## 2772   1127470206   2005
## 2773   1127470820   2005
## 2774   1127469721   2005
## 2775   1127468791   2005
## 2776   1127470114   2005
## 2777   1127470489   2005
## 2778   1127468638   2005
## 2779   1127472442   2005
## 2780   1127469694   2005
## 2781   1127470072   2005
## 2782   1127469234   2005
## 2783   1127470095   2005
## 2784   1127469473   2005
## 2785   1127473670   2005
## 2786   1127470062   2005
## 2787   1127470930   2005
## 2788   1127468688   2005
## 2789   1127473298   2005
## 2790   1127468930   2005
## 2791   1127469223   2005
## 2792   1127469661   2005
## 2793   1127475516   2005
## 2794   1127469521   2005
## 2795   1127469976   2005
## 2796   1127469527   2005
## 2797   1127469905   2005
## 2798   1127471602   2005
## 2799   1127469988   2005
## 2800   1127468587   2005
## 2801   1127469912   2005
## 2802   1127474863   2005
## 2803   1127469601   2005
## 2804   1127472770   2005
## 2805   1127470069   2005
## 2806   1127468617   2005
## 2807   1127470043   2005
## 2808   1127469129   2005
## 2809   1127471258   2005
## 2810   1127472570   2005
## 2811   1127470262   2005
## 2812   1127469612   2005
## 2813   1127469217   2005
## 2814   1127470918   2005
## 2815   1127469773   2005
## 2816   1127469738   2005
## 2817   1127473090   2005
## 2818   1127469006   2005
## 2819   1127469494   2005
## 2820   1127468880   2005
## 2821   1127470656   2005
## 2822   1127468938   2005
## 2823   1127475491   2005
## 2824   1127474890   2005
## 2825   1127472523   2005
## 2826   1127473955   2005
## 2827   1127469357   2005
## 2828   1127470030   2005
## 2829   1127474873   2005
## 2830   1127474381   2005
## 2831   1127470130   2005
## 2832   1127469815   2005
## 2833   1127469961   2005
## 2834   1127468671   2005
## 2835   1127469563   2005
## 2836   1127470079   2005
## 2837   1127469379   2005
## 2838   1127470158   2005
## 2839   1127469848   2005
## 2840   1127470166   2005
## 2841   1127472530   2005
## 2842   1127469486   2005
## 2843   1127470677   2005
## 2844   1127470875   2005
## 2845   1127468906   2005
## 2846   1127472715   2005
## 2847   1127469890   2005
## 2848   1127473623   2005
## 2849   1127473860   2005
## 2850   1127469619   2005
## 2851   1127469870   2005
## 2852   1127473627   2005
## 2853   1127469711   2005
## 2854   1127469824   2005
## 2855   1127474088   2005
## 2856   1127469504   2005
## 2857   1127469746   2005
## 2858   1127469479   2005
## 2859   1127469374   2005
## 2860   1127469652   2005
## 2861   1127469690   2005
## 2862   1127472212   2005
## 2863   1127469609   2005
## 2864   1127471286   2005
## 2865   1127469583   2005
## 2866   1127476640   2005
## 2867   1127471284   2005
## 2868   1127469868   2005
## 2869   1127470023   2005
## 2870   1127469202   2005
## 2871   1127472389   2005
## 2872   1127474810   2005
## 2873   1127469266   2005
## 2874   1127473609   2005
## 2875   1127469817   2005
## 2876   1127468813   2005
## 2877   1127473589   2005
## 2878   1127471452   2005
## 2879   1127470537   2005
## 2880   1127470423   2005
## 2881   1127469591   2005
## 2882   1127473228   2005
## 2883   1127472406   2005
## 2884   1127472085   2005
## 2885   1127470532   2005
## 2886   1127468949   2005
## 2887   1127470327   2005
## 2888   1127470461   2005
## 2889   1127470285   2005
## 2890   1127470334   2005
## 2891   1127468701   2005
## 2892   1127469984   2005
## 2893   1127469664   2005
## 2894   1127469852   2005
## 2895   1127468683   2005
## 2896   1127471074   2005
## 2897   1127475013   2005
## 2898   1127469783   2005
## 2899   1127470473   2005
## 2900   1127470119   2005
## 2901   1127470830   2005
## 2902   1127471221   2005
## 2903   1127471153   2005
## 2904   1127469334   2005
## 2905   1127470728   2005
## 2906   1127474968   2005
## 2907   1127474815   2005
## 2908   1127475151   2005
## 2909   1127468922   2005
## 2910   1127470287   2005
## 2911   1127473495   2005
## 2912   1127470004   2005
## 2913   1127471176   2005
## 2914   1127469940   2005
## 2915   1127470007   2005
## 2916   1127475485   2005
## 2917   1127469643   2005
## 2918   1127473364   2005
## 2919   1127473564   2005
## 2920   1127470960   2005
## 2921   1127475207   2005
## 2922   1127469827   2005
## 2923   1127472353   2005
## 2924   1127474324   2005
## 2925   1127475000   2005
## 2926   1127471041   2005
## 2927   1127473845   2005
## 2928   1127475457   2005
## 2929   1127470247   2005
## 2930   1127475188   2005
## 2931   1127469195   2005
## 2932   1127473818   2005
## 2933   1127470134   2005
## 2934   1127468673   2005
## 2935   1127471240   2005
## 2936   1127470299   2005
## 2937   1127473010   2005
## 2938   1127470799   2005
## 2939   1127475183   2005
## 2940   1127470238   2005
## 2941   1127472858   2005
## 2942   1127475440   2005
## 2943   1127470685   2005
## 2944   1127473119   2005
## 2945   1127472423   2005
## 2946   1127471265   2005
## 2947   1127471454   2005
## 2948   1127471062   2005
## 2949   1127475067   2005
## 2950   1127474818   2005
## 2951   1127469753   2005
## 2952   1127470498   2005
## 2953   1127474362   2005
## 2954   1127474765   2005
## 2955   1127475051   2005
## 2956   1127474841   2005
## 2957   1127472872   2005
## 2958   1127475334   2005
## 2959   1127472991   2005
## 2960   1127472976   2005
## 2961   1127475308   2005
## 2962   1127473829   2005
## 2963   1127470144   2005
## 2964   1127472896   2005
## 2965   1127472979   2005
## 2966   1127470895   2005
## 2967   1127469259   2005
## 2968   1127473548   2005
## 2969   1127474791   2005
## 2970   1127474916   2005
## 2971   1127475452   2005
## 2972   1127468985   2005
## 2973   1127474277   2005
## 2974   1127471196   2005
## 2975   1127470254   2005
## 2976   1127473461   2005
## 2977   1127472413   2005
## 2978   1127472303   2005
## 2979   1127475092   2005
## 2980   1127471327   2005
## 2981   1127470187   2005
## 2982   1127471166   2005
## 2983   1127475055   2005
## 2984   1127473832   2005
## 2985   1127470752   2005
## 2986   1127471083   2005
## 2987   1127475101   2005
## 2988   1127470546   2005
## 2989   1127470734   2005
## 2990   1127474852   2005
## 2991   1127474908   2005
## 2992   1127470872   2005
## 2993   1127471213   2005
## 2994   1127472094   2005
## 2995   1127469062   2005
## 2996   1127470554   2005
## 2997   1127474398   2005
## 2998   1127471109   2005
## 2999   1127470693   2005
## 3000   1127473904   2005
## 3001   1127470592   2005
## 3002   1127473557   2005
## 3003   1127470361   2005
## 3004   1127473913   2005
## 3005   1127470380   2005
## 3006   1127475148   2005
## 3007   1127470520   2005
## 3008   1127469051   2005
## 3009   1127471038   2005
## 3010   1127473707   2005
## 3011   1127472156   2005
## 3012   1127474420   2005
## 3013   1127470503   2005
## 3014   1127471336   2005
## 3015   1127475448   2005
## 3016   1127474877   2005
## 3017   1127470713   2005
## 3018   1127472844   2005
## 3019   1127470866   2005
## 3020   1127474727   2005
## 3021   1127472266   2005
## 3022   1127471100   2005
## 3023   1127473138   2005
## 3024   1127473808   2005
## 3025   1127472829   2005
## 3026   1127471144   2005
## 3027   1127473772   2005
## 3028   1127473349   2005
## 3029   1127472292   2005
## 3030   1127475524   2005
## 3031   1127470706   2005
## 3032   1127470716   2005
## 3033   1127475246   2005
## 3034   1127470724   2005
## 3035   1127471549   2005
## 3036   1127470911   2005
## 3037   1127470788   2005
## 3038   1127471208   2005
## 3039   1127468773   2005
## 3040   1127471031   2005
## 3041   1127475110   2005
## 3042   1127470792   2005
## 3043   1127469035   2005
## 3044   1127475574   2005
## 3045   1127471248   2005
## 3046   1127469049   2005
## 3047   1127472057   2005
## 3048   1127474893   2005
## 3049   1127470680   2005
## 3050   1127475161   2005
## 3051   1127473991   2005
## 3052   1127475261   2005
## 3053   1127475175   2005
## 3054   1127470435   2005
## 3055    856006982   1997
## 3056    856006982   1997
## 3057    856006982   1997
## 3058    856007219   1997
## 3059    856007147   1997
## 3060    856006886   1997
## 3061    856007359   1997
## 3062    856006886   1997
## 3063    856006885   1997
## 3064    856006982   1997
## 3065    856007075   1997
## 3066    856006886   1997
## 3067    856007279   1997
## 3068    856007359   1997
## 3069    856007147   1997
## 3070    856007495   1997
## 3071    856007495   1997
## 3072    856007409   1997
## 3073    856007409   1997
## 3074    856006886   1997
## 3075    856007279   1997
## 3076    856007147   1997
## 3077    856006885   1997
## 3078    856007075   1997
## 3079    856007075   1997
## 3080    856006982   1997
## 3081    856006982   1997
## 3082    856007147   1997
## 3083    856007359   1997
## 3084    856006886   1997
## 3085    856007075   1997
## 3086    856007279   1997
## 3087    856007075   1997
## 3088    856007219   1997
## 3089    856006982   1997
## 3090    856006885   1997
## 3091    856007219   1997
## 3092    856007359   1997
## 3093    856007147   1997
## 3094    856007587   1997
## 3095    856006885   1997
## 3096    856007495   1997
## 3097    856006982   1997
## 3098    856007075   1997
## 3099    856007219   1997
## 3100    856007147   1997
## 3101    856092135   1997
## 3102    856007219   1997
## 3103    856007587   1997
## 3104    856007279   1997
## 3105    856007587   1997
## 3106    855190091   1997
## 3107    855194773   1997
## 3108    855194718   1997
## 3109    855192868   1997
## 3110    855190128   1997
## 3111    855190128   1997
## 3112    855190232   1997
## 3113    855192496   1997
## 3114    855192773   1997
## 3115    855190167   1997
## 3116    855191930   1997
## 3117    855193244   1997
## 3118    855192868   1997
## 3119    855194301   1997
## 3120    855190091   1997
## 3121    855190349   1997
## 3122    855190091   1997
## 3123    855191622   1997
## 3124    855192496   1997
## 3125    855190954   1997
## 3126    855193076   1997
## 3127    855192210   1997
## 3128    855191478   1997
## 3129    855191517   1997
## 3130    855193488   1997
## 3131    855192835   1997
## 3132    855190167   1997
## 3133    855192717   1997
## 3134    855190167   1997
## 3135    855190349   1997
## 3136    855193770   1997
## 3137    855191324   1997
## 3138    855190261   1997
## 3139    855193220   1997
## 3140    855190290   1997
## 3141    855190091   1997
## 3142    855190550   1997
## 3143    855190531   1997
## 3144    855192656   1997
## 3145    855193530   1997
## 3146    855191324   1997
## 3147    855190128   1997
## 3148    855194378   1997
## 3149    855191429   1997
## 3150    855190091   1997
## 3151    855193720   1997
## 3152    855191289   1997
## 3153    855193751   1997
## 3154    855191383   1997
## 3155    855191775   1997
## 3156    855194718   1997
## 3157    855191226   1997
## 3158    855191227   1997
## 3159    855194264   1997
## 3160    855194345   1997
## 3161    855191383   1997
## 3162    855192496   1997
## 3163    855193865   1997
## 3164    855192957   1997
## 3165    855191383   1997
## 3166    855193806   1997
## 3167    855191478   1997
## 3168    855193054   1997
## 3169    855192120   1997
## 3170    855194790   1997
## 3171    855193510   1997
## 3172    855191324   1997
## 3173    855191622   1997
## 3174    855191701   1997
## 3175    855192308   1997
## 3176    855194087   1997
## 3177    855191324   1997
## 3178    855191478   1997
## 3179    855191430   1997
## 3180    855193530   1997
## 3181    855191430   1997
## 3182    855190199   1997
## 3183    855194216   1997
## 3184    855193220   1997
## 3185    855194773   1997
## 3186    855191882   1997
## 3187    855194605   1997
## 3188    855192982   1997
## 3189    855192910   1997
## 3190    855191383   1997
## 3191    855193465   1997
## 3192    855194693   1997
## 3193    855191226   1997
## 3194    855193220   1997
## 3195    855191584   1997
## 3196    855191622   1997
## 3197    855191654   1997
## 3198    855194824   1997
## 3199    855195189   1997
## 3200    855191383   1997
## 3201    855192210   1997
## 3202    855192814   1997
## 3203    855193274   1997
## 3204    855194773   1997
## 3205    855191846   1997
## 3206    855193643   1997
## 3207    855193599   1997
## 3208    855193404   1997
## 3209    855194560   1997
## 3210    855191289   1997
## 3211    855192910   1997
## 3212    855191622   1997
## 3213    855193558   1997
## 3214    855193864   1997
## 3215    855192868   1997
## 3216    855192178   1997
## 3217    855192120   1997
## 3218    855193770   1997
## 3219    855193330   1997
## 3220    855195078   1997
## 3221    855192385   1997
## 3222    855192254   1997
## 3223    855194531   1997
## 3224    855192636   1997
## 3225    855193244   1997
## 3226    855192254   1997
## 3227    855191816   1997
## 3228    855190166   1997
## 3229    855191289   1997
## 3230    855193845   1997
## 3231    855191228   1997
## 3232    855192120   1997
## 3233    855193914   1997
## 3234    855193558   1997
## 3235    855192605   1997
## 3236    855193488   1997
## 3237    855191701   1997
## 3238    855194419   1997
## 3239    855192210   1997
## 3240    855194301   1997
## 3241    855193330   1997
## 3242    855192455   1997
## 3243    855193404   1997
## 3244    855192001   1997
## 3245    855194345   1997
## 3246    855193700   1997
## 3247    855193599   1997
## 3248    855192910   1997
## 3249    855192385   1997
## 3250    855193488   1997
## 3251    855193892   1997
## 3252    855194397   1997
## 3253    855192558   1997
## 3254    855192419   1997
## 3255    855191654   1997
## 3256    855193806   1997
## 3257    855192279   1997
## 3258    855192308   1997
## 3259    855192940   1997
## 3260    855193330   1997
## 3261    855193449   1997
## 3262    855191517   1997
## 3263    855190128   1997
## 3264    855194264   1997
## 3265    855191228   1997
## 3266    855193845   1997
## 3267    855192558   1997
## 3268    855192061   1997
## 3269    855194216   1997
## 3270    855193700   1997
## 3271    855193012   1997
## 3272    855193301   1997
## 3273    855194590   1997
## 3274    855193449   1997
## 3275    855193301   1997
## 3276    855191478   1997
## 3277    855192717   1997
## 3278    855193358   1997
## 3279    855192910   1997
## 3280    855191324   1997
## 3281    855192688   1997
## 3282    855191622   1997
## 3283    855194419   1997
## 3284    855192254   1997
## 3285    855192419   1997
## 3286    855192033   1997
## 3287    855190447   1997
## 3288    855194052   1997
## 3289    855194743   1997
## 3290    855195077   1997
## 3291    855191383   1997
## 3292    855191289   1997
## 3293    855191964   1997
## 3294    855191229   1997
## 3295    855191383   1997
## 3296    855195077   1997
## 3297    855191553   1997
## 3298    855193530   1997
## 3299    855192636   1997
## 3300    855190128   1997
## 3301    855192688   1997
## 3302    855190427   1997
## 3303    855190199   1997
## 3304    855190091   1997
## 3305    855190167   1997
## 3306    855190199   1997
## 3307    855190382   1997
## 3308    855190349   1997
## 3309    855194072   1997
## 3310    855190606   1997
## 3311    855193404   1997
## 3312    855190128   1997
## 3313    855190091   1997
## 3314    855190290   1997
## 3315    855191289   1997
## 3316    855190091   1997
## 3317    855190167   1997
## 3318    855190349   1997
## 3319    855191702   1997
## 3320    855190167   1997
## 3321    855190382   1997
## 3322    855191324   1997
## 3323    855190232   1997
## 3324    855190199   1997
## 3325    855191478   1997
## 3326    855190382   1997
## 3327    855194072   1997
## 3328    855192178   1997
## 3329    855192496   1997
## 3330    855191622   1997
## 3331    855191430   1997
## 3332    855191553   1997
## 3333    855192582   1997
## 3334    855191552   1997
## 3335    855191654   1997
## 3336    855193012   1997
## 3337    855192740   1997
## 3338    855192773   1997
## 3339    855193358   1997
## 3340    855192717   1997
## 3341    855191517   1997
## 3342    855191289   1997
## 3343    855192419   1997
## 3344    855193274   1997
## 3345    855192210   1997
## 3346    855192814   1997
## 3347    855192582   1997
## 3348    855192033   1997
## 3349    855192419   1997
## 3350    855192279   1997
## 3351    855192178   1997
## 3352    855192385   1997
## 3353    855192090   1997
## 3354    855192061   1997
## 3355    855194498   1997
## 3356    855192582   1997
## 3357    855192254   1997
## 3358    855193628   1997
## 3359    855193700   1997
## 3360    855192120   1997
## 3361    855195136   1997
## 3362    855192347   1997
## 3363    855192347   1997
## 3364    855192033   1997
## 3365    855193194   1997
## 3366    855191324   1997
## 3367    855190467   1997
## 3368    855192178   1997
## 3369    855190606   1997
## 3370    855190382   1997
## 3371    855190128   1997
## 3372    855191775   1997
## 3373    855191701   1997
## 3374    855191289   1997
## 3375    855195268   1997
## 3376    855191324   1997
## 3377    855191517   1997
## 3378    855193599   1997
## 3379    855191228   1997
## 3380    855191584   1997
## 3381    855194052   1997
## 3382    855192773   1997
## 3383    855192910   1997
## 3384    855191816   1997
## 3385    855192001   1997
## 3386    855191517   1997
## 3387    855193194   1997
## 3388    855191882   1997
## 3389    855191584   1997
## 3390    855192940   1997
## 3391    855194282   1997
## 3392    855195373   1997
## 3393    855193275   1997
## 3394    855192347   1997
## 3395    855192910   1997
## 3396    855191430   1997
## 3397    855191228   1997
## 3398    855192254   1997
## 3399    855192740   1997
## 3400    855191882   1997
## 3401    855193194   1997
## 3402    855192496   1997
## 3403    855192717   1997
## 3404    855190427   1997
## 3405    855192496   1997
## 3406    855191478   1997
## 3407    855191622   1997
## 3408    855191701   1997
## 3409    855191430   1997
## 3410    855191701   1997
## 3411    855191553   1997
## 3412    855191654   1997
## 3413    855191702   1997
## 3414    855191964   1997
## 3415    855191478   1997
## 3416    855191775   1997
## 3417    855191478   1997
## 3418    855191882   1997
## 3419    855192454   1997
## 3420    855191740   1997
## 3421    855191553   1997
## 3422    855191584   1997
## 3423    855192419   1997
## 3424    855192814   1997
## 3425    855192090   1997
## 3426    855192385   1997
## 3427    855191517   1997
## 3428    855192558   1997
## 3429    855191584   1997
## 3430    855191740   1997
## 3431    855191846   1997
## 3432    855192517   1997
## 3433    855191882   1997
## 3434    855191622   1997
## 3435    855192061   1997
## 3436    855191740   1997
## 3437    855192419   1997
## 3438    855192347   1997
## 3439    855191383   1997
## 3440    855191882   1997
## 3441    855192001   1997
## 3442    855192868   1997
## 3443    855191702   1997
## 3444    855192347   1997
## 3445    855191816   1997
## 3446    855191882   1997
## 3447    855191816   1997
## 3448    855191930   1997
## 3449    855192033   1997
## 3450    855192279   1997
## 3451    855192033   1997
## 3452    855192061   1997
## 3453    855192001   1997
## 3454    855192347   1997
## 3455    855191930   1997
## 3456    855191775   1997
## 3457    855192773   1997
## 3458    855191930   1997
## 3459    855191740   1997
## 3460    855192688   1997
## 3461    855192033   1997
## 3462    855192178   1997
## 3463    855192455   1997
## 3464    855191964   1997
## 3465    855192636   1997
## 3466    855192605   1997
## 3467    855191930   1997
## 3468    855191654   1997
## 3469    855191846   1997
## 3470    855192120   1997
## 3471    855191930   1997
## 3472    855191846   1997
## 3473    855193358   1997
## 3474    855192517   1997
## 3475    855191816   1997
## 3476    855193035   1997
## 3477    855192090   1997
## 3478    855192255   1997
## 3479    855192717   1997
## 3480    855192455   1997
## 3481    855192308   1997
## 3482    855192210   1997
## 3483    855192120   1997
## 3484    855193274   1997
## 3485    855192558   1997
## 3486    855193628   1997
## 3487    855192308   1997
## 3488    855193806   1997
## 3489    855193932   1997
## 3490    855192090   1997
## 3491    855193599   1997
## 3492    855194641   1997
## 3493    855192773   1997
## 3494    855193358   1997
## 3495    855192558   1997
## 3496    855192636   1997
## 3497    855192605   1997
## 3498    855192835   1997
## 3499    855192496   1997
## 3500    855192814   1997
## 3501    855190606   1997
## 3502    855190199   1997
## 3503    855190571   1997
## 3504    855192636   1997
## 3505    855193404   1997
## 3506    855193035   1997
## 3507    855193845   1997
## 3508    855192496   1997
## 3509    855193244   1997
## 3510    855192740   1997
## 3511    855193700   1997
## 3512    855193244   1997
## 3513    855193194   1997
## 3514    855194670   1997
## 3515    855194188   1997
## 3516    855193076   1997
## 3517    855192033   1997
## 3518    855193946   1997
## 3519    855194693   1997
## 3520    855190404   1997
## 3521    855190404   1997
## 3522    855192061   1997
## 3523    855193012   1997
## 3524    855190404   1997
## 3525    855192910   1997
## 3526    855192982   1997
## 3527    855192254   1997
## 3528    855193274   1997
## 3529   1238729767   2009
## 3530   1238729782   2009
## 3531   1238729861   2009
## 3532   1224042765   2008
## 3533   1238729747   2009
## 3534   1238729755   2009
## 3535   1238729818   2009
## 3536   1224042795   2008
## 3537   1238729849   2009
## 3538   1224043057   2008
## 3539   1238729735   2009
## 3540   1238729834   2009
## 3541   1224043037   2008
## 3542   1238729802   2009
## 3543   1238729739   2009
## 3544   1238729826   2009
## 3545   1238729854   2009
## 3546   1238729779   2009
## 3547   1238729750   2009
## 3548   1238729744   2009
## 3549   1238731010   2009
## 3550   1238729842   2009
## 3551   1224043054   2008
## 3552   1238729785   2009
## 3553   1238729764   2009
## 3554   1238729759   2009
## 3555   1238729741   2009
## 3556   1238729816   2009
## 3557   1238729844   2009
## 3558   1238729789   2009
## 3559   1224042769   2008
## 3560   1224043166   2008
## 3561   1238729831   2009
## 3562   1224043160   2008
## 3563   1224043081   2008
## 3564   1238729772   2009
## 3565   1238729822   2009
## 3566   1224043134   2008
## 3567   1238729311   2009
## 3568   1224043067   2008
## 3569   1224042752   2008
## 3570   1238729863   2009
## 3571   1224042813   2008
## 3572   1224043119   2008
## 3573   1224043170   2008
## 3574   1238729793   2009
## 3575   1238729807   2009
## 3576   1238729342   2009
## 3577   1224043156   2008
## 3578   1238729777   2009
## 3579   1238730775   2009
## 3580   1238730754   2009
## 3581   1238729811   2009
## 3582   1238730771   2009
## 3583   1224042777   2008
## 3584   1224042802   2008
## 3585   1238729865   2009
## 3586   1224042771   2008
## 3587   1224042740   2008
## 3588   1224042737   2008
## 3589   1224042811   2008
## 3590   1224042788   2008
## 3591   1238729799   2009
## 3592   1238731025   2009
## 3593   1238729839   2009
## 3594   1238731034   2009
## 3595   1224043052   2008
## 3596   1224042755   2008
## 3597   1238729331   2009
## 3598   1238731020   2009
## 3599   1224042780   2008
## 3600   1224042827   2008
## 3601   1224043029   2008
## 3602   1238729247   2009
## 3603   1224043145   2008
## 3604   1238729389   2009
## 3605   1224043219   2008
## 3606   1238730960   2009
## 3607   1224043284   2008
## 3608   1224043266   2008
## 3609   1224043033   2008
## 3610   1224043242   2008
## 3611   1224043213   2008
## 3612   1224043180   2008
## 3613   1224043257   2008
## 3614   1224043185   2008
## 3615   1224043294   2008
## 3616   1238729255   2009
## 3617   1224043273   2008
## 3618   1224043282   2008
## 3619   1238730751   2009
## 3620   1238729405   2009
## 3621   1224043232   2008
## 3622   1238730925   2009
## 3623   1224043238   2008
## 3624   1224043018   2008
## 3625   1238731039   2009
## 3626   1238731016   2009
## 3627    853846478   1997
## 3628    853846669   1997
## 3629    853157476   1997
## 3630    853846442   1997
## 3631    853157544   1997
## 3632    853846547   1997
## 3633    853846400   1997
## 3634    853157476   1997
## 3635    853157544   1997
## 3636    853846547   1997
## 3637    853846288   1997
## 3638    853847536   1997
## 3639    853846511   1997
## 3640    853846669   1997
## 3641    853846207   1997
## 3642    853847723   1997
## 3643    853857742   1997
## 3644    853846400   1997
## 3645    853847574   1997
## 3646    853846400   1997
## 3647    853846752   1997
## 3648    853847612   1997
## 3649    853846443   1997
## 3650    853846511   1997
## 3651    853852608   1997
## 3652    853846783   1997
## 3653    853856221   1997
## 3654    853846579   1997
## 3655    853846443   1997
## 3656    853846873   1997
## 3657    853846511   1997
## 3658    853847574   1997
## 3659    853846612   1997
## 3660    853846400   1997
## 3661    853846813   1997
## 3662    853847688   1997
## 3663    853846443   1997
## 3664    853846547   1997
## 3665    853847813   1997
## 3666    853846400   1997
## 3667    853846443   1997
## 3668    853846639   1997
## 3669    853846400   1997
## 3670    853846612   1997
## 3671    853846511   1997
## 3672    853846723   1997
## 3673    853846511   1997
## 3674    853157476   1997
## 3675    853157544   1997
## 3676    853848506   1997
## 3677    853157476   1997
## 3678    853845946   1997
## 3679    853850728   1997
## 3680    853850791   1997
## 3681    853850699   1997
## 3682    853850791   1997
## 3683    853848342   1997
## 3684    853850728   1997
## 3685    853850835   1997
## 3686    853852058   1997
## 3687    853850874   1997
## 3688    853851052   1997
## 3689    853849142   1997
## 3690    853850699   1997
## 3691    853848314   1997
## 3692    853851841   1997
## 3693    853851861   1997
## 3694    853851892   1997
## 3695    853850752   1997
## 3696    853850874   1997
## 3697    853850728   1997
## 3698    853849003   1997
## 3699    853848034   1997
## 3700    853851203   1997
## 3701    853848062   1997
## 3702    853852140   1997
## 3703    853848342   1997
## 3704    853848002   1997
## 3705    853846443   1997
## 3706    853846752   1997
## 3707    853846723   1997
## 3708    853853701   1997
## 3709    853847910   1997
## 3710    853848134   1997
## 3711    853853956   1997
## 3712    853847780   1997
## 3713    853847910   1997
## 3714    853852079   1997
## 3715    853851156   1997
## 3716    853851608   1997
## 3717    853848738   1997
## 3718    853852316   1997
## 3719    853847612   1997
## 3720    853846639   1997
## 3721    853852208   1997
## 3722    853851089   1997
## 3723    853850791   1997
## 3724    853847910   1997
## 3725    853847813   1997
## 3726    853848156   1997
## 3727    853848507   1997
## 3728    853850791   1997
## 3729    853851732   1997
## 3730    853851052   1997
## 3731    853848134   1997
## 3732    853849211   1997
## 3733    853851024   1997
## 3734    853850905   1997
## 3735    853851222   1997
## 3736    853850791   1997
## 3737    853850728   1997
## 3738    853851024   1997
## 3739    853850752   1997
## 3740    853850874   1997
## 3741    853848082   1997
## 3742    853852020   1997
## 3743    853850728   1997
## 3744    853850835   1997
## 3745    853850835   1997
## 3746    853850835   1997
## 3747    853850968   1997
## 3748    853851113   1997
## 3749    853851203   1997
## 3750    853851052   1997
## 3751    853850874   1997
## 3752    853849003   1997
## 3753    853848737   1997
## 3754    853850997   1997
## 3755    853850933   1997
## 3756    853850874   1997
## 3757    853850791   1997
## 3758    853850835   1997
## 3759    853848558   1997
## 3760    853851174   1997
## 3761    853852020   1997
## 3762    853851089   1997
## 3763    853851203   1997
## 3764    853852097   1997
## 3765    853850968   1997
## 3766    853851113   1997
## 3767    853850997   1997
## 3768    853853496   1997
## 3769    853851156   1997
## 3770    853853725   1997
## 3771    853852524   1997
## 3772    853852058   1997
## 3773    853853473   1997
## 3774    853852140   1997
## 3775    853851257   1997
## 3776    853852263   1997
## 3777    853851257   1997
## 3778    853853545   1997
## 3779    853849676   1997
## 3780    853851841   1997
## 3781    853850905   1997
## 3782    853852501   1997
## 3783    853850968   1997
## 3784    853854148   1997
## 3785    853851089   1997
## 3786    853853593   1997
## 3787    854522908   1997
## 3788    853850933   1997
## 3789   1131662086   2005
## 3790   1131662481   2005
## 3791   1131662466   2005
## 3792   1131661907   2005
## 3793   1131661969   2005
## 3794   1131662452   2005
## 3795   1131661890   2005
## 3796   1131664404   2005
## 3797   1131662930   2005
## 3798   1131664520   2005
## 3799   1131662440   2005
## 3800   1131662423   2005
## 3801   1131662653   2005
## 3802   1131663354   2005
## 3803   1131663069   2005
## 3804   1131664320   2005
## 3805   1131662435   2005
## 3806   1131753358   2005
## 3807   1131663409   2005
## 3808   1131662387   2005
## 3809   1131662090   2005
## 3810   1131662100   2005
## 3811   1131753373   2005
## 3812   1131664363   2005
## 3813   1131663387   2005
## 3814   1131661923   2005
## 3815   1131663369   2005
## 3816   1131664533   2005
## 3817   1131662084   2005
## 3818   1131663268   2005
## 3819   1131663223   2005
## 3820   1131723291   2005
## 3821   1131663139   2005
## 3822   1131662400   2005
## 3823   1131662414   2005
## 3824   1131662354   2005
## 3825   1131662357   2005
## 3826   1131662364   2005
## 3827   1131723086   2005
## 3828   1131662346   2005
## 3829   1131661960   2005
## 3830   1131663322   2005
## 3831   1131663397   2005
## 3832   1131663177   2005
## 3833   1131662370   2005
## 3834   1131662293   2005
## 3835   1131662093   2005
## 3836   1131663188   2005
## 3837   1131753179   2005
## 3838   1131662287   2005
## 3839   1131663479   2005
## 3840   1131753381   2005
## 3841   1131663366   2005
## 3842   1131663232   2005
## 3843   1131661937   2005
## 3844   1131663305   2005
## 3845   1131662309   2005
## 3846   1131662302   2005
## 3847   1131662635   2005
## 3848   1131662312   2005
## 3849   1131662317   2005
## 3850   1131661918   2005
## 3851   1131662328   2005
## 3852   1131662323   2005
## 3853   1131662334   2005
## 3854   1131663284   2005
## 3855   1131663044   2005
## 3856   1131664393   2005
## 3857   1131662271   2005
## 3858   1131663328   2005
## 3859   1131662659   2005
## 3860   1131662268   2005
## 3861   1131663443   2005
## 3862   1131664773   2005
## 3863   1131662252   2005
## 3864   1131662000   2005
## 3865   1131723166   2005
## 3866   1131663219   2005
## 3867   1131661994   2005
## 3868   1131663032   2005
## 3869   1131663020   2005
## 3870   1131664489   2005
## 3871   1131662243   2005
## 3872   1131662014   2005
## 3873   1131661978   2005
## 3874   1131723076   2005
## 3875   1131662226   2005
## 3876   1131661945   2005
## 3877   1131662232   2005
## 3878   1131662911   2005
## 3879   1131663357   2005
## 3880   1131664741   2005
## 3881   1131663683   2005
## 3882   1131664754   2005
## 3883   1131664719   2005
## 3884   1131723151   2005
## 3885   1131663013   2005
## 3886   1131664733   2005
## 3887   1131663552   2005
## 3888   1131664217   2005
## 3889   1131662900   2005
## 3890   1131723146   2005
## 3891   1131664710   2005
## 3892   1131723065   2005
## 3893   1131661911   2005
## 3894   1131664699   2005
## 3895   1131662202   2005
## 3896   1131662216   2005
## 3897   1131662209   2005
## 3898   1131662220   2005
## 3899   1131664480   2005
## 3900   1131662152   2005
## 3901   1131662710   2005
## 3902   1131663006   2005
## 3903   1131663393   2005
## 3904   1131662185   2005
## 3905   1131662179   2005
## 3906   1131664676   2005
## 3907   1131664687   2005
## 3908   1131663892   2005
## 3909   1131662174   2005
## 3910   1131662150   2005
## 3911   1131662717   2005
## 3912   1131664474   2005
## 3913   1131663311   2005
## 3914   1131662155   2005
## 3915   1131723124   2005
## 3916   1131662169   2005
## 3917   1131662162   2005
## 3918   1131664330   2005
## 3919   1131662194   2005
## 3920   1131723135   2005
## 3921   1131662989   2005
## 3922   1131662687   2005
## 3923   1131662678   2005
## 3924   1131662190   2005
## 3925   1131664651   2005
## 3926   1131753186   2005
## 3927   1131662694   2005
## 3928   1131663515   2005
## 3929   1131661897   2005
## 3930   1131664627   2005
## 3931   1131662894   2005
## 3932   1131663506   2005
## 3933   1131662700   2005
## 3934   1131723113   2005
## 3935   1131664598   2005
## 3936   1131753363   2005
## 3937   1131663359   2005
## 3938   1131662121   2005
## 3939   1131664612   2005
## 3940   1131663886   2005
## 3941   1131664618   2005
## 3942   1131723071   2005
## 3943   1131662565   2005
## 3944   1131662110   2005
## 3945   1131664374   2005
## 3946   1131663472   2005
## 3947   1131664226   2005
## 3948   1131664587   2005
## 3949   1131663565   2005
## 3950   1131663696   2005
## 3951   1131662966   2005
## 3952   1131663383   2005
## 3953   1131663420   2005
## 3954   1131661901   2005
## 3955   1131662103   2005
## 3956   1131662107   2005
## 3957   1131662960   2005
## 3958   1131662640   2005
## 3959   1131662670   2005
## 3960   1131663341   2005
## 3961   1131662525   2005
## 3962   1131664572   2005
## 3963   1131662096   2005
## 3964   1131664567   2005
## 3965   1131662075   2005
## 3966   1131662534   2005
## 3967   1131663373   2005
## 3968   1131663277   2005
## 3969   1131663330   2005
## 3970   1131663263   2005
## 3971   1131662504   2005
## 3972   1131663118   2005
## 3973   1131662637   2005
## 3974   1131663453   2005
## 3975   1131662846   2005
## 3976   1131663238   2005
## 3977   1131663156   2005
## 3978   1131662491   2005
## 3979   1131662517   2005
## 3980   1131663881   2005
## 3981   1131662684   2005
## 3982   1131723215   2005
## 3983   1131663918   2005
## 3984   1131664302   2005
## 3985   1131663158   2005
## 3986   1131663528   2005
## 3987   1131663431   2005
## 3988   1131662007   2005
## 3989   1131663298   2005
## 3990   1131662518   2005
## 3991   1131663403   2005
## 3992   1131663081   2005
## 3993   1131664239   2005
## 3994   1131662473   2005
## 3995   1131662938   2005
## 3996   1131663248   2005
## 3997   1131663440   2005
## 3998   1131663094   2005
## 3999   1131663467   2005
## 4000   1131663282   2005
## 4001   1131663378   2005
## 4002   1131663273   2005
## 4003   1131753070   2005
## 4004   1131663089   2005
## 4005   1131663293   2005
## 4006   1131663228   2005
## 4007   1131662462   2005
## 4008   1131663664   2005
## 4009   1148729853   2006
## 4010   1148730128   2006
## 4011   1166728170   2006
## 4012   1148672550   2006
## 4013   1148669114   2006
## 4014   1148720884   2006
## 4015   1148673467   2006
## 4016   1148730400   2006
## 4017   1166728173   2006
## 4018   1148669590   2006
## 4019   1148670466   2006
## 4020   1148672099   2006
## 4021   1166728220   2006
## 4022   1148669357   2006
## 4023   1148730116   2006
## 4024   1148669588   2006
## 4025   1148671365   2006
## 4026   1148672933   2006
## 4027   1148720873   2006
## 4028   1148672842   2006
## 4029   1148386188   2006
## 4030   1148778581   2006
## 4031   1148729797   2006
## 4032   1148729698   2006
## 4033   1148386155   2006
## 4034   1148729570   2006
## 4035   1148673304   2006
## 4036   1148669102   2006
## 4037   1148668973   2006
## 4038   1148668970   2006
## 4039   1148728957   2006
## 4040   1148673465   2006
## 4041   1148720795   2006
## 4042   1148672319   2006
## 4043   1148671517   2006
## 4044   1149868544   2006
## 4045   1148777951   2006
## 4046   1148777966   2006
## 4047   1148668967   2006
## 4048   1148668964   2006
## 4049   1148669351   2006
## 4050   1148672736   2006
## 4051   1148668961   2006
## 4052   1148673085   2006
## 4053   1148728785   2006
## 4054   1148673420   2006
## 4055   1148669891   2006
## 4056   1148730048   2006
## 4057   1148720861   2006
## 4058   1148673418   2006
## 4059   1148669887   2006
## 4060   1148730134   2006
## 4061   1148729018   2006
## 4062   1148720907   2006
## 4063   1148669346   2006
## 4064   1148669881   2006
## 4065   1148669092   2006
## 4066   1148672198   2006
## 4067   1148729022   2006
## 4068   1148720627   2006
## 4069   1166036040   2006
## 4070   1148729848   2006
## 4071   1148668958   2006
## 4072   1166728142   2006
## 4073   1166728178   2006
## 4074   1149868397   2006
## 4075   1148728787   2006
## 4076   1148670328   2006
## 4077   1148671818   2006
## 4078   1148672375   2006
## 4079   1149868548   2006
## 4080   1148669338   2006
## 4081   1148669574   2006
## 4082   1148672950   2006
## 4083   1148669090   2006
## 4084   1148669877   2006
## 4085   1166035850   2006
## 4086   1148669873   2006
## 4087   1148670499   2006
## 4088   1148669858   2006
## 4089   1148673415   2006
## 4090   1148669865   2006
## 4091   1148669863   2006
## 4092   1148669087   2006
## 4093   1148729708   2006
## 4094   1148670263   2006
## 4095   1148671970   2006
## 4096   1148671949   2006
## 4097   1148728764   2006
## 4098   1148671779   2006
## 4099   1148729610   2006
## 4100   1148728730   2006
## 4101   1148669850   2006
## 4102   1148730009   2006
## 4103   1148777884   2006
## 4104   1148671953   2006
## 4105   1148669852   2006
## 4106   1148670548   2006
## 4107   1148673452   2006
## 4108   1148778793   2006
## 4109   1148671777   2006
## 4110   1148669082   2006
## 4111   1148729982   2006
## 4112   1148729661   2006
## 4113   1148671884   2006
## 4114   1148671832   2006
## 4115   1148672493   2006
## 4116   1148671931   2006
## 4117   1148669571   2006
## 4118   1148721097   2006
## 4119   1148721092   2006
## 4120   1148728814   2006
## 4121   1148670154   2006
## 4122   1148669329   2006
## 4123   1148669327   2006
## 4124   1148729987   2006
## 4125   1148669080   2006
## 4126   1148721086   2006
## 4127   1148728784   2006
## 4128   1148668956   2006
## 4129   1148672085   2006
## 4130   1148672402   2006
## 4131   1148673456   2006
## 4132   1148669318   2006
## 4133   1148778808   2006
## 4134   1166728186   2006
## 4135   1148729677   2006
## 4136   1148671525   2006
## 4137   1148669833   2006
## 4138   1148669302   2006
## 4139   1148671542   2006
## 4140   1148673102   2006
## 4141   1148721090   2006
## 4142   1148721053   2006
## 4143   1148672286   2006
## 4144   1148670101   2006
## 4145   1148669299   2006
## 4146   1148670388   2006
## 4147   1148671770   2006
## 4148   1148728807   2006
## 4149   1149868223   2006
## 4150   1148669075   2006
## 4151   1148670482   2006
## 4152   1148670884   2006
## 4153   1148670172   2006
## 4154   1148670494   2006
## 4155   1148730030   2006
## 4156   1148669828   2006
## 4157   1148671384   2006
## 4158   1148669826   2006
## 4159   1148669072   2006
## 4160   1148669820   2006
## 4161   1148670496   2006
## 4162   1148670275   2006
## 4163   1148670888   2006
## 4164   1148670960   2006
## 4165   1148671412   2006
## 4166   1148669055   2006
## 4167   1148672270   2006
## 4168   1148672325   2006
## 4169   1148669822   2006
## 4170   1148670266   2006
## 4171   1148671596   2006
## 4172   1148671816   2006
## 4173   1149868188   2006
## 4174   1148671814   2006
## 4175   1148673449   2006
## 4176   1166036046   2006
## 4177   1166035984   2006
## 4178   1148778850   2006
## 4179   1148386185   2006
## 4180   1148669296   2006
## 4181   1148729642   2006
## 4182   1148730410   2006
## 4183   1148720563   2006
## 4184   1148672048   2006
## 4185   1148671992   2006
## 4186   1166036059   2006
## 4187   1148671859   2006
## 4188   1148671856   2006
## 4189   1148671782   2006
## 4190   1148671642   2006
## 4191   1148386150   2006
## 4192   1148777838   2006
## 4193   1148730086   2006
## 4194   1148671587   2006
## 4195   1148671822   2006
## 4196   1148778812   2006
## 4197   1148778787   2006
## 4198   1148730406   2006
## 4199   1148728732   2006
## 4200   1148671808   2006
## 4201   1148669291   2006
## 4202   1148729820   2006
## 4203   1148670285   2006
## 4204   1148720736   2006
## 4205   1148670134   2006
## 4206   1148777902   2006
## 4207   1148671835   2006
## 4208   1148669816   2006
## 4209   1148386142   2006
## 4210   1148730139   2006
## 4211   1148728738   2006
## 4212   1148728856   2006
## 4213   1148670953   2006
## 4214   1148669057   2006
## 4215   1148672025   2006
## 4216   1148672530   2006
## 4217   1148777918   2006
## 4218   1148669286   2006
## 4219   1148669063   2006
## 4220   1148670340   2006
## 4221   1166728237   2006
## 4222   1148669051   2006
## 4223   1148730168   2006
## 4224   1148729341   2006
## 4225   1148669808   2006
## 4226   1148720760   2006
## 4227   1148669282   2006
## 4228   1148720878   2006
## 4229   1149868079   2006
## 4230   1148720958   2006
## 4231   1148386128   2006
## 4232   1148720919   2006
## 4233   1166728241   2006
## 4234   1148720846   2006
## 4235   1148669048   2006
## 4236   1148778558   2006
## 4237   1148670343   2006
## 4238   1148668953   2006
## 4239   1148669800   2006
## 4240   1148669045   2006
## 4241   1148670522   2006
## 4242   1148671498   2006
## 4243   1148671436   2006
## 4244   1148670981   2006
## 4245   1148669270   2006
## 4246   1148729054   2006
## 4247   1148670121   2006
## 4248   1148669792   2006
## 4249   1148669789   2006
## 4250   1148728970   2006
## 4251   1148669787   2006
## 4252   1148669267   2006
## 4253   1148728611   2006
## 4254   1148670970   2006
## 4255   1148671375   2006
## 4256   1148730178   2006
## 4257   1148673442   2006
## 4258   1148730066   2006
## 4259   1148669265   2006
## 4260   1148720837   2006
## 4261   1148728727   2006
## 4262   1148669541   2006
## 4263   1148728810   2006
## 4264   1148672116   2006
## 4265   1148728751   2006
## 4266   1148721075   2006
## 4267   1148672322   2006
## 4268   1148669538   2006
## 4269   1148728761   2006
## 4270   1148730162   2006
## 4271   1148728725   2006
## 4272   1148728794   2006
## 4273   1148673306   2006
## 4274   1148671908   2006
## 4275   1148728778   2006
## 4276   1148728759   2006
## 4277   1148728746   2006
## 4278   1148728769   2006
## 4279   1148728790   2006
## 4280   1148728802   2006
## 4281   1148728736   2006
## 4282   1148728753   2006
## 4283   1148728767   2006
## 4284   1148728429   2006
## 4285   1148669764   2006
## 4286   1148669261   2006
## 4287   1148729668   2006
## 4288   1148673438   2006
## 4289   1148669760   2006
## 4290   1148672527   2006
## 4291   1148669036   2006
## 4292   1148669531   2006
## 4293   1148671551   2006
## 4294   1148728867   2006
## 4295   1148671632   2006
## 4296   1148670901   2006
## 4297   1148720894   2006
## 4298   1148729968   2006
## 4299   1148669258   2006
## 4300   1166728231   2006
## 4301   1148672486   2006
## 4302   1148730098   2006
## 4303   1148672510   2006
## 4304   1148672500   2006
## 4305   1148671801   2006
## 4306   1148386163   2006
## 4307   1148671878   2006
## 4308   1148672515   2006
## 4309   1148669228   2006
## 4310   1148729360   2006
## 4311   1148669739   2006
## 4312   1148669751   2006
## 4313   1148671976   2006
## 4314   1148672768   2006
## 4315   1148673578   2006
## 4316   1148669024   2006
## 4317   1148730155   2006
## 4318   1148669021   2006
## 4319   1148669225   2006
## 4320   1148669239   2006
## 4321   1148671939   2006
## 4322   1148671652   2006
## 4323   1148386176   2006
## 4324   1148729689   2006
## 4325   1148730053   2006
## 4326   1148720603   2006
## 4327   1148778590   2006
## 4328   1148728756   2006
## 4329   1148669018   2006
## 4330   1148729858   2006
## 4331   1149868383   2006
## 4332   1148669219   2006
## 4333   1148669215   2006
## 4334   1149868257   2006
## 4335   1149868567   2006
## 4336   1149868269   2006
## 4337   1149868185   2006
## 4338   1148672184   2006
## 4339   1148669719   2006
## 4340   1148730088   2006
## 4341   1148729974   2006
## 4342   1166728248   2006
## 4343   1148670873   2006
## 4344   1148669716   2006
## 4345   1148671340   2006
## 4346   1148671324   2006
## 4347   1148669012   2006
## 4348   1148670082   2006
## 4349   1148386172   2006
## 4350   1148669210   2006
## 4351   1148669709   2006
## 4352   1166036066   2006
## 4353   1148673094   2006
## 4354   1148669714   2006
## 4355   1148671845   2006
## 4356   1148728854   2006
## 4357   1149868713   2006
## 4358   1148671606   2006
## 4359   1148672620   2006
## 4360   1148729011   2006
## 4361   1149867815   2006
## 4362   1149868231   2006
## 4363   1148669200   2006
## 4364   1148669501   2006
## 4365   1148672034   2006
## 4366   1148729102   2006
## 4367   1148672294   2006
## 4368   1148673075   2006
## 4369   1148671999   2006
## 4370   1148672683   2006
## 4371   1148669008   2006
## 4372   1148730113   2006
## 4373   1148669191   2006
## 4374   1148778865   2006
## 4375   1148729713   2006
## 4376   1148672556   2006
## 4377   1149868562   2006
## 4378   1148671474   2006
## 4379   1148670519   2006
## 4380   1148778622   2006
## 4381   1148720744   2006
## 4382   1148669706   2006
## 4383   1148669188   2006
## 4384   1148673055   2006
## 4385   1148672778   2006
## 4386   1148720826   2006
## 4387   1148670143   2006
## 4388   1148671916   2006
## 4389   1148671881   2006
## 4390   1148673280   2006
## 4391   1148728895   2006
## 4392   1148669703   2006
## 4393   1148729851   2006
## 4394   1148728701   2006
## 4395   1148669181   2006
## 4396   1148728602   2006
## 4397   1148669695   2006
## 4398   1148672142   2006
## 4399   1148672449   2006
## 4400   1148672101   2006
## 4401   1148671428   2006
## 4402   1148671904   2006
## 4403   1148669488   2006
## 4404   1148729808   2006
## 4405   1148730163   2006
## 4406   1148670551   2006
## 4407   1148671686   2006
## 4408   1148671963   2006
## 4409   1148721061   2006
## 4410   1148728891   2006
## 4411   1148728875   2006
## 4412   1148721102   2006
## 4413   1148386153   2006
## 4414   1166035912   2006
## 4415   1148673292   2006
## 4416   1148670554   2006
## 4417   1149868559   2006
## 4418   1148669482   2006
## 4419   1148669175   2006
## 4420   1148669004   2006
## 4421   1148721082   2006
## 4422   1148729373   2006
## 4423   1148671696   2006
## 4424   1148671997   2006
## 4425   1148669480   2006
## 4426   1148669173   2006
## 4427   1148730416   2006
## 4428   1148670362   2006
## 4429   1148669470   2006
## 4430   1148721157   2006
## 4431   1148669685   2006
## 4432   1148728779   2006
## 4433   1148669465   2006
## 4434   1148386159   2006
## 4435   1148672311   2006
## 4436   1148669458   2006
## 4437   1149868554   2006
## 4438   1148669165   2006
## 4439   1148730072   2006
## 4440   1148671793   2006
## 4441   1148777893   2006
## 4442   1148386124   2006
## 4443   1148669688   2006
## 4444   1148729675   2006
## 4445   1148671784   2006
## 4446   1148669156   2006
## 4447   1148721105   2006
## 4448   1148669002   2006
## 4449   1148672113   2006
## 4450   1148673043   2006
## 4451   1148671887   2006
## 4452   1148777876   2006
## 4453   1148729496   2006
## 4454   1148669000   2006
## 4455   1148670535   2006
## 4456   1148670060   2006
## 4457   1166036125   2006
## 4458   1149868172   2006
## 4459   1148672776   2006
## 4460   1148729830   2006
## 4461   1148728652   2006
## 4462   1148386146   2006
## 4463   1148669449   2006
## 4464   1148671975   2006
## 4465   1149868599   2006
## 4466   1148669447   2006
## 4467   1148670048   2006
## 4468   1148669443   2006
## 4469   1148670464   2006
## 4470   1148671013   2006
## 4471   1148778637   2006
## 4472   1148670046   2006
## 4473   1148670035   2006
## 4474   1148672150   2006
## 4475   1148672412   2006
## 4476   1148778542   2006
## 4477   1148670033   2006
## 4478   1148670029   2006
## 4479   1148669153   2006
## 4480   1148672030   2006
## 4481   1148672429   2006
## 4482   1148672167   2006
## 4483   1148672010   2006
## 4484   1148669150   2006
## 4485   1148730000   2006
## 4486   1148729027   2006
## 4487   1148670025   2006
## 4488   1148671968   2006
## 4489   1148673475   2006
## 4490   1148670015   2006
## 4491   1148669432   2006
## 4492   1149868082   2006
## 4493   1148669430   2006
## 4494   1148669145   2006
## 4495   1148730080   2006
## 4496   1148669142   2006
## 4497   1148730186   2006
## 4498   1148673770   2006
## 4499   1148670011   2006
## 4500   1148669659   2006
## 4501   1148673020   2006
## 4502   1148673264   2006
## 4503   1148668997   2006
## 4504   1148729348   2006
## 4505   1148730142   2006
## 4506   1148730339   2006
## 4507   1148672064   2006
## 4508   1148670407   2006
## 4509   1148668988   2006
## 4510   1148671395   2006
## 4511   1148669423   2006
## 4512   1148671310   2006
## 4513   1148668984   2006
## 4514   1149868375   2006
## 4515   1148670003   2006
## 4516   1148672017   2006
## 4517   1148669420   2006
## 4518   1148721046   2006
## 4519   1148669995   2006
## 4520   1149868484   2006
## 4521   1148671005   2006
## 4522   1148669126   2006
## 4523   1148669408   2006
## 4524   1166728155   2006
## 4525   1148777819   2006
## 4526   1148669987   2006
## 4527   1148670299   2006
## 4528   1148673117   2006
## 4529   1148721129   2006
## 4530   1148729991   2006
## 4531   1148668981   2006
## 4532   1148669651   2006
## 4533   1148730375   2006
## 4534   1148671569   2006
## 4535   1148671806   2006
## 4536   1148669404   2006
## 4537   1148728872   2006
## 4538   1148669643   2006
## 4539   1148729764   2006
## 4540   1166728165   2006
## 4541   1148728844   2006
## 4542   1148670503   2006
## 4543   1148670377   2006
## 4544   1148729681   2006
## 4545   1148729615   2006
## 4546   1148728452   2006
## 4547   1148672044   2006
## 4548   1148669981   2006
## 4549   1148668978   2006
## 4550   1148671891   2006
## 4551   1148778680   2006
## 4552   1148728632   2006
## 4553   1148671465   2006
## 4554   1148728401   2006
## 4555   1148730381   2006
## 4556   1148670412   2006
## 4557   1148729985   2006
## 4558   1148672553   2006
## 4559   1148728488   2006
## 4560   1148669635   2006
## 4561   1148728773   2006
## 4562   1148671728   2006
## 4563   1148670480   2006
## 4564   1148671984   2006
## 4565   1166035845   2006
## 4566   1148670462   2006
## 4567   1148673567   2006
## 4568   1149868386   2006
## 4569   1148730363   2006
## 4570   1148673695   2006
## 4571   1148671914   2006
## 4572   1148669973   2006
## 4573   1149868589   2006
## 4574   1148673429   2006
## 4575   1148729589   2006
## 4576   1148670511   2006
## 4577   1148777788   2006
## 4578   1148671670   2006
## 4579   1148728655   2006
## 4580   1148730486   2006
## 4581   1148729602   2006
## 4582   1148730325   2006
## 4583   1148729489   2006
## 4584   1166728191   2006
## 4585   1148672103   2006
## 4586   1148777833   2006
## 4587   1149868022   2006
## 4588   1148673277   2006
## 4589   1148672862   2006
## 4590   1148669957   2006
## 4591   1148672069   2006
## 4592   1148669388   2006
## 4593   1148672708   2006
## 4594   1148671403   2006
## 4595   1148670473   2006
## 4596   1148777887   2006
## 4597   1148669120   2006
## 4598   1148670540   2006
## 4599   1148671873   2006
## 4600   1148728657   2006
## 4601   1148673160   2006
## 4602   1148729597   2006
## 4603   1148729704   2006
## 4604   1148721147   2006
## 4605   1148673289   2006
## 4606   1148669952   2006
## 4607   1149867788   2006
## 4608   1148669950   2006
## 4609   1148673142   2006
## 4610   1148777906   2006
## 4611   1149868005   2006
## 4612   1148721109   2006
## 4613   1148721080   2006
## 4614   1148669947   2006
## 4615   1148669620   2006
## 4616   1148671989   2006
## 4617   1148720869   2006
## 4618   1148673512   2006
## 4619   1148721066   2006
## 4620   1148778107   2006
## 4621   1148672120   2006
## 4622   1148729768   2006
## 4623   1148672289   2006
## 4624   1148729652   2006
## 4625   1148721133   2006
## 4626   1148729574   2006
## 4627   1148729032   2006
## 4628   1148671849   2006
## 4629   1148672629   2006
## 4630   1148672333   2006
## 4631   1166728160   2006
## 4632   1148386181   2006
## 4633   1148671300   2006
## 4634   1149867747   2006
## 4635   1148669384   2006
## 4636   1148669943   2006
## 4637   1148673554   2006
## 4638   1148777881   2006
## 4639   1148669381   2006
## 4640   1148670469   2006
## 4641   1148730359   2006
## 4642   1148671745   2006
## 4643   1148673159   2006
## 4644   1148673729   2006
## 4645   1166036074   2006
## 4646   1148672248   2006
## 4647   1148671356   2006
## 4648   1148672143   2006
## 4649   1166035969   2006
## 4650   1148670517   2006
## 4651   1148728880   2006
## 4652   1148729504   2006
## 4653   1148728467   2006
## 4654   1148669605   2006
## 4655   1148728849   2006
## 4656   1148673274   2006
## 4657   1148672148   2006
## 4658   1148672825   2006
## 4659   1148728858   2006
## 4660   1148673762   2006
## 4661   1148673478   2006
## 4662   1148671852   2006
## 4663   1148777848   2006
## 4664   1148729024   2006
## 4665   1148670303   2006
## 4666   1148777970   2006
## 4667   1148669373   2006
## 4668   1148778304   2006
## 4669   1148673283   2006
## 4670   1148671738   2006
## 4671   1148671289   2006
## 4672   1148730147   2006
## 4673   1148672765   2006
## 4674   1148673065   2006
## 4675   1148673032   2006
## 4676   1148730109   2006
## 4677   1148672235   2006
## 4678   1148777777   2006
## 4679   1148672082   2006
## 4680   1148670559   2006
## 4681   1148672259   2006
## 4682   1166035835   2006
## 4683   1148669930   2006
## 4684   1148730354   2006
## 4685   1148672301   2006
## 4686   1148672274   2006
## 4687   1148672278   2006
## 4688   1148670456   2006
## 4689   1148730062   2006
## 4690   1148669374   2006
## 4691   1148669926   2006
## 4692   1149867880   2006
## 4693   1148728505   2006
## 4694   1149868226   2006
## 4695   1166035981   2006
## 4696   1148673735   2006
## 4697   1148728740   2006
## 4698   1148670866   2006
## 4699   1148730017   2006
## 4700   1148673299   2006
## 4701   1148671579   2006
## 4702   1148728469   2006
## 4703   1148673587   2006
## 4704   1148672716   2006
## 4705   1148730328   2006
## 4706   1148730343   2006
## 4707   1148728385   2006
## 4708   1148730331   2006
## 4709   1148670189   2006
## 4710   1148670454   2006
## 4711   1148670525   2006
## 4712   1148671229   2006
## 4713   1148673719   2006
## 4714   1148670458   2006
## 4715   1149867915   2006
## 4716   1148671243   2006
## 4717   1148729077   2006
## 4718   1148671251   2006
## 4719   1148673758   2006
## 4720   1148671278   2006
## 4721   1148729584   2006
## 4722   1148720535   2006
## 4723   1148728902   2006
## 4724   1148777867   2006
## 4725   1148671219   2006
## 4726   1149867706   2006
## 4727   1148671236   2006
## 4728   1148778653   2006
## 4729   1148669596   2006
## 4730   1148670935   2006
## 4731   1148672962   2006
## 4732   1149867891   2006
## 4733   1166728253   2006
## 4734   1166728226   2006
## 4735    849321588   1996
## 4736    849321616   1996
## 4737    849321769   1996
## 4738    849321588   1996
## 4739    849282414   1996
## 4740    849282506   1996
## 4741    849282414   1996
## 4742    849282540   1996
## 4743    849282540   1996
## 4744    849282414   1996
## 4745    849282507   1996
## 4746    849282506   1996
## 4747    849282414   1996
## 4748    849282414   1996
## 4749    849321669   1996
## 4750    849321569   1996
## 4751    849321569   1996
## 4752    849282720   1996
## 4753    849321569   1996
## 4754    849321955   1996
## 4755    849321826   1996
## 4756    859625254   1997
## 4757    859625180   1997
## 4758    859625874   1997
## 4759    859625336   1997
## 4760    859625336   1997
## 4761    859625254   1997
## 4762    859625254   1997
## 4763    859625336   1997
## 4764    859625772   1997
## 4765    859625553   1997
## 4766    859625495   1997
## 4767    859625180   1997
## 4768    859625336   1997
## 4769    859625254   1997
## 4770    859625336   1997
## 4771    859625442   1997
## 4772    859625495   1997
## 4773    859625824   1997
## 4774    859625254   1997
## 4775    859625931   1997
## 4776    859625442   1997
## 4777    859625974   1997
## 4778    859625669   1997
## 4779    859625669   1997
## 4780    859625845   1997
## 4781    859626258   1997
## 4782   1360087980   2013
## 4783   1354313537   2012
## 4784   1360088070   2013
## 4785   1360088047   2013
## 4786   1351544773   2012
## 4787   1351544454   2012
## 4788   1360088114   2013
## 4789   1360088108   2013
## 4790   1360087975   2013
## 4791   1360087955   2013
## 4792   1360088129   2013
## 4793   1360087964   2013
## 4794   1360088074   2013
## 4795   1352058551   2012
## 4796   1360088133   2013
## 4797   1360088079   2013
## 4798   1360088041   2013
## 4799   1360088007   2013
## 4800   1360087958   2013
## 4801   1360088125   2013
## 4802   1352636797   2012
## 4803   1360088014   2013
## 4804   1354752756   2012
## 4805   1360088060   2013
## 4806   1360088081   2013
## 4807   1351544331   2012
## 4808   1360088143   2013
## 4809   1354313990   2012
## 4810   1360088024   2013
## 4811   1360088089   2013
## 4812   1352058567   2012
## 4813   1371811577   2013
## 4814   1360088053   2013
## 4815   1360088064   2013
## 4816   1352058572   2012
## 4817   1351544316   2012
## 4818   1352636822   2012
## 4819   1360088119   2013
## 4820   1371811514   2013
## 4821   1351544445   2012
## 4822   1354752882   2012
## 4823   1351544792   2012
## 4824   1351544355   2012
## 4825   1352636799   2012
## 4826   1352058527   2012
## 4827   1371811575   2013
## 4828   1363376250   2013
## 4829   1352058619   2012
## 4830   1354752806   2012
## 4831   1354752751   2012
## 4832   1360088058   2013
## 4833   1354752886   2012
## 4834   1351544362   2012
## 4835   1371811559   2013
## 4836   1352058543   2012
## 4837   1352597810   2012
## 4838   1353708984   2012
## 4839   1352058529   2012
## 4840   1351544464   2012
## 4841   1351545050   2012
## 4842   1351544397   2012
## 4843   1351545093   2012
## 4844   1351544451   2012
## 4845   1353708990   2012
## 4846   1354752813   2012
## 4847   1351545101   2012
## 4848   1352058758   2012
## 4849   1351544780   2012
## 4850   1351544467   2012
## 4851   1352058557   2012
## 4852   1351545042   2012
## 4853   1353344972   2012
## 4854   1352058609   2012
## 4855   1352597808   2012
## 4856   1353345028   2012
## 4857   1353344992   2012
## 4858   1352058538   2012
## 4859   1364420293   2013
## 4860   1353708976   2012
## 4861   1352058766   2012
## 4862   1360088161   2013
## 4863   1352058603   2012
## 4864   1352921335   2012
## 4865   1352597728   2012
## 4866   1357253672   2013
## 4867   1357253678   2013
## 4868   1353344968   2012
## 4869   1351545056   2012
## 4870   1352921346   2012
## 4871   1352597710   2012
## 4872   1363810269   2013
## 4873   1365194619   2013
## 4874   1352838248   2012
## 4875   1352058756   2012
## 4876   1352058778   2012
## 4877   1352058548   2012
## 4878   1351545109   2012
## 4879   1352058660   2012
## 4880   1351545104   2012
## 4881   1351545119   2012
## 4882   1357253708   2013
## 4883   1351544753   2012
## 4884   1353708965   2012
## 4885   1352838206   2012
## 4886   1353344939   2012
## 4887   1352058784   2012
## 4888   1352921319   2012
## 4889   1353344981   2012
## 4890   1352058516   2012
## 4891   1357253700   2013
## 4892   1352921338   2012
## 4893   1361215024   2013
## 4894   1351545085   2012
## 4895   1352597707   2012
## 4896   1353708699   2012
## 4897   1351545082   2012
## 4898   1352058510   2012
## 4899   1352058533   2012
## 4900   1351545138   2012
## 4901   1352058666   2012
## 4902   1352921298   2012
## 4903   1353797039   2012
## 4904   1352921315   2012
## 4905   1352597697   2012
## 4906   1353962805   2012
## 4907   1352058503   2012
## 4908   1353868066   2012
## 4909   1352597714   2012
## 4910   1351545097   2012
## 4911   1352838254   2012
## 4912   1352920880   2012
## 4913   1353709027   2012
## 4914   1365194986   2013
## 4915   1352058770   2012
## 4916   1352058561   2012
## 4917   1353344881   2012
## 4918   1352921375   2012
## 4919   1357253685   2013
## 4920   1352838245   2012
## 4921   1352838242   2012
## 4922   1361215017   2013
## 4923   1352058524   2012
## 4924   1353708936   2012
## 4925   1351544480   2012
## 4926   1351545114   2012
## 4927   1352597791   2012
## 4928   1352597733   2012
## 4929   1352058657   2012
## 4930   1353868028   2012
## 4931   1352597790   2012
## 4932   1352838257   2012
## 4933   1352920912   2012
## 4934   1353345002   2012
## 4935   1353345011   2012
## 4936   1357253777   2013
## 4937   1352838237   2012
## 4938   1352597777   2012
## 4939   1353709018   2012
## 4940   1352597735   2012
## 4941   1353797029   2012
## 4942   1351545047   2012
## 4943   1352838229   2012
## 4944   1357253681   2013
## 4945   1353345007   2012
## 4946   1352597807   2012
## 4947   1352597692   2012
## 4948   1353344976   2012
## 4949   1354313972   2012
## 4950   1354313516   2012
## 4951   1351544798   2012
## 4952   1351545019   2012
## 4953   1354313566   2012
## 4954    939077258   1999
## 4955    939079553   1999
## 4956    939076893   1999
## 4957    939077164   1999
## 4958    939079002   1999
## 4959    939076893   1999
## 4960    939080935   1999
## 4961    939078921   1999
## 4962    939079553   1999
## 4963    939080148   1999
## 4964    939079118   1999
## 4965    939080090   1999
## 4966    939079855   1999
## 4967    939079553   1999
## 4968    939082326   1999
## 4969    939078921   1999
## 4970    939077258   1999
## 4971    939079779   1999
## 4972    939082276   1999
## 4973    939076569   1999
## 4974    939076677   1999
## 4975    939076519   1999
## 4976    939076519   1999
## 4977    938942396   1999
## 4978    938944078   1999
## 4979    938944407   1999
## 4980    938944923   1999
## 4981    938944407   1999
## 4982    938944744   1999
## 4983    938944550   1999
## 4984    938944636   1999
## 4985    938942682   1999
## 4986    938944975   1999
## 4987    938944975   1999
## 4988    938943150   1999
## 4989    938942682   1999
## 4990    938942755   1999
## 4991    938942821   1999
## 4992    938944683   1999
## 4993    938944139   1999
## 4994    938944408   1999
## 4995    938943028   1999
## 4996    938942614   1999
## 4997    938943524   1999
## 4998    938944744   1999
## 4999    938943150   1999
## 5000    938944457   1999
## 5001    938943202   1999
## 5002    938944923   1999
## 5003    938943028   1999
## 5004    938944505   1999
## 5005    938944139   1999
## 5006    938944636   1999
## 5007    938943245   1999
## 5008    938942458   1999
## 5009    938944683   1999
## 5010    938942755   1999
## 5011    938944505   1999
## 5012    938943202   1999
## 5013    938944407   1999
## 5014    938943150   1999
## 5015    938942821   1999
## 5016    938942529   1999
## 5017    938944457   1999
## 5018    938943408   1999
## 5019    938943524   1999
## 5020    938944975   1999
## 5021    938944237   1999
## 5022    938944923   1999
## 5023    938943150   1999
## 5024    938944505   1999
## 5025    938943879   1999
## 5026    938943976   1999
## 5027   1313927169   2011
## 5028   1313925564   2011
## 5029   1313925259   2011
## 5030   1313925074   2011
## 5031   1313925699   2011
## 5032   1313925185   2011
## 5033   1313925639   2011
## 5034   1313924474   2011
## 5035   1313924446   2011
## 5036   1313927206   2011
## 5037   1313925688   2011
## 5038   1313925589   2011
## 5039   1313925693   2011
## 5040   1313924856   2011
## 5041   1313925220   2011
## 5042   1313927224   2011
## 5043   1313927249   2011
## 5044   1313927226   2011
## 5045   1313925421   2011
## 5046   1313927193   2011
## 5047   1313927309   2011
## 5048   1313924902   2011
## 5049    944943070   1999
## 5050    945277634   1999
## 5051    945276746   1999
## 5052    968786809   2000
## 5053    948141296   2000
## 5054    945276564   1999
## 5055    945115684   1999
## 5056    945277971   1999
## 5057    945276705   1999
## 5058    945278756   1999
## 5059    945115684   1999
## 5060    945122277   1999
## 5061   1039067883   2002
## 5062    945278415   1999
## 5063   1060795346   2003
## 5064    986745716   2001
## 5065    945113887   1999
## 5066    945122740   1999
## 5067    945277094   1999
## 5068   1007352836   2001
## 5069    945706968   1999
## 5070    945277812   1999
## 5071    945122218   1999
## 5072    945113485   1999
## 5073    994458116   2001
## 5074    951010161   2000
## 5075    945122277   1999
## 5076    945277588   1999
## 5077    948166619   2000
## 5078    945113597   1999
## 5079    948141601   2000
## 5080    994458393   2001
## 5081    999626484   2001
## 5082    994458432   2001
## 5083    945278527   1999
## 5084    945277654   1999
## 5085    996057525   2001
## 5086    945279013   1999
## 5087    986009538   2001
## 5088    945114746   1999
## 5089    948141681   2000
## 5090    945276587   1999
## 5091    948167472   2000
## 5092    951008613   2000
## 5093    996883776   2001
## 5094    945115182   1999
## 5095    964459362   2000
## 5096    952884892   2000
## 5097    994439589   2001
## 5098    945122065   1999
## 5099    945277330   1999
## 5100    945112993   1999
## 5101    945121922   1999
## 5102    994458003   2001
## 5103    945114800   1999
## 5104    945277064   1999
## 5105    960819270   2000
## 5106    945122709   1999
## 5107    945122526   1999
## 5108    945276685   1999
## 5109    945277588   1999
## 5110    945277422   1999
## 5111    945277277   1999
## 5112    945276660   1999
## 5113    945277224   1999
## 5114    945277520   1999
## 5115    948165514   2000
## 5116    945114031   1999
## 5117    995228802   2001
## 5118    945278777   1999
## 5119    946161737   1999
## 5120    945114071   1999
## 5121    945277698   1999
## 5122    945115767   1999
## 5123    954818652   2000
## 5124    945277634   1999
## 5125    945122305   1999
## 5126    986009342   2001
## 5127    945277919   1999
## 5128    945276439   1999
## 5129    945122219   1999
## 5130    944943155   1999
## 5131    945277405   1999
## 5132    945112993   1999
## 5133    945278328   1999
## 5134    945115411   1999
## 5135    945114453   1999
## 5136    948140634   2000
## 5137    945278179   1999
## 5138    945276493   1999
## 5139    945277277   1999
## 5140    968786739   2000
## 5141    945122127   1999
## 5142    945122648   1999
## 5143    945114031   1999
## 5144    945278094   1999
## 5145    945277535   1999
## 5146    945116219   1999
## 5147    945121654   1999
## 5148    945122884   1999
## 5149    945277742   1999
## 5150    946161937   1999
## 5151    945115684   1999
## 5152    945115018   1999
## 5153    945276726   1999
## 5154    960820031   2000
## 5155    948166511   2000
## 5156    948140535   2000
## 5157    945115684   1999
## 5158    945113656   1999
## 5159    945276726   1999
## 5160    945278021   1999
## 5161    945277405   1999
## 5162    945276393   1999
## 5163    948140376   2000
## 5164    945115727   1999
## 5165    945294508   1999
## 5166    945114031   1999
## 5167    945116219   1999
## 5168    945122884   1999
## 5169    960918653   2000
## 5170    945122819   1999
## 5171    945121703   1999
## 5172    946162223   1999
## 5173    951009961   2000
## 5174    945276778   1999
## 5175    945277181   1999
## 5176    945278043   1999
## 5177    945277145   1999
## 5178    945277919   1999
## 5179    945112993   1999
## 5180    945278328   1999
## 5181    951009383   2000
## 5182    990239999   2001
## 5183    945277224   1999
## 5184    945276900   1999
## 5185    945115105   1999
## 5186    945277026   1999
## 5187    945278630   1999
## 5188    945276918   1999
## 5189    945113250   1999
## 5190    960819972   2000
## 5191    945123379   1999
## 5192    945280609   1999
## 5193    948167638   2000
## 5194    948167359   2000
## 5195    948167200   2000
## 5196    945113329   1999
## 5197    945113429   1999
## 5198    945115727   1999
## 5199    952885624   2000
## 5200    945114843   1999
## 5201    945115217   1999
## 5202    945280543   1999
## 5203    945123035   1999
## 5204    945114984   1999
## 5205    945123334   1999
## 5206    945114585   1999
## 5207    961353806   2000
## 5208    945123629   1999
## 5209    945115133   1999
## 5210    948166413   2000
## 5211    945116296   1999
## 5212    986009052   2001
## 5213    960819546   2000
## 5214    945295766   1999
## 5215    945295955   1999
## 5216    945295766   1999
## 5217    945295766   1999
## 5218    945295766   1999
## 5219    945295766   1999
## 5220    945278498   1999
## 5221    945295702   1999
## 5222    968785945   2000
## 5223    945115767   1999
## 5224    945116137   1999
## 5225    946162006   1999
## 5226    945295466   1999
## 5227    945114585   1999
## 5228    945294292   1999
## 5229    945294437   1999
## 5230    945114495   1999
## 5231    945113844   1999
## 5232    948166679   2000
## 5233    945294811   1999
## 5234    948167359   2000
## 5235    945294381   1999
## 5236    945295052   1999
## 5237    948141124   2000
## 5238    945115105   1999
## 5239    945121755   1999
## 5240    945113694   1999
## 5241    945294381   1999
## 5242    945115628   1999
## 5243    960917771   2000
## 5244    952885531   2000
## 5245   1039068134   2002
## 5246    945116296   1999
## 5247    945115411   1999
## 5248    960819766   2000
## 5249    945294508   1999
## 5250    945294700   1999
## 5251    945122605   1999
## 5252    945114819   1999
## 5253    968786007   2000
## 5254    945294437   1999
## 5255    945114638   1999
## 5256    944943070   1999
## 5257    945123680   1999
## 5258    945114495   1999
## 5259    945294292   1999
## 5260    948166414   2000
## 5261    945114673   1999
## 5262    945113377   1999
## 5263    945123246   1999
## 5264    945294508   1999
## 5265    951007847   2000
## 5266    945114231   1999
## 5267    945295323   1999
## 5268    952884971   2000
## 5269    945294381   1999
## 5270    945123035   1999
## 5271    945115684   1999
## 5272    948166414   2000
## 5273    945296019   1999
## 5274    945294292   1999
## 5275    945123065   1999
## 5276    945114800   1999
## 5277    945123522   1999
## 5278    945114453   1999
## 5279    945116137   1999
## 5280    945114495   1999
## 5281    945114271   1999
## 5282    945122127   1999
## 5283    945294508   1999
## 5284    952885104   2000
## 5285    945123210   1999
## 5286    945123065   1999
## 5287    945114365   1999
## 5288    945123827   1999
## 5289    945114843   1999
## 5290    945121960   1999
## 5291    945115218   1999
## 5292    945112993   1999
## 5293    951010688   2000
## 5294    945115293   1999
## 5295    945123246   1999
## 5296    945114271   1999
## 5297    945122526   1999
## 5298    945113844   1999
## 5299    948166855   2000
## 5300    945880277   1999
## 5301    945294811   1999
## 5302    945294509   1999
## 5303    945123170   1999
## 5304    945115684   1999
## 5305    945115218   1999
## 5306    944943155   1999
## 5307    952885624   2000
## 5308    951009284   2000
## 5309    945294509   1999
## 5310    945295543   1999
## 5311    960917865   2000
## 5312    945295702   1999
## 5313    945296019   1999
## 5314    945121560   1999
## 5315    945122846   1999
## 5316    945115456   1999
## 5317    945295052   1999
## 5318    945115807   1999
## 5319    945879533   1999
## 5320    945113981   1999
## 5321    945277990   1999
## 5322    945277207   1999
## 5323    945277674   1999
## 5324    945295052   1999
## 5325    945295543   1999
## 5326    945277556   1999
## 5327    945280937   1999
## 5328    960918255   2000
## 5329    945278359   1999
## 5330    994439147   2001
## 5331    945114495   1999
## 5332    945294509   1999
## 5333    945277002   1999
## 5334    945115018   1999
## 5335    945278156   1999
## 5336    945277760   1999
## 5337    960819894   2000
## 5338    948142097   2000
## 5339    945278857   1999
## 5340    945114724   1999
## 5341    945277520   1999
## 5342    945278415   1999
## 5343    945277797   1999
## 5344   1011327941   2002
## 5345    980135256   2001
## 5346    945278003   1999
## 5347    945278893   1999
## 5348    948165379   2000
## 5349    945880463   1999
## 5350    946162247   1999
## 5351    945277026   1999
## 5352    945122819   1999
## 5353    945277971   1999
## 5354    945276984   1999
## 5355    945276587   1999
## 5356    945123592   1999
## 5357    945276660   1999
## 5358    945113887   1999
## 5359    968786680   2000
## 5360    948140224   2000
## 5361    945276960   1999
## 5362    945116175   1999
## 5363    945276439   1999
## 5364    945122330   1999
## 5365    945123741   1999
## 5366    946162223   1999
## 5367    946161879   1999
## 5368    948142097   2000
## 5369    945114071   1999
## 5370    945115767   1999
## 5371    945121832   1999
## 5372    945277361   1999
## 5373    945277460   1999
## 5374    945122710   1999
## 5375    945116296   1999
## 5376    945122710   1999
## 5377    945115933   1999
## 5378    994439516   2001
## 5379    951010688   2000
## 5380    986008828   2001
## 5381    945278540   1999
## 5382    945279033   1999
## 5383    948141222   2000
## 5384    945276705   1999
## 5385    949977510   2000
## 5386    945279097   1999
## 5387    945122010   1999
## 5388    948141904   2000
## 5389   1030334513   2002
## 5390    948165859   2000
## 5391    945122605   1999
## 5392    945276249   1999
## 5393    945278278   1999
## 5394    945115864   1999
## 5395    945296041   1999
## 5396    945114192   1999
## 5397    945123854   1999
## 5398    945113057   1999
## 5399    948167081   2000
## 5400    952885034   2000
## 5401    945114883   1999
## 5402    945114961   1999
## 5403    945113844   1999
## 5404    945123497   1999
## 5405    945115767   1999
## 5406    945114800   1999
## 5407    945294381   1999
## 5408    945114883   1999
## 5409    986738498   2001
## 5410    945294381   1999
## 5411    945116252   1999
## 5412    945294641   1999
## 5413    945123317   1999
## 5414    945294641   1999
## 5415    945294764   1999
## 5416    945278278   1999
## 5417    994457962   2001
## 5418    948167472   2000
## 5419    945294811   1999
## 5420    945278244   1999
## 5421    948167277   2000
## 5422    952884997   2000
## 5423   1039070774   2002
## 5424    945115480   1999
## 5425    945115548   1999
## 5426    945113656   1999
## 5427    944943070   1999
## 5428    945113775   1999
## 5429    945294381   1999
## 5430    945123718   1999
## 5431    951008775   2000
## 5432    948166931   2000
## 5433    986735779   2001
## 5434    945277311   1999
## 5435    960818505   2000
## 5436    945295156   1999
## 5437    945277405   1999
## 5438    994439964   2001
## 5439    945276856   1999
## 5440    945295466   1999
## 5441    945276493   1999
## 5442    945294437   1999
## 5443    945294811   1999
## 5444    952744480   2000
## 5445    945294641   1999
## 5446    948166679   2000
## 5447    948141369   2000
## 5448    968788273   2000
## 5449    945295156   1999
## 5450    945276960   1999
## 5451    945116219   1999
## 5452    945295766   1999
## 5453    945116220   1999
## 5454    945294700   1999
## 5455    945295052   1999
## 5456    945294872   1999
## 5457    945113656   1999
## 5458    945280501   1999
## 5459    946162071   1999
## 5460    945294381   1999
## 5461    952743252   2000
## 5462    945295955   1999
## 5463    968787840   2000
## 5464    945294700   1999
## 5465    945114961   1999
## 5466    945276882   1999
## 5467    945276439   1999
## 5468    945294641   1999
## 5469    945115900   1999
## 5470    948167638   2000
## 5471    945294764   1999
## 5472    945276685   1999
## 5473    951009217   2000
## 5474    945277634   1999
## 5475    960917865   2000
## 5476    948165999   2000
## 5477    945294858   1999
## 5478    945295069   1999
## 5479    945277094   1999
## 5480   1037583956   2002
## 5481    945278188   1999
## 5482    945277113   1999
## 5483    945295214   1999
## 5484    945114406   1999
## 5485    945122526   1999
## 5486    945278963   1999
## 5487    945115512   1999
## 5488    945294509   1999
## 5489    945276393   1999
## 5490    948069839   2000
## 5491    945294811   1999
## 5492    945114453   1999
## 5493    945277718   1999
## 5494    945122794   1999
## 5495    945115512   1999
## 5496    945277654   1999
## 5497    945115270   1999
## 5498    960918218   2000
## 5499    945295543   1999
## 5500    948070285   2000
## 5501    945276439   1999
## 5502    948166591   2000
## 5503    945295588   1999
## 5504    945294811   1999
## 5505    945294509   1999
## 5506    945880314   1999
## 5507    945295052   1999
## 5508    945117801   1999
## 5509    948167472   2000
## 5510    945117110   1999
## 5511    945296110   1999
## 5512    954818726   2000
## 5513    948141433   2000
## 5514    945294700   1999
## 5515    945295588   1999
## 5516    945295156   1999
## 5517    945295214   1999
## 5518    945278718   1999
## 5519    945880314   1999
## 5520    945294912   1999
## 5521    945294912   1999
## 5522    945277094   1999
## 5523    945116330   1999
## 5524    945122740   1999
## 5525    946161981   1999
## 5526    945122356   1999
## 5527    945296019   1999
## 5528    945294437   1999
## 5529    945294641   1999
## 5530    945295214   1999
## 5531    945294764   1999
## 5532    945294381   1999
## 5533    945115345   1999
## 5534    945117685   1999
## 5535    945295052   1999
## 5536    945294858   1999
## 5537    945294764   1999
## 5538    945295543   1999
## 5539    968788273   2000
## 5540    945295466   1999
## 5541    945295543   1999
## 5542    945295543   1999
## 5543    945295703   1999
## 5544    945295588   1999
## 5545    945295543   1999
## 5546    945295543   1999
## 5547    994438963   2001
## 5548    945295543   1999
## 5549    945117600   1999
## 5550    945294641   1999
## 5551    945117751   1999
## 5552    945117284   1999
## 5553    945117855   1999
## 5554    986009301   2001
## 5555    945118444   1999
## 5556    945113775   1999
## 5557    945118833   1999
## 5558    949984748   2000
## 5559    945278292   1999
## 5560   1012830681   2002
## 5561    945294641   1999
## 5562    948167578   2000
## 5563    945294764   1999
## 5564    945295156   1999
## 5565    945115326   1999
## 5566    946161135   1999
## 5567    945118470   1999
## 5568    945118833   1999
## 5569    945117855   1999
## 5570    945114316   1999
## 5571    945117685   1999
## 5572    945118444   1999
## 5573    945294437   1999
## 5574    945114961   1999
## 5575    945295323   1999
## 5576    945116067   1999
## 5577    948166619   2000
## 5578    945294976   1999
## 5579    948141418   2000
## 5580    960917771   2000
## 5581    986738419   2001
## 5582    945294700   1999
## 5583    945118236   1999
## 5584    945118516   1999
## 5585    945118400   1999
## 5586   1002769837   2001
## 5587    945294764   1999
## 5588    945113125   1999
## 5589    945113981   1999
## 5590    945278645   1999
## 5591    945295156   1999
## 5592    945294437   1999
## 5593    951010736   2000
## 5594    945294912   1999
## 5595    945277046   1999
## 5596    945117941   1999
## 5597    947306097   2000
## 5598    948140044   2000
## 5599    945118685   1999
## 5600    945118578   1999
## 5601    945295588   1999
## 5602    945115018   1999
## 5603    945295797   1999
## 5604    945118093   1999
## 5605    961265714   2000
## 5606    945114365   1999
## 5607    945277277   1999
## 5608    945118754   1999
## 5609    945115242   1999
## 5610    945277046   1999
## 5611    960715669   2000
## 5612   1010373507   2002
## 5613    945116175   1999
## 5614    945113844   1999
## 5615    945115548   1999
## 5616    945123854   1999
## 5617    945295052   1999
## 5618    945295703   1999
## 5619    948140634   2000
## 5620    951162572   2000
## 5621    945115628   1999
## 5622    945294811   1999
## 5623    945118444   1999
## 5624    960658881   2000
## 5625    945296019   1999
## 5626    945115990   1999
## 5627    945123170   1999
## 5628    945118516   1999
## 5629    945118906   1999
## 5630    945294641   1999
## 5631    945294641   1999
## 5632    945294858   1999
## 5633    945295466   1999
## 5634    945113775   1999
## 5635    945295466   1999
## 5636    945123497   1999
## 5637    951008850   2000
## 5638    945295466   1999
## 5639    952885177   2000
## 5640   1014613565   2002
## 5641    945115864   1999
## 5642    945276778   1999
## 5643    948167081   2000
## 5644    945277311   1999
## 5645    945113694   1999
## 5646    954815132   2000
## 5647    948167200   2000
## 5648    948141681   2000
## 5649    945118516   1999
## 5650   1033398031   2002
## 5651    945294811   1999
## 5652    945113597   1999
## 5653    951008931   2000
## 5654    945115727   1999
## 5655    945294641   1999
## 5656    945115767   1999
## 5657    948140431   2000
## 5658   1039070693   2002
## 5659    945116137   1999
## 5660    945113057   1999
## 5661    948069950   2000
## 5662    951009217   2000
## 5663    945278929   1999
## 5664    986738761   2001
## 5665    952885578   2000
## 5666    945295766   1999
## 5667    946590784   1999
## 5668    945115767   1999
## 5669    968785158   2000
## 5670    949713340   2000
## 5671    960918160   2000
## 5672    945117941   1999
## 5673    948595947   2000
## 5674    996708747   2001
## 5675    949275887   2000
## 5676    950389052   2000
## 5677    951162481   2000
## 5678    948070040   2000
## 5679    951010161   2000
## 5680    951162533   2000
## 5681    951008022   2000
## 5682    952744452   2000
## 5683    948142236   2000
## 5684    948165577   2000
## 5685    948164324   2000
## 5686    951009046   2000
## 5687    948141904   2000
## 5688    952059599   2000
## 5689    948070151   2000
## 5690    948140634   2000
## 5691    952884934   2000
## 5692    960819766   2000
## 5693    960819374   2000
## 5694    948070151   2000
## 5695    951009046   2000
## 5696    951009251   2000
## 5697    952224346   2000
## 5698    954816853   2000
## 5699    951007880   2000
## 5700    951009217   2000
## 5701    994439603   2001
## 5702    960918606   2000
## 5703    953426082   2000
## 5704    986008589   2001
## 5705    954814831   2000
## 5706    952743252   2000
## 5707    952743110   2000
## 5708    952742834   2000
## 5709    952743008   2000
## 5710    960917657   2000
## 5711    954818846   2000
## 5712    952059512   2000
## 5713    968788547   2000
## 5714    954818365   2000
## 5715    986748223   2001
## 5716    952742981   2000
## 5717    960918160   2000
## 5718   1039070693   2002
## 5719    954816853   2000
## 5720    952744582   2000
## 5721    960917865   2000
## 5722    954818149   2000
## 5723    954816853   2000
## 5724    960918381   2000
## 5725    960918333   2000
## 5726    960819182   2000
## 5727    954816963   2000
## 5728    955926108   2000
## 5729    960819851   2000
## 5730    960918425   2000
## 5731    954816242   2000
## 5732    960818935   2000
## 5733    954818244   2000
## 5734    954814782   2000
## 5735    954815298   2000
## 5736    960918218   2000
## 5737    954816963   2000
## 5738    956970748   2000
## 5739    960917702   2000
## 5740    960917609   2000
## 5741    960819512   2000
## 5742    954818365   2000
## 5743    957052972   2000
## 5744    986011269   2001
## 5745    957566237   2000
## 5746    954814639   2000
## 5747    960918106   2000
## 5748    954815680   2000
## 5749    960918499   2000
## 5750    954815132   2000
## 5751    960918106   2000
## 5752    994279619   2001
## 5753    960819972   2000
## 5754    986008334   2001
## 5755    976597909   2000
## 5756    960917528   2000
## 5757    986738498   2001
## 5758    960819270   2000
## 5759    994279649   2001
## 5760    960918218   2000
## 5761    960917771   2000
## 5762    960918106   2000
## 5763    960917558   2000
## 5764    960917609   2000
## 5765    960917609   2000
## 5766    968787368   2000
## 5767    960917865   2000
## 5768    960917657   2000
## 5769    960918106   2000
## 5770    960917771   2000
## 5771    960818505   2000
## 5772    960818373   2000
## 5773    960918160   2000
## 5774    960917609   2000
## 5775    986739028   2001
## 5776    986008260   2001
## 5777    963756658   2000
## 5778    986745621   2001
## 5779    996418263   2001
## 5780    968787421   2000
## 5781    968788764   2000
## 5782   1039065693   2002
## 5783    965514373   2000
## 5784    986738865   2001
## 5785    968787159   2000
## 5786    994457359   2001
## 5787    994455829   2001
## 5788    968786587   2000
## 5789   1055788141   2003
## 5790    986739319   2001
## 5791    986008295   2001
## 5792    986008260   2001
## 5793    994438640   2001
## 5794    997488960   2001
## 5795    995850415   2001
## 5796    994279539   2001
## 5797    986738419   2001
## 5798    986738498   2001
## 5799    994457943   2001
## 5800    986738419   2001
## 5801    996950355   2001
## 5802   1015714238   2002
## 5803   1001961206   2001
## 5804   1017012514   2002
## 5805   1055788174   2003
## 5806   1009341085   2001
## 5807    994439405   2001
## 5808    994279539   2001
## 5809    980135286   2001
## 5810    980818214   2001
## 5811    986735749   2001
## 5812    986738661   2001
## 5813    986738559   2001
## 5814    994289229   2001
## 5815    986008739   2001
## 5816    986738559   2001
## 5817    994459012   2001
## 5818    986738419   2001
## 5819    986738419   2001
## 5820   1002769931   2001
## 5821    986738661   2001
## 5822    986738559   2001
## 5823    985829845   2001
## 5824   1039066670   2002
## 5825    986738613   2001
## 5826    986738559   2001
## 5827    986738761   2001
## 5828   1039070344   2002
## 5829    994457943   2001
## 5830    986008184   2001
## 5831    986739319   2001
## 5832    986008618   2001
## 5833    986738613   2001
## 5834   1055785445   2003
## 5835    986008121   2001
## 5836    990924261   2001
## 5837    993305342   2001
## 5838    994456359   2001
## 5839    994456480   2001
## 5840    994457484   2001
## 5841    994456957   2001
## 5842    994457827   2001
## 5843    990239709   2001
## 5844   1006149047   2001
## 5845    993305296   2001
## 5846    990924190   2001
## 5847    994458606   2001
## 5848    994458330   2001
## 5849    994457641   2001
## 5850   1039066094   2002
## 5851    990239742   2001
## 5852   1039066739   2002
## 5853    993305401   2001
## 5854    998109431   2001
## 5855   1039067403   2002
## 5856   1039069100   2002
## 5857    994456359   2001
## 5858    995253235   2001
## 5859    999310004   2001
## 5860   1039067528   2002
## 5861    994474005   2001
## 5862   1039069165   2002
## 5863   1039066447   2002
## 5864   1000003813   2001
## 5865    994458116   2001
## 5866    994456957   2001
## 5867    994457142   2001
## 5868   1039067222   2002
## 5869    994457417   2001
## 5870   1039067434   2002
## 5871    994440115   2001
## 5872   1039066779   2002
## 5873   1039066699   2002
## 5874    994457641   2001
## 5875   1002770429   2001
## 5876   1039066447   2002
## 5877   1009340636   2001
## 5878   1039066670   2002
## 5879    994456213   2001
## 5880    994458764   2001
## 5881   1039067528   2002
## 5882   1002770641   2001
## 5883    994457057   2001
## 5884   1039066538   2002
## 5885   1039066094   2002
## 5886   1039067284   2002
## 5887    994458546   2001
## 5888    994458003   2001
## 5889    994456213   2001
## 5890    994457962   2001
## 5891    996950674   2001
## 5892    994456636   2001
## 5893    996950674   2001
## 5894    997064028   2001
## 5895    996939545   2001
## 5896    996950608   2001
## 5897    996950542   2001
## 5898   1009339092   2001
## 5899    996950542   2001
## 5900    996950542   2001
## 5901    996950542   2001
## 5902    996950542   2001
## 5903   1014533110   2002
## 5904   1021348160   2002
## 5905   1039066923   2002
## 5906   1039070065   2002
## 5907   1002769606   2001
## 5908   1002769606   2001
## 5909   1001732228   2001
## 5910   1003621148   2001
## 5911   1002769561   2001
## 5912   1002769561   2001
## 5913   1030333611   2002
## 5914   1004923866   2001
## 5915   1006148969   2001
## 5916   1006492881   2001
## 5917   1009935138   2002
## 5918   1055788107   2003
## 5919   1006492955   2001
## 5920   1006492955   2001
## 5921   1006492955   2001
## 5922   1009340636   2001
## 5923   1008086617   2001
## 5924   1020575100   2002
## 5925   1009695904   2001
## 5926   1009340636   2001
## 5927   1017556925   2002
## 5928   1012097954   2002
## 5929   1010289168   2002
## 5930   1019362987   2002
## 5931   1015738983   2002
## 5932   1011328056   2002
## 5933   1009937419   2002
## 5934   1011328004   2002
## 5935    945114153   1999
## 5936   1011328004   2002
## 5937   1012169711   2002
## 5938   1014004783   2002
## 5939   1055791286   2003
## 5940   1014004783   2002
## 5941   1012830712   2002
## 5942   1016419671   2002
## 5943   1020056483   2002
## 5944   1014004730   2002
## 5945   1030933052   2002
## 5946   1015205545   2002
## 5947   1014613681   2002
## 5948   1014613681   2002
## 5949   1014613681   2002
## 5950   1039065866   2002
## 5951   1015713629   2002
## 5952   1015205474   2002
## 5953   1015205474   2002
## 5954   1036123436   2002
## 5955   1019363280   2002
## 5956   1019363280   2002
## 5957   1033397995   2002
## 5958   1037686951   2002
## 5959   1031799237   2002
## 5960   1019363219   2002
## 5961   1019363219   2002
## 5962   1020056776   2002
## 5963   1020056776   2002
## 5964   1019363168   2002
## 5965   1019363168   2002
## 5966   1019363168   2002
## 5967   1020056711   2002
## 5968   1060013900   2003
## 5969   1020056711   2002
## 5970   1021348305   2002
## 5971   1022478671   2002
## 5972   1029558644   2002
## 5973   1023517288   2002
## 5974   1024891611   2002
## 5975   1024891677   2002
## 5976   1027051203   2002
## 5977   1027051268   2002
## 5978   1046105730   2003
## 5979   1030232314   2002
## 5980   1029516219   2002
## 5981   1029516219   2002
## 5982   1029516219   2002
## 5983   1030232487   2002
## 5984   1035175467   2002
## 5985   1031799315   2002
## 5986   1033944353   2002
## 5987   1033879863   2002
## 5988   1039067403   2002
## 5989   1060013921   2003
## 5990   1036367646   2002
## 5991   1036984289   2002
## 5992   1033880299   2002
## 5993   1033880299   2002
## 5994   1033880299   2002
## 5995   1033880299   2002
## 5996   1033880263   2002
## 5997   1033880263   2002
## 5998   1033880263   2002
## 5999   1039066538   2002
## 6000   1033880263   2002
## 6001   1039067617   2002
## 6002   1033880263   2002
## 6003   1033880263   2002
## 6004   1033879938   2002
## 6005   1035175594   2002
## 6006   1042494862   2003
## 6007   1036367914   2002
## 6008   1036367914   2002
## 6009   1036367914   2002
## 6010   1039070904   2002
## 6011   1036367914   2002
## 6012   1036367914   2002
## 6013   1036367914   2002
## 6014   1060013944   2003
## 6015   1045502600   2003
## 6016   1038203534   2002
## 6017   1038203534   2002
## 6018   1038203534   2002
## 6019   1038203534   2002
## 6020   1038203534   2002
## 6021   1039066739   2002
## 6022   1046106724   2003
## 6023   1041284839   2002
## 6024   1060736279   2003
## 6025   1040659215   2002
## 6026   1041284839   2002
## 6027   1040659215   2002
## 6028   1041284839   2002
## 6029   1041284703   2002
## 6030   1043686934   2003
## 6031   1040659119   2002
## 6032   1042495022   2003
## 6033   1043687080   2003
## 6034   1043687080   2003
## 6035   1043687080   2003
## 6036   1043687080   2003
## 6037   1043687014   2003
## 6038   1043687015   2003
## 6039   1055798065   2003
## 6040   1046106675   2003
## 6041   1049142071   2003
## 6042   1048704049   2003
## 6043   1048704049   2003
## 6044   1055798009   2003
## 6045   1049142167   2003
## 6046   1049142157   2003
## 6047   1049142105   2003
## 6048   1049749056   2003
## 6049   1049749117   2003
## 6050   1049749117   2003
## 6051   1055797910   2003
## 6052   1055797818   2003
## 6053   1055788249   2003
## 6054   1055797845   2003
## 6055   1055788276   2003
## 6056   1055797723   2003
## 6057   1055788246   2003
## 6058   1055797789   2003
## 6059   1060013871   2003
## 6060   1273541953   2010
## 6061   1273720546   2010
## 6062   1273633559   2010
## 6063   1273714533   2010
## 6064   1273720416   2010
## 6065   1273714417   2010
## 6066   1273542992   2010
## 6067   1273541973   2010
## 6068   1273542073   2010
## 6069   1273543009   2010
## 6070   1273720299   2010
## 6071   1273720368   2010
## 6072   1273720163   2010
## 6073   1273714421   2010
## 6074   1273714480   2010
## 6075   1273542081   2010
## 6076   1273542019   2010
## 6077   1273542870   2010
## 6078   1273720435   2010
## 6079   1273542817   2010
## 6080   1273714380   2010
## 6081   1273714490   2010
## 6082   1273542012   2010
## 6083   1273542028   2010
## 6084   1273542066   2010
## 6085   1273542033   2010
## 6086   1273541999   2010
## 6087   1273542882   2010
## 6088   1273541967   2010
## 6089   1273542808   2010
## 6090   1273720582   2010
## 6091   1273720348   2010
## 6092   1273542879   2010
## 6093   1273542969   2010
## 6094   1273720551   2010
## 6095   1273541964   2010
## 6096   1273542085   2010
## 6097   1273542046   2010
## 6098   1273541939   2010
## 6099   1274150193   2010
## 6100   1273541943   2010
## 6101   1274150314   2010
## 6102   1274150321   2010
## 6103   1273720397   2010
## 6104   1274150200   2010
## 6105   1274149537   2010
## 6106   1273553986   2010
## 6107   1274150289   2010
## 6108   1274150179   2010
## 6109   1273720461   2010
## 6110   1273542961   2010
## 6111   1274150085   2010
## 6112   1274149939   2010
## 6113   1274149910   2010
## 6114   1274150249   2010
## 6115   1273720591   2010
## 6116   1274149580   2010
## 6117   1274150130   2010
## 6118   1274157016   2010
## 6119   1274150341   2010
## 6120   1273720255   2010
## 6121   1273542984   2010
## 6122   1274150005   2010
## 6123   1273720384   2010
## 6124   1273720329   2010
## 6125   1274150047   2010
## 6126   1273542596   2010
## 6127   1273720454   2010
## 6128   1273897820   2010
## 6129    834828285   1996
## 6130    834828185   1996
## 6131    834828440   1996
## 6132    834828337   1996
## 6133    834828155   1996
## 6134    834828059   1996
## 6135    834828085   1996
## 6136    834828318   1996
## 6137    834828085   1996
## 6138    834828318   1996
## 6139    834828227   1996
## 6140    834828285   1996
## 6141    834828137   1996
## 6142    834828168   1996
## 6143    834828108   1996
## 6144    834828268   1996
## 6145    834828302   1996
## 6146    834828185   1996
## 6147    834828123   1996
## 6148    834828059   1996
## 6149    834828155   1996
## 6150    834828108   1996
## 6151    834828168   1996
## 6152    834828337   1996
## 6153    834828248   1996
## 6154    834828085   1996
## 6155    834828084   1996
## 6156    834828337   1996
## 6157    834828248   1996
## 6158    834828227   1996
## 6159    834828248   1996
## 6160    834828361   1996
## 6161    834828059   1996
## 6162    834828155   1996
## 6163    834828185   1996
## 6164    834828632   1996
## 6165    834828199   1996
## 6166    834828123   1996
## 6167    834828302   1996
## 6168    834828361   1996
## 6169    834828155   1996
## 6170    834828286   1996
## 6171    834828248   1996
## 6172    834828085   1996
## 6173    834828337   1996
## 6174    834828059   1996
## 6175    834828059   1996
## 6176    834828108   1996
## 6177   1032769612   2002
## 6178   1032678367   2002
## 6179   1033543456   2002
## 6180   1032769595   2002
## 6181   1032769612   2002
## 6182   1032676906   2002
## 6183   1032768899   2002
## 6184   1032859878   2002
## 6185   1033604138   2002
## 6186   1032678174   2002
## 6187   1032676906   2002
## 6188   1032859767   2002
## 6189   1032772901   2002
## 6190   1032766375   2002
## 6191   1032679370   2002
## 6192   1032679359   2002
## 6193   1032679865   2002
## 6194   1032679359   2002
## 6195   1032676887   2002
## 6196   1032679331   2002
## 6197   1032679449   2002
## 6198   1032679577   2002
## 6199   1032679682   2002
## 6200   1032679990   2002
## 6201   1032859220   2002
## 6202   1032679469   2002
## 6203   1032769282   2002
## 6204   1032769282   2002
## 6205   1032859270   2002
## 6206   1033604541   2002
## 6207   1032679534   2002
## 6208   1032680083   2002
## 6209   1032766234   2002
## 6210   1032766234   2002
## 6211   1032766234   2002
## 6212   1032679707   2002
## 6213   1032679843   2002
## 6214   1032678268   2002
## 6215   1032860971   2002
## 6216   1032679359   2002
## 6217   1032680420   2002
## 6218   1032676887   2002
## 6219   1032678268   2002
## 6220   1032860951   2002
## 6221   1032680004   2002
## 6222   1032766347   2002
## 6223   1032679978   2002
## 6224   1033192223   2002
## 6225   1032680420   2002
## 6226   1032858907   2002
## 6227   1032766463   2002
## 6228   1032766168   2002
## 6229   1032859343   2002
## 6230   1032859504   2002
## 6231   1032766852   2002
## 6232   1032858995   2002
## 6233   1032680233   2002
## 6234   1032768775   2002
## 6235   1032859847   2002
## 6236   1032859012   2002
## 6237   1032859119   2002
## 6238   1032679534   2002
## 6239   1032679449   2002
## 6240   1032679887   2002
## 6241   1032678153   2002
## 6242   1033604225   2002
## 6243   1032859587   2002
## 6244   1032859389   2002
## 6245   1032769282   2002
## 6246   1032677550   2002
## 6247   1032859878   2002
## 6248   1032677405   2002
## 6249   1032769523   2002
## 6250   1032769002   2002
## 6251   1032677594   2002
## 6252   1032677740   2002
## 6253   1032679682   2002
## 6254   1034930027   2002
## 6255   1032677346   2002
## 6256   1034930090   2002
## 6257   1032769237   2002
## 6258   1032677485   2002
## 6259   1032859750   2002
## 6260   1032859050   2002
## 6261   1032766929   2002
## 6262   1032860933   2002
## 6263   1032769543   2002
## 6264   1032859587   2002
## 6265   1032677362   2002
## 6266   1032769506   2002
## 6267   1032769543   2002
## 6268   1032677266   2002
## 6269   1032676888   2002
## 6270   1032680097   2002
## 6271   1034930190   2002
## 6272   1032859254   2002
## 6273   1032677507   2002
## 6274   1032679936   2002
## 6275   1034930133   2002
## 6276   1032677333   2002
## 6277   1032769250   2002
## 6278   1033604248   2002
## 6279   1032677313   2002
## 6280   1034929996   2002
## 6281   1032676888   2002
## 6282   1032679865   2002
## 6283   1032678282   2002
## 6284   1032680097   2002
## 6285   1032680212   2002
## 6286   1032680375   2002
## 6287   1032767204   2002
## 6288   1033604322   2002
## 6289   1032677637   2002
## 6290   1032859151   2002
## 6291   1032676792   2002
## 6292   1032676888   2002
## 6293   1032678352   2002
## 6294   1032679978   2002
## 6295   1032768802   2002
## 6296   1034930125   2002
## 6297   1032679488   2002
## 6298   1032677282   2002
## 6299   1032678268   2002
## 6300   1034930060   2002
## 6301   1032680332   2002
## 6302   1032858930   2002
## 6303   1032769523   2002
## 6304   1032858979   2002
## 6305   1032677541   2002
## 6306   1032859878   2002
## 6307   1032676999   2002
## 6308   1032677012   2002
## 6309   1032678432   2002
## 6310   1032678324   2002
## 6311   1035340620   2002
## 6312   1032677082   2002
## 6313   1037009003   2002
## 6314   1037008981   2002
## 6315    973747402   2000
## 6316    973748254   2000
## 6317    973747284   2000
## 6318    973747340   2000
## 6319    973747188   2000
## 6320    973748491   2000
## 6321    973746231   2000
## 6322    973747427   2000
## 6323    973746527   2000
## 6324    973747709   2000
## 6325    973747949   2000
## 6326    973747559   2000
## 6327    973746243   2000
## 6328    973748543   2000
## 6329    973746450   2000
## 6330    973747797   2000
## 6331    973746864   2000
## 6332    973748307   2000
## 6333    973747985   2000
## 6334    973747797   2000
## 6335    973747271   2000
## 6336    973746450   2000
## 6337    973747459   2000
## 6338    973746273   2000
## 6339    973747188   2000
## 6340    973747258   2000
## 6341    973747385   2000
## 6342    973747591   2000
## 6343    973746494   2000
## 6344    973746365   2000
## 6345    973748336   2000
## 6346    973746527   2000
## 6347    973747740   2000
## 6348    973746450   2000
## 6349    973747985   2000
## 6350    973746814   2000
## 6351    973746463   2000
## 6352    973746569   2000
## 6353    973747459   2000
## 6354    973748587   2000
## 6355    973748034   2000
## 6356    973747559   2000
## 6357    973748614   2000
## 6358    973748413   2000
## 6359    973748196   2000
## 6360    973747315   2000
## 6361    973748508   2000
## 6362    973746543   2000
## 6363    973749001   2000
## 6364    973747591   2000
## 6365    973748111   2000
## 6366    973746681   2000
## 6367    973747156   2000
## 6368    973747643   2000
## 6369    973747911   2000
## 6370    973747105   2000
## 6371    973746655   2000
## 6372    973747354   2000
## 6373    973746231   2000
## 6374    973748587   2000
## 6375    973748163   2000
## 6376    973748196   2000
## 6377    973748228   2000
## 6378    973748401   2000
## 6379    973747591   2000
## 6380    973746527   2000
## 6381    973748045   2000
## 6382    973747188   2000
## 6383    973747848   2000
## 6384    973747591   2000
## 6385    973747848   2000
## 6386    973748787   2000
## 6387    973748676   2000
## 6388    973748069   2000
## 6389    973746476   2000
## 6390    973747017   2000
## 6391    973747559   2000
## 6392    973748112   2000
## 6393    973746543   2000
## 6394    973747459   2000
## 6395    973746707   2000
## 6396    973748587   2000
## 6397    973747877   2000
## 6398    973746961   2000
## 6399    973748587   2000
## 6400    973748427   2000
## 6401    973747459   2000
## 6402    973747017   2000
## 6403    973748427   2000
## 6404    973746569   2000
## 6405    973748228   2000
## 6406    973748443   2000
## 6407    973746569   2000
## 6408    973747797   2000
## 6409    973747895   2000
## 6410    973747964   2000
## 6411    973747877   2000
## 6412    973746613   2000
## 6413    973748196   2000
## 6414    973747658   2000
## 6415    973747924   2000
## 6416    973748964   2000
## 6417    973747685   2000
## 6418    973747621   2000
## 6419    973748979   2000
## 6420    973749013   2000
## 6421    973748228   2000
## 6422    973746214   2000
## 6423    973748979   2000
## 6424    973747685   2000
## 6425    973747777   2000
## 6426    973747797   2000
## 6427    973749026   2000
## 6428    973747327   2000
## 6429    973748614   2000
## 6430    973746627   2000
## 6431    973748277   2000
## 6432    973747591   2000
## 6433    973747911   2000
## 6434    973747643   2000
## 6435    973746494   2000
## 6436    973746961   2000
## 6437    973748919   2000
## 6438    973747765   2000
## 6439    973747609   2000
## 6440    973746929   2000
## 6441    973747752   2000
## 6442    973749049   2000
## 6443    973748307   2000
## 6444    973747877   2000
## 6445    973747245   2000
## 6446    973747685   2000
## 6447    973747697   2000
## 6448    973747723   2000
## 6449    973747643   2000
## 6450    973747609   2000
## 6451    973747559   2000
## 6452    973746995   2000
## 6453    973747877   2000
## 6454    973747848   2000
## 6455    973747723   2000
## 6456    973747591   2000
## 6457    973747877   2000
## 6458    973748508   2000
## 6459    973747985   2000
## 6460    973748713   2000
## 6461    973746365   2000
## 6462    973748787   2000
## 6463    973748523   2000
## 6464    973747740   2000
## 6465    973746655   2000
## 6466    973747658   2000
## 6467    973748350   2000
## 6468    973748196   2000
## 6469    973748228   2000
## 6470    973748254   2000
## 6471    973748809   2000
## 6472    973747643   2000
## 6473    973748598   2000
## 6474    973747740   2000
## 6475    973746668   2000
## 6476    973748228   2000
## 6477    973746214   2000
## 6478    973748361   2000
## 6479    973748614   2000
## 6480    973746655   2000
## 6481    973747385   2000
## 6482    973746896   2000
## 6483    973746974   2000
## 6484    973748941   2000
## 6485    973748196   2000
## 6486    973748336   2000
## 6487    973746707   2000
## 6488    973747591   2000
## 6489    973746668   2000
## 6490    973748350   2000
## 6491    973747658   2000
## 6492    973748523   2000
## 6493    973746734   2000
## 6494    973747591   2000
## 6495    973747539   2000
## 6496    973747482   2000
## 6497    973746760   2000
## 6498    973746597   2000
## 6499    973747938   2000
## 6500    973747685   2000
## 6501    973747017   2000
## 6502   1174450075   2007
## 6503   1174450069   2007
## 6504   1174450074   2007
## 6505   1174450073   2007
## 6506   1174450068   2007
## 6507   1174450072   2007
## 6508   1174450057   2007
## 6509   1174450070   2007
## 6510   1174450053   2007
## 6511   1174450079   2007
## 6512   1174450076   2007
## 6513   1174450052   2007
## 6514   1174450054   2007
## 6515   1174450064   2007
## 6516   1174450063   2007
## 6517   1174450061   2007
## 6518   1174450051   2007
## 6519   1174450080   2007
## 6520   1174450056   2007
## 6521   1174450059   2007
## 6522    847057147   1996
## 6523    847057223   1996
## 6524    847058210   1996
## 6525    847056854   1996
## 6526    847057119   1996
## 6527    847057202   1996
## 6528    847056901   1996
## 6529    853005249   1997
## 6530    847057696   1996
## 6531    847057256   1996
## 6532    847056901   1996
## 6533    847057520   1996
## 6534    853005393   1997
## 6535    847057727   1996
## 6536    847057363   1996
## 6537    847058235   1996
## 6538    847057202   1996
## 6539    847057626   1996
## 6540    847057301   1996
## 6541    847057765   1996
## 6542    847058110   1996
## 6543    847056547   1996
## 6544    847057385   1996
## 6545    847057223   1996
## 6546    847057504   1996
## 6547    847057018   1996
## 6548    847058186   1996
## 6549    847057256   1996
## 6550    847057444   1996
## 6551    847057471   1996
## 6552    847057061   1996
## 6553    847056783   1996
## 6554    847057136   1996
## 6555    847057564   1996
## 6556    847057120   1996
## 6557    847057136   1996
## 6558    847057240   1996
## 6559    847057240   1996
## 6560    847057202   1996
## 6561    847056984   1996
## 6562    847056803   1996
## 6563    847057094   1996
## 6564    847056510   1996
## 6565    847056819   1996
## 6566    847057482   1996
## 6567    847057520   1996
## 6568    847057594   1996
## 6569    847057827   1996
## 6570    847056984   1996
## 6571    847056636   1996
## 6572    847058110   1996
## 6573    847058173   1996
## 6574    847057385   1996
## 6575    847057278   1996
## 6576    847056948   1996
## 6577    847056636   1996
## 6578    847056901   1996
## 6579    847057314   1996
## 6580    847057119   1996
## 6581    847057444   1996
## 6582    847057328   1996
## 6583    847057520   1996
## 6584    847057626   1996
## 6585    847056926   1996
## 6586    847057363   1996
## 6587    847056948   1996
## 6588    847056636   1996
## 6589    847056926   1996
## 6590    847056783   1996
## 6591    847056547   1996
## 6592    847058159   1996
## 6593    847057363   1996
## 6594    847056636   1996
## 6595    847057626   1996
## 6596    847057385   1996
## 6597    847057047   1996
## 6598    847057018   1996
## 6599    847057179   1996
## 6600    847057776   1996
## 6601    847057575   1996
## 6602    847056901   1996
## 6603    847057444   1996
## 6604    847057415   1996
## 6605    847057552   1996
## 6606    847056854   1996
## 6607    847057363   1996
## 6608    847057328   1996
## 6609    847057094   1996
## 6610    847056854   1996
## 6611    847056854   1996
## 6612    847056547   1996
## 6613    847056510   1996
## 6614    847056510   1996
## 6615    847056670   1996
## 6616    847056819   1996
## 6617    853005492   1997
## 6618    847057827   1996
## 6619    847058362   1996
## 6620    853005800   1997
## 6621    847058174   1996
## 6622    847057696   1996
## 6623    847057928   1996
## 6624    853005393   1997
## 6625    853005621   1997
## 6626    981308121   2001
## 6627    981308154   2001
## 6628    981308140   2001
## 6629    981308246   2001
## 6630    981308213   2001
## 6631    981308224   2001
## 6632    981308294   2001
## 6633    981304357   2001
## 6634    981308309   2001
## 6635    981304357   2001
## 6636    981308234   2001
## 6637    981308177   2001
## 6638    981304316   2001
## 6639    981308154   2001
## 6640    981308140   2001
## 6641    981304291   2001
## 6642    981308009   2001
## 6643    981304887   2001
## 6644    981307942   2001
## 6645    981307942   2001
## 6646    981304357   2001
## 6647    981307942   2001
## 6648    981307968   2001
## 6649    981307838   2001
## 6650    981304524   2001
## 6651    981304524   2001
## 6652    981304557   2001
## 6653    981304635   2001
## 6654    981304606   2001
## 6655    981307823   2001
## 6656    981307823   2001
## 6657    981304524   2001
## 6658   1389771630   2014
## 6659   1416075134   2014
## 6660   1390332781   2014
## 6661   1389806635   2014
## 6662   1389730389   2014
## 6663   1389721577   2014
## 6664   1389722765   2014
## 6665   1390465407   2014
## 6666   1389806534   2014
## 6667   1389721943   2014
## 6668   1416075151   2014
## 6669   1392361524   2014
## 6670   1389806512   2014
## 6671   1389806500   2014
## 6672   1392361495   2014
## 6673   1389806694   2014
## 6674   1389721548   2014
## 6675   1389722583   2014
## 6676   1416074954   2014
## 6677   1389721750   2014
## 6678   1389806738   2014
## 6679   1389722713   2014
## 6680   1389867840   2014
## 6681   1416075195   2014
## 6682   1389722598   2014
## 6683   1389721555   2014
## 6684   1389723752   2014
## 6685   1416075214   2014
## 6686   1416075186   2014
## 6687   1416075336   2014
## 6688   1389721837   2014
## 6689   1389722661   2014
## 6690   1389722398   2014
## 6691   1389721935   2014
## 6692   1389771994   2014
## 6693   1416075365   2014
## 6694   1389723398   2014
## 6695   1416075122   2014
## 6696   1389721528   2014
## 6697   1389721611   2014
## 6698   1389721880   2014
## 6699   1389722718   2014
## 6700   1389722656   2014
## 6701   1389721692   2014
## 6702   1416075166   2014
## 6703   1389723727   2014
## 6704   1389772593   2014
## 6705   1389722696   2014
## 6706   1389727818   2014
## 6707   1390248633   2014
## 6708   1389722066   2014
## 6709   1389722650   2014
## 6710   1389806551   2014
## 6711   1416075239   2014
## 6712   1416075232   2014
## 6713   1416075296   2014
## 6714   1416075161   2014
## 6715   1389772624   2014
## 6716   1416075350   2014
## 6717   1416075210   2014
## 6718   1389771156   2014
## 6719   1416075281   2014
## 6720   1390248823   2014
## 6721   1389724072   2014
## 6722   1389722376   2014
## 6723   1389722731   2014
## 6724   1416074901   2014
## 6725   1389727905   2014
## 6726   1389771972   2014
## 6727   1416075321   2014
## 6728   1389727866   2014
## 6729   1389727843   2014
## 6730   1416074904   2014
## 6731   1389727922   2014
## 6732   1389727802   2014
## 6733   1389770804   2014
## 6734   1389722725   2014
## 6735   1416075331   2014
## 6736   1389722602   2014
## 6737   1389723788   2014
## 6738   1449693140   2015
## 6739   1389771542   2014
## 6740   1449693163   2015
## 6741   1389722628   2014
## 6742   1389772590   2014
## 6743   1389721498   2014
## 6744   1449693148   2015
## 6745   1389723595   2014
## 6746   1389772585   2014
## 6747   1389727890   2014
## 6748   1389723643   2014
## 6749   1389722704   2014
## 6750   1390248771   2014
## 6751   1389723529   2014
## 6752   1404126075   2014
## 6753   1389723592   2014
## 6754   1389772588   2014
## 6755   1390150283   2014
## 6756   1416074797   2014
## 6757   1389723691   2014
## 6758   1390151672   2014
## 6759   1416074943   2014
## 6760   1404126065   2014
## 6761   1394397488   2014
## 6762   1392238405   2014
## 6763   1392124587   2014
## 6764   1389723664   2014
## 6765   1416074859   2014
## 6766   1413132672   2014
## 6767   1413132591   2014
## 6768   1445451791   2015
## 6769    832523607   1996
## 6770    832523129   1996
## 6771    832525129   1996
## 6772    833532967   1996
## 6773    832523361   1996
## 6774    832525157   1996
## 6775    832523229   1996
## 6776    832523307   1996
## 6777    832523276   1996
## 6778    832523201   1996
## 6779    833532967   1996
## 6780    832523411   1996
## 6781    832523550   1996
## 6782    832523738   1996
## 6783    832523013   1996
## 6784    832523045   1996
## 6785    832523339   1996
## 6786    832525181   1996
## 6787    832523045   1996
## 6788    832525093   1996
## 6789    832525181   1996
## 6790    833534728   1996
## 6791    832523386   1996
## 6792    832523276   1996
## 6793    832523411   1996
## 6794    832523229   1996
## 6795    832523478   1996
## 6796    832523276   1996
## 6797    832523082   1996
## 6798    832523151   1996
## 6799    832523340   1996
## 6800    832523436   1996
## 6801    832523339   1996
## 6802    832523276   1996
## 6803    832523013   1996
## 6804    832525157   1996
## 6805    832523082   1996
## 6806    832523229   1996
## 6807    832523386   1996
## 6808    832523386   1996
## 6809    832523307   1996
## 6810    832525157   1996
## 6811    832523045   1996
## 6812    832523201   1996
## 6813    832523411   1996
## 6814    832523013   1996
## 6815    832523386   1996
## 6816    832523129   1996
## 6817    832523550   1996
## 6818    832525093   1996
## 6819    832525157   1996
## 6820    832523045   1996
## 6821    832523013   1996
## 6822    832523013   1996
## 6823    832523340   1996
## 6824    832523082   1996
## 6825    832523411   1996
## 6826    832523386   1996
## 6827    833532966   1996
## 6828    833534266   1996
## 6829    833534728   1996
## 6830    833533335   1996
## 6831   1466993349   2016
## 6832   1466993118   2016
## 6833   1466993530   2016
## 6834   1466993354   2016
## 6835   1466993529   2016
## 6836   1466993346   2016
## 6837   1466993115   2016
## 6838   1466993204   2016
## 6839   1466993344   2016
## 6840   1466993342   2016
## 6841   1466993378   2016
## 6842   1466993229   2016
## 6843   1466993276   2016
## 6844   1466993488   2016
## 6845   1466993335   2016
## 6846   1466993481   2016
## 6847   1466993384   2016
## 6848   1466993158   2016
## 6849   1466993190   2016
## 6850   1466993355   2016
## 6851   1466993234   2016
## 6852   1466993333   2016
## 6853   1466993372   2016
## 6854   1466993341   2016
## 6855   1466993490   2016
## 6856   1466993381   2016
## 6857   1466993409   2016
## 6858   1466993382   2016
## 6859   1466993111   2016
## 6860   1466993067   2016
## 6861   1466993225   2016
## 6862   1466993108   2016
## 6863   1466993170   2016
## 6864   1466993210   2016
## 6865   1466993109   2016
## 6866   1466993120   2016
## 6867   1466993261   2016
## 6868   1466993084   2016
## 6869   1466993083   2016
## 6870   1466993138   2016
## 6871   1466993078   2016
## 6872   1466993247   2016
## 6873   1466993080   2016
## 6874   1093888283   2004
## 6875   1109812071   2005
## 6876   1107100653   2005
## 6877   1093889645   2004
## 6878   1093889934   2004
## 6879   1093886586   2004
## 6880   1093887939   2004
## 6881   1107100488   2005
## 6882   1093889464   2004
## 6883   1093889445   2004
## 6884   1093889592   2004
## 6885   1093886942   2004
## 6886   1093888245   2004
## 6887   1093887342   2004
## 6888   1093887872   2004
## 6889   1093887332   2004
## 6890   1093887890   2004
## 6891   1093889723   2004
## 6892   1109811944   2005
## 6893   1093889928   2004
## 6894   1093889918   2004
## 6895   1093887714   2004
## 6896   1107100407   2005
## 6897   1093887565   2004
## 6898   1109812244   2005
## 6899   1093886954   2004
## 6900   1109816473   2005
## 6901   1093886809   2004
## 6902   1093889939   2004
## 6903   1093886816   2004
## 6904   1093889943   2004
## 6905   1093889745   2004
## 6906   1093889923   2004
## 6907   1093887933   2004
## 6908   1093888232   2004
## 6909   1093888563   2004
## 6910   1093886949   2004
## 6911   1093888257   2004
## 6912   1093887515   2004
## 6913   1093888221   2004
## 6914   1093886957   2004
## 6915   1093887808   2004
## 6916   1093887255   2004
## 6917   1093887235   2004
## 6918   1093886850   2004
## 6919   1093887592   2004
## 6920   1093886864   2004
## 6921   1109812957   2005
## 6922   1093886842   2004
## 6923   1093888517   2004
## 6924   1109812135   2005
## 6925   1093886838   2004
## 6926   1093887801   2004
## 6927   1097643542   2004
## 6928   1093886607   2004
## 6929   1093886800   2004
## 6930   1093886688   2004
## 6931   1093887320   2004
## 6932   1093886662   2004
## 6933   1093887228   2004
## 6934   1093887305   2004
## 6935   1093887459   2004
## 6936   1093886628   2004
## 6937   1093887310   2004
## 6938   1093888850   2004
## 6939   1093887546   2004
## 6940   1093889656   2004
## 6941   1109816599   2005
## 6942   1093887797   2004
## 6943   1109817081   2005
## 6944   1107100370   2005
## 6945   1093886682   2004
## 6946   1093889432   2004
## 6947   1093886675   2004
## 6948   1093886696   2004
## 6949   1093888605   2004
## 6950   1109816608   2005
## 6951   1093887570   2004
## 6952   1093889528   2004
## 6953   1093887494   2004
## 6954   1093887748   2004
## 6955   1093886646   2004
## 6956   1093886639   2004
## 6957   1093886710   2004
## 6958   1093887358   2004
## 6959   1093886978   2004
## 6960   1093887247   2004
## 6961   1093888806   2004
## 6962   1093886731   2004
## 6963   1093887657   2004
## 6964   1093889070   2004
## 6965   1093887225   2004
## 6966   1093887270   2004
## 6967   1093887900   2004
## 6968   1093887778   2004
## 6969   1093886717   2004
## 6970   1093889767   2004
## 6971   1093889882   2004
## 6972   1093889880   2004
## 6973   1093886794   2004
## 6974   1093887555   2004
## 6975   1093887368   2004
## 6976   1093887455   2004
## 6977   1093887370   2004
## 6978   1093889776   2004
## 6979   1093887787   2004
## 6980   1093886846   2004
## 6981   1093887446   2004
## 6982   1093887000   2004
## 6983   1093886996   2004
## 6984   1093887641   2004
## 6985   1093888808   2004
## 6986   1093888619   2004
## 6987   1109813581   2005
## 6988   1093889955   2004
## 6989   1093888474   2004
## 6990   1093887350   2004
## 6991   1107100646   2005
## 6992   1093889376   2004
## 6993   1093886735   2004
## 6994   1093887653   2004
## 6995   1107100458   2005
## 6996   1093886668   2004
## 6997   1109812788   2005
## 6998   1107102322   2005
## 6999   1093887804   2004
## 7000   1093889047   2004
## 7001   1093889492   2004
## 7002   1093888032   2004
## 7003   1093887254   2004
## 7004   1093887241   2004
## 7005   1109816504   2005
## 7006   1093887379   2004
## 7007   1093887539   2004
## 7008   1093887217   2004
## 7009   1093886835   2004
## 7010   1109812900   2005
## 7011   1093887961   2004
## 7012   1093886804   2004
## 7013   1093888544   2004
## 7014   1093887835   2004
## 7015   1107100521   2005
## 7016   1093888299   2004
## 7017   1109815125   2005
## 7018   1093888109   2004
## 7019   1093887385   2004
## 7020   1109812764   2005
## 7021   1093886811   2004
## 7022   1107100717   2005
## 7023   1109814401   2005
## 7024   1097643815   2004
## 7025   1107100577   2005
## 7026   1093888629   2004
## 7027   1093888505   2004
## 7028   1093887686   2004
## 7029   1093888656   2004
## 7030   1109814362   2005
## 7031   1107100440   2005
## 7032   1093887670   2004
## 7033   1093887634   2004
## 7034   1093887667   2004
## 7035   1093889755   2004
## 7036   1093888754   2004
## 7037   1093887626   2004
## 7038   1093889018   2004
## 7039   1093888602   2004
## 7040   1093888574   2004
## 7041   1107100419   2005
## 7042   1093887315   2004
## 7043   1093887680   2004
## 7044   1107100678   2005
## 7045   1109816658   2005
## 7046   1093887841   2004
## 7047   1093887726   2004
## 7048   1093889299   2004
## 7049   1109812953   2005
## 7050   1093887300   2004
## 7051   1093889479   2004
## 7052   1109813193   2005
## 7053   1093887324   2004
## 7054   1107100382   2005
## 7055   1093887757   2004
## 7056   1093887605   2004
## 7057   1107100700   2005
## 7058   1093889696   2004
## 7059   1093887354   2004
## 7060   1093888293   2004
## 7061   1093887507   2004
## 7062   1093887733   2004
## 7063   1093888481   2004
## 7064   1109814931   2005
## 7065   1107100536   2005
## 7066   1093887692   2004
## 7067   1093887208   2004
## 7068   1107101191   2005
## 7069   1093888986   2004
## 7070   1093886983   2004
## 7071   1109816462   2005
## 7072   1109814414   2005
## 7073   1473258241   2016
## 7074   1473258327   2016
## 7075   1473258165   2016
## 7076   1473258343   2016
## 7077   1473258147   2016
## 7078   1473258352   2016
## 7079   1473258274   2016
## 7080   1473258331   2016
## 7081   1473258276   2016
## 7082   1473258322   2016
## 7083   1473258311   2016
## 7084   1473258231   2016
## 7085   1473258320   2016
## 7086   1473258239   2016
## 7087   1473258424   2016
## 7088   1473258305   2016
## 7089   1473258392   2016
## 7090   1473258238   2016
## 7091   1473258304   2016
## 7092   1473258161   2016
## 7093   1473258167   2016
## 7094   1473258283   2016
## 7095   1473258220   2016
## 7096   1473258209   2016
## 7097   1473258445   2016
## 7098   1473258346   2016
## 7099   1473258360   2016
## 7100   1473258409   2016
## 7101   1473258315   2016
## 7102   1473258371   2016
## 7103   1473258242   2016
## 7104   1473258169   2016
## 7105   1473258329   2016
## 7106   1473258309   2016
## 7107   1473258388   2016
## 7108   1473258340   2016
## 7109   1473258318   2016
## 7110   1473258228   2016
## 7111   1473258373   2016
## 7112   1473258214   2016
## 7113   1473258181   2016
## 7114   1473258230   2016
## 7115   1473258386   2016
## 7116   1473258362   2016
## 7117   1473258269   2016
## 7118   1473258378   2016
## 7119   1473258374   2016
## 7120   1473258404   2016
## 7121   1473258313   2016
## 7122   1473258226   2016
## 7123   1473258244   2016
## 7124   1473258337   2016
## 7125   1473258248   2016
## 7126   1473258403   2016
## 7127   1473258440   2016
## 7128   1473258450   2016
## 7129   1473258356   2016
## 7130   1473258438   2016
## 7131   1473258272   2016
## 7132   1473258436   2016
## 7133   1473258396   2016
## 7134   1473258383   2016
## 7135   1473258427   2016
## 7136   1473258421   2016
## 7137   1473258369   2016
## 7138   1473258348   2016
## 7139   1473258291   2016
## 7140   1473258281   2016
## 7141   1473258287   2016
## 7142   1473258334   2016
## 7143    974768260   2000
## 7144    974768402   2000
## 7145    974768903   2000
## 7146    974767953   2000
## 7147    974769666   2000
## 7148    974767808   2000
## 7149    974770180   2000
## 7150    974768430   2000
## 7151    974769902   2000
## 7152    974769935   2000
## 7153    974768654   2000
## 7154    974767808   2000
## 7155    974769730   2000
## 7156    974767845   2000
## 7157    974756704   2000
## 7158    974770079   2000
## 7159    974768798   2000
## 7160    974767746   2000
## 7161    974770589   2000
## 7162    974769370   2000
## 7163    974768872   2000
## 7164    974767808   2000
## 7165    974756766   2000
## 7166    974770180   2000
## 7167    974770325   2000
## 7168    974769818   2000
## 7169    974770137   2000
## 7170    974769125   2000
## 7171    974768022   2000
## 7172    974769863   2000
## 7173    974767917   2000
## 7174    974769312   2000
## 7175    974767879   2000
## 7176    974770474   2000
## 7177    974769125   2000
## 7178    974769482   2000
## 7179    974769561   2000
## 7180    974768903   2000
## 7181    974769902   2000
## 7182    974756766   2000
## 7183    974769253   2000
## 7184    974768604   2000
## 7185    974770536   2000
## 7186    974768471   2000
## 7187    974769658   2000
## 7188    974770180   2000
## 7189    974770079   2000
## 7190    974768965   2000
## 7191    974770281   2000
## 7192    974770104   2000
## 7193    974768999   2000
## 7194    974769207   2000
## 7195    974767879   2000
## 7196    974767845   2000
## 7197    974768632   2000
## 7198    974768632   2000
## 7199    974768872   2000
## 7200    974768285   2000
## 7201    974768834   2000
## 7202    974768225   2000
## 7203    974769843   2000
## 7204    974767917   2000
## 7205    974767845   2000
## 7206    974769730   2000
## 7207    974769659   2000
## 7208    974770360   2000
## 7209    974769586   2000
## 7210    974770325   2000
## 7211    974756704   2000
## 7212    974769370   2000
## 7213    974768402   2000
## 7214    974768903   2000
## 7215    974770104   2000
## 7216    974769963   2000
## 7217    974767746   2000
## 7218    974768367   2000
## 7219    974769659   2000
## 7220    974768349   2000
## 7221    974769561   2000
## 7222    974770180   2000
## 7223    974768604   2000
## 7224    974756766   2000
## 7225    974769253   2000
## 7226    974768260   2000
## 7227    974770248   2000
## 7228    974756976   2000
## 7229    974767983   2000
## 7230    974769843   2000
## 7231    974769963   2000
## 7232    974770007   2000
## 7233    974769034   2000
## 7234    974767808   2000
## 7235    974770281   2000
## 7236    974757072   2000
## 7237    974767953   2000
## 7238    974756976   2000
## 7239    974756976   2000
## 7240    974756976   2000
## 7241    974769561   2000
## 7242    974757072   2000
## 7243    974757005   2000
## 7244    974757005   2000
## 7245    974769818   2000
## 7246    974756976   2000
## 7247    974770227   2000
## 7248    974768834   2000
## 7249    974769902   2000
## 7250    974767809   2000
## 7251    974768798   2000
## 7252    974768104   2000
## 7253    858707138   1997
## 7254    858707194   1997
## 7255    858707194   1997
## 7256    858707194   1997
## 7257    858707139   1997
## 7258    858707139   1997
## 7259    858707138   1997
## 7260    858707138   1997
## 7261    858707138   1997
## 7262    858707248   1997
## 7263    858707310   1997
## 7264    858707138   1997
## 7265    858707247   1997
## 7266    858707194   1997
## 7267    858707310   1997
## 7268    858707310   1997
## 7269    858707138   1997
## 7270    858707194   1997
## 7271    858707138   1997
## 7272    858707138   1997
## 7273    858707194   1997
## 7274    858707248   1997
## 7275    858707310   1997
## 7276    858707310   1997
## 7277    858707464   1997
## 7278   1140202251   2006
## 7279   1140202396   2006
## 7280   1140202299   2006
## 7281   1140202319   2006
## 7282   1140202390   2006
## 7283   1140202266   2006
## 7284   1140202294   2006
## 7285   1140202371   2006
## 7286   1140202408   2006
## 7287   1140202246   2006
## 7288   1140202271   2006
## 7289   1140202307   2006
## 7290   1140202374   2006
## 7291   1140202850   2006
## 7292   1140202339   2006
## 7293   1140202705   2006
## 7294   1140202402   2006
## 7295   1140202334   2006
## 7296   1140202838   2006
## 7297   1140202700   2006
## 7298   1140202636   2006
## 7299   1366389910   2013
## 7300   1366392410   2013
## 7301   1366389683   2013
## 7302   1366392989   2013
## 7303   1366389877   2013
## 7304   1366389853   2013
## 7305   1366392466   2013
## 7306   1366389759   2013
## 7307   1366390158   2013
## 7308   1366389889   2013
## 7309   1366390952   2013
## 7310   1366390956   2013
## 7311   1366389797   2013
## 7312   1366389671   2013
## 7313   1366389694   2013
## 7314   1366389699   2013
## 7315   1366391610   2013
## 7316   1366389806   2013
## 7317   1366389728   2013
## 7318   1366389737   2013
## 7319   1366390915   2013
## 7320   1366391137   2013
## 7321   1366389915   2013
## 7322   1366390910   2013
## 7323   1366390963   2013
## 7324   1366391584   2013
## 7325   1366389926   2013
## 7326   1366392529   2013
## 7327   1366393248   2013
## 7328   1366393308   2013
## 7329   1366390187   2013
## 7330   1366393234   2013
## 7331   1366390899   2013
## 7332   1366393535   2013
## 7333   1366393591   2013
## 7334   1366392165   2013
## 7335   1366391603   2013
## 7336   1366391663   2013
## 7337   1366390127   2013
## 7338    832228931   1996
## 7339    832229657   1996
## 7340    832228931   1996
## 7341    832229007   1996
## 7342    832229039   1996
## 7343    832229039   1996
## 7344    832229161   1996
## 7345    832228979   1996
## 7346    832228796   1996
## 7347    832228859   1996
## 7348    832229039   1996
## 7349    832228931   1996
## 7350    832228859   1996
## 7351    832229561   1996
## 7352    832228958   1996
## 7353    832228906   1996
## 7354    832229068   1996
## 7355    832228958   1996
## 7356    832229007   1996
## 7357    832228979   1996
## 7358    832228958   1996
## 7359    832228796   1996
## 7360    832228958   1996
## 7361    832229068   1996
## 7362    832228906   1996
## 7363    832228906   1996
## 7364    832228859   1996
## 7365    832228859   1996
## 7366    832228796   1996
## 7367    832228979   1996
## 7368    832229068   1996
## 7369    832228931   1996
## 7370    832229985   1996
## 7371    832229879   1996
## 7372    832228859   1996
## 7373    832228796   1996
## 7374    832229879   1996
## 7375    832228906   1996
## 7376   1318796720   2011
## 7377   1322169967   2011
## 7378   1322169717   2011
## 7379   1319746142   2011
## 7380   1439687078   2015
## 7381   1322170542   2011
## 7382   1322170475   2011
## 7383   1322169932   2011
## 7384   1322169695   2011
## 7385   1319744320   2011
## 7386   1305605384   2011
## 7387   1410971707   2014
## 7388   1322169641   2011
## 7389   1319744507   2011
## 7390   1319745852   2011
## 7391   1322169697   2011
## 7392   1322167325   2011
## 7393   1367466511   2013
## 7394   1305604773   2011
## 7395   1322719227   2011
## 7396   1368072767   2013
## 7397   1322169588   2011
## 7398   1322169669   2011
## 7399   1322169653   2011
## 7400   1322170930   2011
## 7401   1414562221   2014
## 7402   1305605614   2011
## 7403   1419495810   2014
## 7404   1367729182   2013
## 7405   1425959805   2015
## 7406   1322169711   2011
## 7407   1319745467   2011
## 7408   1318721589   2011
## 7409   1305602381   2011
## 7410   1303371127   2011
## 7411   1316496812   2011
## 7412   1322169763   2011
## 7413   1322167612   2011
## 7414   1410971787   2014
## 7415   1322169973   2011
## 7416   1322169645   2011
## 7417   1318721485   2011
## 7418   1412452845   2014
## 7419   1412457717   2014
## 7420   1322170149   2011
## 7421   1412471587   2014
## 7422   1322169801   2011
## 7423   1322167341   2011
## 7424   1322167292   2011
## 7425   1322171839   2011
## 7426   1419495799   2014
## 7427   1322169947   2011
## 7428   1322169693   2011
## 7429   1318725610   2011
## 7430   1305604618   2011
## 7431   1322171335   2011
## 7432   1305605225   2011
## 7433   1322169954   2011
## 7434   1305604875   2011
## 7435   1319744666   2011
## 7436   1322167149   2011
## 7437   1322170564   2011
## 7438   1322170785   2011
## 7439   1415258524   2014
## 7440   1412321963   2014
## 7441   1322170045   2011
## 7442   1322170922   2011
## 7443   1324101279   2011
## 7444   1319746801   2011
## 7445   1305605468   2011
## 7446   1318835468   2011
## 7447   1412471207   2014
## 7448   1322170518   2011
## 7449   1322167116   2011
## 7450   1322167802   2011
## 7451   1322170331   2011
## 7452   1322170196   2011
## 7453   1322169924   2011
## 7454   1322170066   2011
## 7455   1412470814   2014
## 7456   1367729581   2013
## 7457   1412471725   2014
## 7458   1305604734   2011
## 7459   1318835841   2011
## 7460   1319744255   2011
## 7461   1305605572   2011
## 7462   1318797469   2011
## 7463   1319746199   2011
## 7464   1322170644   2011
## 7465   1305605670   2011
## 7466   1367466490   2013
## 7467   1322171045   2011
## 7468   1322173362   2011
## 7469   1316922546   2011
## 7470   1410971832   2014
## 7471   1305604501   2011
## 7472   1319748211   2011
## 7473   1318725545   2011
## 7474   1318835610   2011
## 7475   1322167231   2011
## 7476   1405181557   2014
## 7477   1322167807   2011
## 7478   1305604576   2011
## 7479   1303371101   2011
## 7480   1322171604   2011
## 7481   1319745406   2011
## 7482   1305605359   2011
## 7483   1318796382   2011
## 7484   1425960044   2015
## 7485   1305605431   2011
## 7486   1305602329   2011
## 7487   1319748409   2011
## 7488   1322168606   2011
## 7489   1322170988   2011
## 7490   1318724175   2011
## 7491   1317417327   2011
## 7492   1322169255   2011
## 7493   1322167657   2011
## 7494   1322167294   2011
## 7495   1322167764   2011
## 7496   1322167056   2011
## 7497   1316394238   2011
## 7498   1318694896   2011
## 7499   1322167180   2011
## 7500   1305605593   2011
## 7501   1317612908   2011
## 7502   1320820975   2011
## 7503   1319748416   2011
## 7504   1305606854   2011
## 7505   1316535850   2011
## 7506   1305606326   2011
## 7507   1319744880   2011
## 7508   1320505613   2011
## 7509   1412478838   2014
## 7510   1317277244   2011
## 7511   1367774627   2013
## 7512   1316394075   2011
## 7513   1322167119   2011
## 7514   1319744628   2011
## 7515   1317413795   2011
## 7516   1319745991   2011
## 7517   1317612608   2011
## 7518   1318796409   2011
## 7519   1322871160   2011
## 7520   1322167122   2011
## 7521   1322174318   2011
## 7522   1318721568   2011
## 7523   1322170898   2011
## 7524   1319748414   2011
## 7525   1368072937   2013
## 7526   1319744413   2011
## 7527   1412154802   2014
## 7528   1414562338   2014
## 7529   1305605332   2011
## 7530   1322167707   2011
## 7531   1368060971   2013
## 7532   1320701272   2011
## 7533   1356760541   2012
## 7534   1333323786   2012
## 7535   1317417331   2011
## 7536   1322171670   2011
## 7537   1405650065   2014
## 7538   1322167658   2011
## 7539   1341268936   2012
## 7540   1305604460   2011
## 7541   1319746322   2011
## 7542   1305605527   2011
## 7543   1319744919   2011
## 7544   1339446902   2012
## 7545   1305605199   2011
## 7546   1367968341   2013
## 7547   1317413816   2011
## 7548   1339447083   2012
## 7549   1318721824   2011
## 7550   1316409175   2011
## 7551   1414850854   2014
## 7552   1319743664   2011
## 7553   1425960095   2015
## 7554   1319744848   2011
## 7555   1325534468   2012
## 7556   1318750105   2011
## 7557   1316416730   2011
## 7558   1318796541   2011
## 7559   1341268726   2012
## 7560   1367794617   2013
## 7561   1305603014   2011
## 7562   1320128368   2011
## 7563   1316537666   2011
## 7564   1319744696   2011
## 7565   1369722162   2013
## 7566   1322719969   2011
## 7567   1305603880   2011
## 7568   1316416643   2011
## 7569   1341268857   2012
## 7570   1339446959   2012
## 7571   1319743714   2011
## 7572   1316535636   2011
## 7573   1305605408   2011
## 7574   1316536060   2011
## 7575   1322167635   2011
## 7576   1322167363   2011
## 7577   1319744759   2011
## 7578   1414562300   2014
## 7579   1319745276   2011
## 7580   1414561763   2014
## 7581   1317613176   2011
## 7582   1333324895   2012
## 7583   1317417268   2011
## 7584   1303371215   2011
## 7585   1305604971   2011
## 7586   1322174118   2011
## 7587   1320505644   2011
## 7588   1367968282   2013
## 7589   1322167429   2011
## 7590   1319745902   2011
## 7591   1367968590   2013
## 7592   1305604909   2011
## 7593   1316491569   2011
## 7594   1414561107   2014
## 7595   1319745453   2011
## 7596   1317417313   2011
## 7597   1317417295   2011
## 7598   1322168181   2011
## 7599   1367729197   2013
## 7600   1317612663   2011
## 7601   1317415599   2011
## 7602   1415388297   2014
## 7603   1322168130   2011
## 7604   1339447216   2012
## 7605   1316922590   2011
## 7606   1319745108   2011
## 7607   1322167913   2011
## 7608   1322167725   2011
## 7609   1305605032   2011
## 7610   1319745148   2011
## 7611   1316495346   2011
## 7612   1339447153   2012
## 7613   1322171427   2011
## 7614   1322171197   2011
## 7615   1317415398   2011
## 7616   1322167204   2011
## 7617   1322167397   2011
## 7618   1369722178   2013
## 7619   1305605741   2011
## 7620   1309052092   2011
## 7621   1317612601   2011
## 7622   1319745336   2011
## 7623   1322171094   2011
## 7624   1371359811   2013
## 7625   1339446347   2012
## 7626   1319745882   2011
## 7627   1415388549   2014
## 7628   1322167257   2011
## 7629   1322167662   2011
## 7630   1339447162   2012
## 7631   1414561720   2014
## 7632   1333325498   2012
## 7633   1428727629   2015
## 7634   1322169136   2011
## 7635   1305602945   2011
## 7636   1322167586   2011
## 7637   1317417320   2011
## 7638   1319746126   2011
## 7639   1412478977   2014
## 7640   1305604999   2011
## 7641   1305604648   2011
## 7642   1305605708   2011
## 7643   1305605690   2011
## 7644   1339447164   2012
## 7645   1316494426   2011
## 7646   1319745424   2011
## 7647   1339447168   2012
## 7648   1414561470   2014
## 7649   1322967502   2011
## 7650   1319743116   2011
## 7651   1412471624   2014
## 7652   1319747802   2011
## 7653   1320709035   2011
## 7654   1319748038   2011
## 7655   1412457389   2014
## 7656   1319747076   2011
## 7657   1319746579   2011
## 7658   1405916134   2014
## 7659   1305605784   2011
## 7660   1319743302   2011
## 7661   1317413827   2011
## 7662   1322167708   2011
## 7663   1322719278   2011
## 7664   1322165598   2011
## 7665   1319746873   2011
## 7666   1319744824   2011
## 7667   1317621831   2011
## 7668   1316536208   2011
## 7669   1305605159   2011
## 7670   1369880284   2013
## 7671   1322167983   2011
## 7672   1322276523   2011
## 7673   1305605115   2011
## 7674   1318796568   2011
## 7675   1316496606   2011
## 7676   1305603027   2011
## 7677   1317414089   2011
## 7678   1367774333   2013
## 7679   1322167566   2011
## 7680   1371359903   2013
## 7681   1305605640   2011
## 7682   1319744734   2011
## 7683   1305605093   2011
## 7684   1322966900   2011
## 7685   1305603309   2011
## 7686   1322167367   2011
## 7687   1322167677   2011
## 7688   1368412407   2013
## 7689   1322719467   2011
## 7690   1305603082   2011
## 7691   1319746554   2011
## 7692   1319747765   2011
## 7693   1319746373   2011
## 7694   1322168337   2011
## 7695   1305603272   2011
## 7696   1317405562   2011
## 7697   1305603894   2011
## 7698   1316539661   2011
## 7699   1305603793   2011
## 7700   1317405737   2011
## 7701   1316494407   2011
## 7702   1322167931   2011
## 7703   1305605077   2011
## 7704   1339446804   2012
## 7705   1322167961   2011
## 7706   1305605254   2011
## 7707   1316495274   2011
## 7708   1414850769   2014
## 7709   1405650223   2014
## 7710   1316537546   2011
## 7711   1305605932   2011
## 7712   1305603095   2011
## 7713   1322167425   2011
## 7714   1319748155   2011
## 7715   1305605276   2011
## 7716   1319746947   2011
## 7717   1305605762   2011
## 7718   1318721876   2011
## 7719   1305603934   2011
## 7720   1316493344   2011
## 7721   1317417335   2011
## 7722   1317414139   2011
## 7723   1371530476   2013
## 7724   1305605834   2011
## 7725   1316416612   2011
## 7726   1322167866   2011
## 7727   1305603492   2011
## 7728   1319746905   2011
## 7729   1319745128   2011
## 7730   1305605866   2011
## 7731   1414850946   2014
## 7732   1339446991   2012
## 7733   1319745750   2011
## 7734   1414562131   2014
## 7735   1324101310   2011
## 7736   1305605907   2011
## 7737   1319745634   2011
## 7738   1305603556   2011
## 7739   1319745660   2011
## 7740   1316539530   2011
## 7741   1317415585   2011
## 7742   1317277178   2011
## 7743   1428726464   2015
## 7744   1320128370   2011
## 7745   1319745518   2011
## 7746   1305604944   2011
## 7747   1368249994   2013
## 7748   1319744484   2011
## 7749   1319745178   2011
## 7750   1341268695   2012
## 7751   1322167990   2011
## 7752   1305604806   2011
## 7753   1318721995   2011
## 7754   1318694932   2011
## 7755   1319743447   2011
## 7756   1305604858   2011
## 7757   1320700986   2011
## 7758   1309051349   2011
## 7759   1319745212   2011
## 7760   1305604694   2011
## 7761   1368483486   2013
## 7762   1412309172   2014
## 7763   1321425442   2011
## 7764   1316416681   2011
## 7765   1318796373   2011
## 7766   1322167089   2011
## 7767   1318742711   2011
## 7768   1367475412   2013
## 7769   1415388786   2014
## 7770   1318796556   2011
## 7771   1305603954   2011
## 7772   1341268645   2012
## 7773   1368499219   2013
## 7774   1368250070   2013
## 7775   1414850824   2014
## 7776   1341268624   2012
## 7777   1367774277   2013
## 7778   1414851036   2014
## 7779   1318796696   2011
## 7780   1320907274   2011
## 7781   1319744151   2011
## 7782   1317277376   2011
## 7783   1319743782   2011
## 7784   1305606322   2011
## 7785   1367724708   2013
## 7786   1319743415   2011
## 7787   1369722191   2013
## 7788   1319744439   2011
## 7789   1317277357   2011
## 7790   1322169386   2011
## 7791   1368499410   2013
## 7792   1318721576   2011
## 7793   1319744187   2011
## 7794   1415388667   2014
## 7795   1317277197   2011
## 7796   1317277220   2011
## 7797   1410972161   2014
## 7798   1316907766   2011
## 7799   1414851073   2014
## 7800   1414849679   2014
## 7801   1329101733   2012
## 7802   1368483363   2013
## 7803   1368249365   2013
## 7804   1331430993   2012
## 7805   1368499298   2013
## 7806   1371530093   2013
## 7807   1371360050   2013
## 7808   1341268688   2012
## 7809   1415388593   2014
## 7810   1341268657   2012
## 7811   1414562176   2014
## 7812   1414562366   2014
## 7813   1368499305   2013
## 7814   1367774366   2013
## 7815   1414850934   2014
## 7816   1410972137   2014
## 7817   1368499835   2013
## 7818   1412494161   2014
## 7819   1356760463   2012
## 7820   1368499321   2013
## 7821   1415388917   2014
## 7822   1371530088   2013
## 7823   1356760430   2012
## 7824   1355724506   2012
## 7825   1410972337   2014
## 7826   1367725555   2013
## 7827   1356760414   2012
## 7828   1368483794   2013
## 7829   1367725590   2013
## 7830   1367786421   2013
## 7831   1414839828   2014
## 7832   1371530237   2013
## 7833   1412497730   2014
## 7834   1367728315   2013
## 7835   1405916092   2014
## 7836   1367725833   2013
## 7837   1410972561   2014
## 7838   1368499380   2013
## 7839   1428726967   2015
## 7840   1414562096   2014
## 7841   1410972280   2014
## 7842   1412570841   2014
## 7843   1412570882   2014
## 7844   1412570808   2014
## 7845   1414561040   2014
## 7846   1414850862   2014
## 7847   1410972358   2014
## 7848   1415388310   2014
## 7849   1412554038   2014
## 7850   1412561078   2014
## 7851   1405181551   2014
## 7852   1404110083   2014
## 7853   1410972517   2014
## 7854   1412570817   2014
## 7855   1410972202   2014
## 7856   1412583710   2014
## 7857   1410972239   2014
## 7858   1410972320   2014
## 7859   1425960344   2015
## 7860   1412553084   2014
## 7861   1410972264   2014
## 7862   1412553201   2014
## 7863   1428726440   2015
## 7864   1412553055   2014
## 7865   1410972164   2014
## 7866   1410972074   2014
## 7867   1419495256   2014
## 7868   1410972132   2014
## 7869   1405181398   2014
## 7870   1412553003   2014
## 7871   1410972058   2014
## 7872   1405649924   2014
## 7873   1410972102   2014
## 7874   1412552876   2014
## 7875   1410972752   2014
## 7876   1412552728   2014
## 7877   1412552534   2014
## 7878   1428726233   2015
## 7879   1425960080   2015
## 7880   1412550699   2014
## 7881   1415388454   2014
## 7882   1428726245   2015
## 7883   1428726219   2015
## 7884   1428727019   2015
## 7885   1428726405   2015
## 7886   1428726202   2015
## 7887   1414562891   2014
## 7888   1428726241   2015
## 7889    978040739   2000
## 7890    978039958   2000
## 7891    978041312   2000
## 7892    978040891   2000
## 7893    978040922   2000
## 7894    978040023   2000
## 7895    978039850   2000
## 7896    978041224   2000
## 7897    978039693   2000
## 7898    978041370   2000
## 7899    978039301   2000
## 7900    978039629   2000
## 7901    978039693   2000
## 7902    978040023   2000
## 7903    978039922   2000
## 7904    978040871   2000
## 7905    978039850   2000
## 7906    978040768   2000
## 7907    978041037   2000
## 7908    978041342   2000
## 7909    978041189   2000
## 7910    978041037   2000
## 7911    978039514   2000
## 7912    978039263   2000
## 7913    978039654   2000
## 7914    978039514   2000
## 7915    978041189   2000
## 7916    978039693   2000
## 7917    978039629   2000
## 7918    978039693   2000
## 7919    978039584   2000
## 7920    978039819   2000
## 7921    978039557   2000
## 7922    978039557   2000
## 7923    978039514   2000
## 7924    978039514   2000
## 7925    978041091   2000
## 7926    978039301   2000
## 7927    978041122   2000
## 7928    978039557   2000
## 7929    978039514   2000
## 7930    978041122   2000
## 7931    978039584   2000
## 7932    978039584   2000
## 7933    978039753   2000
## 7934    978039922   2000
## 7935    978039795   2000
## 7936    978041342   2000
## 7937    978039714   2000
## 7938    978041312   2000
## 7939    978041037   2000
## 7940    978039958   2000
## 7941    978039891   2000
## 7942    978040828   2000
## 7943    978040023   2000
## 7944    978039891   2000
## 7945    978039753   2000
## 7946    978039850   2000
## 7947    978041152   2000
## 7948    978041250   2000
## 7949    978039557   2000
## 7950    978041370   2000
## 7951    978039753   2000
## 7952    978039795   2000
## 7953    978039753   2000
## 7954    978040828   2000
## 7955    978039263   2000
## 7956    978040922   2000
## 7957    978041189   2000
## 7958    978041224   2000
## 7959    978040922   2000
## 7960    978041370   2000
## 7961    978041398   2000
## 7962    978041398   2000
## 7963    978039629   2000
## 7964    978041279   2000
## 7965    978041152   2000
## 7966    978039629   2000
## 7967    978039629   2000
## 7968    978041224   2000
## 7969    978041312   2000
## 7970    978041064   2000
## 7971    978039301   2000
## 7972    978039988   2000
## 7973    978041189   2000
## 7974    978039891   2000
## 7975    978039795   2000
## 7976    978041342   2000
## 7977    978039629   2000
## 7978    978041312   2000
## 7979    978041224   2000
## 7980    978041279   2000
## 7981    978039891   2000
## 7982    978041189   2000
## 7983    978039693   2000
## 7984    978039557   2000
## 7985    978041224   2000
## 7986    978041122   2000
## 7987    978041091   2000
## 7988    847412607   1996
## 7989    847412676   1996
## 7990    847412692   1996
## 7991    847412643   1996
## 7992    847412837   1996
## 7993    847412607   1996
## 7994    847412515   1996
## 7995    847412712   1996
## 7996    847412607   1996
## 7997    847412543   1996
## 7998    847412606   1996
## 7999    847412606   1996
## 8000    847412567   1996
## 8001    847412628   1996
## 8002    847412811   1996
## 8003    847412586   1996
## 8004    847412515   1996
## 8005    847412812   1996
## 8006    847412567   1996
## 8007    847412859   1996
## 8008    847412628   1996
## 8009    847412544   1996
## 8010    847412567   1996
## 8011    847412567   1996
## 8012    847412692   1996
## 8013    847412643   1996
## 8014    847413071   1996
## 8015    847412643   1996
## 8016    847412515   1996
## 8017    847412692   1996
## 8018    847412586   1996
## 8019    847412711   1996
## 8020    847412812   1996
## 8021    847412628   1996
## 8022    847413020   1996
## 8023    847412586   1996
## 8024    847412812   1996
## 8025    847412676   1996
## 8026    847412676   1996
## 8027    847413043   1996
## 8028    847412659   1996
## 8029    847412628   1996
## 8030    847412515   1996
## 8031    847412659   1996
## 8032    847412879   1996
## 8033    847413043   1996
## 8034    974729137   2000
## 8035    974728763   2000
## 8036    974728763   2000
## 8037    974728763   2000
## 8038    974729199   2000
## 8039    974728763   2000
## 8040    974728999   2000
## 8041    974729270   2000
## 8042    974729067   2000
## 8043    974729270   2000
## 8044    974728936   2000
## 8045    974729067   2000
## 8046    974728936   2000
## 8047    974729345   2000
## 8048    974729137   2000
## 8049    974728999   2000
## 8050    974729270   2000
## 8051    974729165   2000
## 8052    974729105   2000
## 8053    974729315   2000
## 8054    974728936   2000
## 8055    974728936   2000
## 8056    974729270   2000
## 8057    974729270   2000
## 8058    974729032   2000
## 8059    974729315   2000
## 8060    974729270   2000
## 8061    974729067   2000
## 8062    974729199   2000
## 8063    974728763   2000
## 8064    974729032   2000
## 8065   1231766465   2009
## 8066   1231763607   2009
## 8067   1231770596   2009
## 8068   1231767051   2009
## 8069   1231766626   2009
## 8070   1231766951   2009
## 8071   1231763120   2009
## 8072   1231770503   2009
## 8073   1231766895   2009
## 8074   1231763493   2009
## 8075   1231766853   2009
## 8076   1231766442   2009
## 8077   1231763521   2009
## 8078   1231763632   2009
## 8079   1231767339   2009
## 8080   1231763213   2009
## 8081   1231766571   2009
## 8082   1231766114   2009
## 8083   1231769875   2009
## 8084   1231767802   2009
## 8085   1231763560   2009
## 8086   1231769199   2009
## 8087   1231769672   2009
## 8088   1231763745   2009
## 8089   1231769802   2009
## 8090   1231767951   2009
## 8091   1231767291   2009
## 8092   1231770278   2009
## 8093   1231763949   2009
## 8094   1231763660   2009
## 8095   1231769598   2009
## 8096   1231769623   2009
## 8097   1231769923   2009
## 8098   1231767944   2009
## 8099   1231766768   2009
## 8100   1231769951   2009
## 8101   1231763805   2009
## 8102   1231769685   2009
## 8103   1231769942   2009
## 8104   1231769278   2009
## 8105   1231769628   2009
## 8106   1231766495   2009
## 8107   1231769696   2009
## 8108   1231766735   2009
## 8109   1231767245   2009
## 8110   1231767956   2009
## 8111   1231763467   2009
## 8112   1231770591   2009
## 8113   1231767125   2009
## 8114   1231769937   2009
## 8115   1231770554   2009
## 8116   1231769580   2009
## 8117   1231766722   2009
## 8118   1231769751   2009
## 8119   1231763882   2009
## 8120   1231763840   2009
## 8121   1231769880   2009
## 8122   1231766690   2009
## 8123   1231767136   2009
## 8124   1231770409   2009
## 8125   1231767111   2009
## 8126   1231766676   2009
## 8127   1231769289   2009
## 8128   1231770833   2009
## 8129   1231770796   2009
## 8130   1231763293   2009
## 8131   1231770565   2009
## 8132   1231769833   2009
## 8133    955192120   2000
## 8134    955193387   2000
## 8135    955192933   2000
## 8136    955192933   2000
## 8137    955193660   2000
## 8138    955192933   2000
## 8139    955192933   2000
## 8140    955192636   2000
## 8141    955192140   2000
## 8142    955193310   2000
## 8143    955193387   2000
## 8144    955193310   2000
## 8145    955193660   2000
## 8146    955192367   2000
## 8147    955193078   2000
## 8148    955191985   2000
## 8149    955193468   2000
## 8150    955192692   2000
## 8151    955192388   2000
## 8152    955193256   2000
## 8153    955192663   2000
## 8154    955192739   2000
## 8155    955193574   2000
## 8156    955192345   2000
## 8157    955193224   2000
## 8158    955192491   2000
## 8159    955192282   2000
## 8160    955192739   2000
## 8161    955192603   2000
## 8162    955192307   2000
## 8163    955192417   2000
## 8164    955192010   2000
## 8165    955192491   2000
## 8166    955192571   2000
## 8167    955192739   2000
## 8168    955192739   2000
## 8169    955193387   2000
## 8170    955193724   2000
## 8171    955192779   2000
## 8172    955192307   2000
## 8173    955193337   2000
## 8174    955192760   2000
## 8175    955192571   2000
## 8176    955192100   2000
## 8177    955193433   2000
## 8178    955193724   2000
## 8179   1352835937   2012
## 8180   1352835615   2012
## 8181   1352836913   2012
## 8182   1352835880   2012
## 8183   1352835987   2012
## 8184   1352836775   2012
## 8185   1352836714   2012
## 8186   1352835557   2012
## 8187   1352832722   2012
## 8188   1352836545   2012
## 8189   1352835678   2012
## 8190   1352832850   2012
## 8191   1352837063   2012
## 8192   1352832755   2012
## 8193   1352836272   2012
## 8194   1352832871   2012
## 8195   1352836371   2012
## 8196   1352836374   2012
## 8197   1352837049   2012
## 8198   1352836618   2012
## 8199   1352836376   2012
## 8200   1352834428   2012
## 8201   1352837008   2012
## 8202   1352836442   2012
## 8203   1352836450   2012
## 8204   1352833560   2012
## 8205   1352835951   2012
## 8206   1352836485   2012
## 8207   1352834067   2012
## 8208   1352836366   2012
## 8209   1352833048   2012
## 8210   1352836377   2012
## 8211   1352836517   2012
## 8212   1352836738   2012
## 8213   1352836666   2012
## 8214   1352836154   2012
## 8215   1352836322   2012
## 8216   1352833131   2012
## 8217   1352836290   2012
## 8218   1352835980   2012
## 8219   1352832825   2012
## 8220   1352836507   2012
## 8221   1352834483   2012
## 8222   1352834564   2012
## 8223    855926941   1997
## 8224    855926988   1997
## 8225    855926988   1997
## 8226    855926988   1997
## 8227    855927315   1997
## 8228    855926941   1997
## 8229    855927315   1997
## 8230    855927438   1997
## 8231    855927172   1997
## 8232    855926941   1997
## 8233    855927437   1997
## 8234    855927131   1997
## 8235    855927131   1997
## 8236    855926941   1997
## 8237    855927131   1997
## 8238    855927131   1997
## 8239    855926988   1997
## 8240    855926988   1997
## 8241    855927438   1997
## 8242    855927172   1997
## 8243    855926941   1997
## 8244    855927131   1997
## 8245    855927438   1997
## 8246    855927131   1997
## 8247    855927315   1997
## 8248    855927438   1997
## 8249    855926988   1997
## 8250    855926941   1997
## 8251    855927315   1997
## 8252    855927438   1997
## 8253    855926941   1997
## 8254    855927131   1997
## 8255    855926988   1997
## 8256    855927131   1997
## 8257    855927315   1997
## 8258    855927172   1997
## 8259    855927315   1997
## 8260    855926988   1997
## 8261   1467004817   2016
## 8262   1467008381   2016
## 8263   1467004892   2016
## 8264   1470350794   2016
## 8265   1467004961   2016
## 8266   1467003294   2016
## 8267   1467004867   2016
## 8268   1467004833   2016
## 8269   1467007782   2016
## 8270   1467005618   2016
## 8271   1467005298   2016
## 8272   1467003504   2016
## 8273   1467004905   2016
## 8274   1467005072   2016
## 8275   1467004949   2016
## 8276   1467004879   2016
## 8277   1470350790   2016
## 8278   1467004938   2016
## 8279   1467005164   2016
## 8280   1470350831   2016
## 8281   1467006124   2016
## 8282   1467002990   2016
## 8283   1467003119   2016
## 8284   1473803992   2016
## 8285   1470350811   2016
## 8286   1468471074   2016
## 8287   1467004922   2016
## 8288   1467002971   2016
## 8289   1473801974   2016
## 8290   1469033808   2016
## 8291   1470350967   2016
## 8292   1467005160   2016
## 8293   1467004832   2016
## 8294   1467004830   2016
## 8295   1467002940   2016
## 8296   1467007127   2016
## 8297   1467006388   2016
## 8298   1467008357   2016
## 8299   1467002950   2016
## 8300   1467005800   2016
## 8301   1467003164   2016
## 8302   1467005324   2016
## 8303   1467006035   2016
## 8304   1467005569   2016
## 8305   1467005986   2016
## 8306   1467005564   2016
## 8307   1467005377   2016
## 8308   1470350981   2016
## 8309   1470351101   2016
## 8310   1467008836   2016
## 8311   1467005515   2016
## 8312   1467003129   2016
## 8313   1467006650   2016
## 8314   1467005708   2016
## 8315   1467003138   2016
## 8316   1470351007   2016
## 8317   1467004984   2016
## 8318   1467005425   2016
## 8319   1470350746   2016
## 8320   1467005321   2016
## 8321   1470350810   2016
## 8322   1467003136   2016
## 8323   1470350743   2016
## 8324   1467002983   2016
## 8325   1467004101   2016
## 8326   1467006449   2016
## 8327   1467006407   2016
## 8328   1467003288   2016
## 8329   1467005413   2016
## 8330   1467006798   2016
## 8331   1467005230   2016
## 8332   1467003139   2016
## 8333   1467006447   2016
## 8334   1467003994   2016
## 8335   1467006765   2016
## 8336   1467005790   2016
## 8337   1470350796   2016
## 8338   1467003378   2016
## 8339   1467006386   2016
## 8340   1470350740   2016
## 8341   1470351006   2016
## 8342   1467004757   2016
## 8343   1467003285   2016
## 8344   1467009159   2016
## 8345   1467005320   2016
## 8346   1467003265   2016
## 8347   1470351002   2016
## 8348   1467004858   2016
## 8349   1467004906   2016
## 8350   1473792749   2016
## 8351   1467006781   2016
## 8352   1467003397   2016
## 8353   1467873409   2016
## 8354   1467005259   2016
## 8355   1467006163   2016
## 8356   1470350881   2016
## 8357   1470350949   2016
## 8358   1467006852   2016
## 8359   1467004019   2016
## 8360   1467005541   2016
## 8361   1467006556   2016
## 8362   1467006334   2016
## 8363   1467005889   2016
## 8364   1467094780   2016
## 8365   1467005534   2016
## 8366   1467005939   2016
## 8367   1470350880   2016
## 8368   1467003127   2016
## 8369   1467002948   2016
## 8370   1467003158   2016
## 8371   1470350964   2016
## 8372   1470350958   2016
## 8373   1467005607   2016
## 8374   1467006553   2016
## 8375   1467003819   2016
## 8376   1470350857   2016
## 8377   1467008994   2016
## 8378   1467004796   2016
## 8379   1467093986   2016
## 8380   1470350850   2016
## 8381   1470350848   2016
## 8382   1467003201   2016
## 8383   1469031525   2016
## 8384   1467005771   2016
## 8385   1467094778   2016
## 8386   1470352143   2016
## 8387   1467002969   2016
## 8388   1470350841   2016
## 8389   1470350988   2016
## 8390   1467092609   2016
## 8391   1470352155   2016
## 8392   1470350839   2016
## 8393   1467006461   2016
## 8394   1468471176   2016
## 8395   1467866328   2016
## 8396   1470350837   2016
## 8397   1467007881   2016
## 8398   1467005018   2016
## 8399   1467009172   2016
## 8400   1467003359   2016
## 8401   1470351704   2016
## 8402   1467002977   2016
## 8403   1467004735   2016
## 8404   1470350864   2016
## 8405   1467006343   2016
## 8406   1467005428   2016
## 8407   1475110909   2016
## 8408   1467008130   2016
## 8409   1467005498   2016
## 8410   1470351102   2016
## 8411   1469152877   2016
## 8412   1470351096   2016
## 8413   1467003490   2016
## 8414   1469031599   2016
## 8415   1467005598   2016
## 8416   1467005707   2016
## 8417   1467007025   2016
## 8418   1467002981   2016
## 8419   1467009270   2016
## 8420   1467006448   2016
## 8421   1467006816   2016
## 8422   1467005813   2016
## 8423   1470351099   2016
## 8424   1467004973   2016
## 8425   1467002942   2016
## 8426   1467693193   2016
## 8427   1467006042   2016
## 8428   1467009823   2016
## 8429   1474815098   2016
## 8430   1467007108   2016
## 8431   1467006194   2016
## 8432   1470350837   2016
## 8433   1470351801   2016
## 8434   1467005380   2016
## 8435   1470351097   2016
## 8436   1467005729   2016
## 8437   1470350982   2016
## 8438   1467005793   2016
## 8439   1470351095   2016
## 8440   1467005081   2016
## 8441   1467004784   2016
## 8442   1467009601   2016
## 8443   1467006773   2016
## 8444   1467006182   2016
## 8445   1467003514   2016
## 8446   1470350862   2016
## 8447   1467007890   2016
## 8448   1467005858   2016
## 8449   1467008829   2016
## 8450   1467006160   2016
## 8451   1467004029   2016
## 8452   1470351118   2016
## 8453   1467003934   2016
## 8454   1467003357   2016
## 8455   1467007203   2016
## 8456   1472582918   2016
## 8457   1467093364   2016
## 8458   1475567060   2016
## 8459   1470355329   2016
## 8460   1470350976   2016
## 8461   1470350951   2016
## 8462   1470350879   2016
## 8463   1470350876   2016
## 8464   1469152869   2016
## 8465   1467006603   2016
## 8466   1467005394   2016
## 8467   1467006723   2016
## 8468   1474700994   2016
## 8469   1467005824   2016
## 8470   1467008072   2016
## 8471   1470355415   2016
## 8472   1467005242   2016
## 8473   1470350975   2016
## 8474   1467005239   2016
## 8475   1467005492   2016
## 8476   1470351000   2016
## 8477   1470968633   2016
## 8478   1467006150   2016
## 8479   1473802057   2016
## 8480   1467004075   2016
## 8481   1470351001   2016
## 8482   1470350956   2016
## 8483   1467005527   2016
## 8484   1467003134   2016
## 8485   1470350834   2016
## 8486   1467005245   2016
## 8487   1467005287   2016
## 8488   1467002978   2016
## 8489   1467004098   2016
## 8490   1467004067   2016
## 8491   1467003300   2016
## 8492   1467092617   2016
## 8493   1467005258   2016
## 8494   1467005284   2016
## 8495   1467003858   2016
## 8496   1473794542   2016
## 8497   1467005307   2016
## 8498   1467005692   2016
## 8499   1467004100   2016
## 8500   1470350980   2016
## 8501   1471104320   2016
## 8502   1470350814   2016
## 8503   1467002967   2016
## 8504   1470350817   2016
## 8505   1467005360   2016
## 8506   1467005252   2016
## 8507   1470350824   2016
## 8508   1473791601   2016
## 8509   1467008087   2016
## 8510   1467005390   2016
## 8511   1467006262   2016
## 8512   1467003213   2016
## 8513   1470350961   2016
## 8514   1467005226   2016
## 8515   1467094542   2016
## 8516   1467006226   2016
## 8517   1470350791   2016
## 8518   1470351794   2016
## 8519   1470350792   2016
## 8520   1472530513   2016
## 8521   1470352323   2016
## 8522   1470350806   2016
## 8523   1467093079   2016
## 8524   1467003174   2016
## 8525   1467004099   2016
## 8526   1467004794   2016
## 8527   1467002992   2016
## 8528   1467006373   2016
## 8529   1467005463   2016
## 8530   1467005331   2016
## 8531   1467005270   2016
## 8532   1467005493   2016
## 8533   1470350829   2016
## 8534   1467005485   2016
## 8535   1467006393   2016
## 8536   1470350939   2016
## 8537   1467006247   2016
## 8538   1467003155   2016
## 8539   1469228080   2016
## 8540   1468470510   2016
## 8541   1467006577   2016
## 8542   1470351983   2016
## 8543   1467691652   2016
## 8544   1467009198   2016
## 8545   1467095130   2016
## 8546   1467004058   2016
## 8547   1469154890   2016
## 8548   1467009678   2016
## 8549   1470350835   2016
## 8550   1469033593   2016
## 8551   1467003331   2016
## 8552   1470350738   2016
## 8553   1467007232   2016
## 8554   1475557281   2016
## 8555   1467007629   2016
## 8556   1467005373   2016
## 8557   1470350809   2016
## 8558   1467005838   2016
## 8559   1467003299   2016
## 8560   1467006300   2016
## 8561   1467006253   2016
## 8562   1467003268   2016
## 8563   1467005282   2016
## 8564   1470350742   2016
## 8565   1470350803   2016
## 8566   1467005523   2016
## 8567   1467003146   2016
## 8568   1467693406   2016
## 8569   1467006275   2016
## 8570   1470350985   2016
## 8571   1469073222   2016
## 8572   1467005248   2016
## 8573   1467692413   2016
## 8574   1467693415   2016
## 8575   1467005267   2016
## 8576   1467007522   2016
## 8577   1467006583   2016
## 8578   1467003975   2016
## 8579   1467005548   2016
## 8580   1470351003   2016
## 8581   1467005933   2016
## 8582   1469073419   2016
## 8583   1470350872   2016
## 8584   1467005359   2016
## 8585   1467005323   2016
## 8586   1467004082   2016
## 8587   1467006368   2016
## 8588   1467003951   2016
## 8589   1467009669   2016
## 8590   1467006058   2016
## 8591   1470350855   2016
## 8592   1470350851   2016
## 8593   1467005604   2016
## 8594   1467003527   2016
## 8595   1471306371   2016
## 8596   1470350845   2016
## 8597   1467007605   2016
## 8598   1467003152   2016
## 8599   1475479127   2016
## 8600   1467003185   2016
## 8601   1467095936   2016
## 8602   1467003176   2016
## 8603   1467005673   2016
## 8604   1467004094   2016
## 8605   1467007569   2016
## 8606   1467005222   2016
## 8607   1467005342   2016
## 8608   1470350978   2016
## 8609   1467005703   2016
## 8610   1467005747   2016
## 8611   1467006547   2016
## 8612   1467865426   2016
## 8613   1467006376   2016
## 8614   1470350955   2016
## 8615   1467003348   2016
## 8616   1470350987   2016
## 8617   1470350986   2016
## 8618   1467092809   2016
## 8619   1467003336   2016
## 8620   1467004345   2016
## 8621   1469031507   2016
## 8622   1467004172   2016
## 8623   1467004170   2016
## 8624   1467004173   2016
## 8625   1470350866   2016
## 8626   1467004200   2016
## 8627   1467003125   2016
## 8628   1467003364   2016
## 8629   1470968850   2016
## 8630   1467005726   2016
## 8631   1467003698   2016
## 8632   1467005198   2016
## 8633   1467004387   2016
## 8634   1467004221   2016
## 8635   1467004584   2016
## 8636   1467004119   2016
## 8637   1467004435   2016
## 8638   1467009351   2016
## 8639   1467004483   2016
## 8640   1467004574   2016
## 8641   1467864303   2016
## 8642   1467007601   2016
## 8643   1467092846   2016
## 8644   1467004204   2016
## 8645   1467004183   2016
## 8646   1467006409   2016
## 8647   1467002965   2016
## 8648   1467004374   2016
## 8649   1467093107   2016
## 8650   1467005411   2016
## 8651   1467004187   2016
## 8652   1467004158   2016
## 8653   1473794395   2016
## 8654   1467003210   2016
## 8655   1467003145   2016
## 8656   1467004198   2016
## 8657   1467004629   2016
## 8658   1467004653   2016
## 8659   1469153655   2016
## 8660   1467005355   2016
## 8661   1467004005   2016
## 8662   1467003897   2016
## 8663   1469032461   2016
## 8664   1470350858   2016
## 8665   1470350948   2016
## 8666   1467004505   2016
## 8667   1473791535   2016
## 8668   1470350973   2016
## 8669   1467004197   2016
## 8670   1467004315   2016
## 8671   1470350882   2016
## 8672   1467004552   2016
## 8673   1467004122   2016
## 8674   1467003383   2016
## 8675   1467004613   2016
## 8676   1468910117   2016
## 8677   1467003420   2016
## 8678   1469031965   2016
## 8679   1467092472   2016
## 8680   1470350873   2016
## 8681   1467004382   2016
## 8682   1467004544   2016
## 8683   1467007093   2016
## 8684   1467004638   2016
## 8685   1467004161   2016
## 8686   1467004619   2016
## 8687   1467004448   2016
## 8688   1467004582   2016
## 8689   1473802027   2016
## 8690   1467003376   2016
## 8691   1470350788   2016
## 8692   1470350782   2016
## 8693   1467005316   2016
## 8694   1467004530   2016
## 8695   1467003873   2016
## 8696   1467003849   2016
## 8697   1467003292   2016
## 8698   1467864500   2016
## 8699   1467004379   2016
## 8700   1467092453   2016
## 8701   1467092369   2016
## 8702   1467004218   2016
## 8703   1470350802   2016
## 8704   1467004316   2016
## 8705   1467002988   2016
## 8706   1467004578   2016
## 8707   1467863402   2016
## 8708   1470350983   2016
## 8709   1469154665   2016
## 8710   1467003946   2016
## 8711   1467092392   2016
## 8712   1467005764   2016
## 8713   1467007575   2016
## 8714   1467007838   2016
## 8715   1470350830   2016
## 8716   1468546977   2016
## 8717   1467009440   2016
## 8718   1470350793   2016
## 8719   1467006050   2016
## 8720   1467007684   2016
## 8721   1468546294   2016
## 8722   1474953835   2016
## 8723   1467005461   2016
## 8724   1471306876   2016
## 8725   1467003177   2016
## 8726   1467094125   2016
## 8727   1469845528   2016
## 8728   1467003435   2016
## 8729   1470351005   2016
## 8730   1467003149   2016
## 8731   1470351004   2016
## 8732   1467006008   2016
## 8733   1467003921   2016
## 8734   1467092461   2016
## 8735   1467003191   2016
## 8736   1467003769   2016
## 8737   1467005297   2016
## 8738   1467003517   2016
## 8739   1467005656   2016
## 8740   1467006422   2016
## 8741   1467692116   2016
## 8742   1470025110   2016
## 8743   1467006371   2016
## 8744   1470350815   2016
## 8745   1467005244   2016
## 8746   1469228067   2016
## 8747   1470355990   2016
## 8748   1470350818   2016
## 8749   1467007253   2016
## 8750   1473791593   2016
## 8751   1470352041   2016
## 8752   1473804166   2016
## 8753   1467092891   2016
## 8754   1467006430   2016
## 8755   1467002982   2016
## 8756   1467004819   2016
## 8757   1470350977   2016
## 8758   1467006119   2016
## 8759   1467094604   2016
## 8760   1467006189   2016
## 8761   1470350833   2016
## 8762   1467005444   2016
## 8763   1467003913   2016
## 8764   1469228116   2016
## 8765   1467691835   2016
## 8766   1469152845   2016
## 8767   1472582666   2016
## 8768   1467005931   2016
## 8769   1467093091   2016
## 8770   1467005204   2016
## 8771   1467862484   2016
## 8772   1470350745   2016
## 8773   1467095329   2016
## 8774   1468548012   2016
## 8775   1467004133   2016
## 8776   1467005847   2016
## 8777   1470350805   2016
## 8778   1467007293   2016
## 8779   1474951858   2016
## 8780   1467008759   2016
## 8781   1474989255   2016
## 8782   1467095789   2016
## 8783    907763065   1998
## 8784    907763245   1998
## 8785    907763141   1998
## 8786    907763018   1998
## 8787    907762500   1998
## 8788    907763808   1998
## 8789    907763847   1998
## 8790    907762733   1998
## 8791    907765902   1998
## 8792    907763245   1998
## 8793    907763847   1998
## 8794    907762409   1998
## 8795    907763101   1998
## 8796    907762795   1998
## 8797    907763065   1998
## 8798    907763324   1998
## 8799    907763283   1998
## 8800    907763283   1998
## 8801    907763141   1998
## 8802    907763018   1998
## 8803    907763283   1998
## 8804    907762409   1998
## 8805    907763765   1998
## 8806    907762795   1998
## 8807    907763283   1998
## 8808    907762565   1998
## 8809    907764831   1998
## 8810    907762501   1998
## 8811    907763101   1998
## 8812    907762795   1998
## 8813    907763141   1998
## 8814    907762733   1998
## 8815    907765902   1998
## 8816    907765600   1998
## 8817    907764874   1998
## 8818    907766060   1998
## 8819    907766060   1998
## 8820    907765600   1998
## 8821    907765600   1998
## 8822    907764507   1998
## 8823    907766060   1998
## 8824    907764779   1998
## 8825    907766022   1998
## 8826    907764935   1998
## 8827    907764935   1998
## 8828    907765142   1998
## 8829    907762832   1998
## 8830    907763847   1998
## 8831    907764507   1998
## 8832    907765008   1998
## 8833    907764779   1998
## 8834    907766060   1998
## 8835    907765059   1998
## 8836    907765142   1998
## 8837    907765059   1998
## 8838    907765142   1998
## 8839    907765059   1998
## 8840    907765978   1998
## 8841    907762969   1998
## 8842    907764470   1998
## 8843    907765059   1998
## 8844    907765902   1998
## 8845    907766121   1998
## 8846    907764507   1998
## 8847    907764470   1998
## 8848    907764431   1998
## 8849    907764544   1998
## 8850    907765939   1998
## 8851    907765939   1998
## 8852    907764779   1998
## 8853    907765939   1998
## 8854    907764625   1998
## 8855    907764544   1998
## 8856    907764310   1998
## 8857    907765142   1998
## 8858    907765939   1998
## 8859    907764544   1998
## 8860    907764470   1998
## 8861    907763018   1998
## 8862    907764779   1998
## 8863    907765786   1998
## 8864    907764723   1998
## 8865    907764584   1998
## 8866    907765939   1998
## 8867    907763018   1998
## 8868    907764584   1998
## 8869    907765939   1998
## 8870    907764723   1998
## 8871    907765902   1998
## 8872    907765008   1998
## 8873    907764431   1998
## 8874    907764507   1998
## 8875    907764584   1998
## 8876    907764470   1998
## 8877    907764671   1998
## 8878    907764723   1998
## 8879    907764874   1998
## 8880    907765422   1998
## 8881    907765461   1998
## 8882    907766121   1998
## 8883    907766156   1998
## 8884    907765059   1998
## 8885    907765059   1998
## 8886    907766022   1998
## 8887    907763324   1998
## 8888    907762565   1998
## 8889    907764831   1998
## 8890    907765656   1998
## 8891    907766022   1998
## 8892    907763324   1998
## 8893    907764625   1998
## 8894    907763283   1998
## 8895    907762885   1998
## 8896    907762885   1998
## 8897    907763018   1998
## 8898    907765059   1998
## 8899    907762832   1998
## 8900    907762832   1998
## 8901    907762733   1998
## 8902    907762795   1998
## 8903    907763065   1998
## 8904    907762795   1998
## 8905    907764431   1998
## 8906    907764723   1998
## 8907    907762565   1998
## 8908    907762409   1998
## 8909    907763245   1998
## 8910    907762733   1998
## 8911    907762832   1998
## 8912    907762565   1998
## 8913    907762795   1998
## 8914    907762795   1998
## 8915    907762969   1998
## 8916    907761833   1998
## 8917    907761919   1998
## 8918    907761833   1998
## 8919    907765600   1998
## 8920    907765600   1998
## 8921    907766060   1998
## 8922    907765939   1998
## 8923    907766022   1998
## 8924    907764507   1998
## 8925    907764431   1998
## 8926    907764779   1998
## 8927    907764389   1998
## 8928    907764431   1998
## 8929    907765786   1998
## 8930    907764389   1998
## 8931    907764431   1998
## 8932    907765223   1998
## 8933    907765363   1998
## 8934    907765329   1998
## 8935    907765329   1998
## 8936    907765422   1998
## 8937    907765461   1998
## 8938    907766156   1998
## 8939    907765278   1998
## 8940    907765422   1998
## 8941    907765329   1998
## 8942    907764671   1998
## 8943    907765223   1998
## 8944    907765329   1998
## 8945    907765978   1998
## 8946    907764625   1998
## 8947    907764625   1998
## 8948    907765223   1998
## 8949    907764935   1998
## 8950    907761877   1998
## 8951    907765902   1998
## 8952    907766121   1998
## 8953    907764544   1998
## 8954    907762001   1998
## 8955    907761833   1998
## 8956    907766121   1998
## 8957    907765191   1998
## 8958    907765191   1998
## 8959    907764625   1998
## 8960    907765363   1998
## 8961    907765278   1998
## 8962    907764625   1998
## 8963    907765978   1998
## 8964    907765008   1998
## 8965    907765278   1998
## 8966    907764584   1998
## 8967    907765008   1998
## 8968    907764584   1998
## 8969    907765422   1998
## 8970    907765461   1998
## 8971    907761947   1998
## 8972    907764584   1998
## 8973    907765059   1998
## 8974    907764544   1998
## 8975    907762089   1998
## 8976    907764470   1998
## 8977    907765363   1998
## 8978    907764671   1998
## 8979    907766121   1998
## 8980    907764431   1998
## 8981    907764431   1998
## 8982    907764874   1998
## 8983    907764671   1998
## 8984    907762409   1998
## 8985    907764389   1998
## 8986    907763245   1998
## 8987    907765600   1998
## 8988    907765142   1998
## 8989    907762969   1998
## 8990    907764831   1998
## 8991    907765978   1998
## 8992    961127960   2000
## 8993    961127638   2000
## 8994    961128124   2000
## 8995    961127638   2000
## 8996    961127638   2000
## 8997    961128086   2000
## 8998    961128178   2000
## 8999    961128239   2000
## 9000    961128124   2000
## 9001    961127522   2000
## 9002    961127724   2000
## 9003    961128239   2000
## 9004    961127557   2000
## 9005    961127724   2000
## 9006    961127522   2000
## 9007    961128178   2000
## 9008    961127522   2000
## 9009    961128055   2000
## 9010    961127638   2000
## 9011    961127834   2000
## 9012    961127480   2000
## 9013    961127834   2000
## 9014    961127896   2000
## 9015    961127256   2000
## 9016    961128239   2000
## 9017    961127834   2000
## 9018    961127960   2000
## 9019    961127480   2000
## 9020    961127638   2000
## 9021    961128020   2000
## 9022    961128302   2000
## 9023    961127761   2000
## 9024    961127834   2000
## 9025    961128239   2000
## 9026    961128178   2000
## 9027    961127868   2000
## 9028    961127592   2000
## 9029    961128124   2000
## 9030    961127480   2000
## 9031    961127480   2000
## 9032    961127690   2000
## 9033    961127690   2000
## 9034    961128302   2000
## 9035    961128269   2000
## 9036    961127256   2000
## 9037    961127256   2000
## 9038    961127522   2000
## 9039    961127558   2000
## 9040    961127592   2000
## 9041    961127790   2000
## 9042    961127761   2000
## 9043    961127256   2000
## 9044    961128302   2000
## 9045    961128020   2000
## 9046    961127761   2000
## 9047    961127761   2000
## 9048    961127638   2000
## 9049    961128269   2000
## 9050    961127690   2000
## 9051    961127690   2000
## 9052    961127558   2000
## 9053    961127761   2000
## 9054    961127480   2000
## 9055    961128055   2000
## 9056    961127407   2000
## 9057    961128239   2000
## 9058    961127407   2000
## 9059    961127407   2000
## 9060    961127923   2000
## 9061    961127256   2000
## 9062    961127834   2000
## 9063    961128055   2000
## 9064    961127639   2000
## 9065   1144755845   2006
## 9066   1144756065   2006
## 9067   1144756267   2006
## 9068   1144755826   2006
## 9069   1144756061   2006
## 9070   1144755802   2006
## 9071   1144756058   2006
## 9072   1144756054   2006
## 9073   1144756366   2006
## 9074   1144755818   2006
## 9075   1144756299   2006
## 9076   1144756051   2006
## 9077   1144756048   2006
## 9078   1144755842   2006
## 9079   1144756272   2006
## 9080   1144756044   2006
## 9081   1144756394   2006
## 9082   1144756037   2006
## 9083   1144756031   2006
## 9084   1144756028   2006
## 9085   1144756398   2006
## 9086   1144756414   2006
## 9087   1144756328   2006
## 9088   1144756296   2006
## 9089   1144755799   2006
## 9090   1144755833   2006
## 9091   1144756017   2006
## 9092   1144756384   2006
## 9093   1144756013   2006
## 9094   1144755855   2006
## 9095   1144755814   2006
## 9096   1144755869   2006
## 9097   1144756209   2006
## 9098   1144756203   2006
## 9099   1144755873   2006
## 9100   1144755823   2006
## 9101   1144756199   2006
## 9102   1144756004   2006
## 9103   1144756192   2006
## 9104   1144756188   2006
## 9105   1144756184   2006
## 9106   1144756181   2006
## 9107   1144756178   2006
## 9108   1144756175   2006
## 9109   1144756386   2006
## 9110   1144755999   2006
## 9111   1144756164   2006
## 9112   1144756161   2006
## 9113   1144756157   2006
## 9114   1144756153   2006
## 9115   1144756141   2006
## 9116   1144755852   2006
## 9117   1144756137   2006
## 9118   1144755809   2006
## 9119   1144756134   2006
## 9120   1144756128   2006
## 9121   1144755992   2006
## 9122   1144755805   2006
## 9123   1144755795   2006
## 9124   1144756119   2006
## 9125   1144756116   2006
## 9126   1144756112   2006
## 9127   1144756109   2006
## 9128   1144756106   2006
## 9129   1144756094   2006
## 9130   1144755866   2006
## 9131   1144755863   2006
## 9132   1144756101   2006
## 9133   1144756087   2006
## 9134   1144756362   2006
## 9135   1144756343   2006
## 9136   1144756281   2006
## 9137   1144756348   2006
## 9138   1144756082   2006
## 9139   1144756336   2006
## 9140   1144756276   2006
## 9141   1144756332   2006
## 9142   1144756402   2006
## 9143   1125828814   2005
## 9144   1125829035   2005
## 9145   1125829229   2005
## 9146   1125828888   2005
## 9147   1125828860   2005
## 9148   1125829070   2005
## 9149   1125828890   2005
## 9150   1125829154   2005
## 9151   1125829157   2005
## 9152   1125828818   2005
## 9153   1125829203   2005
## 9154   1125829207   2005
## 9155   1125829174   2005
## 9156   1125828831   2005
## 9157   1125828893   2005
## 9158   1125829194   2005
## 9159   1125829215   2005
## 9160   1125829161   2005
## 9161   1125829152   2005
## 9162   1125828900   2005
## 9163   1125828872   2005
## 9164   1125828865   2005
## 9165   1125829038   2005
## 9166   1125829088   2005
## 9167   1125828843   2005
## 9168   1125828850   2005
## 9169   1125828802   2005
## 9170   1125829168   2005
## 9171   1125828876   2005
## 9172   1125828811   2005
## 9173   1125828806   2005
## 9174   1125829108   2005
## 9175   1125829131   2005
## 9176   1125829115   2005
## 9177   1125829042   2005
## 9178   1125829144   2005
## 9179   1125829233   2005
## 9180   1125828895   2005
## 9181   1125829190   2005
## 9182   1125829218   2005
## 9183   1125829124   2005
## 9184   1125828855   2005
## 9185   1125829077   2005
## 9186   1125829169   2005
## 9187   1125829184   2005
## 9188   1125829017   2005
## 9189   1125829047   2005
## 9190   1125829192   2005
## 9191   1125829007   2005
## 9192   1125829249   2005
## 9193   1125829091   2005
## 9194   1125829180   2005
## 9195   1125828995   2005
## 9196   1125829225   2005
## 9197   1125829142   2005
## 9198   1216051639   2008
## 9199   1216050806   2008
## 9200   1216052245   2008
## 9201   1216050620   2008
## 9202   1216051937   2008
## 9203   1216486613   2008
## 9204   1216050783   2008
## 9205   1216052001   2008
## 9206   1216050872   2008
## 9207   1216050755   2008
## 9208   1216052048   2008
## 9209   1216487185   2008
## 9210   1216050910   2008
## 9211   1216050728   2008
## 9212   1216050688   2008
## 9213   1216050426   2008
## 9214   1217176111   2008
## 9215   1216051901   2008
## 9216   1216050607   2008
## 9217   1216486577   2008
## 9218   1216050050   2008
## 9219   1216487081   2008
## 9220   1216487462   2008
## 9221   1216050212   2008
## 9222   1216050981   2008
## 9223   1216052355   2008
## 9224   1216050143   2008
## 9225   1216487383   2008
## 9226   1216052159   2008
## 9227   1216487645   2008
## 9228   1216052131   2008
## 9229   1216486917   2008
## 9230   1216050704   2008
## 9231   1216050633   2008
## 9232   1216050881   2008
## 9233   1216050615   2008
## 9234   1217176086   2008
## 9235   1216051628   2008
## 9236   1216487574   2008
## 9237   1216051765   2008
## 9238   1216051684   2008
## 9239   1216050812   2008
## 9240   1216052066   2008
## 9241   1216487286   2008
## 9242   1216051712   2008
## 9243   1216050874   2008
## 9244   1216487345   2008
## 9245   1216051756   2008
## 9246   1216050040   2008
## 9247   1216052376   2008
## 9248   1216051647   2008
## 9249   1216487259   2008
## 9250   1216487390   2008
## 9251   1216050185   2008
## 9252   1216486970   2008
## 9253   1216486558   2008
## 9254   1216050841   2008
## 9255   1216486754   2008
## 9256   1216487561   2008
## 9257   1216050771   2008
## 9258   1216050083   2008
## 9259   1216050948   2008
## 9260   1216050434   2008
## 9261   1216486568   2008
## 9262   1216050558   2008
## 9263   1216487170   2008
## 9264   1216052021   2008
## 9265   1217175852   2008
## 9266   1216050942   2008
## 9267   1216487450   2008
## 9268   1216050711   2008
## 9269   1216050152   2008
## 9270   1216050859   2008
## 9271   1216487130   2008
## 9272   1216487195   2008
## 9273   1217175695   2008
## 9274   1217175825   2008
## 9275   1216051015   2008
## 9276   1216050580   2008
## 9277   1216050173   2008
## 9278   1216486820   2008
## 9279   1216050489   2008
## 9280   1216487437   2008
## 9281   1216050661   2008
## 9282   1217175635   2008
## 9283   1216051026   2008
## 9284   1216050540   2008
## 9285   1216487083   2008
## 9286   1217175814   2008
## 9287   1216051664   2008
## 9288   1216052029   2008
## 9289   1216051166   2008
## 9290   1216050163   2008
## 9291   1216050722   2008
## 9292   1216050467   2008
## 9293   1217175952   2008
## 9294   1217175803   2008
## 9295   1217175973   2008
## 9296   1216051752   2008
## 9297   1216050500   2008
## 9298   1216050627   2008
## 9299   1216050335   2008
## 9300   1216051105   2008
## 9301   1216486831   2008
## 9302   1216487292   2008
## 9303   1216050411   2008
## 9304   1216050274   2008
## 9305   1216487206   2008
## 9306   1216050747   2008
## 9307   1217175562   2008
## 9308   1216052075   2008
## 9309   1217175793   2008
## 9310   1216486608   2008
## 9311   1216050419   2008
## 9312   1217176199   2008
## 9313   1216050266   2008
## 9314   1216487236   2008
## 9315   1216051039   2008
## 9316   1216052080   2008
## 9317   1216487374   2008
## 9318   1217176162   2008
## 9319   1216051779   2008
## 9320   1216050438   2008
## 9321   1216487036   2008
## 9322   1216051096   2008
## 9323   1216487165   2008
## 9324   1216050749   2008
## 9325   1216051161   2008
## 9326   1216050506   2008
## 9327   1216051092   2008
## 9328   1216050246   2008
## 9329   1216052363   2008
## 9330   1216486888   2008
## 9331   1216051047   2008
## 9332   1216050780   2008
## 9333   1216487176   2008
## 9334   1216487276   2008
## 9335   1216051666   2008
## 9336   1216051984   2008
## 9337   1216050612   2008
## 9338   1216050831   2008
## 9339   1216050762   2008
## 9340   1216051143   2008
## 9341   1216487179   2008
## 9342   1216051188   2008
## 9343   1216052121   2008
## 9344   1216050332   2008
## 9345   1216051618   2008
## 9346   1216051008   2008
## 9347   1216050692   2008
## 9348   1216051650   2008
## 9349   1217424458   2008
## 9350   1216050821   2008
## 9351   1216486738   2008
## 9352   1216050758   2008
## 9353   1216050547   2008
## 9354   1216052146   2008
## 9355   1217175527   2008
## 9356   1216487366   2008
## 9357   1216487091   2008
## 9358   1216487357   2008
## 9359   1216487144   2008
## 9360   1216050264   2008
## 9361   1216487413   2008
## 9362   1216486663   2008
## 9363   1216487141   2008
## 9364   1451708754   2016
## 9365   1451176940   2015
## 9366   1451359418   2015
## 9367   1451176947   2015
## 9368   1451359247   2015
## 9369   1451359277   2015
## 9370   1451359280   2015
## 9371   1470457528   2016
## 9372   1451359348   2015
## 9373   1451359336   2015
## 9374   1449594307   2015
## 9375   1451708492   2016
## 9376   1449594323   2015
## 9377   1453318174   2016
## 9378   1452916989   2016
## 9379   1449594346   2015
## 9380   1475948734   2016
## 9381   1451708722   2016
## 9382   1451708228   2016
## 9383   1451707886   2016
## 9384   1451708064   2016
## 9385   1451708831   2016
## 9386   1451708501   2016
## 9387   1451713153   2016
## 9388   1451707852   2016
## 9389   1451708608   2016
## 9390   1451708709   2016
## 9391   1451708035   2016
## 9392   1451708254   2016
## 9393   1451712467   2016
## 9394   1451708272   2016
## 9395   1451178637   2015
## 9396   1451708082   2016
## 9397   1451707972   2016
## 9398   1451708365   2016
## 9399   1451708125   2016
## 9400   1451708157   2016
## 9401   1451706920   2016
## 9402   1451708301   2016
## 9403   1451708010   2016
## 9404   1451178678   2015
## 9405   1451406848   2015
## 9406   1451706930   2016
## 9407   1449594073   2015
## 9408   1465526836   2016
## 9409   1465535480   2016
## 9410   1448760334   2015
## 9411   1453472303   2016
## 9412   1451407005   2015
## 9413   1455413632   2016
## 9414   1451368688   2015
## 9415   1465279438   2016
## 9416   1470457197   2016
## 9417   1079098216   2004
## 9418   1079098249   2004
## 9419   1075307025   2004
## 9420   1075307034   2004
## 9421   1075307039   2004
## 9422   1079098211   2004
## 9423   1075307036   2004
## 9424   1075307056   2004
## 9425   1078570677   2004
## 9426   1075307064   2004
## 9427   1079098244   2004
## 9428   1079098188   2004
## 9429   1075307028   2004
## 9430   1078570670   2004
## 9431   1078570695   2004
## 9432   1075307062   2004
## 9433   1079098254   2004
## 9434   1079098217   2004
## 9435   1079098263   2004
## 9436   1076323993   2004
## 9437   1075307060   2004
## 9438   1076324016   2004
## 9439   1076324042   2004
## 9440   1075307058   2004
## 9441   1076324074   2004
## 9442   1076324053   2004
## 9443   1079098242   2004
## 9444   1076324064   2004
## 9445   1079098258   2004
## 9446   1075307020   2004
## 9447   1075307065   2004
## 9448   1076324068   2004
## 9449   1075307023   2004
## 9450   1079098251   2004
## 9451   1076324056   2004
## 9452   1076324009   2004
## 9453   1075307043   2004
## 9454   1079098265   2004
## 9455   1079098267   2004
## 9456   1076324059   2004
## 9457   1076324000   2004
## 9458   1075307052   2004
## 9459   1078570732   2004
## 9460   1079098253   2004
## 9461   1078570730   2004
## 9462   1078570723   2004
## 9463   1075307050   2004
## 9464   1078570736   2004
## 9465   1078570725   2004
## 9466   1079098304   2004
## 9467   1079098294   2004
## 9468   1079098501   2004
## 9469   1078570715   2004
## 9470   1078570718   2004
## 9471   1078570716   2004
## 9472   1079098301   2004
## 9473   1076324071   2004
## 9474   1079098213   2004
## 9475   1078570740   2004
## 9476   1078570655   2004
## 9477   1079098201   2004
## 9478   1079098192   2004
## 9479   1079098199   2004
## 9480   1078570652   2004
## 9481   1080482377   2004
## 9482   1079098203   2004
## 9483   1075307030   2004
## 9484   1079098190   2004
## 9485   1078570675   2004
## 9486   1078570660   2004
## 9487   1079098196   2004
## 9488   1079098289   2004
## 9489   1078570684   2004
## 9490   1078570650   2004
## 9491   1078570661   2004
## 9492   1079098194   2004
## 9493   1078570672   2004
## 9494   1078570681   2004
## 9495   1076324022   2004
## 9496   1079098275   2004
## 9497   1078570666   2004
## 9498   1075307054   2004
## 9499   1079098205   2004
## 9500   1078570680   2004
## 9501   1079098272   2004
## 9502   1079098286   2004
## 9503   1079098273   2004
## 9504   1076324027   2004
## 9505   1079098495   2004
## 9506   1079098282   2004
## 9507   1076324012   2004
## 9508   1079098246   2004
## 9509   1076324031   2004
## 9510   1079098406   2004
## 9511   1079098400   2004
## 9512   1076324157   2004
## 9513   1079098342   2004
## 9514    843159967   1996
## 9515    843159644   1996
## 9516    843159716   1996
## 9517    843159716   1996
## 9518    843159967   1996
## 9519    843159770   1996
## 9520    843159967   1996
## 9521    843159967   1996
## 9522    843159644   1996
## 9523    843159871   1996
## 9524    843159770   1996
## 9525    843159716   1996
## 9526    843159716   1996
## 9527    843159871   1996
## 9528    843159645   1996
## 9529    843159871   1996
## 9530    843159770   1996
## 9531    843159644   1996
## 9532    843159644   1996
## 9533    843159770   1996
## 9534    843159967   1996
## 9535    945118587   1999
## 9536    945149894   1999
## 9537    945150424   1999
## 9538    945118660   1999
## 9539    945150571   1999
## 9540    945150514   1999
## 9541    945150514   1999
## 9542    945150037   1999
## 9543    945118792   1999
## 9544    945118614   1999
## 9545    945150175   1999
## 9546    945150351   1999
## 9547    945150351   1999
## 9548    945118543   1999
## 9549    945150424   1999
## 9550    945150278   1999
## 9551    945150473   1999
## 9552    945150037   1999
## 9553    945150395   1999
## 9554    945149894   1999
## 9555    945149834   1999
## 9556    945150395   1999
## 9557    945150395   1999
## 9558    945150351   1999
## 9559    945149894   1999
## 9560    945150011   1999
## 9561    945150351   1999
## 9562    974600703   2000
## 9563    974599486   2000
## 9564    974597659   2000
## 9565    974600526   2000
## 9566    974600461   2000
## 9567    974597735   2000
## 9568    974599725   2000
## 9569    974599773   2000
## 9570    974600656   2000
## 9571    974599725   2000
## 9572    974599725   2000
## 9573    974599074   2000
## 9574    974599923   2000
## 9575    974600461   2000
## 9576    974597684   2000
## 9577    974600526   2000
## 9578    974599834   2000
## 9579    974600198   2000
## 9580    974599434   2000
## 9581    974597627   2000
## 9582    974600461   2000
## 9583    974600108   2000
## 9584    974597659   2000
## 9585    974600108   2000
## 9586    974599773   2000
## 9587    974600108   2000
## 9588    974600728   2000
## 9589    974599861   2000
## 9590    974600572   2000
## 9591    974600012   2000
## 9592    974599543   2000
## 9593    974600600   2000
## 9594    974600491   2000
## 9595    974599923   2000
## 9596    974600198   2000
## 9597    974600526   2000
## 9598    974599074   2000
## 9599    974599434   2000
## 9600    974600144   2000
## 9601    974600286   2000
## 9602    974599773   2000
## 9603    974599597   2000
## 9604    974600366   2000
## 9605    974600526   2000
## 9606    974600198   2000
## 9607    974600703   2000
## 9608    974600656   2000
## 9609    974600626   2000
## 9610    974598446   2000
## 9611    854711770   1997
## 9612    854711804   1997
## 9613    854711916   1997
## 9614    854713177   1997
## 9615    854711772   1997
## 9616    854711941   1997
## 9617    854714394   1997
## 9618    854714246   1997
## 9619    854714498   1997
## 9620    854712006   1997
## 9621    854714394   1997
## 9622    854711772   1997
## 9623    854711958   1997
## 9624    854711958   1997
## 9625    854711941   1997
## 9626    854711771   1997
## 9627    854711830   1997
## 9628    854711884   1997
## 9629    854713313   1997
## 9630    854711804   1997
## 9631    854711771   1997
## 9632    854714367   1997
## 9633    854714394   1997
## 9634    854715870   1997
## 9635    854711862   1997
## 9636    854713313   1997
## 9637    854713176   1997
## 9638    854715905   1997
## 9639    854714200   1997
## 9640    854714227   1997
## 9641    854714471   1997
## 9642    854714367   1997
## 9643    854713176   1997
## 9644    854713245   1997
## 9645    854714394   1997
## 9646    854714282   1997
## 9647    854714201   1997
## 9648    854713245   1997
## 9649    854713313   1997
## 9650    854714201   1997
## 9651    854714421   1997
## 9652    854715906   1997
## 9653    854714498   1997
## 9654    854713245   1997
## 9655    854715906   1997
## 9656    854715869   1997
## 9657    854714302   1997
## 9658    854714283   1997
## 9659    854713245   1997
## 9660    854715870   1997
## 9661    854714498   1997
## 9662    854714246   1997
## 9663    854713245   1997
## 9664    854714439   1997
## 9665    854714227   1997
## 9666    854713313   1997
## 9667    854714315   1997
## 9668    854714246   1997
## 9669    854713245   1997
## 9670    854713177   1997
## 9671    854714302   1997
## 9672    854713177   1997
## 9673    854714282   1997
## 9674    854714201   1997
## 9675    854713176   1997
## 9676    854714282   1997
## 9677    854714470   1997
## 9678    854713175   1997
## 9679    854715905   1997
## 9680    854714246   1997
## 9681    854714421   1997
## 9682    854715870   1997
## 9683    854711916   1997
## 9684    854714367   1997
## 9685    854712026   1997
## 9686    854714201   1997
## 9687    854711862   1997
## 9688    854711941   1997
## 9689    854711862   1997
## 9690    854711771   1997
## 9691    854712060   1997
## 9692    854711830   1997
## 9693    854712785   1997
## 9694    854711978   1997
## 9695    854711916   1997
## 9696    854711830   1997
## 9697    854715869   1997
## 9698    854711916   1997
## 9699    854711884   1997
## 9700    854711916   1997
## 9701    854711804   1997
## 9702    854711770   1997
## 9703    854711884   1997
## 9704    854711770   1997
## 9705    854711830   1997
## 9706    854711830   1997
## 9707    854712006   1997
## 9708    854711916   1997
## 9709    854714367   1997
## 9710    854714227   1997
## 9711    854711804   1997
## 9712    854713313   1997
## 9713    854714302   1997
## 9714   1194741818   2007
## 9715   1249809905   2009
## 9716   1249808221   2009
## 9717   1194743603   2007
## 9718   1219476836   2008
## 9719   1249808197   2009
## 9720   1219476825   2008
## 9721   1194741632   2007
## 9722   1219477266   2008
## 9723   1194741556   2007
## 9724   1249807893   2009
## 9725   1219476842   2008
## 9726   1194740982   2007
## 9727   1219476819   2008
## 9728   1194741805   2007
## 9729   1194741627   2007
## 9730   1219477297   2008
## 9731   1194741800   2007
## 9732   1219477374   2008
## 9733   1194743787   2007
## 9734   1194741795   2007
## 9735   1194741615   2007
## 9736   1249809470   2009
## 9737   1249807905   2009
## 9738   1249809424   2009
## 9739   1202605433   2008
## 9740   1202605475   2008
## 9741   1249807876   2009
## 9742   1219474844   2008
## 9743   1194741164   2007
## 9744   1194741234   2007
## 9745   1194742690   2007
## 9746   1219474919   2008
## 9747   1194743811   2007
## 9748   1194742498   2007
## 9749   1194741096   2007
## 9750   1202605483   2008
## 9751   1194742491   2007
## 9752   1202605399   2008
## 9753   1194741774   2007
## 9754   1194740988   2007
## 9755   1194741536   2007
## 9756   1194742462   2007
## 9757   1202605808   2008
## 9758   1249807861   2009
## 9759   1194741068   2007
## 9760   1249808142   2009
## 9761   1249809645   2009
## 9762   1249807853   2009
## 9763   1194741082   2007
## 9764   1194743774   2007
## 9765   1194743647   2007
## 9766   1249809495   2009
## 9767   1194741764   2007
## 9768   1219474926   2008
## 9769   1219474934   2008
## 9770   1249808034   2009
## 9771   1194741124   2007
## 9772   1249808019   2009
## 9773   1249808396   2009
## 9774   1194741217   2007
## 9775   1219477365   2008
## 9776   1194741010   2007
## 9777   1194742454   2007
## 9778   1249808373   2009
## 9779   1194742620   2007
## 9780   1194742605   2007
## 9781   1249807840   2009
## 9782   1249809623   2009
## 9783   1194740954   2007
## 9784   1249808007   2009
## 9785   1249807997   2009
## 9786   1194741025   2007
## 9787   1194743883   2007
## 9788   1194741198   2007
## 9789   1194740965   2007
## 9790   1194741383   2007
## 9791   1194741735   2007
## 9792   1194741657   2007
## 9793   1194744286   2007
## 9794   1249809788   2009
## 9795   1194741498   2007
## 9796   1219474681   2008
## 9797   1249807965   2009
## 9798   1194744599   2007
## 9799   1194742561   2007
## 9800   1194741843   2007
## 9801   1249807951   2009
## 9802   1194741508   2007
## 9803   1194742532   2007
## 9804   1249807943   2009
## 9805   1194744481   2007
## 9806   1194744514   2007
## 9807   1249807928   2009
## 9808   1194741828   2007
## 9809   1202605771   2008
## 9810   1194744593   2007
## 9811   1194741643   2007
## 9812   1194741823   2007
## 9813   1194741503   2007
## 9814   1194741682   2007
## 9815   1194744465   2007
## 9816   1194742776   2007
## 9817   1249808534   2009
## 9818   1346824858   2012
## 9819   1249808268   2009
## 9820   1194742060   2007
## 9821   1194741870   2007
## 9822   1255153332   2009
## 9823   1194741909   2007
## 9824   1219474832   2008
## 9825   1194742092   2007
## 9826   1194742744   2007
## 9827   1292732192   2010
## 9828   1346824829   2012
## 9829   1194744606   2007
## 9830   1194741316   2007
## 9831   1194744575   2007
## 9832   1194744487   2007
## 9833   1249809801   2009
## 9834   1194744213   2007
## 9835   1202605564   2008
## 9836   1219474721   2008
## 9837   1366831110   2013
## 9838   1366831701   2013
## 9839   1366831985   2013
## 9840   1366831735   2013
## 9841   1366831572   2013
## 9842   1366831626   2013
## 9843   1366831972   2013
## 9844   1366831788   2013
## 9845   1366831962   2013
## 9846   1366831564   2013
## 9847   1348153664   2012
## 9848   1366831100   2013
## 9849   1366830848   2013
## 9850   1366831253   2013
## 9851   1366831102   2013
## 9852   1366831615   2013
## 9853   1366831266   2013
## 9854   1348153638   2012
## 9855   1366831784   2013
## 9856   1366831290   2013
## 9857   1366830854   2013
## 9858   1366831610   2013
## 9859   1366831598   2013
## 9860   1366831275   2013
## 9861   1366831955   2013
## 9862   1366831566   2013
## 9863   1366831769   2013
## 9864   1366831679   2013
## 9865   1348153757   2012
## 9866   1348153603   2012
## 9867   1366831950   2013
## 9868   1366831980   2013
## 9869   1366831595   2013
## 9870   1366830860   2013
## 9871   1366831588   2013
## 9872   1366831245   2013
## 9873   1348153569   2012
## 9874   1366831673   2013
## 9875   1366831619   2013
## 9876   1366831288   2013
## 9877   1366831929   2013
## 9878   1366831711   2013
## 9879   1366831778   2013
## 9880   1366831752   2013
## 9881   1366831268   2013
## 9882   1366831811   2013
## 9883   1348153818   2012
## 9884   1348153829   2012
## 9885   1348153964   2012
## 9886   1366831892   2013
## 9887   1366831968   2013
## 9888   1366831744   2013
## 9889   1348153794   2012
## 9890   1366831662   2013
## 9891   1366831695   2013
## 9892   1366831713   2013
## 9893   1366831681   2013
## 9894   1366832014   2013
## 9895   1348153841   2012
## 9896   1348153799   2012
## 9897   1348153863   2012
## 9898   1366831871   2013
## 9899   1366831839   2013
## 9900   1348153974   2012
## 9901   1366831576   2013
## 9902   1366831823   2013
## 9903   1366831687   2013
## 9904   1366831855   2013
## 9905   1366831289   2013
## 9906   1348153821   2012
## 9907   1366831708   2013
## 9908   1366831993   2013
## 9909   1366831574   2013
## 9910   1366831715   2013
## 9911   1366831670   2013
## 9912   1366831604   2013
## 9913   1366831756   2013
## 9914   1366831801   2013
## 9915   1348154058   2012
## 9916   1348155188   2012
## 9917   1348154113   2012
## 9918    853954235   1997
## 9919    853954323   1997
## 9920    853954323   1997
## 9921    853954323   1997
## 9922    853954486   1997
## 9923    853954577   1997
## 9924    853954402   1997
## 9925    853954235   1997
## 9926    853954235   1997
## 9927    853954729   1997
## 9928    853954234   1997
## 9929    853954322   1997
## 9930    853954401   1997
## 9931    853954401   1997
## 9932    853954813   1997
## 9933    853954235   1997
## 9934    853954893   1997
## 9935    853954577   1997
## 9936    853954729   1997
## 9937    853954485   1997
## 9938    853954893   1997
## 9939    853954893   1997
## 9940    853954813   1997
## 9941    853954814   1997
## 9942    853954814   1997
## 9943    853954235   1997
## 9944    853954577   1997
## 9945    853954401   1997
## 9946    853954577   1997
## 9947    853954323   1997
## 9948    853954485   1997
## 9949    853954235   1997
## 9950    853954323   1997
## 9951    853954323   1997
## 9952    853954322   1997
## 9953    853954656   1997
## 9954    853955020   1997
## 9955    853954485   1997
## 9956    853954656   1997
## 9957    853954485   1997
## 9958    853954656   1997
## 9959    853954235   1997
## 9960    853954402   1997
## 9961    853954485   1997
## 9962    853954814   1997
## 9963    853954729   1997
## 9964    853954729   1997
## 9965    853954814   1997
## 9966    853954893   1997
## 9967    853954893   1997
## 9968    853954656   1997
## 9969    853954401   1997
## 9970    853954656   1997
## 9971    853954577   1997
## 9972    853954577   1997
## 9973    853954323   1997
## 9974    853954235   1997
## 9975    853954485   1997
## 9976    853954577   1997
## 9977    853954813   1997
## 9978    853954729   1997
## 9979    853954656   1997
## 9980    853954485   1997
## 9981    853954234   1997
## 9982    853954402   1997
## 9983    853954893   1997
## 9984    853954401   1997
## 9985    853954401   1997
## 9986    853955020   1997
## 9987    853954577   1997
## 9988    853954577   1997
## 9989    853954814   1997
## 9990    853954656   1997
## 9991    853954813   1997
## 9992    853955020   1997
## 9993    853954656   1997
## 9994    853955020   1997
## 9995    853954893   1997
## 9996    853955020   1997
## 9997    853955020   1997
## 9998    853954401   1997
## 9999    853954485   1997
## 10000   853955020   1997
## 10001   974659023   2000
## 10002   974659502   2000
## 10003   974659502   2000
## 10004   974659646   2000
## 10005   974659502   2000
## 10006   974659502   2000
## 10007   974659023   2000
## 10008   974659502   2000
## 10009   974659023   2000
## 10010   974659408   2000
## 10011   974659023   2000
## 10012   974658951   2000
## 10013   974659408   2000
## 10014   974659023   2000
## 10015   974659502   2000
## 10016   974659408   2000
## 10017   974659502   2000
## 10018   974659646   2000
## 10019   974659408   2000
## 10020   974659593   2000
## 10021   974659408   2000
## 10022   974659696   2000
## 10023   974659408   2000
## 10024  1461778737   2016
## 10025  1461784724   2016
## 10026  1461784392   2016
## 10027  1461778528   2016
## 10028  1461784365   2016
## 10029  1461784569   2016
## 10030  1461778719   2016
## 10031  1461778730   2016
## 10032  1461778524   2016
## 10033  1461778698   2016
## 10034  1461778746   2016
## 10035  1461778534   2016
## 10036  1461784459   2016
## 10037  1461778557   2016
## 10038  1461784432   2016
## 10039  1461784481   2016
## 10040  1461778530   2016
## 10041  1461784591   2016
## 10042  1461784596   2016
## 10043  1461784428   2016
## 10044  1461778739   2016
## 10045  1461784475   2016
## 10046  1461784499   2016
## 10047  1461784671   2016
## 10048  1461778560   2016
## 10049  1461778537   2016
## 10050  1461784640   2016
## 10051  1461784644   2016
## 10052  1461784494   2016
## 10053  1461778751   2016
## 10054  1461784424   2016
## 10055  1461784642   2016
## 10056  1461778617   2016
## 10057  1461784345   2016
## 10058  1461784445   2016
## 10059  1461778611   2016
## 10060  1461778692   2016
## 10061  1461784613   2016
## 10062  1461784742   2016
## 10063  1461784405   2016
## 10064  1461784348   2016
## 10065  1461784637   2016
## 10066  1461778563   2016
## 10067  1461784599   2016
## 10068  1461778600   2016
## 10069  1461778760   2016
## 10070  1461784035   2016
## 10071  1461783967   2016
## 10072  1461783836   2016
## 10073  1461783926   2016
## 10074  1461784442   2016
## 10075  1461783857   2016
## 10076  1461783923   2016
## 10077  1461784071   2016
## 10078  1461783913   2016
## 10079  1461784048   2016
## 10080  1461783915   2016
## 10081  1461783834   2016
## 10082  1461783988   2016
## 10083  1461784652   2016
## 10084  1461784367   2016
## 10085  1461784065   2016
## 10086  1461784011   2016
## 10087  1461783905   2016
## 10088  1461783845   2016
## 10089  1461783869   2016
## 10090  1461783841   2016
## 10091  1461783980   2016
## 10092  1461778717   2016
## 10093  1461783881   2016
## 10094  1461783975   2016
## 10095  1461783872   2016
## 10096  1461784578   2016
## 10097  1461783889   2016
## 10098  1461783865   2016
## 10099  1461784050   2016
## 10100  1461784730   2016
## 10101  1461778734   2016
## 10102  1461783920   2016
## 10103  1461783992   2016
## 10104  1461784606   2016
## 10105  1461783846   2016
## 10106  1461783983   2016
## 10107  1461783838   2016
## 10108  1461784616   2016
## 10109  1461784038   2016
## 10110  1461783871   2016
## 10111  1461783970   2016
## 10112  1461784533   2016
## 10113  1461783960   2016
## 10114  1461778706   2016
## 10115  1461784490   2016
## 10116  1461783867   2016
## 10117  1461783898   2016
## 10118  1461784661   2016
## 10119  1461784505   2016
## 10120  1461784473   2016
## 10121  1461783972   2016
## 10122  1461784759   2016
## 10123  1461783887   2016
## 10124  1461784763   2016
## 10125  1461783896   2016
## 10126  1461784702   2016
## 10127  1461784573   2016
## 10128  1461784364   2016
## 10129  1461784711   2016
## 10130  1461784674   2016
## 10131  1461783948   2016
## 10132  1461784566   2016
## 10133  1461784585   2016
## 10134  1461783951   2016
## 10135  1461784370   2016
## 10136  1461783936   2016
## 10137  1464722870   2016
## 10138  1464722875   2016
## 10139  1464723963   2016
## 10140  1461783977   2016
## 10141  1464723975   2016
## 10142  1464722915   2016
## 10143  1464722908   2016
## 10144  1464723971   2016
## 10145  1464722892   2016
## 10146  1464723952   2016
## 10147  1464723990   2016
## 10148  1464723959   2016
## 10149  1461784655   2016
## 10150  1464723939   2016
## 10151  1464723955   2016
## 10152  1464722900   2016
## 10153  1461783945   2016
## 10154  1461784582   2016
## 10155  1464723948   2016
## 10156  1461784515   2016
## 10157  1464723984   2016
## 10158  1464723945   2016
## 10159  1464722872   2016
## 10160  1464722878   2016
## 10161  1464722868   2016
## 10162  1464723967   2016
## 10163  1461784650   2016
## 10164  1461778714   2016
## 10165  1461784352   2016
## 10166  1461778757   2016
## 10167  1461784770   2016
## 10168  1461784524   2016
## 10169  1461783955   2016
## 10170  1461784744   2016
## 10171  1461784013   2016
## 10172  1461778742   2016
## 10173  1461784029   2016
## 10174  1461783938   2016
## 10175  1461784053   2016
## 10176  1461778701   2016
## 10177  1461784665   2016
## 10178  1461784766   2016
## 10179  1461784449   2016
## 10180  1461784739   2016
## 10181  1461784720   2016
## 10182  1461784574   2016
## 10183  1461784563   2016
## 10184  1461784704   2016
## 10185  1461784358   2016
## 10186  1461778763   2016
## 10187  1461784402   2016
## 10188  1461784545   2016
## 10189  1461784734   2016
## 10190  1461784588   2016
## 10191  1461778748   2016
## 10192  1461784567   2016
## 10193  1461784749   2016
## 10194  1461784700   2016
## 10195  1461784437   2016
## 10196  1461784698   2016
## 10197  1461784548   2016
## 10198  1461784455   2016
## 10199  1461778724   2016
## 10200  1461784387   2016
## 10201  1461784379   2016
## 10202  1461784707   2016
## 10203  1461784342   2016
## 10204  1461778744   2016
## 10205  1461784635   2016
## 10206  1461778755   2016
## 10207  1461778642   2016
## 10208  1461778637   2016
## 10209  1461778586   2016
## 10210  1461778626   2016
## 10211  1461784183   2016
## 10212  1461784683   2016
## 10213  1461778632   2016
## 10214  1461784162   2016
## 10215  1303464840   2011
## 10216  1255595527   2009
## 10217  1337593559   2012
## 10218  1255591764   2009
## 10219  1255593501   2009
## 10220  1255508530   2009
## 10221  1255501766   2009
## 10222  1255597031   2009
## 10223  1337593272   2012
## 10224  1255591860   2009
## 10225  1354676110   2012
## 10226  1255606447   2009
## 10227  1339744008   2012
## 10228  1255505029   2009
## 10229  1255596165   2009
## 10230  1255503386   2009
## 10231  1255608841   2009
## 10232  1255502804   2009
## 10233  1470720095   2016
## 10234  1304411684   2011
## 10235  1255587668   2009
## 10236  1255851405   2009
## 10237  1255596154   2009
## 10238  1406172306   2014
## 10239  1312496282   2011
## 10240  1255843848   2009
## 10241  1255742407   2009
## 10242  1255508598   2009
## 10243  1255502716   2009
## 10244  1348568488   2012
## 10245  1255596442   2009
## 10246  1283940446   2010
## 10247  1286701620   2010
## 10248  1281668214   2010
## 10249  1255608880   2009
## 10250  1255506790   2009
## 10251  1255505013   2009
## 10252  1255608532   2009
## 10253  1256018505   2009
## 10254  1255587428   2009
## 10255  1255503714   2009
## 10256  1255587153   2009
## 10257  1255850905   2009
## 10258  1470720332   2016
## 10259  1255593273   2009
## 10260  1256030057   2009
## 10261  1266049987   2010
## 10262  1406171781   2014
## 10263  1255503373   2009
## 10264  1456039608   2016
## 10265  1304411592   2011
## 10266  1411810971   2014
## 10267  1264835146   2010
## 10268  1406171065   2014
## 10269  1255508717   2009
## 10270  1437711199   2015
## 10271  1255585670   2009
## 10272  1378180010   2013
## 10273  1255506785   2009
## 10274  1369513505   2013
## 10275  1470720392   2016
## 10276  1255508202   2009
## 10277  1398568231   2014
## 10278  1304411765   2011
## 10279  1255844977   2009
## 10280  1255597661   2009
## 10281  1306826434   2011
## 10282  1255502790   2009
## 10283  1290089214   2010
## 10284  1256029728   2009
## 10285  1255502795   2009
## 10286  1260597912   2009
## 10287  1311319243   2011
## 10288  1255849588   2009
## 10289  1255609029   2009
## 10290  1285414310   2010
## 10291  1255593485   2009
## 10292  1255501759   2009
## 10293  1256029720   2009
## 10294  1470720434   2016
## 10295  1255509139   2009
## 10296  1255844449   2009
## 10297  1303464829   2011
## 10298  1255947440   2009
## 10299  1457597096   2016
## 10300  1255597004   2009
## 10301  1256030041   2009
## 10302  1255594331   2009
## 10303  1280749457   2010
## 10304  1255501745   2009
## 10305  1255597090   2009
## 10306  1255596999   2009
## 10307  1311318950   2011
## 10308  1255502945   2009
## 10309  1304412304   2011
## 10310  1255508982   2009
## 10311  1304412090   2011
## 10312  1289377723   2010
## 10313  1261572758   2009
## 10314  1304411724   2011
## 10315  1296460183   2011
## 10316  1255608640   2009
## 10317  1255503366   2009
## 10318  1255507407   2009
## 10319  1429168457   2015
## 10320  1287294447   2010
## 10321  1255503176   2009
## 10322  1255845005   2009
## 10323  1272354528   2010
## 10324  1470720213   2016
## 10325  1470896986   2016
## 10326  1261572653   2009
## 10327  1255593983   2009
## 10328  1470720182   2016
## 10329  1255595145   2009
## 10330  1255850852   2009
## 10331  1255844407   2009
## 10332  1255508022   2009
## 10333  1255844972   2009
## 10334  1311651342   2011
## 10335  1255502930   2009
## 10336  1255596533   2009
## 10337  1470719734   2016
## 10338  1255608112   2009
## 10339  1303464853   2011
## 10340  1255595915   2009
## 10341  1255594321   2009
## 10342  1255504505   2009
## 10343  1281307627   2010
## 10344  1255844780   2009
## 10345  1303464866   2011
## 10346  1255844932   2009
## 10347  1256030046   2009
## 10348  1255502799   2009
## 10349  1398568108   2014
## 10350  1314943073   2011
## 10351  1470720316   2016
## 10352  1255845002   2009
## 10353  1256030164   2009
## 10354  1255506758   2009
## 10355  1470720292   2016
## 10356  1470720380   2016
## 10357  1256018210   2009
## 10358  1422335223   2015
## 10359  1256029754   2009
## 10360  1448953137   2015
## 10361  1255608540   2009
## 10362  1256030591   2009
## 10363  1264405840   2010
## 10364  1470720372   2016
## 10365  1255588345   2009
## 10366  1283940897   2010
## 10367  1470720219   2016
## 10368  1255862403   2009
## 10369  1457596624   2016
## 10370  1255591836   2009
## 10371  1304411666   2011
## 10372  1398568202   2014
## 10373  1255606772   2009
## 10374  1348567967   2012
## 10375  1418785517   2014
## 10376  1256030174   2009
## 10377  1255500962   2009
## 10378  1255584436   2009
## 10379  1255849976   2009
## 10380  1255584412   2009
## 10381  1255608074   2009
## 10382  1315979781   2011
## 10383  1255501638   2009
## 10384  1255501801   2009
## 10385  1255607784   2009
## 10386  1470720223   2016
## 10387  1255594607   2009
## 10388  1303464880   2011
## 10389  1279948049   2010
## 10390  1337594349   2012
## 10391  1256030424   2009
## 10392  1255595609   2009
## 10393  1282638702   2010
## 10394  1255508391   2009
## 10395  1255743474   2009
## 10396  1255609078   2009
## 10397  1255506740   2009
## 10398  1255947496   2009
## 10399  1255608654   2009
## 10400  1255844891   2009
## 10401  1255506732   2009
## 10402  1255595979   2009
## 10403  1411355622   2014
## 10404  1255504951   2009
## 10405  1255595920   2009
## 10406  1255609131   2009
## 10407  1262660448   2010
## 10408  1255502910   2009
## 10409  1255508109   2009
## 10410  1255588350   2009
## 10411  1255596971   2009
## 10412  1280749995   2010
## 10413  1266581514   2010
## 10414  1255503156   2009
## 10415  1255502779   2009
## 10416  1255506722   2009
## 10417  1255508049   2009
## 10418  1428469603   2015
## 10419  1311651122   2011
## 10420  1348568040   2012
## 10421  1255501601   2009
## 10422  1255504946   2009
## 10423  1404370293   2014
## 10424  1255844483   2009
## 10425  1255508757   2009
## 10426  1306826464   2011
## 10427  1326419215   2012
## 10428  1255502137   2009
## 10429  1339744073   2012
## 10430  1270610619   2010
## 10431  1255585464   2009
## 10432  1255506723   2009
## 10433  1255608634   2009
## 10434  1255587798   2009
## 10435  1255596621   2009
## 10436  1464751206   2016
## 10437  1432525150   2015
## 10438  1260977284   2009
## 10439  1256030107   2009
## 10440  1255502888   2009
## 10441  1378180019   2013
## 10442  1296952002   2011
## 10443  1255502784   2009
## 10444  1280749968   2010
## 10445  1268808237   2010
## 10446  1409452810   2014
## 10447  1267705648   2010
## 10448  1255591754   2009
## 10449  1337593473   2012
## 10450  1285479373   2010
## 10451  1302152229   2011
## 10452  1255845402   2009
## 10453  1255606220   2009
## 10454  1312496151   2011
## 10455  1255587965   2009
## 10456  1306826403   2011
## 10457  1255506712   2009
## 10458  1255591944   2009
## 10459  1267705570   2010
## 10460  1255593963   2009
## 10461  1255501914   2009
## 10462  1255501035   2009
## 10463  1255500860   2009
## 10464  1348567962   2012
## 10465  1411355614   2014
## 10466  1255593958   2009
## 10467  1255844967   2009
## 10468  1255608055   2009
## 10469  1437103984   2015
## 10470  1275964521   2010
## 10471  1470720209   2016
## 10472  1470719755   2016
## 10473  1255502875   2009
## 10474  1261667770   2009
## 10475  1350192487   2012
## 10476  1281668223   2010
## 10477  1255594430   2009
## 10478  1255502774   2009
## 10479  1255591429   2009
## 10480  1255596358   2009
## 10481  1296730230   2011
## 10482  1319337546   2011
## 10483  1255500918   2009
## 10484  1464751433   2016
## 10485  1398567944   2014
## 10486  1255501084   2009
## 10487  1255586834   2009
## 10488  1409205998   2014
## 10489  1255508548   2009
## 10490  1255609223   2009
## 10491  1304411853   2011
## 10492  1255502015   2009
## 10493  1369206214   2013
## 10494  1255843935   2009
## 10495  1255591360   2009
## 10496  1255509163   2009
## 10497  1256030207   2009
## 10498  1255597293   2009
## 10499  1255597075   2009
## 10500  1303464772   2011
## 10501  1331374345   2012
## 10502  1255607723   2009
## 10503  1460517728   2016
## 10504  1287294418   2010
## 10505  1406172081   2014
## 10506  1256028479   2009
## 10507  1255586362   2009
## 10508  1255596053   2009
## 10509  1255589046   2009
## 10510  1255597219   2009
## 10511  1255501843   2009
## 10512  1255844622   2009
## 10513  1255591424   2009
## 10514  1311319246   2011
## 10515  1255849480   2009
## 10516  1255609000   2009
## 10517  1295875283   2011
## 10518  1255508776   2009
## 10519  1457597070   2016
## 10520  1255596853   2009
## 10521  1255507319   2009
## 10522  1255509032   2009
## 10523  1255596139   2009
## 10524  1255502769   2009
## 10525  1255845284   2009
## 10526  1256552857   2009
## 10527  1255502846   2009
## 10528  1255584591   2009
## 10529  1354676118   2012
## 10530  1255593683   2009
## 10531  1255844646   2009
## 10532  1255503138   2009
## 10533  1406172191   2014
## 10534  1256030295   2009
## 10535  1257239744   2009
## 10536  1296951840   2011
## 10537  1369514567   2013
## 10538  1255596509   2009
## 10539  1255588837   2009
## 10540  1272354630   2010
## 10541  1470720028   2016
## 10542  1255589167   2009
## 10543  1437709517   2015
## 10544  1255849486   2009
## 10545  1255594560   2009
## 10546  1437709512   2015
## 10547  1411355597   2014
## 10548  1369206547   2013
## 10549  1381126672   2013
## 10550  1255591355   2009
## 10551  1255596503   2009
## 10552  1255591350   2009
## 10553  1272355372   2010
## 10554  1255506671   2009
## 10555  1255584855   2009
## 10556  1431232609   2015
## 10557  1306826395   2011
## 10558  1331019382   2012
## 10559  1255845278   2009
## 10560  1255591608   2009
## 10561  1255742786   2009
## 10562  1464751442   2016
## 10563  1255502851   2009
## 10564  1255608727   2009
## 10565  1262056348   2009
## 10566  1262056355   2009
## 10567  1306826463   2011
## 10568  1437103998   2015
## 10569  1406171880   2014
## 10570  1255502841   2009
## 10571  1255595963   2009
## 10572  1255584964   2009
## 10573  1411452543   2014
## 10574  1255595957   2009
## 10575  1255844560   2009
## 10576  1303464933   2011
## 10577  1470720309   2016
## 10578  1255608711   2009
## 10579  1304412471   2011
## 10580  1304411648   2011
## 10581  1255503604   2009
## 10582  1255502836   2009
## 10583  1378180034   2013
## 10584  1303464871   2011
## 10585  1282545301   2010
## 10586  1255844937   2009
## 10587  1279948023   2010
## 10588  1437711085   2015
## 10589  1406171622   2014
## 10590  1256027987   2009
## 10591  1255500870   2009
## 10592  1306826405   2011
## 10593  1406171334   2014
## 10594  1255506668   2009
## 10595  1261656604   2009
## 10596  1324634524   2011
## 10597  1303464923   2011
## 10598  1456038593   2016
## 10599  1261656636   2009
## 10600  1300947005   2011
## 10601  1364100089   2013
## 10602  1255844084   2009
## 10603  1255596126   2009
## 10604  1418786181   2014
## 10605  1261656735   2009
## 10606  1255589018   2009
## 10607  1256030336   2009
## 10608  1255591395   2009
## 10609  1259037014   2009
## 10610  1255584576   2009
## 10611  1304411810   2011
## 10612  1311318965   2011
## 10613  1267705661   2010
## 10614  1411876538   2014
## 10615  1337593722   2012
## 10616  1348568537   2012
## 10617  1259040565   2009
## 10618  1255502833   2009
## 10619  1267705538   2010
## 10620  1255593907   2009
## 10621  1255502070   2009
## 10622  1255844988   2009
## 10623  1288697512   2010
## 10624  1255587644   2009
## 10625  1430027806   2015
## 10626  1256030202   2009
## 10627  1255608781   2009
## 10628  1441522263   2015
## 10629  1255501972   2009
## 10630  1255502470   2009
## 10631  1256028414   2009
## 10632  1255742368   2009
## 10633  1255594309   2009
## 10634  1430034069   2015
## 10635  1369513448   2013
## 10636  1255504073   2009
## 10637  1454042117   2016
## 10638  1431234283   2015
## 10639  1381126595   2013
## 10640  1255584959   2009
## 10641  1255593426   2009
## 10642  1255593420   2009
## 10643  1255586748   2009
## 10644  1275964632   2010
## 10645  1255608040   2009
## 10646  1255507270   2009
## 10647  1255844856   2009
## 10648  1255844835   2009
## 10649  1255591400   2009
## 10650  1427170335   2015
## 10651  1427170376   2015
## 10652  1255597066   2009
## 10653  1315969124   2011
## 10654  1255850016   2009
## 10655  1255593663   2009
## 10656  1255608035   2009
## 10657  1261487007   2009
## 10658  1266665318   2010
## 10659  1381045859   2013
## 10660  1441522359   2015
## 10661  1369205876   2013
## 10662  1474615000   2016
## 10663  1255844950   2009
## 10664  1274265898   2010
## 10665  1255508410   2009
## 10666  1406171915   2014
## 10667  1406171911   2014
## 10668  1256030469   2009
## 10669  1255508246   2009
## 10670  1469772944   2016
## 10671  1255586425   2009
## 10672  1275964192   2010
## 10673  1282543426   2010
## 10674  1437709524   2015
## 10675  1296460015   2011
## 10676  1427170447   2015
## 10677  1255844787   2009
## 10678  1429168678   2015
## 10679  1256030461   2009
## 10680  1369514518   2013
## 10681  1464751460   2016
## 10682  1255591345   2009
## 10683  1256944354   2009
## 10684  1437709506   2015
## 10685  1255596353   2009
## 10686  1279948065   2010
## 10687  1357552985   2013
## 10688  1255597830   2009
## 10689  1255502120   2009
## 10690  1255844776   2009
## 10691  1255586467   2009
## 10692  1255501979   2009
## 10693  1312496216   2011
## 10694  1255591385   2009
## 10695  1404370203   2014
## 10696  1255947627   2009
## 10697  1282545089   2010
## 10698  1282545112   2010
## 10699  1255587084   2009
## 10700  1472698650   2016
## 10701  1256019289   2009
## 10702  1304412607   2011
## 10703  1411876466   2014
## 10704  1369513635   2013
## 10705  1259325836   2009
## 10706  1257229357   2009
## 10707  1255508479   2009
## 10708  1255591390   2009
## 10709  1255501853   2009
## 10710  1273043702   2010
## 10711  1255844915   2009
## 10712  1255588083   2009
## 10713  1255596937   2009
## 10714  1314942833   2011
## 10715  1255844727   2009
## 10716  1348568560   2012
## 10717  1255506106   2009
## 10718  1303465749   2011
## 10719  1390127454   2014
## 10720  1255849777   2009
## 10721  1348568747   2012
## 10722  1255509017   2009
## 10723  1464508137   2016
## 10724  1456038664   2016
## 10725  1411355584   2014
## 10726  1348568388   2012
## 10727  1296952036   2011
## 10728  1470985538   2016
## 10729  1427170200   2015
## 10730  1369205974   2013
## 10731  1357552974   2013
## 10732  1470729030   2016
## 10733  1431584423   2015
## 10734  1255849720   2009
## 10735  1309081686   2011
## 10736  1432523188   2015
## 10737  1255586415   2009
## 10738  1337593255   2012
## 10739  1255607717   2009
## 10740  1262056591   2009
## 10741  1334396063   2012
## 10742  1406172160   2014
## 10743  1437710007   2015
## 10744  1261487189   2009
## 10745  1475124698   2016
## 10746  1312496325   2011
## 10747  1255596722   2009
## 10748  1303464905   2011
## 10749  1296730204   2011
## 10750  1255509153   2009
## 10751  1337594327   2012
## 10752  1255503566   2009
## 10753  1255500985   2009
## 10754  1256018249   2009
## 10755  1339743989   2012
## 10756  1267705250   2010
## 10757  1474615285   2016
## 10758  1274265884   2010
## 10759  1255743364   2009
## 10760  1257228558   2009
## 10761  1255606347   2009
## 10762  1255845019   2009
## 10763  1255845250   2009
## 10764  1303466268   2011
## 10765  1255608868   2009
## 10766  1255850836   2009
## 10767  1255508823   2009
## 10768  1281668156   2010
## 10769  1267705304   2010
## 10770  1304411787   2011
## 10771  1256028073   2009
## 10772  1255500852   2009
## 10773  1256030417   2009
## 10774  1255505507   2009
## 10775  1331375405   2012
## 10776  1475124680   2016
## 10777  1255607878   2009
## 10778  1255507224   2009
## 10779  1255504005   2009
## 10780  1369514944   2013
## 10781  1355922434   2012
## 10782  1279948734   2010
## 10783  1261572674   2009
## 10784  1255596921   2009
## 10785  1369513307   2013
## 10786  1281668274   2010
## 10787  1255742725   2009
## 10788  1255592969   2009
## 10789  1255586543   2009
## 10790  1255586548   2009
## 10791  1255597612   2009
## 10792  1264493967   2010
## 10793  1264751860   2010
## 10794  1422335547   2015
## 10795  1320810501   2011
## 10796  1255597607   2009
## 10797  1320810452   2011
## 10798  1282543451   2010
## 10799  1395987897   2014
## 10800  1303466242   2011
## 10801  1255506079   2009
## 10802  1255594378   2009
## 10803  1255588774   2009
## 10804  1255588780   2009
## 10805  1255584828   2009
## 10806  1289045177   2010
## 10807  1255588769   2009
## 10808  1255591380   2009
## 10809  1255608746   2009
## 10810  1255595938   2009
## 10811  1470896634   2016
## 10812  1469772991   2016
## 10813  1255844919   2009
## 10814  1466320273   2016
## 10815  1287294312   2010
## 10816  1258367323   2009
## 10817  1258367400   2009
## 10818  1259389532   2009
## 10819  1464750953   2016
## 10820  1370057557   2013
## 10821  1464751470   2016
## 10822  1418461988   2014
## 10823  1343119731   2012
## 10824  1255596218   2009
## 10825  1259325859   2009
## 10826  1255608143   2009
## 10827  1255594368   2009
## 10828  1255597273   2009
## 10829  1255844941   2009
## 10830  1296459580   2011
## 10831  1255591794   2009
## 10832  1255608592   2009
## 10833  1255608249   2009
## 10834  1257229260   2009
## 10835  1435472709   2015
## 10836  1261573299   2009
## 10837  1255596214   2009
## 10838  1255742451   2009
## 10839  1255859036   2009
## 10840  1255844895   2009
## 10841  1262826535   2010
## 10842  1304411842   2011
## 10843  1255504813   2009
## 10844  1312496194   2011
## 10845  1304411604   2011
## 10846  1255742998   2009
## 10847  1255586357   2009
## 10848  1255849638   2009
## 10849  1431234143   2015
## 10850  1427170187   2015
## 10851  1255608483   2009
## 10852  1255503033   2009
## 10853  1369513586   2013
## 10854  1255596840   2009
## 10855  1255591337   2009
## 10856  1257229345   2009
## 10857  1274265922   2010
## 10858  1396156423   2014
## 10859  1255508282   2009
## 10860  1255584991   2009
## 10861  1255742448   2009
## 10862  1255597278   2009
## 10863  1255845245   2009
## 10864  1255594363   2009
## 10865  1256030443   2009
## 10866  1309414189   2011
## 10867  1256029491   2009
## 10868  1255608233   2009
## 10869  1456038994   2016
## 10870  1255609092   2009
## 10871  1283169534   2010
## 10872  1268808234   2010
## 10873  1255845024   2009
## 10874  1437710061   2015
## 10875  1418462162   2014
## 10876  1255844881   2009
## 10877  1255849756   2009
## 10878  1255508007   2009
## 10879  1255596198   2009
## 10880  1255503937   2009
## 10881  1255608478   2009
## 10882  1255592082   2009
## 10883  1255506569   2009
## 10884  1255596703   2009
## 10885  1411452469   2014
## 10886  1256019294   2009
## 10887  1303464731   2011
## 10888  1257228611   2009
## 10889  1255849364   2009
## 10890  1255845363   2009
## 10891  1255596208   2009
## 10892  1255507158   2009
## 10893  1429168542   2015
## 10894  1255502625   2009
## 10895  1257229023   2009
## 10896  1369515350   2013
## 10897  1255609063   2009
## 10898  1255844800   2009
## 10899  1255596203   2009
## 10900  1255506563   2009
## 10901  1457597545   2016
## 10902  1337593133   2012
## 10903  1428469574   2015
## 10904  1457596520   2016
## 10905  1427170203   2015
## 10906  1255608385   2009
## 10907  1456038999   2016
## 10908  1256944285   2009
## 10909  1427168121   2015
## 10910  1370057531   2013
## 10911  1306826427   2011
## 10912  1255593845   2009
## 10913  1441514881   2015
## 10914  1255596109   2009
## 10915  1448953321   2015
## 10916  1427170442   2015
## 10917  1406172273   2014
## 10918  1296952145   2011
## 10919  1255505425   2009
## 10920  1418462025   2014
## 10921  1255594496   2009
## 10922  1282545187   2010
## 10923  1456039121   2016
## 10924  1255742990   2009
## 10925  1448953270   2015
## 10926  1255845239   2009
## 10927  1409205919   2014
## 10928  1255596106   2009
## 10929  1304411492   2011
## 10930  1255608222   2009
## 10931  1255591538   2009
## 10932  1255594879   2009
## 10933  1255606781   2009
## 10934  1255509080   2009
## 10935  1255505417   2009
## 10936  1255594188   2009
## 10937  1255844809   2009
## 10938  1427170169   2015
## 10939  1272355409   2010
## 10940  1352959815   2012
## 10941  1306826998   2011
## 10942  1295875347   2011
## 10943  1259411120   2009
## 10944  1448953284   2015
## 10945  1255608487   2009
## 10946  1255607838   2009
## 10947  1312496381   2011
## 10948  1456039352   2016
## 10949  1331374381   2012
## 10950  1255844964   2009
## 10951  1255844032   2009
## 10952  1272354473   2010
## 10953  1398567966   2014
## 10954  1255591532   2009
## 10955  1406172104   2014
## 10956  1255504768   2009
## 10957  1306826438   2011
## 10958  1255595932   2009
## 10959  1304412210   2011
## 10960  1315969212   2011
## 10961  1256030678   2009
## 10962  1255592071   2009
## 10963  1255742674   2009
## 10964  1264835164   2010
## 10965  1255586200   2009
## 10966  1273217119   2010
## 10967  1255606569   2009
## 10968  1369514322   2013
## 10969  1262569280   2010
## 10970  1256030657   2009
## 10971  1456039054   2016
## 10972  1406171597   2014
## 10973  1441514214   2015
## 10974  1448953334   2015
## 10975  1435472845   2015
## 10976  1304411962   2011
## 10977  1255844887   2009
## 10978  1387082402   2013
## 10979  1448953194   2015
## 10980  1255593557   2009
## 10981  1395987921   2014
## 10982  1460517505   2016
## 10983  1456039090   2016
## 10984  1306065234   2011
## 10985  1348568293   2012
## 10986  1255591376   2009
## 10987  1255591889   2009
## 10988  1304411695   2011
## 10989  1256017396   2009
## 10990  1255503508   2009
## 10991  1255503893   2009
## 10992  1256030597   2009
## 10993  1255608382   2009
## 10994  1456039073   2016
## 10995  1304412191   2011
## 10996  1255849610   2009
## 10997  1255609142   2009
## 10998  1255742979   2009
## 10999  1255503888   2009
## 11000  1456039270   2016
## 11001  1255606114   2009
## 11002  1337594371   2012
## 11003  1257164626   2009
## 11004  1256029172   2009
## 11005  1255587508   2009
## 11006  1431406170   2015
## 11007  1348568766   2012
## 11008  1427170483   2015
## 11009  1255850919   2009
## 11010  1255742663   2009
## 11011  1255584902   2009
## 11012  1337591896   2012
## 11013  1255595533   2009
## 11014  1311653407   2011
## 11015  1255587123   2009
## 11016  1256029535   2009
## 11017  1256029550   2009
## 11018  1255588990   2009
## 11019  1255588995   2009
## 11020  1406172244   2014
## 11021  1255501720   2009
## 11022  1312496408   2011
## 11023  1406172340   2014
## 11024  1338530999   2012
## 11025  1255507053   2009
## 11026  1456039316   2016
## 11027  1456039164   2016
## 11028  1306826436   2011
## 11029  1309761451   2011
## 11030  1279948760   2010
## 11031  1255503878   2009
## 11032  1285311199   2010
## 11033  1266581545   2010
## 11034  1255608120   2009
## 11035  1255503493   2009
## 11036  1406172365   2014
## 11037  1411355691   2014
## 11038  1369513550   2013
## 11039  1255503002   2009
## 11040  1255844960   2009
## 11041  1456039319   2016
## 11042  1456039235   2016
## 11043  1255849679   2009
## 11044  1255504698   2009
## 11045  1432523137   2015
## 11046  1304411827   2011
## 11047  1255586932   2009
## 11048  1255503222   2009
## 11049  1315969183   2011
## 11050  1417081916   2014
## 11051  1369514779   2013
## 11052  1255596285   2009
## 11053  1255591371   2009
## 11054  1255584888   2009
## 11055  1417081929   2014
## 11056  1309414298   2011
## 11057  1369515372   2013
## 11058  1411451683   2014
## 11059  1255501671   2009
## 11060  1255843864   2009
## 11061  1257229292   2009
## 11062  1255503487   2009
## 11063  1255509006   2009
## 11064  1255595377   2009
## 11065  1337594385   2012
## 11066  1369513547   2013
## 11067  1257229160   2009
## 11068  1255589036   2009
## 11069  1427170631   2015
## 11070  1464508095   2016
## 11071  1256029804   2009
## 11072  1256028643   2009
## 11073  1460519359   2016
## 11074  1255742653   2009
## 11075  1255502597   2009
## 11076  1337594381   2012
## 11077  1255587133   2009
## 11078  1348567959   2012
## 11079  1378179956   2013
## 11080  1273216574   2010
## 11081  1471332878   2016
## 11082  1457596987   2016
## 11083  1304411442   2011
## 11084  1289045130   2010
## 11085  1255502997   2009
## 11086  1448953300   2015
## 11087  1255591789   2009
## 11088  1295874873   2011
## 11089  1471332819   2016
## 11090  1264405832   2010
## 11091  1257228185   2009
## 11092  1260877884   2009
## 11093  1384069892   2013
## 11094  1369514741   2013
## 11095  1464508090   2016
## 11096  1257222707   2009
## 11097  1255503478   2009
## 11098  1255596893   2009
## 11099  1441513227   2015
## 11100  1255593542   2009
## 11101  1255588164   2009
## 11102  1255607831   2009
## 11103  1279947114   2010
## 11104  1378179792   2013
## 11105  1429168553   2015
## 11106  1337593385   2012
## 11107  1261656678   2009
## 11108  1454042575   2016
## 11109  1256029303   2009
## 11110  1411451412   2014
## 11111  1337594037   2012
## 11112  1348568786   2012
## 11113  1261486850   2009
## 11114  1311654117   2011
## 11115  1256030436   2009
## 11116  1255594326   2009
## 11117  1255503465   2009
## 11118  1456039242   2016
## 11119  1337593642   2012
## 11120  1255849692   2009
## 11121  1289046716   2010
## 11122  1255594489   2009
## 11123  1474614697   2016
## 11124  1255607425   2009
## 11125  1255591876   2009
## 11126  1257164378   2009
## 11127  1255596889   2009
## 11128  1288095855   2010
## 11129  1255591517   2009
## 11130  1255508137   2009
## 11131  1260977308   2009
## 11132  1304412434   2011
## 11133  1255503212   2009
## 11134  1255844992   2009
## 11135  1411810861   2014
## 11136  1255585779   2009
## 11137  1255606539   2009
## 11138  1255743175   2009
## 11139  1255595662   2009
## 11140  1257418583   2009
## 11141  1255850712   2009
## 11142  1352959898   2012
## 11143  1256559095   2009
## 11144  1279948092   2010
## 11145  1308113349   2011
## 11146  1287575320   2010
## 11147  1441513891   2015
## 11148  1255503838   2009
## 11149  1255586520   2009
## 11150  1423801745   2015
## 11151  1273217198   2010
## 11152  1448953187   2015
## 11153  1435474813   2015
## 11154  1456039436   2016
## 11155  1406172202   2014
## 11156  1303464741   2011
## 11157  1255742433   2009
## 11158  1255589173   2009
## 11159  1312496376   2011
## 11160  1456039039   2016
## 11161  1256029799   2009
## 11162  1256030665   2009
## 11163  1255844984   2009
## 11164  1411451654   2014
## 11165  1427170338   2015
## 11166  1255596174   2009
## 11167  1304412427   2011
## 11168  1456039261   2016
## 11169  1255742327   2009
## 11170  1348568288   2012
## 11171  1398568522   2014
## 11172  1456039172   2016
## 11173  1304411558   2011
## 11174  1255502811   2009
## 11175  1256017177   2009
## 11176  1256019169   2009
## 11177  1381126678   2013
## 11178  1255593134   2009
## 11179  1255608196   2009
## 11180  1255843862   2009
## 11181  1255588939   2009
## 11182  1441522129   2015
## 11183  1255588886   2009
## 11184  1255594684   2009
## 11185  1348568180   2012
## 11186  1464751323   2016
## 11187  1448953173   2015
## 11188  1296460230   2011
## 11189  1255591865   2009
## 11190  1475989020   2016
## 11191  1255592030   2009
## 11192  1304412144   2011
## 11193  1404370289   2014
## 11194  1255844819   2009
## 11195  1255597036   2009
## 11196  1256019079   2009
## 11197  1255742417   2009
## 11198  1255851182   2009
## 11199  1398568001   2014
## 11200  1359617333   2013
## 11201  1406172493   2014
## 11202  1347441796   2012
## 11203  1456038539   2016
## 11204  1469772963   2016
## 11205  1432788454   2015
## 11206  1437710037   2015
## 11207  1317177146   2011
## 11208  1255587770   2009
## 11209  1427170642   2015
## 11210  1427170496   2015
## 11211  1255589582   2009
## 11212  1359974275   2013
## 11213  1427170460   2015
## 11214  1423801920   2015
## 11215  1369206010   2013
## 11216  1255590127   2009
## 11217  1255501883   2009
## 11218  1319337509   2011
## 11219  1474263883   2016
## 11220  1256029681   2009
## 11221  1295874824   2011
## 11222  1282543364   2010
## 11223  1337593382   2012
## 11224  1255596884   2009
## 11225  1456039398   2016
## 11226  1350192496   2012
## 11227  1431234249   2015
## 11228  1255589041   2009
## 11229  1255947240   2009
## 11230  1427170205   2015
## 11231  1427168079   2015
## 11232  1319337521   2011
## 11233  1262838012   2010
## 11234  1422335423   2015
## 11235  1255844444   2009
## 11236  1381126659   2013
## 11237  1457597312   2016
## 11238  1469772912   2016
## 11239  1255596762   2009
## 11240  1406171407   2014
## 11241  1255844160   2009
## 11242  1354679048   2012
## 11243  1255587749   2009
## 11244  1255743146   2009
## 11245  1295591221   2011
## 11246  1255596758   2009
## 11247  1255595655   2009
## 11248  1337593113   2012
## 11249  1289046552   2010
## 11250  1469772672   2016
## 11251  1255508160   2009
## 11252  1255845334   2009
## 11253  1255843857   2009
## 11254  1301481269   2011
## 11255  1255587163   2009
## 11256  1259323569   2009
## 11257  1273217166   2010
## 11258  1255595926   2009
## 11259  1256018225   2009
## 11260  1345798859   2012
## 11261  1255507534   2009
## 11262  1255607814   2009
## 11263  1369513542   2013
## 11264  1257228496   2009
## 11265  1255591870   2009
## 11266  1255844803   2009
## 11267  1309414233   2011
## 11268  1255506326   2009
## 11269  1255596097   2009
## 11270  1255845337   2009
## 11271  1255508666   2009
## 11272  1255592012   2009
## 11273  1255845325   2009
## 11274  1289377714   2010
## 11275  1331809803   2012
## 11276  1256029685   2009
## 11277  1457320124   2016
## 11278  1256028349   2009
## 11279  1369513527   2013
## 11280  1255505821   2009
## 11281  1256029392   2009
## 11282  1348567955   2012
## 11283  1312496387   2011
## 11284  1411355658   2014
## 11285  1417081946   2014
## 11286  1257228521   2009
## 11287  1255503794   2009
## 11288  1255844003   2009
## 11289  1256030828   2009
## 11290  1454043394   2016
## 11291  1304412896   2011
## 11292  1255588757   2009
## 11293  1337593212   2012
## 11294  1256030820   2009
## 11295  1284880889   2010
## 11296  1255502976   2009
## 11297  1315969272   2011
## 11298  1304412870   2011
## 11299  1309414323   2011
## 11300  1302152616   2011
## 11301  1288782721   2010
## 11302  1256559191   2009
## 11303  1288096054   2010
## 11304  1427170230   2015
## 11305  1257229414   2009
## 11306  1454042655   2016
## 11307  1261217204   2009
## 11308  1255742925   2009
## 11309  1255591703   2009
## 11310  1255844928   2009
## 11311  1255742920   2009
## 11312  1255508977   2009
## 11313  1355922906   2012
## 11314  1369515354   2013
## 11315  1255587403   2009
## 11316  1255584710   2009
## 11317  1255586255   2009
## 11318  1454042857   2016
## 11319  1362112175   2013
## 11320  1411355653   2014
## 11321  1418784900   2014
## 11322  1255844905   2009
## 11323  1255593521   2009
## 11324  1303465599   2011
## 11325  1255504580   2009
## 11326  1255586400   2009
## 11327  1256027956   2009
## 11328  1296460156   2011
## 11329  1255502085   2009
## 11330  1255506853   2009
## 11331  1466320346   2016
## 11332  1345798905   2012
## 11333  1255587385   2009
## 11334  1369514062   2013
## 11335  1457597587   2016
## 11336  1354676065   2012
## 11337  1268806416   2010
## 11338  1256030711   2009
## 11339  1354676002   2012
## 11340  1422335258   2015
## 11341  1255586478   2009
## 11342  1259837617   2009
## 11343  1255502965   2009
## 11344  1257164355   2009
## 11345  1256030617   2009
## 11346  1306826934   2011
## 11347  1441514296   2015
## 11348  1286699648   2010
## 11349  1256030870   2009
## 11350  1255588747   2009
## 11351  1255586233   2009
## 11352  1255596877   2009
## 11353  1255845225   2009
## 11354  1337593162   2012
## 11355  1441514086   2015
## 11356  1255501684   2009
## 11357  1337593096   2012
## 11358  1309414319   2011
## 11359  1454042794   2016
## 11360  1255592002   2009
## 11361  1441513955   2015
## 11362  1256029140   2009
## 11363  1255502108   2009
## 11364  1315969200   2011
## 11365  1348568291   2012
## 11366  1255502672   2009
## 11367  1257228572   2009
## 11368  1255591698   2009
## 11369  1255742621   2009
## 11370  1255503784   2009
## 11371  1304411411   2011
## 11372  1256018404   2009
## 11373  1274526720   2010
## 11374  1384070152   2013
## 11375  1311653909   2011
## 11376  1257228718   2009
## 11377  1256018025   2009
## 11378  1312496372   2011
## 11379  1256029937   2009
## 11380  1256017323   2009
## 11381  1255947527   2009
## 11382  1255588933   2009
## 11383  1270610590   2010
## 11384  1260273754   2009
## 11385  1255503405   2009
## 11386  1323247224   2011
## 11387  1255844923   2009
## 11388  1285673360   2010
## 11389  1312496234   2011
## 11390  1312496164   2011
## 11391  1457598523   2016
## 11392  1256030803   2009
## 11393  1369514644   2013
## 11394  1264751836   2010
## 11395  1281668271   2010
## 11396  1302604152   2011
## 11397  1255844816   2009
## 11398  1259837542   2009
## 11399  1255501962   2009
## 11400  1256029998   2009
## 11401  1255508012   2009
## 11402  1255504199   2009
## 11403  1423801583   2015
## 11404  1286794236   2010
## 11405  1464751381   2016
## 11406  1255596747   2009
## 11407  1255505761   2009
## 11408  1255502960   2009
## 11409  1457598052   2016
## 11410  1255596552   2009
## 11411  1473060722   2016
## 11412  1255508166   2009
## 11413  1256559213   2009
## 11414  1255594676   2009
## 11415  1255844900   2009
## 11416  1255586222   2009
## 11417  1255592007   2009
## 11418  1255844632   2009
## 11419  1255596555   2009
## 11420  1255586134   2009
## 11421  1255501589   2009
## 11422  1454042795   2016
## 11423  1471759060   2016
## 11424  1255586976   2009
## 11425  1259837601   2009
## 11426  1345798871   2012
## 11427  1427170416   2015
## 11428  1255501647   2009
## 11429  1435472881   2015
## 11430  1454042671   2016
## 11431  1255589062   2009
## 11432  1454043041   2016
## 11433  1255597366   2009
## 11434  1255596548   2009
## 11435  1255606270   2009
## 11436  1255591493   2009
## 11437  1257228964   2009
## 11438  1454042917   2016
## 11439  1255607031   2009
## 11440  1255503396   2009
## 11441  1255508072   2009
## 11442  1255591693   2009
## 11443  1255593506   2009
## 11444  1255844138   2009
## 11445  1255503392   2009
## 11446  1259323222   2009
## 11447  1437711118   2015
## 11448  1259323854   2009
## 11449  1255505738   2009
## 11450  1288697624   2010
## 11451  1304411580   2011
## 11452  1457597334   2016
## 11453  1255843975   2009
## 11454  1369514646   2013
## 11455  1457318292   2016
## 11456  1255588727   2009
## 11457  1255844953   2009
## 11458  1256559067   2009
## 11459  1430034154   2015
## 11460  1384069863   2013
## 11461  1255587337   2009
## 11462  1255504546   2009
## 11463  1266309913   2010
## 11464  1255587902   2009
## 11465  1256018282   2009
## 11466  1255742863   2009
## 11467  1255586420   2009
## 11468  1337593619   2012
## 11469  1259325788   2009
## 11470  1454042733   2016
## 11471  1441513491   2015
## 11472  1255589051   2009
## 11473  1296209705   2011
## 11474  1312495981   2011
## 11475  1267705501   2010
## 11476  1435472671   2015
## 11477  1255606209   2009
## 11478  1418785824   2014
## 11479  1262826563   2010
## 11480  1406172474   2014
## 11481  1329122482   2012
## 11482  1460517652   2016
## 11483  1255506219   2009
## 11484  1432523734   2015
## 11485  1255851305   2009
## 11486  1255501824   2009
## 11487  1441513660   2015
## 11488  1427170617   2015
## 11489  1334134888   2012
## 11490  1255509258   2009
## 11491  1273231862   2010
## 11492  1423801587   2015
## 11493  1369515334   2013
## 11494  1272351330   2010
## 11495  1259037238   2009
## 11496  1315969142   2011
## 11497  1256944127   2009
## 11498  1454042683   2016
## 11499  1255508067   2009
## 11500  1257228665   2009
## 11501  1454042767   2016
## 11502  1289995423   2010
## 11503  1348567926   2012
## 11504  1284880892   2010
## 11505  1255851331   2009
## 11506  1261217423   2009
## 11507  1255584542   2009
## 11508  1260280418   2009
## 11509  1262471588   2010
## 11510  1256639055   2009
## 11511  1476086345   2016
## 11512  1255850946   2009
## 11513  1275964203   2010
## 11514  1312496413   2011
## 11515  1255505699   2009
## 11516  1319336907   2011
## 11517  1257228032   2009
## 11518  1263197192   2010
## 11519  1312496343   2011
## 11520  1406172090   2014
## 11521  1264835071   2010
## 11522  1268808266   2010
## 11523  1457597657   2016
## 11524  1280749920   2010
## 11525  1262487606   2010
## 11526  1262490949   2010
## 11527  1257418656   2009
## 11528  1369514017   2013
## 11529  1260877856   2009
## 11530  1262660477   2010
## 11531  1441513896   2015
## 11532  1311319024   2011
## 11533  1437711220   2015
## 11534  1279948740   2010
## 11535  1279948672   2010
## 11536  1261487370   2009
## 11537  1331019387   2012
## 11538  1270610716   2010
## 11539  1279948662   2010
## 11540  1273212258   2010
## 11541  1270626393   2010
## 11542  1369205637   2013
## 11543  1284788822   2010
## 11544  1432523566   2015
## 11545  1279947051   2010
## 11546  1288782501   2010
## 11547  1471493475   2016
## 11548  1288697300   2010
## 11549  1277244869   2010
## 11550  1287639123   2010
## 11551  1274171831   2010
## 11552  1279948640   2010
## 11553  1286184933   2010
## 11554  1293747419   2010
## 11555  1293747383   2010
## 11556  1454042956   2016
## 11557  1286699464   2010
## 11558  1295874843   2011
## 11559  1289045492   2010
## 11560  1369514012   2013
## 11561  1290170524   2010
## 11562  1288262844   2010
## 11563  1454041525   2016
## 11564  1280207089   2010
## 11565  1337594376   2012
## 11566  1334134881   2012
## 11567  1354676128   2012
## 11568  1296730408   2011
## 11569  1470450406   2016
## 11570  1281668137   2010
## 11571  1286364707   2010
## 11572  1334396237   2012
## 11573  1337593917   2012
## 11574  1290923031   2010
## 11575  1476081506   2016
## 11576  1457597559   2016
## 11577  1304412705   2011
## 11578  1288095832   2010
## 11579  1295875330   2011
## 11580  1293747396   2010
## 11581  1303283044   2011
## 11582  1320810425   2011
## 11583  1457597487   2016
## 11584  1437709564   2015
## 11585  1300946992   2011
## 11586  1303464661   2011
## 11587  1294806059   2011
## 11588  1406172509   2014
## 11589  1331889469   2012
## 11590  1312496405   2011
## 11591  1301291585   2011
## 11592  1471332805   2016
## 11593  1411355319   2014
## 11594  1311318839   2011
## 11595  1374355498   2013
## 11596  1323226011   2011
## 11597  1411452415   2014
## 11598  1311318846   2011
## 11599  1315968775   2011
## 11600  1311651421   2011
## 11601  1308222797   2011
## 11602  1431584367   2015
## 11603  1315968748   2011
## 11604  1348567976   2012
## 11605  1317176746   2011
## 11606  1384069356   2013
## 11607  1369515303   2013
## 11608  1330240107   2012
## 11609  1348567873   2012
## 11610  1316757783   2011
## 11611  1319336798   2011
## 11612  1457597592   2016
## 11613  1320810413   2011
## 11614  1319336835   2011
## 11615  1317176741   2011
## 11616  1312496402   2011
## 11617  1345798952   2012
## 11618  1357553094   2013
## 11619  1320810254   2011
## 11620  1324634215   2011
## 11621  1325543528   2012
## 11622  1323857570   2011
## 11623  1431406208   2015
## 11624  1329461095   2012
## 11625  1337593575   2012
## 11626  1324634205   2011
## 11627  1329122460   2012
## 11628  1345799028   2012
## 11629  1325685214   2012
## 11630  1329461077   2012
## 11631  1430706568   2015
## 11632  1348568449   2012
## 11633  1337593368   2012
## 11634  1345798866   2012
## 11635  1326315218   2012
## 11636  1334396206   2012
## 11637  1457597425   2016
## 11638  1329986644   2012
## 11639  1448953095   2015
## 11640  1411452403   2014
## 11641  1345799036   2012
## 11642  1334396050   2012
## 11643  1348568088   2012
## 11644  1339743740   2012
## 11645  1348568138   2012
## 11646  1347441732   2012
## 11647  1352959770   2012
## 11648  1350192390   2012
## 11649  1352959766   2012
## 11650  1351406444   2012
## 11651  1339743735   2012
## 11652  1351406414   2012
## 11653  1357552636   2013
## 11654  1437711595   2015
## 11655  1398570058   2014
## 11656  1398570053   2014
## 11657  1355736140   2012
## 11658  1437711059   2015
## 11659  1398570027   2014
## 11660  1398570019   2014
## 11661  1345799054   2012
## 11662  1358144551   2013
## 11663  1437711174   2015
## 11664  1398570077   2014
## 11665  1348568386   2012
## 11666  1398570066   2014
## 11667  1398569999   2014
## 11668  1398569927   2014
## 11669  1437711131   2015
## 11670  1354675993   2012
## 11671  1359358796   2013
## 11672  1348568337   2012
## 11673  1441514105   2015
## 11674  1454043300   2016
## 11675  1354675986   2012
## 11676  1369515292   2013
## 11677  1374355461   2013
## 11678  1374355516   2013
## 11679  1374355492   2013
## 11680  1357552147   2013
## 11681  1357552193   2013
## 11682  1369206362   2013
## 11683  1369205846   2013
## 11684  1374355488   2013
## 11685  1357552149   2013
## 11686  1437710825   2015
## 11687  1355735865   2012
## 11688  1427170660   2015
## 11689  1364009534   2013
## 11690  1357552186   2013
## 11691  1369206612   2013
## 11692  1362112152   2013
## 11693  1370057754   2013
## 11694  1437709595   2015
## 11695  1369205631   2013
## 11696  1437104737   2015
## 11697  1409452760   2014
## 11698  1411452577   2014
## 11699  1378179817   2013
## 11700  1454043331   2016
## 11701  1395986174   2014
## 11702  1427170676   2015
## 11703  1454041530   2016
## 11704  1369205577   2013
## 11705  1374355582   2013
## 11706  1437104788   2015
## 11707  1409452741   2014
## 11708  1437104521   2015
## 11709  1457596601   2016
## 11710  1454042845   2016
## 11711  1406171923   2014
## 11712  1457597113   2016
## 11713  1437104561   2015
## 11714  1418462292   2014
## 11715  1427170398   2015
## 11716  1395986150   2014
## 11717  1395986058   2014
## 11718  1398567572   2014
## 11719  1457597402   2016
## 11720  1395986019   2014
## 11721  1411452394   2014
## 11722  1411355255   2014
## 11723  1398567543   2014
## 11724  1390015641   2014
## 11725  1404370211   2014
## 11726  1427170708   2015
## 11727  1395986157   2014
## 11728  1395986160   2014
## 11729  1404370215   2014
## 11730  1418461939   2014
## 11731  1406172291   2014
## 11732  1457597419   2016
## 11733  1454043018   2016
## 11734  1427170706   2015
## 11735  1398570071   2014
## 11736  1437711587   2015
## 11737  1411452354   2014
## 11738  1435472609   2015
## 11739  1410578415   2014
## 11740  1437104540   2015
## 11741  1427170717   2015
## 11742  1417081790   2014
## 11743  1422335272   2015
## 11744  1411452818   2014
## 11745  1409452259   2014
## 11746  1411452812   2014
## 11747  1432523533   2015
## 11748  1404370180   2014
## 11749  1409452254   2014
## 11750  1457597194   2016
## 11751  1411355333   2014
## 11752  1454043389   2016
## 11753  1423801674   2015
## 11754  1454043328   2016
## 11755  1411355268   2014
## 11756  1454043334   2016
## 11757  1454043365   2016
## 11758  1427168087   2015
## 11759  1423801598   2015
## 11760  1422335674   2015
## 11761  1427168057   2015
## 11762  1422335277   2015
## 11763  1454042867   2016
## 11764  1457597515   2016
## 11765  1409205899   2014
## 11766  1418462083   2014
## 11767  1427170549   2015
## 11768  1457597407   2016
## 11769  1437104690   2015
## 11770  1418462052   2014
## 11771  1431406217   2015
## 11772  1457597605   2016
## 11773  1417081980   2014
## 11774  1448953211   2015
## 11775  1423801646   2015
## 11776  1417593332   2014
## 11777  1423801600   2015
## 11778  1432523152   2015
## 11779  1437711208   2015
## 11780  1437711165   2015
## 11781  1418462066   2014
## 11782  1432788703   2015
## 11783  1454042838   2016
## 11784  1457597665   2016
## 11785  1457597352   2016
## 11786  1454042923   2016
## 11787  1431232449   2015
## 11788  1454042873   2016
## 11789  1454042779   2016
## 11790  1431233322   2015
## 11791  1431233272   2015
## 11792  1435472640   2015
## 11793  1454041548   2016
## 11794  1466320057   2016
## 11795  1466320222   2016
## 11796  1456038880   2016
## 11797  1474255427   2016
## 11798  1437711226   2015
## 11799  1457597882   2016
## 11800  1460517538   2016
## 11801  1437709660   2015
## 11802  1432523179   2015
## 11803  1466320172   2016
## 11804  1448953050   2015
## 11805  1466320258   2016
## 11806  1470720695   2016
## 11807  1437711245   2015
## 11808  1460517533   2016
## 11809  1457597863   2016
## 11810  1456038901   2016
## 11811  1456038576   2016
## 11812  1471332767   2016
## 11813  1469772876   2016
## 11814  1456038516   2016
## 11815  1457332236   2016
## 11816  1466320302   2016
## 11817  1466320393   2016
## 11818  1476080611   2016
## 11819  1460517484   2016
## 11820  1470719796   2016
## 11821  1469772608   2016
## 11822  1473060620   2016
## 11823  1474255459   2016
## 11824  1474255532   2016
## 11825   942704394   1999
## 11826   942705457   1999
## 11827   942705568   1999
## 11828   942703730   1999
## 11829   942705318   1999
## 11830   942703172   1999
## 11831   942705457   1999
## 11832   942705608   1999
## 11833   942705304   1999
## 11834   942703172   1999
## 11835   942703569   1999
## 11836   942705568   1999
## 11837   942703337   1999
## 11838   942703678   1999
## 11839   942705648   1999
## 11840   942703678   1999
## 11841   942705496   1999
## 11842   942705496   1999
## 11843   942705381   1999
## 11844   942705413   1999
## 11845   942703172   1999
## 11846   942703172   1999
## 11847   942705533   1999
## 11848   942705382   1999
## 11849   942705232   1999
## 11850   942704332   1999
## 11851   942704723   1999
## 11852   942702876   1999
## 11853   942703038   1999
## 11854   942705496   1999
## 11855   942705608   1999
## 11856   942703038   1999
## 11857   942703038   1999
## 11858   942703474   1999
## 11859   942705708   1999
## 11860   942704005   1999
## 11861   942704863   1999
## 11862   942704616   1999
## 11863   942703337   1999
## 11864   942705899   1999
## 11865   942704668   1999
## 11866   942704192   1999
## 11867   942705678   1999
## 11868   942705303   1999
## 11869   942703093   1999
## 11870   942705648   1999
## 11871   942702937   1999
## 11872   942702971   1999
## 11873   942703538   1999
## 11874  1165607201   2006
## 11875  1143047700   2006
## 11876  1165607192   2006
## 11877  1143049641   2006
## 11878  1143048074   2006
## 11879  1143049571   2006
## 11880  1165607377   2006
## 11881  1165597501   2006
## 11882  1143047643   2006
## 11883  1143048140   2006
## 11884  1143048117   2006
## 11885  1143047471   2006
## 11886  1143049541   2006
## 11887  1165607346   2006
## 11888  1143047458   2006
## 11889  1143047880   2006
## 11890  1143047478   2006
## 11891  1165596956   2006
## 11892  1143048687   2006
## 11893  1143048797   2006
## 11894  1165607264   2006
## 11895  1143047916   2006
## 11896  1143047668   2006
## 11897  1143047463   2006
## 11898  1143048961   2006
## 11899  1143048947   2006
## 11900  1165596837   2006
## 11901  1143048856   2006
## 11902  1143049098   2006
## 11903  1143049193   2006
## 11904  1143049074   2006
## 11905  1165607749   2006
## 11906  1143048735   2006
## 11907  1165607773   2006
## 11908  1143047705   2006
## 11909  1143047928   2006
## 11910  1143048680   2006
## 11911  1165607559   2006
## 11912  1165607472   2006
## 11913  1143048840   2006
## 11914  1143048887   2006
## 11915  1143048986   2006
## 11916  1143048691   2006
## 11917  1165596756   2006
## 11918  1143048977   2006
## 11919  1143047503   2006
## 11920  1143048836   2006
## 11921  1165607261   2006
## 11922  1165607757   2006
## 11923  1143047710   2006
## 11924  1165607737   2006
## 11925  1165607211   2006
## 11926  1165607206   2006
## 11927  1143048849   2006
## 11928  1165596933   2006
## 11929  1143048844   2006
## 11930  1165607763   2006
## 11931  1143048004   2006
## 11932  1143048064   2006
## 11933  1165607144   2006
## 11934  1143048164   2006
## 11935  1143048156   2006
## 11936  1143047444   2006
## 11937  1143049592   2006
## 11938  1143047448   2006
## 11939  1143048056   2006
## 11940  1165607364   2006
## 11941  1143047624   2006
## 11942  1143048523   2006
## 11943  1143047921   2006
## 11944  1143048053   2006
## 11945  1143048090   2006
## 11946  1143047874   2006
## 11947  1143047679   2006
## 11948  1143047997   2006
## 11949  1143048070   2006
## 11950  1143048175   2006
## 11951  1165607133   2006
## 11952  1143047685   2006
## 11953  1165607636   2006
## 11954  1143048532   2006
## 11955  1165596884   2006
## 11956  1143047960   2006
## 11957  1143048305   2006
## 11958  1143047636   2006
## 11959  1143048520   2006
## 11960  1143048106   2006
## 11961  1143049630   2006
## 11962  1143048615   2006
## 11963  1143049615   2006
## 11964  1165607547   2006
## 11965  1165607066   2006
## 11966  1143048712   2006
## 11967  1143048602   2006
## 11968  1143047691   2006
## 11969  1143047689   2006
## 11970  1165596737   2006
## 11971  1143048020   2006
## 11972  1143048746   2006
## 11973  1143048172   2006
## 11974  1165607415   2006
## 11975  1143048565   2006
## 11976  1143048267   2006
## 11977  1143047896   2006
## 11978  1143049546   2006
## 11979  1143048546   2006
## 11980  1143049565   2006
## 11981  1165607272   2006
## 11982  1165596914   2006
## 11983  1143047490   2006
## 11984  1143047941   2006
## 11985  1165607230   2006
## 11986  1143048203   2006
## 11987  1143048829   2006
## 11988  1143049532   2006
## 11989  1165607291   2006
## 11990  1143048182   2006
## 11991  1143048879   2006
## 11992  1143048866   2006
## 11993  1143048659   2006
## 11994  1165607318   2006
## 11995  1143048707   2006
## 11996  1143048060   2006
## 11997  1165607360   2006
## 11998  1143049523   2006
## 11999  1143048930   2006
## 12000  1143048725   2006
## 12001  1143048192   2006
## 12002  1165607372   2006
## 12003  1165607099   2006
## 12004  1143048765   2006
## 12005  1143048629   2006
## 12006  1143048967   2006
## 12007  1143047861   2006
## 12008  1143048671   2006
## 12009  1143049061   2006
## 12010  1143048646   2006
## 12011  1165607136   2006
## 12012  1165607299   2006
## 12013  1143048773   2006
## 12014  1143048683   2006
## 12015  1165596823   2006
## 12016  1165607919   2006
## 12017  1165596874   2006
## 12018  1165607897   2006
## 12019  1194384499   2007
## 12020  1194384318   2007
## 12021  1194384313   2007
## 12022  1194384411   2007
## 12023  1194384386   2007
## 12024  1194384460   2007
## 12025  1194384373   2007
## 12026  1194384328   2007
## 12027  1194384361   2007
## 12028  1194384299   2007
## 12029  1194384353   2007
## 12030  1194384281   2007
## 12031  1194384341   2007
## 12032  1194384277   2007
## 12033  1194384275   2007
## 12034  1194384399   2007
## 12035  1194384338   2007
## 12036  1194384512   2007
## 12037  1194384470   2007
## 12038  1194384451   2007
## 12039  1163005363   2006
## 12040  1163252774   2006
## 12041  1183844529   2007
## 12042  1163013349   2006
## 12043  1163253023   2006
## 12044  1163253088   2006
## 12045  1163008777   2006
## 12046  1163252918   2006
## 12047  1163004464   2006
## 12048  1163219726   2006
## 12049  1163253105   2006
## 12050  1163013335   2006
## 12051  1183920234   2007
## 12052  1163253085   2006
## 12053  1183844506   2007
## 12054  1163286142   2006
## 12055  1163082488   2006
## 12056  1163219428   2006
## 12057  1163253082   2006
## 12058  1163253079   2006
## 12059  1163004353   2006
## 12060  1163125859   2006
## 12061  1163259531   2006
## 12062  1163006051   2006
## 12063  1163253117   2006
## 12064  1163252922   2006
## 12065  1163012798   2006
## 12066  1163012801   2006
## 12067  1163082508   2006
## 12068  1163006037   2006
## 12069  1163253047   2006
## 12070  1163253104   2006
## 12071  1163082485   2006
## 12072  1163082500   2006
## 12073  1163219321   2006
## 12074  1163006023   2006
## 12075  1163125780   2006
## 12076  1163219373   2006
## 12077  1163013353   2006
## 12078  1163013344   2006
## 12079  1163286164   2006
## 12080  1163277657   2006
## 12081  1163013330   2006
## 12082  1163006020   2006
## 12083  1183920204   2007
## 12084  1163013198   2006
## 12085  1163005103   2006
## 12086  1183920099   2007
## 12087  1163252886   2006
## 12088  1163082479   2006
## 12089  1163013341   2006
## 12090  1163013339   2006
## 12091  1163006012   2006
## 12092  1163013328   2006
## 12093  1163253015   2006
## 12094  1163253037   2006
## 12095  1183844492   2007
## 12096  1163013368   2006
## 12097  1183512581   2007
## 12098  1163253027   2006
## 12099  1163253163   2006
## 12100  1163079173   2006
## 12101  1183512477   2007
## 12102  1163004390   2006
## 12103  1163005369   2006
## 12104  1163219390   2006
## 12105  1163277702   2006
## 12106  1163004359   2006
## 12107  1183920326   2007
## 12108  1163253110   2006
## 12109  1163079436   2006
## 12110  1163252515   2006
## 12111  1163004406   2006
## 12112  1163253049   2006
## 12113  1163277603   2006
## 12114  1163012788   2006
## 12115  1183512491   2007
## 12116  1163013360   2006
## 12117  1163125789   2006
## 12118  1163082497   2006
## 12119  1163219937   2006
## 12120  1163252283   2006
## 12121  1163008790   2006
## 12122  1183920321   2007
## 12123  1163006027   2006
## 12124  1163253113   2006
## 12125  1163005217   2006
## 12126  1163013055   2006
## 12127  1163004386   2006
## 12128  1163012783   2006
## 12129  1183512498   2007
## 12130  1163125801   2006
## 12131  1163252277   2006
## 12132  1163915651   2006
## 12133  1163082678   2006
## 12134  1163006001   2006
## 12135  1163219327   2006
## 12136  1163079424   2006
## 12137  1163004479   2006
## 12138  1163079277   2006
## 12139  1163005225   2006
## 12140  1163252892   2006
## 12141  1183920197   2007
## 12142  1183920089   2007
## 12143  1163125883   2006
## 12144  1163125876   2006
## 12145  1163286102   2006
## 12146  1163253071   2006
## 12147  1183920103   2007
## 12148  1163219409   2006
## 12149  1163082518   2006
## 12150  1163277597   2006
## 12151  1183920299   2007
## 12152  1163915779   2006
## 12153  1183844513   2007
## 12154  1163252930   2006
## 12155  1163079388   2006
## 12156  1163269736   2006
## 12157  1163219656   2006
## 12158  1183844547   2007
## 12159  1163286171   2006
## 12160  1163252812   2006
## 12161  1163253127   2006
## 12162  1166027866   2006
## 12163  1183920347   2007
## 12164  1183920251   2007
## 12165  1183920333   2007
## 12166  1163082649   2006
## 12167  1183844575   2007
## 12168  1163286265   2006
## 12169  1163004544   2006
## 12170  1163915788   2006
## 12171  1183920345   2007
## 12172  1163277609   2006
## 12173  1163915709   2006
## 12174  1166027980   2006
## 12175  1166027880   2006
## 12176  1163219362   2006
## 12177  1163005101   2006
## 12178  1163259483   2006
## 12179  1163005107   2006
## 12180  1163738014   2006
## 12181  1183844537   2007
## 12182  1163252612   2006
## 12183  1163219423   2006
## 12184  1163005196   2006
## 12185  1163277646   2006
## 12186  1163277601   2006
## 12187  1163738035   2006
## 12188  1163004608   2006
## 12189  1163079154   2006
## 12190  1163738031   2006
## 12191  1184948966   2007
## 12192  1163006017   2006
## 12193  1163219366   2006
## 12194  1163219414   2006
## 12195  1163252918   2006
## 12196  1183920219   2007
## 12197  1183844561   2007
## 12198  1163125798   2006
## 12199  1166027951   2006
## 12200  1183844524   2007
## 12201  1163253120   2006
## 12202  1163253062   2006
## 12203  1163219953   2006
## 12204  1163125886   2006
## 12205  1163259854   2006
## 12206  1163013177   2006
## 12207  1163125878   2006
## 12208  1183844565   2007
## 12209  1163005335   2006
## 12210  1163004536   2006
## 12211  1163277606   2006
## 12212  1163277704   2006
## 12213  1183920193   2007
## 12214  1163005456   2006
## 12215  1163004499   2006
## 12216  1183920214   2007
## 12217  1163005080   2006
## 12218  1163259912   2006
## 12219  1163082621   2006
## 12220  1163286260   2006
## 12221  1163738069   2006
## 12222  1183920264   2007
## 12223  1163252250   2006
## 12224  1163219938   2006
## 12225  1163259527   2006
## 12226  1163265784   2006
## 12227  1166027886   2006
## 12228  1166027891   2006
## 12229  1166027895   2006
## 12230  1183844498   2007
## 12231  1183920246   2007
## 12232  1163005031   2006
## 12233  1183512502   2007
## 12234  1163219416   2006
## 12235  1163260803   2006
## 12236  1183920231   2007
## 12237  1183920227   2007
## 12238  1163006008   2006
## 12239  1163915774   2006
## 12240  1163079471   2006
## 12241  1163265859   2006
## 12242  1163265861   2006
## 12243  1163265862   2006
## 12244  1163220288   2006
## 12245  1183920122   2007
## 12246  1163004371   2006
## 12247  1163252840   2006
## 12248  1163252803   2006
## 12249  1163125809   2006
## 12250  1183920274   2007
## 12251  1163004354   2006
## 12252  1163004631   2006
## 12253  1183920127   2007
## 12254  1163346129   2006
## 12255  1163277700   2006
## 12256  1183920136   2007
## 12257  1166027898   2006
## 12258  1163125847   2006
## 12259  1163286177   2006
## 12260  1163252909   2006
## 12261  1163219953   2006
## 12262  1163633273   2006
## 12263  1163005241   2006
## 12264  1163082640   2006
## 12265  1163125785   2006
## 12266  1183920097   2007
## 12267  1183844539   2007
## 12268  1183844467   2007
## 12269  1163005117   2006
## 12270  1183920341   2007
## 12271  1163219308   2006
## 12272  1163125813   2006
## 12273  1163386523   2006
## 12274  1163006045   2006
## 12275  1183920259   2007
## 12276  1163277663   2006
## 12277  1163005522   2006
## 12278  1163004657   2006
## 12279  1183511678   2007
## 12280  1183512622   2007
## 12281  1163125818   2006
## 12282  1163277586   2006
## 12283  1166027993   2006
## 12284  1163219386   2006
## 12285  1163219717   2006
## 12286  1163219638   2006
## 12287  1163277592   2006
## 12288  1163005385   2006
## 12289  1163219317   2006
## 12290  1163005491   2006
## 12291  1183844543   2007
## 12292  1163004453   2006
## 12293  1183920262   2007
## 12294  1163082645   2006
## 12295  1163219402   2006
## 12296  1163277654   2006
## 12297  1163346143   2006
## 12298  1163259669   2006
## 12299  1163079326   2006
## 12300  1163286010   2006
## 12301  1163004488   2006
## 12302  1183844503   2007
## 12303  1163005487   2006
## 12304  1163004783   2006
## 12305  1163005091   2006
## 12306  1163219723   2006
## 12307  1163277648   2006
## 12308  1163005229   2006
## 12309  1163219298   2006
## 12310  1163259811   2006
## 12311  1163004517   2006
## 12312  1166028040   2006
## 12313  1183511703   2007
## 12314  1166028045   2006
## 12315  1166028040   2006
## 12316  1166028010   2006
## 12317  1163346052   2006
## 12318  1163346050   2006
## 12319  1163012825   2006
## 12320  1183844570   2007
## 12321  1163260633   2006
## 12322  1183511682   2007
## 12323  1163219319   2006
## 12324  1183920174   2007
## 12325  1183844557   2007
## 12326  1163259824   2006
## 12327  1163252803   2006
## 12328  1163125836   2006
## 12329  1183511991   2007
## 12330  1183511757   2007
## 12331  1163219241   2006
## 12332  1163004633   2006
## 12333  1183511779   2007
## 12334  1163219395   2006
## 12335  1163005497   2006
## 12336  1163013078   2006
## 12337  1163006062   2006
## 12338  1163386501   2006
## 12339  1163013182   2006
## 12340  1163286160   2006
## 12341  1163008703   2006
## 12342  1163079317   2006
## 12343  1163259890   2006
## 12344  1163219907   2006
## 12345  1163220283   2006
## 12346  1163005991   2006
## 12347  1163737974   2006
## 12348  1163006072   2006
## 12349  1163125866   2006
## 12350  1183511846   2007
## 12351  1163005434   2006
## 12352  1163286001   2006
## 12353  1183511648   2007
## 12354  1274051069   2010
## 12355  1274050854   2010
## 12356  1344470037   2012
## 12357  1274050782   2010
## 12358  1344469842   2012
## 12359  1274050940   2010
## 12360  1344469790   2012
## 12361  1274051508   2010
## 12362  1274050758   2010
## 12363  1274050991   2010
## 12364  1274050945   2010
## 12365  1327289203   2012
## 12366  1274046007   2010
## 12367  1274050942   2010
## 12368  1344470407   2012
## 12369  1274051011   2010
## 12370  1274050895   2010
## 12371  1274050755   2010
## 12372  1274050741   2010
## 12373  1274050827   2010
## 12374  1274050752   2010
## 12375  1274050869   2010
## 12376  1327288678   2012
## 12377  1274051738   2010
## 12378  1274050745   2010
## 12379  1274050816   2010
## 12380  1274050797   2010
## 12381  1274050750   2010
## 12382  1274050831   2010
## 12383  1328636541   2012
## 12384  1344470455   2012
## 12385  1274050785   2010
## 12386  1274050763   2010
## 12387  1274050748   2010
## 12388  1274050801   2010
## 12389  1274050821   2010
## 12390  1274051080   2010
## 12391  1274050766   2010
## 12392  1327289197   2012
## 12393  1327288505   2012
## 12394  1274051063   2010
## 12395  1274051008   2010
## 12396  1274046035   2010
## 12397  1274050989   2010
## 12398  1345676388   2012
## 12399  1274050843   2010
## 12400  1274050885   2010
## 12401  1274050792   2010
## 12402  1274050964   2010
## 12403  1327288495   2012
## 12404  1274051079   2010
## 12405  1274050770   2010
## 12406  1274050993   2010
## 12407  1274050904   2010
## 12408  1327062981   2012
## 12409  1274050852   2010
## 12410  1274050876   2010
## 12411  1274050805   2010
## 12412  1344470536   2012
## 12413  1345676342   2012
## 12414  1327288652   2012
## 12415  1274051262   2010
## 12416  1344470332   2012
## 12417  1344470035   2012
## 12418  1327289353   2012
## 12419  1274045997   2010
## 12420  1344469958   2012
## 12421  1274046052   2010
## 12422  1274051802   2010
## 12423  1274050950   2010
## 12424  1344470497   2012
## 12425  1344469730   2012
## 12426  1274051255   2010
## 12427  1274046079   2010
## 12428  1274051089   2010
## 12429  1344469988   2012
## 12430  1327288610   2012
## 12431  1344469919   2012
## 12432  1356219742   2012
## 12433  1274051084   2010
## 12434  1344470446   2012
## 12435  1274050948   2010
## 12436  1327289341   2012
## 12437  1274050845   2010
## 12438  1344470107   2012
## 12439  1344469830   2012
## 12440  1274046023   2010
## 12441  1274046061   2010
## 12442  1327288604   2012
## 12443  1274051067   2010
## 12444  1274050974   2010
## 12445  1274051253   2010
## 12446  1344470116   2012
## 12447  1344469836   2012
## 12448  1274051275   2010
## 12449  1274050826   2010
## 12450  1344470388   2012
## 12451  1344469948   2012
## 12452  1344470322   2012
## 12453  1274046142   2010
## 12454  1274052026   2010
## 12455  1328046149   2012
## 12456  1274046041   2010
## 12457  1328046208   2012
## 12458  1344470328   2012
## 12459  1274046086   2010
## 12460  1327288596   2012
## 12461  1274051581   2010
## 12462  1274050787   2010
## 12463  1327289320   2012
## 12464  1274050865   2010
## 12465  1274046002   2010
## 12466  1274050967   2010
## 12467  1344469934   2012
## 12468  1274051060   2010
## 12469  1274051281   2010
## 12470  1274050793   2010
## 12471  1327288635   2012
## 12472  1274051279   2010
## 12473  1345676411   2012
## 12474  1274050848   2010
## 12475  1344469750   2012
## 12476  1274046172   2010
## 12477  1344469913   2012
## 12478  1344470523   2012
## 12479  1344470341   2012
## 12480  1274051797   2010
## 12481  1344470469   2012
## 12482  1327288628   2012
## 12483  1274051897   2010
## 12484  1327289236   2012
## 12485  1327288622   2012
## 12486  1274046121   2010
## 12487  1344470577   2012
## 12488  1274050886   2010
## 12489  1344470313   2012
## 12490  1327288585   2012
## 12491  1344469943   2012
## 12492  1327289233   2012
## 12493  1327289228   2012
## 12494  1274050970   2010
## 12495  1274051784   2010
## 12496  1344530161   2012
## 12497  1327063029   2012
## 12498  1344472522   2012
## 12499  1344469805   2012
## 12500  1344471126   2012
## 12501  1333307515   2012
## 12502  1327288577   2012
## 12503  1274050983   2010
## 12504  1344470392   2012
## 12505  1274051829   2010
## 12506  1344470351   2012
## 12507  1344470343   2012
## 12508  1327288572   2012
## 12509  1327288563   2012
## 12510  1274051637   2010
## 12511  1274050984   2010
## 12512  1327288556   2012
## 12513  1327288550   2012
## 12514  1274050890   2010
## 12515  1344469968   2012
## 12516  1344470491   2012
## 12517  1344470449   2012
## 12518  1344470026   2012
## 12519  1344470349   2012
## 12520  1274046093   2010
## 12521  1356229145   2012
## 12522  1327288541   2012
## 12523  1344470443   2012
## 12524  1344530365   2012
## 12525  1274051518   2010
## 12526  1274051757   2010
## 12527  1327063019   2012
## 12528  1333307847   2012
## 12529  1274050863   2010
## 12530  1274051748   2010
## 12531  1344470040   2012
## 12532  1344470309   2012
## 12533  1274051759   2010
## 12534  1274051563   2010
## 12535  1274051086   2010
## 12536  1344530435   2012
## 12537  1344470149   2012
## 12538  1344469825   2012
## 12539  1274046191   2010
## 12540  1344530420   2012
## 12541  1344530381   2012
## 12542  1274050908   2010
## 12543  1274051712   2010
## 12544  1328636458   2012
## 12545  1327062972   2012
## 12546  1333307553   2012
## 12547  1274051783   2010
## 12548  1274051715   2010
## 12549  1327288534   2012
## 12550  1327288529   2012
## 12551  1274051268   2010
## 12552  1346672082   2012
## 12553  1344470357   2012
## 12554  1344518331   2012
## 12555  1274052032   2010
## 12556  1274051752   2010
## 12557  1327288739   2012
## 12558  1274051798   2010
## 12559  1274051633   2010
## 12560  1274050980   2010
## 12561  1344470121   2012
## 12562  1344470372   2012
## 12563  1274051794   2010
## 12564  1344470476   2012
## 12565  1344470545   2012
## 12566  1327288726   2012
## 12567  1274051780   2010
## 12568  1327288523   2012
## 12569  1344518494   2012
## 12570  1327289219   2012
## 12571  1344469996   2012
## 12572  1274051848   2010
## 12573  1327288720   2012
## 12574  1344469894   2012
## 12575  1344530363   2012
## 12576  1344530371   2012
## 12577  1327063041   2012
## 12578  1344518298   2012
## 12579  1327288715   2012
## 12580  1328651648   2012
## 12581  1274051716   2010
## 12582  1327063058   2012
## 12583  1345676370   2012
## 12584  1327288988   2012
## 12585  1328636442   2012
## 12586  1328636566   2012
## 12587  1274051816   2010
## 12588  1344470539   2012
## 12589  1274051721   2010
## 12590  1327063006   2012
## 12591  1363462225   2013
## 12592  1344470740   2012
## 12593  1327289209   2012
## 12594  1344469724   2012
## 12595  1344518302   2012
## 12596  1344518809   2012
## 12597  1344518317   2012
## 12598  1274051823   2010
## 12599  1328046198   2012
## 12600  1344518294   2012
## 12601  1344470834   2012
## 12602  1344470126   2012
## 12603  1344470065   2012
## 12604  1274051523   2010
## 12605  1327288700   2012
## 12606  1274051773   2010
## 12607  1327063126   2012
## 12608  1344469772   2012
## 12609  1344529892   2012
## 12610  1358634080   2013
## 12611  1274051746   2010
## 12612  1327062958   2012
## 12613  1344470051   2012
## 12614  1344469820   2012
## 12615  1344470072   2012
## 12616  1352920811   2012
## 12617  1182994648   2007
## 12618  1182994926   2007
## 12619  1182995062   2007
## 12620  1182994636   2007
## 12621  1182994622   2007
## 12622  1182994728   2007
## 12623  1182994610   2007
## 12624  1182994765   2007
## 12625  1182555848   2007
## 12626  1182994616   2007
## 12627  1182556000   2007
## 12628  1182994781   2007
## 12629  1182994717   2007
## 12630  1182994627   2007
## 12631  1182994732   2007
## 12632  1182994756   2007
## 12633  1182994965   2007
## 12634  1182994653   2007
## 12635  1182994899   2007
## 12636  1182994775   2007
## 12637  1182994952   2007
## 12638  1182994723   2007
## 12639  1182994711   2007
## 12640  1182994818   2007
## 12641  1182994912   2007
## 12642  1182994786   2007
## 12643  1182994791   2007
## 12644  1182994945   2007
## 12645  1182555959   2007
## 12646  1182555847   2007
## 12647  1182556054   2007
## 12648  1182994750   2007
## 12649  1182994807   2007
## 12650  1182995057   2007
## 12651  1182555876   2007
## 12652  1182994878   2007
## 12653  1182994972   2007
## 12654  1182556148   2007
## 12655  1182994834   2007
## 12656  1182555991   2007
## 12657  1182555869   2007
## 12658  1182994903   2007
## 12659  1182556240   2007
## 12660  1182994861   2007
## 12661  1182995029   2007
## 12662  1182994849   2007
## 12663  1182995072   2007
## 12664  1182994884   2007
## 12665  1182995104   2007
## 12666  1182995012   2007
## 12667  1182556308   2007
## 12668  1182556130   2007
## 12669  1182556378   2007
## 12670  1182556482   2007
## 12671  1182556320   2007
## 12672   844860022   1996
## 12673   844860041   1996
## 12674   844860107   1996
## 12675   844860003   1996
## 12676   844860062   1996
## 12677   844860151   1996
## 12678   844860003   1996
## 12679   844860041   1996
## 12680   844860003   1996
## 12681   844860062   1996
## 12682   844860173   1996
## 12683   844860003   1996
## 12684   844860517   1996
## 12685   844860250   1996
## 12686   844860173   1996
## 12687   844860022   1996
## 12688   844860266   1996
## 12689   844860062   1996
## 12690   844860085   1996
## 12691   844860022   1996
## 12692   844861440   1996
## 12693   844860215   1996
## 12694   844860062   1996
## 12695   844860085   1996
## 12696   844860085   1996
## 12697   844860198   1996
## 12698   844860496   1996
## 12699   844861413   1996
## 12700   844860250   1996
## 12701   844860215   1996
## 12702   844860041   1996
## 12703   844860173   1996
## 12704   844861413   1996
## 12705   844860198   1996
## 12706   844860266   1996
## 12707   844861019   1996
## 12708   844861019   1996
## 12709  1307172367   2011
## 12710  1307169402   2011
## 12711  1307179969   2011
## 12712  1307174799   2011
## 12713  1307172938   2011
## 12714  1307171149   2011
## 12715  1307173087   2011
## 12716  1307173089   2011
## 12717  1307172985   2011
## 12718  1307174641   2011
## 12719  1307171452   2011
## 12720  1307172386   2011
## 12721  1307169236   2011
## 12722  1307172383   2011
## 12723  1307172343   2011
## 12724  1307178610   2011
## 12725  1307180667   2011
## 12726  1307171594   2011
## 12727  1307178475   2011
## 12728  1307178724   2011
## 12729  1307173047   2011
## 12730  1307174899   2011
## 12731  1307180625   2011
## 12732  1307175182   2011
## 12733  1307172416   2011
## 12734  1307178374   2011
## 12735  1307172330   2011
## 12736  1307178462   2011
## 12737  1307172514   2011
## 12738  1307172080   2011
## 12739  1307169415   2011
## 12740  1307178606   2011
## 12741  1307172085   2011
## 12742  1307180587   2011
## 12743  1307169246   2011
## 12744  1307172493   2011
## 12745  1307178387   2011
## 12746  1307180647   2011
## 12747  1307174910   2011
## 12748  1307171800   2011
## 12749  1307171603   2011
## 12750  1307169218   2011
## 12751  1307180591   2011
## 12752  1307179973   2011
## 12753  1307180643   2011
## 12754  1307179936   2011
## 12755  1307180621   2011
## 12756  1307172282   2011
## 12757  1307172475   2011
## 12758  1307169335   2011
## 12759  1307179945   2011
## 12760  1307172071   2011
## 12761  1307173783   2011
## 12762  1307179942   2011
## 12763  1307171554   2011
## 12764  1307171816   2011
## 12765  1307169357   2011
## 12766  1307180690   2011
## 12767  1307172357   2011
## 12768  1307169275   2011
## 12769  1307169422   2011
## 12770  1307180985   2011
## 12771  1307172241   2011
## 12772  1307174778   2011
## 12773  1307179931   2011
## 12774  1307171682   2011
## 12775  1307171518   2011
## 12776  1307173092   2011
## 12777  1307171511   2011
## 12778  1307172034   2011
## 12779  1307180444   2011
## 12780  1307180653   2011
## 12781  1307171489   2011
## 12782  1307172908   2011
## 12783  1307171929   2011
## 12784  1307171418   2011
## 12785  1307172978   2011
## 12786  1307169545   2011
## 12787  1307172369   2011
## 12788  1307169589   2011
## 12789  1307173060   2011
## 12790  1307172197   2011
## 12791  1307171746   2011
## 12792  1307180611   2011
## 12793  1307169608   2011
## 12794  1307180639   2011
## 12795  1307171598   2011
## 12796  1307173663   2011
## 12797  1307171752   2011
## 12798  1307171631   2011
## 12799  1307172319   2011
## 12800  1307173007   2011
## 12801  1307172238   2011
## 12802  1307179979   2011
## 12803  1307180420   2011
## 12804  1307172433   2011
## 12805  1307171479   2011
## 12806  1307172154   2011
## 12807  1307180598   2011
## 12808  1307174689   2011
## 12809  1307172961   2011
## 12810  1307178465   2011
## 12811  1307171686   2011
## 12812  1307171420   2011
## 12813  1307178330   2011
## 12814  1307175022   2011
## 12815  1307171680   2011
## 12816  1307171842   2011
## 12817  1307179983   2011
## 12818  1307171907   2011
## 12819  1307173075   2011
## 12820  1307178208   2011
## 12821  1307177440   2011
## 12822  1307172225   2011
## 12823  1307180990   2011
## 12824  1307172805   2011
## 12825  1307172101   2011
## 12826  1307171878   2011
## 12827  1307180149   2011
## 12828  1307180746   2011
## 12829  1307172863   2011
## 12830  1307172450   2011
## 12831  1307171367   2011
## 12832  1307180847   2011
## 12833  1307180362   2011
## 12834  1307174858   2011
## 12835  1307177412   2011
## 12836  1307171356   2011
## 12837  1307178303   2011
## 12838  1307172173   2011
## 12839  1307180335   2011
## 12840  1307172325   2011
## 12841  1307177426   2011
## 12842  1307180145   2011
## 12843  1307172130   2011
## 12844  1307172373   2011
## 12845  1307173112   2011
## 12846  1307180141   2011
## 12847  1307173098   2011
## 12848  1307178621   2011
## 12849  1307172311   2011
## 12850  1307169533   2011
## 12851  1307173763   2011
## 12852  1307172454   2011
## 12853  1307180134   2011
## 12854  1307180237   2011
## 12855  1307172169   2011
## 12856  1307180694   2011
## 12857  1307169383   2011
## 12858  1307171589   2011
## 12859  1307175227   2011
## 12860  1307177375   2011
## 12861  1307172203   2011
## 12862  1307171458   2011
## 12863  1307180634   2011
## 12864  1307172215   2011
## 12865  1307180849   2011
## 12866  1307172182   2011
## 12867  1307171915   2011
## 12868  1307172379   2011
## 12869   835973445   1996
## 12870   835973471   1996
## 12871   835973471   1996
## 12872   835973488   1996
## 12873   835973458   1996
## 12874   835973488   1996
## 12875   835973458   1996
## 12876   835973379   1996
## 12877   835973398   1996
## 12878   835973504   1996
## 12879   835973398   1996
## 12880   835973445   1996
## 12881   835973419   1996
## 12882   835973445   1996
## 12883   835973504   1996
## 12884   835973458   1996
## 12885   835973431   1996
## 12886   835973380   1996
## 12887   835973458   1996
## 12888   835973419   1996
## 12889   835973419   1996
## 12890   835973418   1996
## 12891   835973431   1996
## 12892   835973398   1996
## 12893   835973504   1996
## 12894   835973488   1996
## 12895   835973504   1996
## 12896   835973380   1996
## 12897   835973458   1996
## 12898   835973488   1996
## 12899   835973431   1996
## 12900   835973504   1996
## 12901   835973488   1996
## 12902   835973445   1996
## 12903   835973398   1996
## 12904   835973379   1996
## 12905   835973379   1996
## 12906   835973430   1996
## 12907   835973419   1996
## 12908  1156206916   2006
## 12909  1156206448   2006
## 12910  1156207541   2006
## 12911  1156205258   2006
## 12912  1156207469   2006
## 12913  1156206709   2006
## 12914  1156207607   2006
## 12915  1156206932   2006
## 12916  1156205069   2006
## 12917  1156207528   2006
## 12918  1156205399   2006
## 12919  1156207393   2006
## 12920  1156205395   2006
## 12921  1156206432   2006
## 12922  1156205656   2006
## 12923  1156207431   2006
## 12924  1156205062   2006
## 12925  1156205254   2006
## 12926  1156207404   2006
## 12927  1156205241   2006
## 12928  1156205644   2006
## 12929  1156205647   2006
## 12930  1156206584   2006
## 12931  1156207579   2006
## 12932  1156205385   2006
## 12933  1156206735   2006
## 12934  1156207536   2006
## 12935  1156205103   2006
## 12936  1156205036   2006
## 12937  1156205382   2006
## 12938  1156206581   2006
## 12939  1156206305   2006
## 12940  1156205621   2006
## 12941  1156206554   2006
## 12942  1156205372   2006
## 12943  1156205236   2006
## 12944  1156205012   2006
## 12945  1156205366   2006
## 12946  1156205231   2006
## 12947  1156206232   2006
## 12948  1156205603   2006
## 12949  1156206569   2006
## 12950  1156206193   2006
## 12951  1156206651   2006
## 12952  1156205360   2006
## 12953  1156205116   2006
## 12954  1156205079   2006
## 12955  1156205597   2006
## 12956  1156205108   2006
## 12957  1156206678   2006
## 12958  1156207561   2006
## 12959  1156205057   2006
## 12960  1156205586   2006
## 12961  1156207452   2006
## 12962  1156205019   2006
## 12963  1156205355   2006
## 12964  1156207505   2006
## 12965  1156207576   2006
## 12966  1156207007   2006
## 12967  1156205343   2006
## 12968  1156205568   2006
## 12969  1156206976   2006
## 12970  1156205341   2006
## 12971  1156205337   2006
## 12972  1156205560   2006
## 12973  1156207519   2006
## 12974  1156207407   2006
## 12975  1156206206   2006
## 12976  1156207465   2006
## 12977  1156207385   2006
## 12978  1156206335   2006
## 12979  1156205549   2006
## 12980  1156207378   2006
## 12981  1156205072   2006
## 12982  1156205066   2006
## 12983  1156205227   2006
## 12984  1156205050   2006
## 12985  1156205318   2006
## 12986  1156206687   2006
## 12987  1156205315   2006
## 12988  1156206643   2006
## 12989  1156206109   2006
## 12990  1156206557   2006
## 12991  1156206361   2006
## 12992  1156206548   2006
## 12993  1156206640   2006
## 12994  1156206330   2006
## 12995  1156205312   2006
## 12996  1156206276   2006
## 12997  1156206983   2006
## 12998  1156205522   2006
## 12999  1156205304   2006
## 13000  1156205302   2006
## 13001  1156205298   2006
## 13002  1156205508   2006
## 13003  1156206681   2006
## 13004  1156205515   2006
## 13005  1156206992   2006
## 13006  1156207514   2006
## 13007  1156207276   2006
## 13008  1156205502   2006
## 13009  1156205494   2006
## 13010  1156206161   2006
## 13011  1156206211   2006
## 13012  1156205797   2006
## 13013  1156205095   2006
## 13014  1156206559   2006
## 13015  1156207595   2006
## 13016  1156206178   2006
## 13017  1156206668   2006
## 13018  1156206112   2006
## 13019  1156205479   2006
## 13020  1156206371   2006
## 13021  1156205296   2006
## 13022  1156207556   2006
## 13023  1156206196   2006
## 13024  1156206694   2006
## 13025  1156205474   2006
## 13026  1156206169   2006
## 13027  1156205292   2006
## 13028  1156205780   2006
## 13029  1156205468   2006
## 13030  1156206599   2006
## 13031  1156205085   2006
## 13032  1156205765   2006
## 13033  1156206943   2006
## 13034  1156205759   2006
## 13035  1156207591   2006
## 13036  1156205751   2006
## 13037  1156206364   2006
## 13038  1156205739   2006
## 13039  1156205736   2006
## 13040  1156205449   2006
## 13041  1156206995   2006
## 13042  1156206165   2006
## 13043  1156207279   2006
## 13044  1156205274   2006
## 13045  1156205445   2006
## 13046  1156206253   2006
## 13047  1156206947   2006
## 13048  1156206394   2006
## 13049  1156205729   2006
## 13050  1156206692   2006
## 13051  1156205029   2006
## 13052  1156206308   2006
## 13053  1156206705   2006
## 13054  1156205270   2006
## 13055  1156205435   2006
## 13056  1156206646   2006
## 13057  1156205432   2006
## 13058  1156207498   2006
## 13059  1156206301   2006
## 13060  1156205421   2006
## 13061  1156206134   2006
## 13062  1156205417   2006
## 13063  1156206979   2006
## 13064  1156205409   2006
## 13065  1156206637   2006
## 13066  1156205696   2006
## 13067  1156206118   2006
## 13068  1156206624   2006
## 13069  1429910800   2015
## 13070  1429910930   2015
## 13071  1429910910   2015
## 13072  1429910837   2015
## 13073  1429910797   2015
## 13074  1429910957   2015
## 13075  1429910764   2015
## 13076  1429910902   2015
## 13077  1429910909   2015
## 13078  1429910922   2015
## 13079  1429910906   2015
## 13080  1429910948   2015
## 13081  1429911562   2015
## 13082  1429910790   2015
## 13083  1429712680   2015
## 13084  1429910812   2015
## 13085  1429910913   2015
## 13086  1429910771   2015
## 13087  1429910861   2015
## 13088  1429911170   2015
## 13089  1429910935   2015
## 13090  1429911066   2015
## 13091  1429911144   2015
## 13092  1429911104   2015
## 13093  1429911142   2015
## 13094  1429911073   2015
## 13095  1429911363   2015
## 13096  1429911077   2015
## 13097  1429911265   2015
## 13098  1429911164   2015
## 13099  1429911152   2015
## 13100  1429911006   2015
## 13101  1429911137   2015
## 13102  1429911227   2015
## 13103  1429911106   2015
## 13104  1429911149   2015
## 13105  1429911038   2015
## 13106  1429911063   2015
## 13107  1429911041   2015
## 13108  1429910749   2015
## 13109  1429911049   2015
## 13110  1429911572   2015
## 13111  1429910917   2015
## 13112  1429911017   2015
## 13113  1429911098   2015
## 13114  1429911130   2015
## 13115  1429911247   2015
## 13116  1429910753   2015
## 13117  1429911059   2015
## 13118  1429910831   2015
## 13119  1429911297   2015
## 13120  1429910872   2015
## 13121  1429911118   2015
## 13122  1429911039   2015
## 13123  1429911113   2015
## 13124  1429910932   2015
## 13125  1429911044   2015
## 13126  1429712691   2015
## 13127  1429911126   2015
## 13128  1429911204   2015
## 13129  1429911060   2015
## 13130  1429911207   2015
## 13131  1429911214   2015
## 13132  1429910840   2015
## 13133  1429911525   2015
## 13134  1429911101   2015
## 13135  1429910987   2015
## 13136  1429911051   2015
## 13137  1429911276   2015
## 13138  1429911292   2015
## 13139  1429911295   2015
## 13140  1429910892   2015
## 13141  1429911509   2015
## 13142  1429910927   2015
## 13143  1429911174   2015
## 13144  1429911102   2015
## 13145  1429911221   2015
## 13146  1429910876   2015
## 13147  1429911233   2015
## 13148  1429911253   2015
## 13149  1429911198   2015
## 13150  1429911097   2015
## 13151  1429911229   2015
## 13152  1429911203   2015
## 13153  1429911238   2015
## 13154  1429910996   2015
## 13155  1429911193   2015
## 13156  1429910919   2015
## 13157  1429911340   2015
## 13158  1429910974   2015
## 13159  1429911421   2015
## 13160  1429910960   2015
## 13161  1429910829   2015
## 13162  1429910890   2015
## 13163  1429911154   2015
## 13164  1429910852   2015
## 13165  1429911107   2015
## 13166  1429911208   2015
## 13167  1429911567   2015
## 13168  1429910886   2015
## 13169  1429911541   2015
## 13170  1429910984   2015
## 13171  1429910785   2015
## 13172  1429910849   2015
## 13173  1429911262   2015
## 13174  1429911003   2015
## 13175  1429911538   2015
## 13176  1429910965   2015
## 13177  1429911001   2015
## 13178  1429910808   2015
## 13179  1429910884   2015
## 13180  1429910860   2015
## 13181  1429910856   2015
## 13182  1429910866   2015
## 13183  1429712709   2015
## 13184  1429911324   2015
## 13185   837511784   1996
## 13186   837512420   1996
## 13187   837512493   1996
## 13188   837507143   1996
## 13189   837512280   1996
## 13190   837511743   1996
## 13191   837512169   1996
## 13192   837512134   1996
## 13193   837506990   1996
## 13194   837506903   1996
## 13195   837506803   1996
## 13196   837513025   1996
## 13197   837512403   1996
## 13198   837507117   1996
## 13199   837506796   1996
## 13200   837512681   1996
## 13201   837513025   1996
## 13202   837512148   1996
## 13203   837512454   1996
## 13204   837512701   1996
## 13205   837511998   1996
## 13206   837512987   1996
## 13207   837511493   1996
## 13208   837511986   1996
## 13209   837512599   1996
## 13210   837511797   1996
## 13211   837512325   1996
## 13212   837512325   1996
## 13213   837512519   1996
## 13214   837507101   1996
## 13215   837512212   1996
## 13216   837512599   1996
## 13217   837512030   1996
## 13218   837512635   1996
## 13219   837513025   1996
## 13220   837513012   1996
## 13221   837512134   1996
## 13222   837512482   1996
## 13223   837512962   1996
## 13224   837512114   1996
## 13225   837512611   1996
## 13226   837507117   1996
## 13227   837511431   1996
## 13228   837506719   1996
## 13229   837512200   1996
## 13230   837512888   1996
## 13231   837512236   1996
## 13232   837506848   1996
## 13233   837512249   1996
## 13234   837507101   1996
## 13235   837511448   1996
## 13236   837512763   1996
## 13237   837506801   1996
## 13238   837506799   1996
## 13239   837511838   1996
## 13240   837512312   1996
## 13241   837506902   1996
## 13242   837512561   1996
## 13243   837512169   1996
## 13244   837512580   1996
## 13245   837511809   1996
## 13246   837511822   1996
## 13247   837512403   1996
## 13248   837512723   1996
## 13249   837511771   1996
## 13250   837506726   1996
## 13251   837512599   1996
## 13252   837511784   1996
## 13253   837512420   1996
## 13254   837512433   1996
## 13255   837512344   1996
## 13256   837512015   1996
## 13257   837512344   1996
## 13258   837511349   1996
## 13259   837512191   1996
## 13260   837506903   1996
## 13261   837512312   1996
## 13262   837512312   1996
## 13263   837511743   1996
## 13264   837512225   1996
## 13265   837512181   1996
## 13266   837512648   1996
## 13267   837512249   1996
## 13268   837511838   1996
## 13269   837506847   1996
## 13270   837512561   1996
## 13271   837512482   1996
## 13272   837512388   1996
## 13273   837512648   1996
## 13274   837511743   1996
## 13275   837512114   1996
## 13276   837512268   1996
## 13277   837512325   1996
## 13278   837506797   1996
## 13279   837507044   1996
## 13280   837506714   1996
## 13281   837506709   1996
## 13282   837506876   1996
## 13283   837512504   1996
## 13284   837507101   1996
## 13285   837512519   1996
## 13286   837512225   1996
## 13287   837512681   1996
## 13288   837511448   1996
## 13289   837512681   1996
## 13290   837512723   1996
## 13291   837506902   1996
## 13292   848161799   1996
## 13293   848159306   1996
## 13294   848161252   1996
## 13295   848159382   1996
## 13296   848160301   1996
## 13297   848159249   1996
## 13298   848159249   1996
## 13299   848161123   1996
## 13300   848160245   1996
## 13301   848160132   1996
## 13302   848160311   1996
## 13303   848161285   1996
## 13304   848159270   1996
## 13305   848159230   1996
## 13306   848160169   1996
## 13307   848159467   1996
## 13308   848161788   1996
## 13309   848160022   1996
## 13310   848161443   1996
## 13311   848159211   1996
## 13312   848161091   1996
## 13313   848161498   1996
## 13314   848160534   1996
## 13315   848161284   1996
## 13316   848161182   1996
## 13317   848161391   1996
## 13318   848161091   1996
## 13319   848161221   1996
## 13320   848161123   1996
## 13321   848161330   1996
## 13322   848161539   1996
## 13323   848160534   1996
## 13324   848161182   1996
## 13325   848161391   1996
## 13326   848160230   1996
## 13327   848159382   1996
## 13328   848161353   1996
## 13329   848161267   1996
## 13330   848159074   1996
## 13331   848161799   1996
## 13332   848161123   1996
## 13333   848161454   1996
## 13334   848159289   1996
## 13335   848161091   1996
## 13336   848160273   1996
## 13337   848161811   1996
## 13338   848160534   1996
## 13339   848161507   1996
## 13340   848159406   1996
## 13341   848161090   1996
## 13342   848159752   1996
## 13343   848159634   1996
## 13344   848159167   1996
## 13345   848161123   1996
## 13346   848161454   1996
## 13347   848159545   1996
## 13348   848161373   1996
## 13349   848160081   1996
## 13350   848159117   1996
## 13351   848159826   1996
## 13352   848159429   1996
## 13353   848160360   1996
## 13354   848161252   1996
## 13355   848159905   1996
## 13356   848161208   1996
## 13357   848159406   1996
## 13358   848159191   1996
## 13359   848161465   1996
## 13360   848161982   1996
## 13361   848161454   1996
## 13362   848161149   1996
## 13363   848159467   1996
## 13364   848161787   1996
## 13365   848161199   1996
## 13366   848159608   1996
## 13367   848161308   1996
## 13368   848161308   1996
## 13369   848161343   1996
## 13370   848161773   1996
## 13371   848160119   1996
## 13372   848161773   1996
## 13373   848159074   1996
## 13374   848160039   1996
## 13375   848159230   1996
## 13376   848161134   1996
## 13377   848159765   1996
## 13378   848159807   1996
## 13379   848159845   1996
## 13380   848159932   1996
## 13381   848161182   1996
## 13382   848159117   1996
## 13383   848159148   1996
## 13384   848159779   1996
## 13385   848160389   1996
## 13386   848160729   1996
## 13387   848159148   1996
## 13388   848161199   1996
## 13389   848160081   1996
## 13390   848161104   1996
## 13391   848159621   1996
## 13392   848159719   1996
## 13393   848161134   1996
## 13394   848159270   1996
## 13395   848159654   1996
## 13396   848159211   1996
## 13397   848161330   1996
## 13398   848161149   1996
## 13399   848161404   1996
## 13400   848162010   1996
## 13401   848159719   1996
## 13402   848161443   1996
## 13403   848161788   1996
## 13404   848161353   1996
## 13405   848160066   1996
## 13406   848159191   1996
## 13407   848160573   1996
## 13408   848161491   1996
## 13409   848161343   1996
## 13410   848161161   1996
## 13411   848159706   1996
## 13412   848161443   1996
## 13413   848159148   1996
## 13414   848159932   1996
## 13415   848161465   1996
## 13416   848161123   1996
## 13417   848161773   1996
## 13418   848160301   1996
## 13419   848159361   1996
## 13420   848159326   1996
## 13421   848159503   1996
## 13422   848159249   1996
## 13423   848159779   1996
## 13424   848159856   1996
## 13425   848159932   1996
## 13426   848159989   1996
## 13427   848159249   1996
## 13428   848162072   1996
## 13429   848159949   1996
## 13430   848159429   1996
## 13431   848159503   1996
## 13432   848161252   1996
## 13433   848161811   1996
## 13434   848161788   1996
## 13435   848159230   1996
## 13436   848159093   1996
## 13437   848159191   1996
## 13438   848161161   1996
## 13439   848159074   1996
## 13440   848161773   1996
## 13441   848159503   1996
## 13442   848161267   1996
## 13443   848159689   1996
## 13444   848159230   1996
## 13445   848159590   1996
## 13446   848161360   1996
## 13447   848161308   1996
## 13448   848161343   1996
## 13449   848160245   1996
## 13450   848161481   1996
## 13451   848161221   1996
## 13452   848161149   1996
## 13453   848161330   1996
## 13454   848159794   1996
## 13455   848162097   1996
## 13456   848162119   1996
## 13457   848160360   1996
## 13458   848161237   1996
## 13459   848161539   1996
## 13460   848161161   1996
## 13461   848159975   1996
## 13462   848159406   1996
## 13463   848159949   1996
## 13464   848162010   1996
## 13465   848161481   1996
## 13466   848161528   1996
## 13467   848161552   1996
## 13468   848161552   1996
## 13469   848162129   1996
## 13470   848162026   1996
## 13471   848160714   1996
## 13472   848160865   1996
## 13473   848161267   1996
## 13474   848160039   1996
## 13475   848162144   1996
## 13476   848160211   1996
## 13477   848160625   1996
## 13478   848160729   1996
## 13479   848160993   1996
## 13480   848160983   1996
## 13481   848161044   1996
## 13482   858623186   1997
## 13483   858623219   1997
## 13484   858623186   1997
## 13485   858623186   1997
## 13486   858623240   1997
## 13487   858623186   1997
## 13488   858623319   1997
## 13489   858623186   1997
## 13490   858623240   1997
## 13491   858623240   1997
## 13492   858623186   1997
## 13493   858623240   1997
## 13494   858623456   1997
## 13495   858623219   1997
## 13496   858623219   1997
## 13497   858623186   1997
## 13498   858623335   1997
## 13499   858623364   1997
## 13500   858623219   1997
## 13501   858623186   1997
## 13502   858623257   1997
## 13503   858623270   1997
## 13504   858623186   1997
## 13505   858623319   1997
## 13506   858623219   1997
## 13507   858623257   1997
## 13508   858623283   1997
## 13509   858623219   1997
## 13510   858623299   1997
## 13511   858623403   1997
## 13512   858623335   1997
## 13513  1239773232   2009
## 13514  1239765126   2009
## 13515  1239764623   2009
## 13516  1239764334   2009
## 13517  1239755559   2009
## 13518  1239758454   2009
## 13519  1239764316   2009
## 13520  1239763433   2009
## 13521  1239758460   2009
## 13522  1239764336   2009
## 13523  1239764721   2009
## 13524  1239764330   2009
## 13525  1239763733   2009
## 13526  1239763939   2009
## 13527  1239765071   2009
## 13528  1239766992   2009
## 13529  1239763933   2009
## 13530  1239764312   2009
## 13531  1239764512   2009
## 13532  1239767689   2009
## 13533  1239764173   2009
## 13534  1239755560   2009
## 13535  1239763727   2009
## 13536  1239755456   2009
## 13537  1239758451   2009
## 13538  1239757625   2009
## 13539  1239763984   2009
## 13540  1239757629   2009
## 13541  1239764763   2009
## 13542  1239764337   2009
## 13543  1239763845   2009
## 13544  1239775160   2009
## 13545  1239764885   2009
## 13546  1239764964   2009
## 13547  1239757626   2009
## 13548  1239764169   2009
## 13549  1239763943   2009
## 13550  1239763839   2009
## 13551  1239763826   2009
## 13552  1239766980   2009
## 13553  1239773306   2009
## 13554  1239764176   2009
## 13555  1239763731   2009
## 13556  1239763722   2009
## 13557  1239765126   2009
## 13558  1239772521   2009
## 13559  1239764638   2009
## 13560  1239764747   2009
## 13561  1239766985   2009
## 13562  1239756770   2009
## 13563  1239767724   2009
## 13564  1239758268   2009
## 13565  1239764701   2009
## 13566  1239755377   2009
## 13567  1239765069   2009
## 13568  1239764309   2009
## 13569  1239757679   2009
## 13570  1239772558   2009
## 13571  1239763711   2009
## 13572  1239764749   2009
## 13573  1239763938   2009
## 13574  1239755381   2009
## 13575  1239763830   2009
## 13576  1239763854   2009
## 13577  1239764853   2009
## 13578  1239772575   2009
## 13579  1239763983   2009
## 13580  1239762941   2009
## 13581  1239772824   2009
## 13582  1239757090   2009
## 13583  1239755385   2009
## 13584  1239755437   2009
## 13585  1239755560   2009
## 13586  1239764515   2009
## 13587  1239764492   2009
## 13588  1239775047   2009
## 13589  1239758081   2009
## 13590  1239764641   2009
## 13591  1239764678   2009
## 13592  1239758059   2009
## 13593  1239764609   2009
## 13594  1239758202   2009
## 13595  1239764886   2009
## 13596  1239758210   2009
## 13597  1239757684   2009
## 13598  1239758069   2009
## 13599  1239763265   2009
## 13600  1239764628   2009
## 13601  1239764716   2009
## 13602  1239764604   2009
## 13603  1239764615   2009
## 13604  1239772561   2009
## 13605  1239763858   2009
## 13606  1239766995   2009
## 13607  1239755420   2009
## 13608  1239764173   2009
## 13609  1239755561   2009
## 13610  1239755415   2009
## 13611  1239764516   2009
## 13612  1239765070   2009
## 13613  1239764905   2009
## 13614  1239764514   2009
## 13615  1239765130   2009
## 13616  1239764889   2009
## 13617  1239764845   2009
## 13618  1239765138   2009
## 13619  1239767713   2009
## 13620  1239758428   2009
## 13621  1239764767   2009
## 13622  1239756858   2009
## 13623  1239766989   2009
## 13624  1239764988   2009
## 13625  1239755446   2009
## 13626  1239758442   2009
## 13627  1239764905   2009
## 13628  1239773365   2009
## 13629  1239764518   2009
## 13630  1239755427   2009
## 13631  1239764540   2009
## 13632  1239764341   2009
## 13633  1239772229   2009
## 13634  1239764751   2009
## 13635  1239764896   2009
## 13636  1239774217   2009
## 13637  1239764695   2009
## 13638  1239764636   2009
## 13639  1239765142   2009
## 13640  1239764706   2009
## 13641  1239767000   2009
## 13642  1257010873   2009
## 13643  1239764852   2009
## 13644  1239766983   2009
## 13645  1239764618   2009
## 13646  1239764344   2009
## 13647  1239764770   2009
## 13648  1239763841   2009
## 13649  1239772626   2009
## 13650  1239764978   2009
## 13651  1239758086   2009
## 13652  1239764969   2009
## 13653  1239774709   2009
## 13654  1239763430   2009
## 13655  1239764684   2009
## 13656  1239766975   2009
## 13657  1239767661   2009
## 13658  1239767652   2009
## 13659  1239755416   2009
## 13660  1239764774   2009
## 13661  1239764693   2009
## 13662  1239757873   2009
## 13663  1239758107   2009
## 13664  1239778395   2009
## 13665  1239764339   2009
## 13666  1239765128   2009
## 13667  1239773748   2009
## 13668  1239764794   2009
## 13669  1239774220   2009
## 13670  1239755557   2009
## 13671  1239765070   2009
## 13672  1239775154   2009
## 13673  1239763277   2009
## 13674  1239773739   2009
## 13675  1239765131   2009
## 13676  1239764184   2009
## 13677  1239765070   2009
## 13678  1239773151   2009
## 13679  1239755558   2009
## 13680  1239756814   2009
## 13681  1239764782   2009
## 13682  1239758460   2009
## 13683  1239775449   2009
## 13684  1239764966   2009
## 13685  1239764951   2009
## 13686  1239764957   2009
## 13687  1239762847   2009
## 13688  1239772249   2009
## 13689  1239772623   2009
## 13690  1239773931   2009
## 13691  1239764688   2009
## 13692  1239767658   2009
## 13693  1239764753   2009
## 13694  1239757171   2009
## 13695  1239772946   2009
## 13696  1239756824   2009
## 13697  1239757094   2009
## 13698  1239772461   2009
## 13699  1239772239   2009
## 13700  1239764714   2009
## 13701  1239778184   2009
## 13702  1239767719   2009
## 13703  1239767682   2009
## 13704  1239764608   2009
## 13705  1239773123   2009
## 13706  1239762921   2009
## 13707  1239773937   2009
## 13708  1239756837   2009
## 13709  1239773743   2009
## 13710  1239763309   2009
## 13711  1239762854   2009
## 13712  1239773941   2009
## 13713  1239764786   2009
## 13714  1239764697   2009
## 13715  1239767643   2009
## 13716  1239773949   2009
## 13717  1239772568   2009
## 13718  1239771765   2009
## 13719  1239756823   2009
## 13720  1256960996   2009
## 13721  1239771692   2009
## 13722  1239772247   2009
## 13723  1239757077   2009
## 13724  1239775462   2009
## 13725  1239766978   2009
## 13726  1239767657   2009
## 13727  1239763295   2009
## 13728  1239767702   2009
## 13729  1239772533   2009
## 13730  1239772225   2009
## 13731  1239767646   2009
## 13732  1239772582   2009
## 13733  1239772618   2009
## 13734  1239772528   2009
## 13735  1239772951   2009
## 13736  1239772632   2009
## 13737  1239778397   2009
## 13738  1239755439   2009
## 13739  1239775005   2009
## 13740  1239772928   2009
## 13741  1239778633   2009
## 13742  1239774702   2009
## 13743  1239761146   2009
## 13744  1239772241   2009
## 13745  1239774712   2009
## 13746  1239774126   2009
## 13747  1239772995   2009
## 13748  1251668327   2009
## 13749  1259386770   2009
## 13750  1239773175   2009
## 13751  1239773229   2009
## 13752  1256960930   2009
## 13753  1239757476   2009
## 13754  1256961092   2009
## 13755  1239772235   2009
## 13756  1239758696   2009
## 13757  1239775107   2009
## 13758  1239772923   2009
## 13759  1239775407   2009
## 13760  1251668389   2009
## 13761  1239758693   2009
## 13762  1239759260   2009
## 13763  1239758705   2009
## 13764  1239767650   2009
## 13765  1249886099   2009
## 13766  1249886123   2009
## 13767  1251956371   2009
## 13768  1257620018   2009
## 13769  1257610324   2009
## 13770  1257620127   2009
## 13771  1257620488   2009
## 13772  1257620511   2009
## 13773  1257620279   2009
## 13774  1257620073   2009
## 13775  1257610311   2009
## 13776  1257620499   2009
## 13777  1257620251   2009
## 13778  1257610314   2009
## 13779  1257620122   2009
## 13780  1257620508   2009
## 13781  1257610525   2009
## 13782  1257620110   2009
## 13783  1257620515   2009
## 13784  1257620522   2009
## 13785  1257620040   2009
## 13786  1257620132   2009
## 13787  1257620113   2009
## 13788  1257620045   2009
## 13789  1257610347   2009
## 13790  1257620538   2009
## 13791  1257620544   2009
## 13792  1257620479   2009
## 13793  1257620589   2009
## 13794  1257610479   2009
## 13795  1257620572   2009
## 13796  1257610885   2009
## 13797  1257620592   2009
## 13798  1257610468   2009
## 13799  1257620269   2009
## 13800  1257620129   2009
## 13801  1257620503   2009
## 13802  1257620604   2009
## 13803  1257620518   2009
## 13804  1257610437   2009
## 13805  1257620271   2009
## 13806  1257620535   2009
## 13807  1257610538   2009
## 13808  1257620568   2009
## 13809  1257610494   2009
## 13810  1257620265   2009
## 13811  1257610567   2009
## 13812  1257620282   2009
## 13813  1257620037   2009
## 13814  1257620582   2009
## 13815  1257620117   2009
## 13816  1257610620   2009
## 13817  1257620031   2009
## 13818  1257620554   2009
## 13819  1257620258   2009
## 13820  1257620255   2009
## 13821  1257620050   2009
## 13822  1257620132   2009
## 13823  1257620466   2009
## 13824  1257620454   2009
## 13825  1257610864   2009
## 13826  1257610580   2009
## 13827  1257620448   2009
## 13828  1257620541   2009
## 13829  1257620575   2009
## 13830  1257620285   2009
## 13831  1257620602   2009
## 13832  1257620481   2009
## 13833  1257620457   2009
## 13834   875517174   1997
## 13835   875517954   1997
## 13836   875517624   1997
## 13837   875517306   1997
## 13838   875517953   1997
## 13839   875516371   1997
## 13840   875520648   1997
## 13841   875520409   1997
## 13842   875518226   1997
## 13843   875516370   1997
## 13844   875516370   1997
## 13845   875519306   1997
## 13846   875518088   1997
## 13847   875516731   1997
## 13848   875518345   1997
## 13849   875520264   1997
## 13850   875517233   1997
## 13851   875520463   1997
## 13852   875518641   1997
## 13853   875517174   1997
## 13854   875518088   1997
## 13855   875520464   1997
## 13856   875517754   1997
## 13857   875517233   1997
## 13858   875517953   1997
## 13859   895843258   1998
## 13860   875518345   1997
## 13861   875517306   1997
## 13862   875518016   1997
## 13863   875514792   1997
## 13864   875517306   1997
## 13865   875517233   1997
## 13866   875519306   1997
## 13867   875514792   1997
## 13868   875515203   1997
## 13869   875515203   1997
## 13870   875519715   1997
## 13871   875515030   1997
## 13872   875517174   1997
## 13873   876370672   1997
## 13874   876288277   1997
## 13875   875518289   1997
## 13876   875517306   1997
## 13877   875516370   1997
## 13878   875518088   1997
## 13879   875517358   1997
## 13880   876288017   1997
## 13881   875515956   1997
## 13882   875515902   1997
## 13883   875515030   1997
## 13884  1448798200   2015
## 13885  1448813887   2015
## 13886  1448813534   2015
## 13887  1448798511   2015
## 13888  1448798347   2015
## 13889  1448814310   2015
## 13890  1448798142   2015
## 13891  1448813322   2015
## 13892  1448813386   2015
## 13893  1448798105   2015
## 13894  1448814317   2015
## 13895  1448798101   2015
## 13896  1448798168   2015
## 13897  1448814268   2015
## 13898  1448798508   2015
## 13899  1448814281   2015
## 13900  1448798139   2015
## 13901  1448798326   2015
## 13902  1448798161   2015
## 13903  1448814498   2015
## 13904  1448798146   2015
## 13905  1448798490   2015
## 13906  1448798242   2015
## 13907  1448798104   2015
## 13908  1448798107   2015
## 13909  1448798180   2015
## 13910  1448798136   2015
## 13911  1448798206   2015
## 13912  1448798178   2015
## 13913  1448798300   2015
## 13914  1448798307   2015
## 13915  1448798140   2015
## 13916  1448798532   2015
## 13917  1448798342   2015
## 13918  1448798143   2015
## 13919  1448813382   2015
## 13920  1448814231   2015
## 13921  1448814231   2015
## 13922  1448814230   2015
## 13923  1448814268   2015
## 13924  1448798112   2015
## 13925  1448813169   2015
## 13926  1448814124   2015
## 13927  1448798580   2015
## 13928  1448798200   2015
## 13929  1448813361   2015
## 13930  1448814276   2015
## 13931  1448798170   2015
## 13932  1448798564   2015
## 13933  1448814280   2015
## 13934  1448814228   2015
## 13935  1448814200   2015
## 13936  1448798208   2015
## 13937  1448813368   2015
## 13938  1448814226   2015
## 13939  1448798338   2015
## 13940  1448814412   2015
## 13941  1448813183   2015
## 13942  1448798317   2015
## 13943  1448798341   2015
## 13944  1448798115   2015
## 13945  1448813064   2015
## 13946  1448798216   2015
## 13947  1448798134   2015
## 13948  1448813528   2015
## 13949  1448814312   2015
## 13950  1448814436   2015
## 13951  1448798114   2015
## 13952  1448813185   2015
## 13953  1448813189   2015
## 13954  1448813078   2015
## 13955  1448814393   2015
## 13956  1448814287   2015
## 13957  1448798548   2015
## 13958  1448798175   2015
## 13959  1448813022   2015
## 13960  1448813008   2015
## 13961  1448814434   2015
## 13962  1448813043   2015
## 13963  1448798234   2015
## 13964  1448814469   2015
## 13965  1448798488   2015
## 13966  1448814476   2015
## 13967  1448814443   2015
## 13968  1448814407   2015
## 13969  1448813111   2015
## 13970  1448798163   2015
## 13971  1448813293   2015
## 13972  1448813885   2015
## 13973  1448814418   2015
## 13974  1448798116   2015
## 13975  1448814399   2015
## 13976  1448798230   2015
## 13977  1448798219   2015
## 13978  1448813535   2015
## 13979  1448814401   2015
## 13980  1448798186   2015
## 13981  1448798188   2015
## 13982  1448813028   2015
## 13983  1448798331   2015
## 13984  1448813010   2015
## 13985  1448798475   2015
## 13986  1448798187   2015
## 13987  1448798561   2015
## 13988  1448798300   2015
## 13989  1448798165   2015
## 13990  1448798481   2015
## 13991  1448798492   2015
## 13992  1448814299   2015
## 13993  1448813209   2015
## 13994  1448798482   2015
## 13995  1448813080   2015
## 13996  1448814286   2015
## 13997  1448798233   2015
## 13998  1448798202   2015
## 13999  1448798191   2015
## 14000  1448798222   2015
## 14001  1448798645   2015
## 14002  1448798513   2015
## 14003  1448813059   2015
## 14004  1448798507   2015
## 14005  1448798554   2015
## 14006  1448813012   2015
## 14007  1448798161   2015
## 14008  1448798244   2015
## 14009  1448814395   2015
## 14010  1448798340   2015
## 14011  1448798239   2015
## 14012  1448813040   2015
## 14013  1448813127   2015
## 14014  1448798514   2015
## 14015  1448813037   2015
## 14016  1448814472   2015
## 14017  1448813046   2015
## 14018  1448798204   2015
## 14019  1448798214   2015
## 14020  1448813133   2015
## 14021  1448813013   2015
## 14022  1448798210   2015
## 14023  1448798496   2015
## 14024  1448814302   2015
## 14025  1448813019   2015
## 14026  1448798238   2015
## 14027  1448798144   2015
## 14028  1448798217   2015
## 14029  1448813890   2015
## 14030  1448814423   2015
## 14031  1448798654   2015
## 14032  1448813002   2015
## 14033  1448798537   2015
## 14034   848526251   1996
## 14035   848525932   1996
## 14036   848526431   1996
## 14037   848525661   1996
## 14038   848525903   1996
## 14039   848525799   1996
## 14040   848525799   1996
## 14041   848525833   1996
## 14042   848525764   1996
## 14043   848525833   1996
## 14044   848526389   1996
## 14045   848526550   1996
## 14046   848525730   1996
## 14047   848525799   1996
## 14048   848526334   1996
## 14049   848526084   1996
## 14050   848525971   1996
## 14051   848525661   1996
## 14052   848526594   1996
## 14053   848526274   1996
## 14054   848526572   1996
## 14055   848525510   1996
## 14056   848526334   1996
## 14057   848525554   1996
## 14058   848525873   1996
## 14059   848525661   1996
## 14060   848526550   1996
## 14061   848525554   1996
## 14062   848526406   1996
## 14063   848525932   1996
## 14064   848526037   1996
## 14065   848526572   1996
## 14066   848526334   1996
## 14067   848526060   1996
## 14068   848526484   1996
## 14069   848526274   1996
## 14070   848526363   1996
## 14071   848525661   1996
## 14072   848526508   1996
## 14073   848526484   1996
## 14074   848525589   1996
## 14075   848526363   1996
## 14076   848526529   1996
## 14077   848526037   1996
## 14078   848526334   1996
## 14079   848525694   1996
## 14080   848525873   1996
## 14081   848526005   1996
## 14082   848525694   1996
## 14083   848525624   1996
## 14084   848526363   1996
## 14085   848525510   1996
## 14086   848525764   1996
## 14087   848525932   1996
## 14088   848525589   1996
## 14089   848525873   1996
## 14090   848525624   1996
## 14091   848526711   1996
## 14092   848526037   1996
## 14093   848525624   1996
## 14094   848526061   1996
## 14095   848526061   1996
## 14096   848526431   1996
## 14097   848525694   1996
## 14098   848525554   1996
## 14099   848525589   1996
## 14100   848525873   1996
## 14101   848526389   1996
## 14102   848526484   1996
## 14103   848525589   1996
## 14104   848525833   1996
## 14105   848526594   1996
## 14106   848525730   1996
## 14107   848526037   1996
## 14108   848525730   1996
## 14109   848526363   1996
## 14110   848526431   1996
## 14111   848525730   1996
## 14112   848525510   1996
## 14113   848526671   1996
## 14114   848525833   1996
## 14115   848526037   1996
## 14116   848525903   1996
## 14117   848525624   1996
## 14118   848525903   1996
## 14119   848525873   1996
## 14120   848525971   1996
## 14121   848525694   1996
## 14122   848526615   1996
## 14123   848525554   1996
## 14124   848526508   1996
## 14125   848526594   1996
## 14126   848525932   1996
## 14127   848525624   1996
## 14128   848526431   1996
## 14129   848526484   1996
## 14130   848525730   1996
## 14131   848526251   1996
## 14132   848525932   1996
## 14133   848526508   1996
## 14134   848525799   1996
## 14135   848526615   1996
## 14136   848526005   1996
## 14137   848525799   1996
## 14138   848526632   1996
## 14139   848526363   1996
## 14140   848526529   1996
## 14141   848525971   1996
## 14142   848526458   1996
## 14143   848525764   1996
## 14144   848525554   1996
## 14145   848525694   1996
## 14146   848525510   1996
## 14147   848525510   1996
## 14148   848525589   1996
## 14149   848525764   1996
## 14150   848526061   1996
## 14151   848526005   1996
## 14152   848526615   1996
## 14153   848526431   1996
## 14154   848526274   1996
## 14155   848526711   1996
## 14156   848526334   1996
## 14157  1304992014   2011
## 14158  1304992956   2011
## 14159  1304992470   2011
## 14160  1304992496   2011
## 14161  1304992612   2011
## 14162  1304992044   2011
## 14163  1304992650   2011
## 14164  1304992545   2011
## 14165  1304992002   2011
## 14166  1304992201   2011
## 14167  1304991771   2011
## 14168  1304729472   2011
## 14169  1304993113   2011
## 14170  1304993047   2011
## 14171  1304992536   2011
## 14172  1304729463   2011
## 14173  1304992467   2011
## 14174  1304991727   2011
## 14175  1304993029   2011
## 14176  1304991695   2011
## 14177  1304991813   2011
## 14178  1304992794   2011
## 14179  1304729519   2011
## 14180  1304729511   2011
## 14181  1304992253   2011
## 14182  1304992362   2011
## 14183  1304992164   2011
## 14184  1304991715   2011
## 14185  1304991644   2011
## 14186  1304992145   2011
## 14187  1304991672   2011
## 14188  1304991976   2011
## 14189  1304992476   2011
## 14190  1304992157   2011
## 14191  1304991806   2011
## 14192  1304730634   2011
## 14193  1304729528   2011
## 14194  1304993084   2011
## 14195  1304993135   2011
## 14196  1304729500   2011
## 14197  1304992427   2011
## 14198  1304729546   2011
## 14199  1304992912   2011
## 14200  1304993128   2011
## 14201  1304993105   2011
## 14202  1304991872   2011
## 14203  1304993056   2011
## 14204  1304991877   2011
## 14205  1304992150   2011
## 14206  1304992131   2011
## 14207  1304991788   2011
## 14208  1304992590   2011
## 14209  1304993139   2011
## 14210  1304991885   2011
## 14211  1304729440   2011
## 14212  1304992621   2011
## 14213  1304992965   2011
## 14214  1304992601   2011
## 14215  1304991801   2011
## 14216  1304992197   2011
## 14217  1304993180   2011
## 14218  1304992081   2011
## 14219  1304992945   2011
## 14220  1304992566   2011
## 14221  1304992785   2011
## 14222  1304992367   2011
## 14223  1304992382   2011
## 14224  1304992980   2011
## 14225  1304992244   2011
## 14226  1304992258   2011
## 14227  1304992689   2011
## 14228  1304992372   2011
## 14229  1304992435   2011
## 14230  1304992542   2011
## 14231  1304729481   2011
## 14232  1304992334   2011
## 14233  1304729620   2011
## 14234  1304992089   2011
## 14235  1304992108   2011
## 14236  1304992212   2011
## 14237  1304992510   2011
## 14238  1304992707   2011
## 14239  1304729449   2011
## 14240  1304992236   2011
## 14241  1304992654   2011
## 14242  1304992659   2011
## 14243  1304992445   2011
## 14244  1304992644   2011
## 14245  1304992988   2011
## 14246  1304992274   2011
## 14247  1304992573   2011
## 14248  1304992693   2011
## 14249  1304993132   2011
## 14250  1304992774   2011
## 14251  1304992753   2011
## 14252  1304991839   2011
## 14253  1304992605   2011
## 14254  1304992288   2011
## 14255  1304729573   2011
## 14256  1304993022   2011
## 14257  1304992431   2011
## 14258  1304992724   2011
## 14259  1304729539   2011
## 14260  1304729577   2011
## 14261  1304730537   2011
## 14262  1304992717   2011
## 14263  1304992675   2011
## 14264  1304992393   2011
## 14265  1304992126   2011
## 14266  1304993193   2011
## 14267  1304992208   2011
## 14268  1304992116   2011
## 14269  1304730462   2011
## 14270  1304992960   2011
## 14271  1304992617   2011
## 14272  1304991655   2011
## 14273  1304729607   2011
## 14274  1304992417   2011
## 14275  1304992228   2011
## 14276  1304992578   2011
## 14277  1304991776   2011
## 14278  1304992025   2011
## 14279  1304992638   2011
## 14280  1304992993   2011
## 14281  1304991738   2011
## 14282  1304992101   2011
## 14283  1304991702   2011
## 14284  1304992293   2011
## 14285  1304992773   2011
## 14286  1304993061   2011
## 14287  1304730389   2011
## 14288  1304991683   2011
## 14289  1304991855   2011
## 14290  1304992297   2011
## 14291  1304993087   2011
## 14292  1304991698   2011
## 14293  1304730326   2011
## 14294  1304992905   2011
## 14295  1304993097   2011
## 14296  1304730662   2011
## 14297  1304992317   2011
## 14298  1304992240   2011
## 14299  1304992218   2011
## 14300  1304992595   2011
## 14301  1304730410   2011
## 14302  1304992038   2011
## 14303  1304992192   2011
## 14304  1304993120   2011
## 14305  1304992010   2011
## 14306  1304992278   2011
## 14307  1304993011   2011
## 14308  1304991627   2011
## 14309  1304992976   2011
## 14310  1304992900   2011
## 14311  1304992451   2011
## 14312  1304730598   2011
## 14313  1304992984   2011
## 14314  1304993169   2011
## 14315  1304991723   2011
## 14316  1291779829   2010
## 14317  1291781117   2010
## 14318  1291780058   2010
## 14319  1291777340   2010
## 14320  1291781042   2010
## 14321  1291779579   2010
## 14322  1291780487   2010
## 14323  1291779548   2010
## 14324  1291780453   2010
## 14325  1291780169   2010
## 14326  1291779818   2010
## 14327  1291779564   2010
## 14328  1291780604   2010
## 14329  1291779736   2010
## 14330  1291779708   2010
## 14331  1291779616   2010
## 14332  1291780145   2010
## 14333  1291781185   2010
## 14334  1291779585   2010
## 14335  1291779806   2010
## 14336  1291781070   2010
## 14337  1291779540   2010
## 14338  1291779717   2010
## 14339  1291781004   2010
## 14340  1292392510   2010
## 14341  1291779634   2010
## 14342  1291779941   2010
## 14343  1291779697   2010
## 14344  1291781482   2010
## 14345  1291781464   2010
## 14346  1291777310   2010
## 14347  1291780484   2010
## 14348  1291781501   2010
## 14349  1291781459   2010
## 14350  1291779824   2010
## 14351  1291780026   2010
## 14352  1291780363   2010
## 14353  1291780634   2010
## 14354  1291780751   2010
## 14355  1291780969   2010
## 14356  1291781469   2010
## 14357  1291780019   2010
## 14358  1291779596   2010
## 14359  1291780592   2010
## 14360  1291781119   2010
## 14361  1291779528   2010
## 14362  1291780451   2010
## 14363  1291779626   2010
## 14364  1291780889   2010
## 14365  1291781072   2010
## 14366  1291780472   2010
## 14367  1291780191   2010
## 14368  1291779614   2010
## 14369  1291777522   2010
## 14370  1291781044   2010
## 14371  1291780064   2010
## 14372  1291779810   2010
## 14373  1292392507   2010
## 14374  1291780343   2010
## 14375  1291779546   2010
## 14376  1291780076   2010
## 14377  1291780553   2010
## 14378  1291780430   2010
## 14379  1291777298   2010
## 14380  1292392496   2010
## 14381  1291779758   2010
## 14382  1291780335   2010
## 14383  1291780964   2010
## 14384  1291779761   2010
## 14385  1291780347   2010
## 14386  1291779570   2010
## 14387  1291777280   2010
## 14388  1291781145   2010
## 14389  1291779537   2010
## 14390  1291780196   2010
## 14391  1291779525   2010
## 14392  1292392529   2010
## 14393  1291780171   2010
## 14394  1291780877   2010
## 14395  1291777330   2010
## 14396  1291777466   2010
## 14397  1291777325   2010
## 14398  1291777450   2010
## 14399  1291777293   2010
## 14400  1291780906   2010
## 14401  1291779610   2010
## 14402  1291777353   2010
## 14403  1291780599   2010
## 14404  1291780358   2010
## 14405  1291781033   2010
## 14406  1291780351   2010
## 14407  1291781096   2010
## 14408  1291780054   2010
## 14409  1291780090   2010
## 14410  1291779549   2010
## 14411  1291780425   2010
## 14412  1291779803   2010
## 14413  1291779544   2010
## 14414  1291779591   2010
## 14415  1291781082   2010
## 14416  1291780951   2010
## 14417  1291779535   2010
## 14418  1291779744   2010
## 14419  1291779700   2010
## 14420  1291777250   2010
## 14421  1291780622   2010
## 14422  1291780996   2010
## 14423  1291779657   2010
## 14424  1291779740   2010
## 14425  1291777241   2010
## 14426  1291781112   2010
## 14427  1291779623   2010
## 14428  1291781129   2010
## 14429  1291779714   2010
## 14430  1291781066   2010
## 14431  1291779733   2010
## 14432  1291777509   2010
## 14433  1291779692   2010
## 14434  1291781010   2010
## 14435  1292392675   2010
## 14436  1291779659   2010
## 14437  1291780177   2010
## 14438  1291779589   2010
## 14439  1291781215   2010
## 14440  1291779577   2010
## 14441  1291779607   2010
## 14442  1292392486   2010
## 14443  1291779652   2010
## 14444  1291780898   2010
## 14445  1291779827   2010
## 14446  1291780974   2010
## 14447  1292392653   2010
## 14448  1291777481   2010
## 14449  1291780596   2010
## 14450  1291781001   2010
## 14451  1292392659   2010
## 14452  1291780469   2010
## 14453  1291781025   2010
## 14454  1291779663   2010
## 14455  1291780881   2010
## 14456  1292392561   2010
## 14457  1291781212   2010
## 14458  1291779636   2010
## 14459  1292392492   2010
## 14460  1292392483   2010
## 14461  1291780509   2010
## 14462  1291780992   2010
## 14463  1291781105   2010
## 14464  1291780442   2010
## 14465  1292392712   2010
## 14466  1292392598   2010
## 14467  1292392488   2010
## 14468  1291779648   2010
## 14469  1291781085   2010
## 14470  1292392700   2010
## 14471  1291779888   2010
## 14472  1291780166   2010
## 14473  1291781133   2010
## 14474  1292392505   2010
## 14475  1291780552   2010
## 14476  1291779751   2010
## 14477  1292392595   2010
## 14478  1292392628   2010
## 14479  1292392633   2010
## 14480  1291780606   2010
## 14481  1291779813   2010
## 14482  1291781053   2010
## 14483  1291780941   2010
## 14484  1291780984   2010
## 14485  1292392685   2010
## 14486  1291780476   2010
## 14487  1291780610   2010
## 14488  1291781204   2010
## 14489  1291780084   2010
## 14490  1291781289   2010
## 14491  1291779704   2010
## 14492  1292392763   2010
## 14493  1291780489   2010
## 14494  1292392523   2010
## 14495  1291780148   2010
## 14496  1292392650   2010
## 14497  1292392670   2010
## 14498  1292392500   2010
## 14499  1291781225   2010
## 14500  1292392637   2010
## 14501  1291779884   2010
## 14502  1291780012   2010
## 14503  1292392716   2010
## 14504  1291779687   2010
## 14505  1291780570   2010
## 14506  1292392773   2010
## 14507  1291780456   2010
## 14508  1291780910   2010
## 14509  1291780495   2010
## 14510  1291780580   2010
## 14511  1291779510   2010
## 14512  1016317227   2002
## 14513  1016317600   2002
## 14514  1025556196   2002
## 14515  1016316940   2002
## 14516  1016317584   2002
## 14517  1018816035   2002
## 14518  1016317617   2002
## 14519  1019023190   2002
## 14520  1018816147   2002
## 14521  1016317721   2002
## 14522  1016317489   2002
## 14523  1016317721   2002
## 14524  1016317489   2002
## 14525  1016317856   2002
## 14526  1018815674   2002
## 14527  1016317519   2002
## 14528  1019023054   2002
## 14529  1018816569   2002
## 14530  1016317793   2002
## 14531  1016317396   2002
## 14532  1018816557   2002
## 14533  1019023101   2002
## 14534  1016317617   2002
## 14535  1019023293   2002
## 14536  1016317208   2002
## 14537  1025556197   2002
## 14538  1016317696   2002
## 14539  1025556197   2002
## 14540  1016317140   2002
## 14541  1019023230   2002
## 14542  1016317171   2002
## 14543  1016316990   2002
## 14544  1016317171   2002
## 14545  1025556197   2002
## 14546  1018816582   2002
## 14547  1019023054   2002
## 14548  1019023206   2002
## 14549  1025556197   2002
## 14550  1016317192   2002
## 14551  1016317773   2002
## 14552  1016317193   2002
## 14553  1019023343   2002
## 14554  1018816003   2002
## 14555  1016317074   2002
## 14556  1016317584   2002
## 14557  1016317074   2002
## 14558  1025556197   2002
## 14559  1016317856   2002
## 14560  1018815698   2002
## 14561  1018815528   2002
## 14562  1019023148   2002
## 14563  1018816548   2002
## 14564  1016316940   2002
## 14565  1019022863   2002
## 14566  1019022916   2002
## 14567  1019022863   2002
## 14568  1025556197   2002
## 14569  1019022885   2002
## 14570  1019022916   2002
## 14571  1016317806   2002
## 14572  1019023230   2002
## 14573  1019023029   2002
## 14574  1019023613   2002
## 14575  1019023230   2002
## 14576  1019023569   2002
## 14577  1019023054   2002
## 14578  1019023410   2002
## 14579  1019023029   2002
## 14580  1019023054   2002
## 14581  1019023148   2002
## 14582  1025556197   2002
## 14583  1025556197   2002
## 14584  1019022863   2002
## 14585  1019023343   2002
## 14586  1016317140   2002
## 14587  1016317157   2002
## 14588  1019022937   2002
## 14589  1018816073   2002
## 14590  1019023410   2002
## 14591  1019022937   2002
## 14592  1019023252   2002
## 14593  1019023190   2002
## 14594  1019023169   2002
## 14595  1019023230   2002
## 14596  1016317584   2002
## 14597  1016317074   2002
## 14598  1019023569   2002
## 14599  1019023293   2002
## 14600  1019023650   2002
## 14601  1019023736   2002
## 14602  1016317396   2002
## 14603  1019023410   2002
## 14604  1019023569   2002
## 14605  1019022916   2002
## 14606  1019023517   2002
## 14607  1016317090   2002
## 14608  1019023463   2002
## 14609  1019023369   2002
## 14610  1019022970   2002
## 14611  1019023613   2002
## 14612  1019023101   2002
## 14613  1019023169   2002
## 14614  1025556197   2002
## 14615  1018816035   2002
## 14616  1019023410   2002
## 14617  1016316964   2002
## 14618  1016317111   2002
## 14619  1025556197   2002
## 14620  1025556197   2002
## 14621  1019023517   2002
## 14622  1019022736   2002
## 14623  1019023768   2002
## 14624  1019023078   2002
## 14625  1019023569   2002
## 14626  1019023230   2002
## 14627  1019023343   2002
## 14628  1016317674   2002
## 14629  1019023190   2002
## 14630  1016317773   2002
## 14631  1019022937   2002
## 14632  1016317697   2002
## 14633  1019023078   2002
## 14634  1018815528   2002
## 14635  1025556197   2002
## 14636  1019023540   2002
## 14637  1025556197   2002
## 14638  1019023343   2002
## 14639  1018815770   2002
## 14640  1025556197   2002
## 14641  1018815698   2002
## 14642  1019023275   2002
## 14643  1018816055   2002
## 14644  1018816073   2002
## 14645  1018816106   2002
## 14646  1016317157   2002
## 14647  1018815786   2002
## 14648  1018816035   2002
## 14649  1016317856   2002
## 14650  1019023275   2002
## 14651  1019023054   2002
## 14652  1019023275   2002
## 14653  1019023650   2002
## 14654  1019023753   2002
## 14655  1019023314   2002
## 14656  1025556197   2002
## 14657  1018816106   2002
## 14658  1019023517   2002
## 14659  1018815674   2002
## 14660  1018815528   2002
## 14661  1018815804   2002
## 14662  1018816003   2002
## 14663  1018815770   2002
## 14664  1018816171   2002
## 14665  1019023148   2002
## 14666  1016316859   2002
## 14667  1025556197   2002
## 14668  1019023078   2002
## 14669  1018816130   2002
## 14670  1018815560   2002
## 14671  1018815599   2002
## 14672  1018815560   2002
## 14673  1018816171   2002
## 14674  1018816130   2002
## 14675  1018815560   2002
## 14676  1018815599   2002
## 14677  1018815904   2002
## 14678  1018815804   2002
## 14679  1016317818   2002
## 14680  1018815674   2002
## 14681  1019023078   2002
## 14682  1018816106   2002
## 14683  1019023275   2002
## 14684  1019023252   2002
## 14685  1016317111   2002
## 14686  1018816106   2002
## 14687  1018815528   2002
## 14688  1019023101   2002
## 14689  1019023671   2002
## 14690  1018815698   2002
## 14691  1018815770   2002
## 14692  1018816035   2002
## 14693  1016317306   2002
## 14694  1018815599   2002
## 14695  1016317885   2002
## 14696  1018815786   2002
## 14697  1018815599   2002
## 14698  1025556197   2002
## 14699  1018816171   2002
## 14700  1018815599   2002
## 14701  1018815674   2002
## 14702  1019023314   2002
## 14703  1019023054   2002
## 14704  1019023314   2002
## 14705  1019022702   2002
## 14706  1018815560   2002
## 14707  1018816106   2002
## 14708  1016317872   2002
## 14709  1016317489   2002
## 14710  1016317535   2002
## 14711  1018816106   2002
## 14712  1018815674   2002
## 14713  1025556197   2002
## 14714  1016317396   2002
## 14715  1016317306   2002
## 14716  1016317208   2002
## 14717  1019023169   2002
## 14718  1016317600   2002
## 14719  1018816073   2002
## 14720  1018815574   2002
## 14721  1018815599   2002
## 14722  1018816035   2002
## 14723  1016317833   2002
## 14724  1018815770   2002
## 14725  1018815786   2002
## 14726  1016317074   2002
## 14727  1025556197   2002
## 14728  1016317773   2002
## 14729  1016316859   2002
## 14730  1019022937   2002
## 14731  1018815804   2002
## 14732  1019023102   2002
## 14733  1018815804   2002
## 14734  1018816073   2002
## 14735  1018815953   2002
## 14736  1019023369   2002
## 14737  1019023314   2002
## 14738  1016316990   2002
## 14739  1019023569   2002
## 14740  1018815916   2002
## 14741  1016317140   2002
## 14742  1018816171   2002
## 14743  1018815877   2002
## 14744  1019023613   2002
## 14745  1019023671   2002
## 14746  1018815615   2002
## 14747  1016317856   2002
## 14748  1019023102   2002
## 14749  1019023540   2002
## 14750  1025556197   2002
## 14751  1019023517   2002
## 14752  1025556197   2002
## 14753  1025556197   2002
## 14754  1025556197   2002
## 14755  1016317157   2002
## 14756  1016317519   2002
## 14757  1016317721   2002
## 14758  1019023029   2002
## 14759  1019022819   2002
## 14760  1025556197   2002
## 14761  1019022937   2002
## 14762  1016317253   2002
## 14763  1019022970   2002
## 14764  1019023054   2002
## 14765  1019022672   2002
## 14766  1019023078   2002
## 14767  1016316990   2002
## 14768  1019023569   2002
## 14769  1019023736   2002
## 14770  1016317253   2002
## 14771  1025556197   2002
## 14772  1016317519   2002
## 14773  1019022782   2002
## 14774  1019023569   2002
## 14775  1016316940   2002
## 14776  1025556197   2002
## 14777  1019023517   2002
## 14778  1016317227   2002
## 14779  1019022802   2002
## 14780  1019023736   2002
## 14781  1019022885   2002
## 14782  1019023671   2002
## 14783  1016317111   2002
## 14784  1018815528   2002
## 14785  1019023540   2002
## 14786  1025556197   2002
## 14787  1019023190   2002
## 14788  1016317721   2002
## 14789  1016317564   2002
## 14790  1025556197   2002
## 14791  1025556197   2002
## 14792  1019022970   2002
## 14793  1016316859   2002
## 14794  1018816582   2002
## 14795  1025556328   2002
## 14796  1025556197   2002
## 14797  1025556369   2002
## 14798  1025556197   2002
## 14799  1016317674   2002
## 14800  1025556344   2002
## 14801  1018816337   2002
## 14802  1018816326   2002
## 14803  1018816304   2002
## 14804  1018816304   2002
## 14805  1018816267   2002
## 14806  1018816267   2002
## 14807  1018816267   2002
## 14808  1025556297   2002
## 14809  1025556344   2002
## 14810  1025556285   2002
## 14811  1223256331   2008
## 14812  1223256642   2008
## 14813  1223256805   2008
## 14814  1223256797   2008
## 14815  1223256741   2008
## 14816  1223256282   2008
## 14817  1223256349   2008
## 14818  1223256660   2008
## 14819  1223256822   2008
## 14820  1223256630   2008
## 14821  1223256671   2008
## 14822  1223256689   2008
## 14823  1223256312   2008
## 14824  1223256587   2008
## 14825  1223256273   2008
## 14826  1223256562   2008
## 14827  1223256720   2008
## 14828  1223256572   2008
## 14829  1223256771   2008
## 14830  1223256610   2008
## 14831  1223256296   2008
## 14832  1223256301   2008
## 14833  1223256696   2008
## 14834  1223256813   2008
## 14835  1223256782   2008
## 14836  1223256376   2008
## 14837  1223256264   2008
## 14838  1223256864   2008
## 14839  1223256591   2008
## 14840  1223256617   2008
## 14841  1223256583   2008
## 14842  1223256307   2008
## 14843  1223256759   2008
## 14844  1223256322   2008
## 14845  1223256353   2008
## 14846  1223256635   2008
## 14847  1223256883   2008
## 14848  1223256357   2008
## 14849  1223256336   2008
## 14850  1223256786   2008
## 14851  1223256713   2008
## 14852  1223256372   2008
## 14853  1223256513   2008
## 14854  1223256849   2008
## 14855  1223256540   2008
## 14856  1223256464   2008
## 14857  1223256556   2008
## 14858  1223256707   2008
## 14859  1223256543   2008
## 14860  1223256810   2008
## 14861  1223256730   2008
## 14862  1223256716   2008
## 14863  1223256876   2008
## 14864  1223256756   2008
## 14865  1223256621   2008
## 14866  1223256531   2008
## 14867  1223256727   2008
## 14868  1223256733   2008
## 14869  1223256745   2008
## 14870  1223256468   2008
## 14871  1223256833   2008
## 14872  1223256668   2008
## 14873  1223256472   2008
## 14874  1223256507   2008
## 14875  1223256486   2008
## 14876  1223256835   2008
## 14877  1223256567   2008
## 14878  1223256489   2008
## 14879  1223256595   2008
## 14880  1223256615   2008
## 14881  1223256800   2008
## 14882  1223256776   2008
## 14883  1223256656   2008
## 14884  1223256854   2008
## 14885  1223256680   2008
## 14886  1223256753   2008
## 14887  1460342505   2016
## 14888  1460343666   2016
## 14889  1460342291   2016
## 14890  1460342434   2016
## 14891  1460343084   2016
## 14892  1460343105   2016
## 14893  1460343816   2016
## 14894  1460342280   2016
## 14895  1460342503   2016
## 14896  1460342652   2016
## 14897  1460342605   2016
## 14898  1460342318   2016
## 14899  1460342426   2016
## 14900  1460342660   2016
## 14901  1460342416   2016
## 14902  1460342325   2016
## 14903  1460342687   2016
## 14904  1460342646   2016
## 14905  1460343174   2016
## 14906  1460342344   2016
## 14907  1460342315   2016
## 14908  1460342587   2016
## 14909  1460342304   2016
## 14910  1460342342   2016
## 14911  1460342302   2016
## 14912  1460342491   2016
## 14913  1460342556   2016
## 14914  1460342421   2016
## 14915  1460342673   2016
## 14916  1460342716   2016
## 14917  1460343721   2016
## 14918  1460342440   2016
## 14919  1460342322   2016
## 14920  1460342349   2016
## 14921  1460342403   2016
## 14922  1460342334   2016
## 14923  1460342420   2016
## 14924  1460343815   2016
## 14925  1460342327   2016
## 14926  1460342517   2016
## 14927  1460342468   2016
## 14928  1460343956   2016
## 14929  1460342397   2016
## 14930  1460342494   2016
## 14931  1460342330   2016
## 14932  1460342480   2016
## 14933  1460342320   2016
## 14934  1460342498   2016
## 14935  1460342433   2016
## 14936  1460343849   2016
## 14937  1460342560   2016
## 14938  1460342471   2016
## 14939  1460342413   2016
## 14940  1460343682   2016
## 14941  1460342413   2016
## 14942  1460342563   2016
## 14943  1460342531   2016
## 14944  1460342451   2016
## 14945  1460342715   2016
## 14946  1460342762   2016
## 14947  1460343016   2016
## 14948  1460342648   2016
## 14949  1460342624   2016
## 14950  1460342337   2016
## 14951  1460342488   2016
## 14952  1460343845   2016
## 14953  1460343230   2016
## 14954  1460342786   2016
## 14955  1460343708   2016
## 14956  1460342388   2016
## 14957  1460342443   2016
## 14958  1460342654   2016
## 14959  1460342423   2016
## 14960  1460342389   2016
## 14961  1460343714   2016
## 14962  1460342705   2016
## 14963  1460342676   2016
## 14964  1460342685   2016
## 14965  1460342668   2016
## 14966  1460342613   2016
## 14967  1460342644   2016
## 14968  1460342547   2016
## 14969  1460343718   2016
## 14970  1460343773   2016
## 14971  1460343661   2016
## 14972  1460343802   2016
## 14973  1460342871   2016
## 14974  1460343052   2016
## 14975  1460343011   2016
## 14976  1460343114   2016
## 14977  1460343401   2016
## 14978  1460343083   2016
## 14979  1460342395   2016
## 14980  1460344057   2016
## 14981  1460343048   2016
## 14982  1460343701   2016
## 14983  1460342391   2016
## 14984  1460343777   2016
## 14985  1460342807   2016
## 14986  1460343798   2016
## 14987  1460343379   2016
## 14988  1460343218   2016
## 14989  1460343699   2016
## 14990  1460342855   2016
## 14991  1460343862   2016
## 14992  1460342888   2016
## 14993  1460343786   2016
## 14994  1460343233   2016
## 14995  1460343228   2016
## 14996  1460342819   2016
## 14997  1460343328   2016
## 14998  1460342986   2016
## 14999  1460343800   2016
## 15000  1460343057   2016
## 15001  1460343121   2016
## 15002  1460342400   2016
## 15003  1460342777   2016
## 15004  1460343087   2016
## 15005  1460343726   2016
## 15006  1460342758   2016
## 15007  1460342789   2016
## 15008  1460342393   2016
## 15009  1460343388   2016
## 15010  1460342851   2016
## 15011  1460343331   2016
## 15012  1460342589   2016
## 15013  1460343371   2016
## 15014  1460342797   2016
## 15015  1459405466   2016
## 15016  1459405274   2016
## 15017  1459405871   2016
## 15018  1459405698   2016
## 15019  1459405061   2016
## 15020  1459405701   2016
## 15021  1459405239   2016
## 15022  1459405507   2016
## 15023  1459405325   2016
## 15024  1459405340   2016
## 15025  1459405035   2016
## 15026  1459405031   2016
## 15027  1459405397   2016
## 15028  1459405419   2016
## 15029  1459405539   2016
## 15030  1459405413   2016
## 15031  1459405043   2016
## 15032  1459405132   2016
## 15033  1459405119   2016
## 15034  1459405401   2016
## 15035  1459405443   2016
## 15036  1459405478   2016
## 15037  1459405606   2016
## 15038  1459405252   2016
## 15039  1459405423   2016
## 15040  1459405229   2016
## 15041  1459405410   2016
## 15042  1459405074   2016
## 15043  1459405039   2016
## 15044  1459405262   2016
## 15045  1459405197   2016
## 15046  1459405188   2016
## 15047  1459405186   2016
## 15048  1459405067   2016
## 15049  1459405375   2016
## 15050  1459405452   2016
## 15051  1459405271   2016
## 15052  1459405319   2016
## 15053  1459405332   2016
## 15054  1459405100   2016
## 15055  1459405753   2016
## 15056  1459405504   2016
## 15057  1459405098   2016
## 15058  1459405307   2016
## 15059  1459405160   2016
## 15060  1459405138   2016
## 15061  1459405771   2016
## 15062  1459405179   2016
## 15063  1459405104   2016
## 15064  1459405390   2016
## 15065  1459405765   2016
## 15066  1459405174   2016
## 15067  1459405166   2016
## 15068  1459405380   2016
## 15069  1459405344   2016
## 15070  1459405292   2016
## 15071  1459405048   2016
## 15072  1459405121   2016
## 15073  1459405437   2016
## 15074  1459405880   2016
## 15075  1459405111   2016
## 15076  1459405355   2016
## 15077  1459405578   2016
## 15078  1459405175   2016
## 15079  1459405127   2016
## 15080  1459405094   2016
## 15081  1459405107   2016
## 15082  1459404749   2016
## 15083  1459404907   2016
## 15084  1459404951   2016
## 15085  1459404758   2016
## 15086   938586006   1999
## 15087   950999958   2000
## 15088   938586999   1999
## 15089   938586999   1999
## 15090   938587073   1999
## 15091   938585500   1999
## 15092   938585285   1999
## 15093   938587407   1999
## 15094   947519500   2000
## 15095   938623596   1999
## 15096   938586337   1999
## 15097   938585857   1999
## 15098   938586560   1999
## 15099   938585556   1999
## 15100   938586591   1999
## 15101   947519825   2000
## 15102   938584975   1999
## 15103   938587407   1999
## 15104   938585656   1999
## 15105   938587203   1999
## 15106   938587172   1999
## 15107   938586663   1999
## 15108   938585499   1999
## 15109   938587407   1999
## 15110   938586403   1999
## 15111   938587034   1999
## 15112   938587301   1999
## 15113   938584894   1999
## 15114   938586706   1999
## 15115   938586006   1999
## 15116   938585500   1999
## 15117   938586006   1999
## 15118   947519681   2000
## 15119   938585500   1999
## 15120   947519527   2000
## 15121   938586021   1999
## 15122   947519711   2000
## 15123   938586662   1999
## 15124   938623534   1999
## 15125   938587172   1999
## 15126   938587876   1999
## 15127   938588239   1999
## 15128   938588178   1999
## 15129   938624252   1999
## 15130   938588142   1999
## 15131   938588142   1999
## 15132   938588109   1999
## 15133   938623596   1999
## 15134   938587795   1999
## 15135   938587916   1999
## 15136   938623534   1999
## 15137   938588010   1999
## 15138   938587817   1999
## 15139   938623596   1999
## 15140   938587795   1999
## 15141   938587876   1999
## 15142   938587876   1999
## 15143   938624591   1999
## 15144   938588142   1999
## 15145   938588329   1999
## 15146   938624708   1999
## 15147   938588392   1999
## 15148   938624591   1999
## 15149   938588290   1999
## 15150   938588290   1999
## 15151   938624617   1999
## 15152   938623675   1999
## 15153   938587916   1999
## 15154   938588290   1999
## 15155   938623534   1999
## 15156   938624591   1999
## 15157   938624252   1999
## 15158   938588178   1999
## 15159   938585037   1999
## 15160   938623534   1999
## 15161   938623534   1999
## 15162   938584975   1999
## 15163   938623675   1999
## 15164   938584894   1999
## 15165   947519573   2000
## 15166   947519501   2000
## 15167   938624252   1999
## 15168   938587916   1999
## 15169   938587876   1999
## 15170   938623675   1999
## 15171   938624252   1999
## 15172   938588358   1999
## 15173   938585285   1999
## 15174   938587104   1999
## 15175   947519657   2000
## 15176   938585094   1999
## 15177   938585718   1999
## 15178   938586764   1999
## 15179   938585285   1999
## 15180   938585094   1999
## 15181   938584894   1999
## 15182   938585037   1999
## 15183   938586999   1999
## 15184   938585613   1999
## 15185   938587240   1999
## 15186   938549817   1999
## 15187   938587337   1999
## 15188   938586216   1999
## 15189   938586895   1999
## 15190   947519573   2000
## 15191   947519658   2000
## 15192   938623534   1999
## 15193   938624529   1999
## 15194   938624252   1999
## 15195   938623596   1999
## 15196   947519658   2000
## 15197   938624807   1999
## 15198   947519629   2000
## 15199   938623675   1999
## 15200   938587916   1999
## 15201   938584894   1999
## 15202   938624807   1999
## 15203   938588239   1999
## 15204   938624708   1999
## 15205   947519712   2000
## 15206   938588178   1999
## 15207   938587980   1999
## 15208   938584974   1999
## 15209   938585869   1999
## 15210   938623675   1999
## 15211   938624708   1999
## 15212   938624807   1999
## 15213   947519712   2000
## 15214   943444622   1999
## 15215   938586074   1999
## 15216   938585500   1999
## 15217   942783208   1999
## 15218   938586999   1999
## 15219   942783156   1999
## 15220   938584894   1999
## 15221   938549745   1999
## 15222   938623241   1999
## 15223   951000065   2000
## 15224   938623208   1999
## 15225   947519597   2000
## 15226   943444622   1999
## 15227   938549991   1999
## 15228   938586006   1999
## 15229   938549686   1999
## 15230   950999958   2000
## 15231   938587172   1999
## 15232   938549053   1999
## 15233   939314422   1999
## 15234   947519286   2000
## 15235   942783078   1999
## 15236   940223140   1999
## 15237   942783078   1999
## 15238   949880591   2000
## 15239   950999736   2000
## 15240   951000163   2000
## 15241   953428514   2000
## 15242   947519369   2000
## 15243   947519315   2000
## 15244   948412004   2000
## 15245   953399961   2000
## 15246  1015037861   2002
## 15247  1015038047   2002
## 15248   962144750   2000
## 15249   963871870   2000
## 15250   970943910   2000
## 15251   982280677   2001
## 15252  1015037811   2002
## 15253  1015038093   2002
## 15254  1015037795   2002
## 15255   982280581   2001
## 15256  1015038047   2002
## 15257  1044786615   2003
## 15258   982280624   2001
## 15259  1015037743   2002
## 15260  1015037795   2002
## 15261   982280553   2001
## 15262  1015037725   2002
## 15263  1015037951   2002
## 15264  1044786697   2003
## 15265  1015037824   2002
## 15266  1044786543   2003
## 15267  1015037811   2002
## 15268  1044786919   2003
## 15269  1015037662   2002
## 15270  1015037662   2002
## 15271  1025915895   2002
## 15272  1044786919   2003
## 15273  1044754204   2003
## 15274   854193977   1997
## 15275   854194024   1997
## 15276   854194023   1997
## 15277   854194024   1997
## 15278   854193977   1997
## 15279   854193977   1997
## 15280   854194056   1997
## 15281   854193977   1997
## 15282   854194208   1997
## 15283   854194208   1997
## 15284   854193977   1997
## 15285   854194086   1997
## 15286   854193977   1997
## 15287   854194024   1997
## 15288   854193977   1997
## 15289   854194086   1997
## 15290   854194056   1997
## 15291   854194024   1997
## 15292   854193977   1997
## 15293   854194208   1997
## 15294   854193977   1997
## 15295   854194056   1997
## 15296   854194111   1997
## 15297   854194056   1997
## 15298   854194086   1997
## 15299  1292402318   2010
## 15300  1292402288   2010
## 15301  1292402307   2010
## 15302  1292402305   2010
## 15303  1292402500   2010
## 15304  1292402324   2010
## 15305  1292402404   2010
## 15306  1292402282   2010
## 15307  1292402634   2010
## 15308  1292402274   2010
## 15309  1292402397   2010
## 15310  1292402458   2010
## 15311  1292402496   2010
## 15312  1292402330   2010
## 15313  1292402569   2010
## 15314  1292402493   2010
## 15315  1292402603   2010
## 15316  1292402446   2010
## 15317  1292402512   2010
## 15318  1292402444   2010
## 15319  1292402503   2010
## 15320  1292402504   2010
## 15321  1292402584   2010
## 15322  1292402509   2010
## 15323  1292402299   2010
## 15324  1292402616   2010
## 15325  1292402316   2010
## 15326  1292402618   2010
## 15327  1292402302   2010
## 15328  1292402401   2010
## 15329  1292402651   2010
## 15330  1292402682   2010
## 15331  1292402269   2010
## 15332  1292402271   2010
## 15333  1292402491   2010
## 15334  1292402279   2010
## 15335  1292402688   2010
## 15336  1292402332   2010
## 15337  1292402692   2010
## 15338  1292402294   2010
## 15339  1292402724   2010
## 15340  1292402643   2010
## 15341  1292402713   2010
## 15342  1292402711   2010
## 15343  1292402719   2010
## 15344  1292402460   2010
## 15345  1292402625   2010
## 15346  1292402696   2010
## 15347  1292402671   2010
## 15348  1292402507   2010
## 15349  1292402610   2010
## 15350  1292402716   2010
## 15351  1292402497   2010
## 15352  1292402675   2010
## 15353  1292402393   2010
## 15354   957895013   2000
## 15355   956599039   2000
## 15356   956590655   2000
## 15357   956591671   2000
## 15358   957894204   2000
## 15359   956598974   2000
## 15360   959976593   2000
## 15361   957894251   2000
## 15362   958248432   2000
## 15363   956598567   2000
## 15364   956600232   2000
## 15365   956598787   2000
## 15366   957980283   2000
## 15367   957895295   2000
## 15368   957895047   2000
## 15369   956590822   2000
## 15370   958248486   2000
## 15371   957895967   2000
## 15372   957894564   2000
## 15373   957893991   2000
## 15374   957894848   2000
## 15375   956598725   2000
## 15376   957894450   2000
## 15377   957895469   2000
## 15378   957894935   2000
## 15379   956599987   2000
## 15380   956598609   2000
## 15381   957893897   2000
## 15382   957895080   2000
## 15383   956598697   2000
## 15384   957894400   2000
## 15385   957893763   2000
## 15386   957894358   2000
## 15387   956591745   2000
## 15388   957894232   2000
## 15389   957895736   2000
## 15390   956598995   2000
## 15391   956598677   2000
## 15392   956599916   2000
## 15393   957893949   2000
## 15394   957896110   2000
## 15395   956600309   2000
## 15396   956599860   2000
## 15397   956598960   2000
## 15398   957895947   2000
## 15399   957895251   2000
## 15400   958249214   2000
## 15401   958249107   2000
## 15402   958248568   2000
## 15403   958248859   2000
## 15404   956600134   2000
## 15405   958248997   2000
## 15406   956600183   2000
## 15407   958249091   2000
## 15408   957894006   2000
## 15409   957894532   2000
## 15410   957894532   2000
## 15411   957894170   2000
## 15412   956590890   2000
## 15413   956600199   2000
## 15414   957980250   2000
## 15415   957893915   2000
## 15416   957894170   2000
## 15417   956590911   2000
## 15418   956591782   2000
## 15419   957980939   2000
## 15420   958248454   2000
## 15421   956590911   2000
## 15422   957893672   2000
## 15423   957894400   2000
## 15424   957895604   2000
## 15425   957894532   2000
## 15426   957894505   2000
## 15427   956598567   2000
## 15428   957980883   2000
## 15429   958250022   2000
## 15430   956600050   2000
## 15431   956591420   2000
## 15432   958250102   2000
## 15433   958250119   2000
## 15434   956590890   2000
## 15435   956590655   2000
## 15436   957894204   2000
## 15437   956600246   2000
## 15438   957980779   2000
## 15439   957980120   2000
## 15440   956598803   2000
## 15441   957895047   2000
## 15442   956598493   2000
## 15443   957895908   2000
## 15444   956598942   2000
## 15445   956600034   2000
## 15446   956590727   2000
## 15447   956590677   2000
## 15448   956598677   2000
## 15449   956590655   2000
## 15450   956600065   2000
## 15451   956598634   2000
## 15452   956590727   2000
## 15453   956590706   2000
## 15454   957980851   2000
## 15455   957980883   2000
## 15456   956590822   2000
## 15457   956591803   2000
## 15458   956600034   2000
## 15459   956590624   2000
## 15460   956590609   2000
## 15461   956598725   2000
## 15462   956591655   2000
## 15463   958248832   2000
## 15464   956591745   2000
## 15465   956590956   2000
## 15466   956600103   2000
## 15467   956591745   2000
## 15468   957894084   2000
## 15469   956598942   2000
## 15470   957982142   2000
## 15471   956600396   2000
## 15472   956599860   2000
## 15473   956598921   2000
## 15474   956591596   2000
## 15475   957980120   2000
## 15476   956591745   2000
## 15477   956598656   2000
## 15478   957893763   2000
## 15479   956600155   2000
## 15480   956591420   2000
## 15481   959976680   2000
## 15482   958249168   2000
## 15483   957894142   2000
## 15484   959976634   2000
## 15485   957980851   2000
## 15486   958250063   2000
## 15487   957980939   2000
## 15488   959976817   2000
## 15489   956600103   2000
## 15490   957980883   2000
## 15491   957894450   2000
## 15492   957896110   2000
## 15493   956598725   2000
## 15494   956600265   2000
## 15495   956599182   2000
## 15496   956598921   2000
## 15497   957980939   2000
## 15498   956599941   2000
## 15499   956591548   2000
## 15500   956599833   2000
## 15501   956598825   2000
## 15502   957893991   2000
## 15503   957894807   2000
## 15504   956598634   2000
## 15505   956599987   2000
## 15506   956591745   2000
## 15507   956600083   2000
## 15508   956591762   2000
## 15509   956590843   2000
## 15510   957894466   2000
## 15511   957894532   2000
## 15512   957895999   2000
## 15513   957980222   2000
## 15514   956591390   2000
## 15515   956598841   2000
## 15516   956591803   2000
## 15517   956590727   2000
## 15518   956590890   2000
## 15519   957896110   2000
## 15520   956598768   2000
## 15521   957894648   2000
## 15522   957895828   2000
## 15523   956590655   2000
## 15524   957893541   2000
## 15525   956598825   2000
## 15526   956599082   2000
## 15527   956590405   2000
## 15528   956590911   2000
## 15529   957895604   2000
## 15530   956598567   2000
## 15531   957893656   2000
## 15532   958248642   2000
## 15533   956590465   2000
## 15534   956600284   2000
## 15535   957980614   2000
## 15536   956598898   2000
## 15537   956590934   2000
## 15538   956598547   2000
## 15539   956591671   2000
## 15540   956598841   2000
## 15541   956590405   2000
## 15542   957893839   2000
## 15543   956590677   2000
## 15544   956590890   2000
## 15545   956598869   2000
## 15546   956598803   2000
## 15547   956590706   2000
## 15548   956590862   2000
## 15549   957895908   2000
## 15550   956598567   2000
## 15551   956600155   2000
## 15552   956591420   2000
## 15553   956598567   2000
## 15554   957893972   2000
## 15555   956598656   2000
## 15556   956598547   2000
## 15557   956598725   2000
## 15558   956598656   2000
## 15559   956598869   2000
## 15560   956598869   2000
## 15561   956590822   2000
## 15562   957895908   2000
## 15563   956598942   2000
## 15564   956599082   2000
## 15565   956600349   2000
## 15566   956598768   2000
## 15567   956600349   2000
## 15568   957893991   2000
## 15569   956590822   2000
## 15570   956590677   2000
## 15571   956600199   2000
## 15572   956598590   2000
## 15573   956590862   2000
## 15574   956598547   2000
## 15575   956600349   2000
## 15576   956598609   2000
## 15577   957979592   2000
## 15578   956598898   2000
## 15579   956590609   2000
## 15580   956591803   2000
## 15581   957893782   2000
## 15582   957894084   2000
## 15583   957895874   2000
## 15584   956591624   2000
## 15585   956598547   2000
## 15586   957894707   2000
## 15587   958248668   2000
## 15588   957980677   2000
## 15589   956599013   2000
## 15590   956591745   2000
## 15591   956591762   2000
## 15592   957894685   2000
## 15593   956598768   2000
## 15594   956591782   2000
## 15595   956591636   2000
## 15596   956599013   2000
## 15597   956599039   2000
## 15598   956600217   2000
## 15599   956599039   2000
## 15600   956599821   2000
## 15601   957895947   2000
## 15602   956598697   2000
## 15603   956598697   2000
## 15604   956598567   2000
## 15605   956598656   2000
## 15606   957894204   2000
## 15607   956598742   2000
## 15608   956599971   2000
## 15609   957980378   2000
## 15610   957980041   2000
## 15611   957980557   2000
## 15612   957980426   2000
## 15613   956598961   2000
## 15614   957980250   2000
## 15615   957980072   2000
## 15616   957980173   2000
## 15617   957980222   2000
## 15618   957980072   2000
## 15619   957980400   2000
## 15620   957980222   2000
## 15621   956598590   2000
## 15622   957980146   2000
## 15623   956600328   2000
## 15624   956599100   2000
## 15625   956599182   2000
## 15626   957894870   2000
## 15627   959976792   2000
## 15628   958248516   2000
## 15629   957980962   2000
## 15630   956599821   2000
## 15631   956591596   2000
## 15632   957980557   2000
## 15633   957894170   2000
## 15634   956591671   2000
## 15635   958250139   2000
## 15636   957980094   2000
## 15637   957893740   2000
## 15638   957895586   2000
## 15639   957896110   2000
## 15640   957893897   2000
## 15641   958249411   2000
## 15642   957896069   2000
## 15643   956600328   2000
## 15644   957894126   2000
## 15645   957894285   2000
## 15646   957982093   2000
## 15647   959976817   2000
## 15648   957894309   2000
## 15649   957893520   2000
## 15650   957980451   2000
## 15651   957894935   2000
## 15652   958248949   2000
## 15653   957893804   2000
## 15654   957980283   2000
## 15655   957895947   2000
## 15656   957893804   2000
## 15657   957980283   2000
## 15658   956591390   2000
## 15659   958248432   2000
## 15660   958248454   2000
## 15661   956600034   2000
## 15662   957894505   2000
## 15663   956591420   2000
## 15664   957894505   2000
## 15665   957894606   2000
## 15666   957895650   2000
## 15667   956600328   2000
## 15668   958249148   2000
## 15669   957895013   2000
## 15670   957894870   2000
## 15671   956600246   2000
## 15672   957980072   2000
## 15673   956590934   2000
## 15674   956598898   2000
## 15675   956591762   2000
## 15676   957980677   2000
## 15677   956598869   2000
## 15678   956598898   2000
## 15679   957893719   2000
## 15680   956599013   2000
## 15681   956598898   2000
## 15682   956591624   2000
## 15683   956591803   2000
## 15684   956598697   2000
## 15685   957894100   2000
## 15686   956599162   2000
## 15687   956598825   2000
## 15688   956599039   2000
## 15689   957894084   2000
## 15690   956600328   2000
## 15691   957893949   2000
## 15692   956599162   2000
## 15693   957895999   2000
## 15694   956600379   2000
## 15695   957894285   2000
## 15696   957980426   2000
## 15697   957980309   2000
## 15698   956590465   2000
## 15699   957980451   2000
## 15700   957980072   2000
## 15701   957979592   2000
## 15702   957980400   2000
## 15703   957894204   2000
## 15704   957894807   2000
## 15705   957980222   2000
## 15706   956590862   2000
## 15707   958249253   2000
## 15708   958250044   2000
## 15709   956598510   2000
## 15710   956591624   2000
## 15711   959976656   2000
## 15712   957894667   2000
## 15713   959976680   2000
## 15714   956600232   2000
## 15715   957896110   2000
## 15716   956599916   2000
## 15717   956599137   2000
## 15718   956600217   2000
## 15719   956600309   2000
## 15720   956598634   2000
## 15721   956600134   2000
## 15722   958250044   2000
## 15723   958250044   2000
## 15724   956599039   2000
## 15725   957980851   2000
## 15726   957980999   2000
## 15727   958250119   2000
## 15728   957980196   2000
## 15729   957980939   2000
## 15730   959976656   2000
## 15731   959976680   2000
## 15732   957980451   2000
## 15733   958248997   2000
## 15734   958248471   2000
## 15735   957894627   2000
## 15736   957980072   2000
## 15737   957980426   2000
## 15738   958249214   2000
## 15739   956591745   2000
## 15740   956591576   2000
## 15741   957980962   2000
## 15742   958250078   2000
## 15743   958250102   2000
## 15744   959976634   2000
## 15745   958248878   2000
## 15746   957894667   2000
## 15747   957895251   2000
## 15748   956599971   2000
## 15749   957980309   2000
## 15750   956600134   2000
## 15751   956590677   2000
## 15752   959976680   2000
## 15753   957894309   2000
## 15754   957893782   2000
## 15755   956598921   2000
## 15756   956599137   2000
## 15757   956591624   2000
## 15758   956600002   2000
## 15759   957894741   2000
## 15760   957894126   2000
## 15761   956599117   2000
## 15762   957894627   2000
## 15763   957894037   2000
## 15764   956591576   2000
## 15765   957896048   2000
## 15766   956599082   2000
## 15767   956598787   2000
## 15768   958248997   2000
## 15769   956591624   2000
## 15770   957894400   2000
## 15771   956599941   2000
## 15772   956600363   2000
## 15773   956600183   2000
## 15774   957893857   2000
## 15775   956591745   2000
## 15776   957894424   2000
## 15777   957894126   2000
## 15778   957893656   2000
## 15779   957893897   2000
## 15780   958249590   2000
## 15781   956600065   2000
## 15782   956600265   2000
## 15783   957980072   2000
## 15784   957980309   2000
## 15785   958248391   2000
## 15786   956600183   2000
## 15787   956598656   2000
## 15788   957894400   2000
## 15789   958248949   2000
## 15790   958249041   2000
## 15791   957894883   2000
## 15792   958249076   2000
## 15793   957981110   2000
## 15794   956599941   2000
## 15795   957980196   2000
## 15796   957980146   2000
## 15797   957980343   2000
## 15798   957980283   2000
## 15799   957894989   2000
## 15800   957895047   2000
## 15801   957895736   2000
## 15802   957894760   2000
## 15803   957980378   2000
## 15804   956591624   2000
## 15805   958248533   2000
## 15806   959976656   2000
## 15807   957894989   2000
## 15808   957980072   2000
## 15809   957980146   2000
## 15810   957980677   2000
## 15811   957980041   2000
## 15812   957893541   2000
## 15813   957981224   2000
## 15814   956598825   2000
## 15815   957895189   2000
## 15816   957980173   2000
## 15817   957894170   2000
## 15818   957895908   2000
## 15819   957980426   2000
## 15820   957894057   2000
## 15821   957893520   2000
## 15822   956590405   2000
## 15823   956600363   2000
## 15824   956599860   2000
## 15825   956590956   2000
## 15826   957894627   2000
## 15827   956599137   2000
## 15828   957980173   2000
## 15829   957980094   2000
## 15830   957894788   2000
## 15831   956600284   2000
## 15832   957894309   2000
## 15833   956591782   2000
## 15834   958248454   2000
## 15835   958249021   2000
## 15836   957980222   2000
## 15837   956599971   2000
## 15838   958249508   2000
## 15839   958248911   2000
## 15840   959976634   2000
## 15841   956590911   2000
## 15842   956600309   2000
## 15843   957895278   2000
## 15844   956600349   2000
## 15845   957980883   2000
## 15846   956590890   2000
## 15847   956598547   2000
## 15848   956591576   2000
## 15849   957894037   2000
## 15850   956600134   2000
## 15851   957894309   2000
## 15852   958248928   2000
## 15853   957893857   2000
## 15854   957980469   2000
## 15855   956599891   2000
## 15856   956600002   2000
## 15857   957895909   2000
## 15858   956598825   2000
## 15859   956590677   2000
## 15860   956599182   2000
## 15861   956600103   2000
## 15862   956591420   2000
## 15863   957894170   2000
## 15864   957894726   2000
## 15865   957894251   2000
## 15866   957980704   2000
## 15867   956600155   2000
## 15868   956599891   2000
## 15869   956599971   2000
## 15870   956599039   2000
## 15871   956590465   2000
## 15872   959976634   2000
## 15873   957893672   2000
## 15874   956599061   2000
## 15875   956600083   2000
## 15876   959976817   2000
## 15877   957895846   2000
## 15878   956591596   2000
## 15879   956590934   2000
## 15880   956600309   2000
## 15881   957979592   2000
## 15882   956590890   2000
## 15883   956590465   2000
## 15884   956599941   2000
## 15885   957896083   2000
## 15886   956599100   2000
## 15887   957980939   2000
## 15888   957980704   2000
## 15889   957980740   2000
## 15890   956591576   2000
## 15891   956598768   2000
## 15892   957894126   2000
## 15893   956598921   2000
## 15894   957980120   2000
## 15895   957895947   2000
## 15896   956598510   2000
## 15897   957895708   2000
## 15898   957893696   2000
## 15899   956600217   2000
## 15900   957894685   2000
## 15901   958249773   2000
## 15902   956598547   2000
## 15903   957894400   2000
## 15904   957893930   2000
## 15905   956598869   2000
## 15906   956590956   2000
## 15907   957893915   2000
## 15908   956599162   2000
## 15909   957894309   2000
## 15910   957893972   2000
## 15911   956590727   2000
## 15912   956600183   2000
## 15913   956591596   2000
## 15914   956600379   2000
## 15915   956600112   2000
## 15916   957894788   2000
## 15917   956598768   2000
## 15918   956590706   2000
## 15919   956600396   2000
## 15920   957894588   2000
## 15921   957894505   2000
## 15922   958248878   2000
## 15923   957894588   2000
## 15924   957895233   2000
## 15925   958249181   2000
## 15926   958248367   2000
## 15927   957893696   2000
## 15928   956598432   2000
## 15929   957893451   2000
## 15930   957893451   2000
## 15931   956590465   2000
## 15932   956599821   2000
## 15933   957893364   2000
## 15934   957893405   2000
## 15935   957893405   2000
## 15936   957894564   2000
## 15937   956599874   2000
## 15938   956598787   2000
## 15939   957893451   2000
## 15940   958248911   2000
## 15941   957893804   2000
## 15942   956591745   2000
## 15943   956591576   2000
## 15944   956598898   2000
## 15945   956591391   2000
## 15946   957894788   2000
## 15947   956600309   2000
## 15948   957893364   2000
## 15949   956598961   2000
## 15950   957894424   2000
## 15951   956599061   2000
## 15952   958248928   2000
## 15953   956591391   2000
## 15954   957894870   2000
## 15955   957895495   2000
## 15956   956590584   2000
## 15957   957980779   2000
## 15958   957894667   2000
## 15959   957894482   2000
## 15960   956598974   2000
## 15961   956590677   2000
## 15962   956591655   2000
## 15963   956598590   2000
## 15964   956598677   2000
## 15965   957894760   2000
## 15966   959976656   2000
## 15967   956598345   2000
## 15968   957893428   2000
## 15969   956600014   2000
## 15970   957893629   2000
## 15971   956591420   2000
## 15972   957895708   2000
## 15973   957893428   2000
## 15974   957980758   2000
## 15975   957893972   2000
## 15976   957894267   2000
## 15977   957981575   2000
## 15978   957981575   2000
## 15979   959975630   2000
## 15980   956590822   2000
## 15981   957981594   2000
## 15982   957980704   2000
## 15983   956600396   2000
## 15984   956599061   2000
## 15985   956591762   2000
## 15986   957980939   2000
## 15987   957980250   2000
## 15988   956599039   2000
## 15989   958248161   2000
## 15990   957893471   2000
## 15991   957981663   2000
## 15992   959021992   2000
## 15993   956598590   2000
## 15994   957981516   2000
## 15995   956590822   2000
## 15996   957980851   2000
## 15997   957895846   2000
## 15998   957981575   2000
## 15999   957981492   2000
## 16000   959975659   2000
## 16001   959976792   2000
## 16002   958248322   2000
## 16003   959976817   2000
## 16004   959975764   2000
## 16005   959975910   2000
## 16006   959975744   2000
## 16007   959975931   2000
## 16008   959975786   2000
## 16009   959975848   2000
## 16010   959975786   2000
## 16011   959975786   2000
## 16012   959976043   2000
## 16013   959021771   2000
## 16014   959975885   2000
## 16015   959976106   2000
## 16016   959975764   2000
## 16017   959975848   2000
## 16018   959975848   2000
## 16019   959975848   2000
## 16020   959021792   2000
## 16021   959976044   2000
## 16022   959975991   2000
## 16023   959975910   2000
## 16024   959975991   2000
## 16025   959975875   2000
## 16026   959975875   2000
## 16027   959975910   2000
## 16028   961791852   2000
## 16029   959975726   2000
## 16030   959975744   2000
## 16031   957895828   2000
## 16032  1117481918   2005
## 16033  1117402453   2005
## 16034  1117403556   2005
## 16035  1117751197   2005
## 16036  1117482144   2005
## 16037  1117402575   2005
## 16038  1117750991   2005
## 16039  1117751173   2005
## 16040  1117482289   2005
## 16041  1117403705   2005
## 16042  1117403402   2005
## 16043  1117482311   2005
## 16044  1117315933   2005
## 16045  1117403064   2005
## 16046  1117751391   2005
## 16047  1117402874   2005
## 16048  1117482329   2005
## 16049  1117482051   2005
## 16050  1117403711   2005
## 16051  1117315897   2005
## 16052  1117402549   2005
## 16053  1117315794   2005
## 16054  1117481923   2005
## 16055  1117403684   2005
## 16056  1117481910   2005
## 16057  1117403369   2005
## 16058  1117481941   2005
## 16059  1117403410   2005
## 16060  1117403375   2005
## 16061  1117315956   2005
## 16062  1117481903   2005
## 16063  1117315673   2005
## 16064  1117315810   2005
## 16065  1117751643   2005
## 16066  1117751071   2005
## 16067  1117403286   2005
## 16068  1117402521   2005
## 16069  1117315867   2005
## 16070  1117403717   2005
## 16071  1117402531   2005
## 16072  1117750982   2005
## 16073  1117402540   2005
## 16074  1117315619   2005
## 16075  1117482082   2005
## 16076  1117315761   2005
## 16077  1117751684   2005
## 16078  1117315940   2005
## 16079  1117315845   2005
## 16080  1117403832   2005
## 16081  1117482271   2005
## 16082  1117751407   2005
## 16083  1117403012   2005
## 16084  1117403661   2005
## 16085  1117315874   2005
## 16086  1117402713   2005
## 16087  1117482349   2005
## 16088  1117482016   2005
## 16089  1117403605   2005
## 16090  1117402464   2005
## 16091  1117482022   2005
## 16092  1117481971   2005
## 16093  1117403390   2005
## 16094  1117403674   2005
## 16095  1117482135   2005
## 16096  1117403280   2005
## 16097  1117482102   2005
## 16098  1117402645   2005
## 16099  1117402477   2005
## 16100  1117402625   2005
## 16101  1117404328   2005
## 16102  1117403775   2005
## 16103  1117403646   2005
## 16104  1117482339   2005
## 16105  1117403497   2005
## 16106  1117315690   2005
## 16107  1117402615   2005
## 16108  1117751135   2005
## 16109  1117403745   2005
## 16110  1117403493   2005
## 16111  1117315905   2005
## 16112  1117403477   2005
## 16113  1117481980   2005
## 16114  1117403312   2005
## 16115  1117315927   2005
## 16116  1117751234   2005
## 16117  1117403423   2005
## 16118  1117403588   2005
## 16119  1117751478   2005
## 16120  1117404267   2005
## 16121  1117482004   2005
## 16122  1117751459   2005
## 16123  1117751568   2005
## 16124  1117403597   2005
## 16125  1117402600   2005
## 16126  1446673724   2015
## 16127  1446674277   2015
## 16128  1446673679   2015
## 16129  1446673753   2015
## 16130  1446674272   2015
## 16131  1446673698   2015
## 16132  1446673907   2015
## 16133  1446673861   2015
## 16134  1446673896   2015
## 16135  1446673678   2015
## 16136  1446674058   2015
## 16137  1446673686   2015
## 16138  1446673781   2015
## 16139  1446673683   2015
## 16140  1446674309   2015
## 16141  1446674117   2015
## 16142  1446673694   2015
## 16143  1446674021   2015
## 16144  1446674123   2015
## 16145  1446673739   2015
## 16146  1446673986   2015
## 16147  1446673682   2015
## 16148  1446674066   2015
## 16149  1446674097   2015
## 16150  1446673947   2015
## 16151  1446673870   2015
## 16152  1446673980   2015
## 16153  1446673794   2015
## 16154  1446673711   2015
## 16155  1446674082   2015
## 16156  1446674352   2015
## 16157  1446673951   2015
## 16158  1446674197   2015
## 16159  1446673807   2015
## 16160  1446673875   2015
## 16161  1446673928   2015
## 16162  1446674148   2015
## 16163  1446673690   2015
## 16164  1446674306   2015
## 16165  1446674190   2015
## 16166  1446674365   2015
## 16167  1446674300   2015
## 16168  1446674037   2015
## 16169  1446674282   2015
## 16170  1446673836   2015
## 16171  1446674062   2015
## 16172  1446674335   2015
## 16173  1446673799   2015
## 16174  1446674429   2015
## 16175  1446674211   2015
## 16176  1446673706   2015
## 16177  1446673820   2015
## 16178  1446673718   2015
## 16179  1446674103   2015
## 16180  1446674088   2015
## 16181  1446674400   2015
## 16182  1446673934   2015
## 16183  1446674030   2015
## 16184  1446673778   2015
## 16185  1446673846   2015
## 16186  1446673714   2015
## 16187  1446673734   2015
## 16188  1446674215   2015
## 16189  1446673992   2015
## 16190  1446673791   2015
## 16191  1446673802   2015
## 16192  1446673764   2015
## 16193  1446673771   2015
## 16194  1446674330   2015
## 16195  1446674139   2015
## 16196  1446674396   2015
## 16197  1446673703   2015
## 16198  1446674193   2015
## 16199  1446673832   2015
## 16200  1446673756   2015
## 16201  1446674078   2015
## 16202  1085578997   2004
## 16203  1101130624   2004
## 16204  1100533597   2004
## 16205  1085573826   2004
## 16206  1088058230   2004
## 16207  1086093635   2004
## 16208  1085574077   2004
## 16209  1100533528   2004
## 16210  1085581768   2004
## 16211  1100533551   2004
## 16212  1086094595   2004
## 16213  1086272608   2004
## 16214  1085574005   2004
## 16215  1088058158   2004
## 16216  1100533831   2004
## 16217  1088058675   2004
## 16218  1086093600   2004
## 16219  1085574450   2004
## 16220  1100529775   2004
## 16221  1085581733   2004
## 16222  1085581726   2004
## 16223  1085640748   2004
## 16224  1100533423   2004
## 16225  1088058683   2004
## 16226  1100533903   2004
## 16227  1100533996   2004
## 16228  1088058689   2004
## 16229  1086093646   2004
## 16230  1100533509   2004
## 16231  1101130498   2004
## 16232  1085579933   2004
## 16233  1085574471   2004
## 16234  1088058647   2004
## 16235  1100533466   2004
## 16236  1100533653   2004
## 16237  1086094607   2004
## 16238  1100533564   2004
## 16239  1088058656   2004
## 16240  1085579676   2004
## 16241  1086272698   2004
## 16242  1085579171   2004
## 16243  1100533414   2004
## 16244  1086101939   2004
## 16245  1101130575   2004
## 16246  1086094614   2004
## 16247  1085579921   2004
## 16248  1100533451   2004
## 16249  1101130637   2004
## 16250  1086095273   2004
## 16251  1100534070   2004
## 16252  1086094602   2004
## 16253  1100529797   2004
## 16254  1088058623   2004
## 16255  1085579068   2004
## 16256  1086093920   2004
## 16257  1100533629   2004
## 16258  1085581664   2004
## 16259  1086095239   2004
## 16260  1086095202   2004
## 16261  1085573835   2004
## 16262  1100533484   2004
## 16263  1100533815   2004
## 16264  1100533587   2004
## 16265  1086101945   2004
## 16266  1100533501   2004
## 16267  1100529745   2004
## 16268  1085640697   2004
## 16269  1085640689   2004
## 16270  1086094013   2004
## 16271  1085574088   2004
## 16272  1100533610   2004
## 16273  1086094619   2004
## 16274  1086094026   2004
## 16275  1085574422   2004
## 16276  1086101954   2004
## 16277  1086095236   2004
## 16278  1086093610   2004
## 16279  1085640658   2004
## 16280  1086094007   2004
## 16281  1085574395   2004
## 16282  1086095152   2004
## 16283  1086095164   2004
## 16284  1086093615   2004
## 16285  1100533482   2004
## 16286  1086272680   2004
## 16287  1088058164   2004
## 16288  1086101860   2004
## 16289  1086272669   2004
## 16290  1086095185   2004
## 16291  1086094625   2004
## 16292  1100533435   2004
## 16293  1085574389   2004
## 16294  1088058610   2004
## 16295  1100533457   2004
## 16296  1085581674   2004
## 16297  1086093893   2004
## 16298  1086095169   2004
## 16299  1085574335   2004
## 16300  1085581638   2004
## 16301  1085581634   2004
## 16302  1088058188   2004
## 16303  1086101906   2004
## 16304  1085581624   2004
## 16305  1085581604   2004
## 16306  1086095142   2004
## 16307  1100533616   2004
## 16308  1085573960   2004
## 16309  1086274277   2004
## 16310  1086095103   2004
## 16311  1085579881   2004
## 16312  1085579867   2004
## 16313  1086095114   2004
## 16314  1088058573   2004
## 16315  1085579876   2004
## 16316  1085574410   2004
## 16317  1085573973   2004
## 16318  1086095128   2004
## 16319  1085581592   2004
## 16320  1085581582   2004
## 16321  1100534077   2004
## 16322  1085581557   2004
## 16323  1085579857   2004
## 16324  1086093583   2004
## 16325  1088058555   2004
## 16326  1085579179   2004
## 16327  1088058547   2004
## 16328  1085579028   2004
## 16329  1086095081   2004
## 16330  1086095072   2004
## 16331  1085574385   2004
## 16332  1086095090   2004
## 16333  1086095086   2004
## 16334  1088059092   2004
## 16335  1085579154   2004
## 16336  1101130590   2004
## 16337  1085579138   2004
## 16338  1086101872   2004
## 16339  1086101917   2004
## 16340  1085640597   2004
## 16341  1100532174   2004
## 16342  1085581565   2004
## 16343  1101130530   2004
## 16344  1086093572   2004
## 16345  1086095067   2004
## 16346  1085580336   2004
## 16347  1100533822   2004
## 16348  1085579162   2004
## 16349  1086272503   2004
## 16350  1086101890   2004
## 16351  1085580285   2004
## 16352  1085574426   2004
## 16353  1101125772   2004
## 16354  1086093860   2004
## 16355  1085581523   2004
## 16356  1085573954   2004
## 16357  1085573851   2004
## 16358  1088058527   2004
## 16359  1100534090   2004
## 16360  1086095076   2004
## 16361  1086272749   2004
## 16362  1100532241   2004
## 16363  1086095095   2004
## 16364  1085581535   2004
## 16365  1086093850   2004
## 16366  1088058500   2004
## 16367  1100534028   2004
## 16368  1085579145   2004
## 16369  1085640555   2004
## 16370  1101115984   2004
## 16371  1086093867   2004
## 16372  1085640535   2004
## 16373  1085579151   2004
## 16374  1086101897   2004
## 16375  1085579314   2004
## 16376  1086960518   2004
## 16377  1086094327   2004
## 16378  1085581530   2004
## 16379  1086960509   2004
## 16380  1085581548   2004
## 16381  1086093877   2004
## 16382  1086101845   2004
## 16383  1085578985   2004
## 16384  1086095038   2004
## 16385  1086960525   2004
## 16386  1086095060   2004
## 16387  1085573855   2004
## 16388  1085640550   2004
## 16389  1100533952   2004
## 16390  1086095042   2004
## 16391  1086094994   2004
## 16392  1086093488   2004
## 16393  1085580294   2004
## 16394  1085573987   2004
## 16395  1085579473   2004
## 16396  1088058180   2004
## 16397  1085574042   2004
## 16398  1085581486   2004
## 16399  1086095010   2004
## 16400  1086094990   2004
## 16401  1086274021   2004
## 16402  1085579848   2004
## 16403  1086095002   2004
## 16404  1100533713   2004
## 16405  1100532149   2004
## 16406  1100532012   2004
## 16407  1085640504   2004
## 16408  1085581466   2004
## 16409  1086094998   2004
## 16410  1086960071   2004
## 16411  1086101836   2004
## 16412  1088059037   2004
## 16413  1086095017   2004
## 16414  1086272767   2004
## 16415  1100606295   2004
## 16416  1101116025   2004
## 16417  1085640483   2004
## 16418  1101115552   2004
## 16419  1085579811   2004
## 16420  1088058417   2004
## 16421  1085580269   2004
## 16422  1086093482   2004
## 16423  1086093845   2004
## 16424  1100533705   2004
## 16425  1086093383   2004
## 16426  1085579817   2004
## 16427  1088058422   2004
## 16428  1085579802   2004
## 16429  1100533686   2004
## 16430  1086094947   2004
## 16431  1100533958   2004
## 16432  1085581438   2004
## 16433  1085581441   2004
## 16434  1088058369   2004
## 16435  1100533989   2004
## 16436  1088058393   2004
## 16437  1086094963   2004
## 16438  1086272795   2004
## 16439  1085581411   2004
## 16440  1100534034   2004
## 16441  1086093376   2004
## 16442  1088058350   2004
## 16443  1086093792   2004
## 16444  1085579444   2004
## 16445  1086094915   2004
## 16446  1085574328   2004
## 16447  1086272559   2004
## 16448  1085579823   2004
## 16449  1085581427   2004
## 16450  1088058975   2004
## 16451  1199439298   2008
## 16452  1086093836   2004
## 16453  1100533947   2004
## 16454  1085579021   2004
## 16455  1085581415   2004
## 16456  1085581448   2004
## 16457  1085581377   2004
## 16458  1088058358   2004
## 16459  1085574059   2004
## 16460  1100533577   2004
## 16461  1086093370   2004
## 16462  1100534113   2004
## 16463  1088058376   2004
## 16464  1088058315   2004
## 16465  1085579828   2004
## 16466  1086272645   2004
## 16467  1086094900   2004
## 16468  1086094924   2004
## 16469  1085640299   2004
## 16470  1085581383   2004
## 16471  1086094906   2004
## 16472  1086272637   2004
## 16473  1085640284   2004
## 16474  1085574342   2004
## 16475  1086272688   2004
## 16476  1086093818   2004
## 16477  1085574093   2004
## 16478  1085574070   2004
## 16479  1086094844   2004
## 16480  1085581341   2004
## 16481  1199439167   2008
## 16482  1086094851   2004
## 16483  1086102111   2004
## 16484  1086094875   2004
## 16485  1085581358   2004
## 16486  1086094848   2004
## 16487  1086274315   2004
## 16488  1086093346   2004
## 16489  1086960054   2004
## 16490  1086094859   2004
## 16491  1085579657   2004
## 16492  1088058933   2004
## 16493  1100533937   2004
## 16494  1086960284   2004
## 16495  1085581346   2004
## 16496  1085581054   2004
## 16497  1086272690   2004
## 16498  1086094829   2004
## 16499  1101125846   2004
## 16500  1085640230   2004
## 16501  1086094218   2004
## 16502  1086093785   2004
## 16503  1086094813   2004
## 16504  1086101839   2004
## 16505  1085574349   2004
## 16506  1085574365   2004
## 16507  1085640181   2004
## 16508  1101125851   2004
## 16509  1085640196   2004
## 16510  1085640140   2004
## 16511  1086093777   2004
## 16512  1086094809   2004
## 16513  1086094805   2004
## 16514  1085640164   2004
## 16515  1086094522   2004
## 16516  1085579412   2004
## 16517  1085641901   2004
## 16518  1085581274   2004
## 16519  1086274284   2004
## 16520  1086093765   2004
## 16521  1086094765   2004
## 16522  1086093452   2004
## 16523  1085580217   2004
## 16524  1100606354   2004
## 16525  1085640104   2004
## 16526  1086272799   2004
## 16527  1086094787   2004
## 16528  1086093357   2004
## 16529  1086102081   2004
## 16530  1088058238   2004
## 16531  1086272525   2004
## 16532  1086093741   2004
## 16533  1100531148   2004
## 16534  1101125778   2004
## 16535  1086272631   2004
## 16536  1085574022   2004
## 16537  1085581284   2004
## 16538  1086094759   2004
## 16539  1088058292   2004
## 16540  1086960240   2004
## 16541  1085581289   2004
## 16542  1085640064   2004
## 16543  1085579214   2004
## 16544  1085640021   2004
## 16545  1085574084   2004
## 16546  1086102087   2004
## 16547  1100532099   2004
## 16548  1086272508   2004
## 16549  1088058852   2004
## 16550  1086094781   2004
## 16551  1085579419   2004
## 16552  1086093773   2004
## 16553  1086094534   2004
## 16554  1100533679   2004
## 16555  1086094545   2004
## 16556  1088058828   2004
## 16557  1086094180   2004
## 16558  1085639996   2004
## 16559  1085639989   2004
## 16560  1085639974   2004
## 16561  1086094194   2004
## 16562  1086093756   2004
## 16563  1085639969   2004
## 16564  1086102036   2004
## 16565  1086274173   2004
## 16566  1086102041   2004
## 16567  1085580186   2004
## 16568  1086274263   2004
## 16569  1088058270   2004
## 16570  1086094721   2004
## 16571  1085581279   2004
## 16572  1101125836   2004
## 16573  1086094736   2004
## 16574  1086275253   2004
## 16575  1086275040   2004
## 16576  1086093749   2004
## 16577  1085639931   2004
## 16578  1086272615   2004
## 16579  1086094149   2004
## 16580  1088058788   2004
## 16581  1086094164   2004
## 16582  1085639873   2004
## 16583  1085639899   2004
## 16584  1085573843   2004
## 16585  1100532157   2004
## 16586  1086272672   2004
## 16587  1086102024   2004
## 16588  1086272776   2004
## 16589  1086272718   2004
## 16590  1085580193   2004
## 16591  1100606338   2004
## 16592  1088058815   2004
## 16593  1085580206   2004
## 16594  1085639858   2004
## 16595  1086094470   2004
## 16596  1086272626   2004
## 16597  1085641797   2004
## 16598  1088058250   2004
## 16599  1085581263   2004
## 16600  1085639848   2004
## 16601  1100532272   2004
## 16602  1086101981   2004
## 16603  1085639812   2004
## 16604  1085641793   2004
## 16605  1085580172   2004
## 16606  1085639807   2004
## 16607  1086094703   2004
## 16608  1086272756   2004
## 16609  1086101988   2004
## 16610  1085579220   2004
## 16611  1085581010   2004
## 16612  1086093719   2004
## 16613  1085639777   2004
## 16614  1085579231   2004
## 16615  1085579637   2004
## 16616  1085580165   2004
## 16617  1085580993   2004
## 16618  1086274032   2004
## 16619  1086094467   2004
## 16620  1088058223   2004
## 16621  1086094100   2004
## 16622  1085639782   2004
## 16623  1086094125   2004
## 16624  1085582146   2004
## 16625  1086274529   2004
## 16626  1086275259   2004
## 16627  1086272790   2004
## 16628  1085581236   2004
## 16629  1086272598   2004
## 16630  1086272410   2004
## 16631  1085581244   2004
## 16632  1101115611   2004
## 16633  1085582137   2004
## 16634  1086093708   2004
## 16635  1085582061   2004
## 16636  1085574372   2004
## 16637  1199438959   2008
## 16638  1086093682   2004
## 16639  1088058214   2004
## 16640  1085582071   2004
## 16641  1085580155   2004
## 16642  1100534081   2004
## 16643  1086094105   2004
## 16644  1085582076   2004
## 16645  1085574460   2004
## 16646  1085582030   2004
## 16647  1086274470   2004
## 16648  1088058733   2004
## 16649  1085641574   2004
## 16650  1101115415   2004
## 16651  1085574465   2004
## 16652  1085580133   2004
## 16653  1085582022   2004
## 16654  1085574443   2004
## 16655  1086094117   2004
## 16656  1085581212   2004
## 16657  1199439617   2008
## 16658  1086272549   2004
## 16659  1086094066   2004
## 16660  1100532042   2004
## 16661  1088058740   2004
## 16662  1100532177   2004
## 16663  1086101995   2004
## 16664  1101125659   2004
## 16665  1085581939   2004
## 16666  1085641448   2004
##  [ reached getOption("max.print") -- omitted 83338 rows ]
dat  %>% group_by(movieId, n_year) %>% summarize( n_rating=mean(rating), l_rating=length(rating), avg_rating=(length(rating)/(2018 - unique(year) + 1))) %>% ungroup() %>% arrange(desc(movieId)) %>% slice(1:10) %>% 
     knitr::kable()
movieId n_year n_rating l_rating avg_rating
163949 2016 5.0 1 0.33
162672 2016 3.0 1 0.33
162542 2016 5.0 1 0.33
162376 2016 4.5 1 NA
161944 2016 5.0 1 0.06
161918 2016 1.5 1 0.33
161830 2016 1.0 1 0.25
161594 2016 3.0 1 0.33
161155 2016 0.5 1 0.33
161084 2016 2.5 1 0.25
dat <- movielens  %>% select(movieId, year, rating,title,timestamp,genres) %>% mutate(n_year=format(as.POSIXct(timestamp,origin="1970-01-01"),"%Y")) 
dat
##        movieId year rating
## 1           31 1995    2.5
## 2         1029 1941    3.0
## 3         1061 1996    3.0
## 4         1129 1981    2.0
## 5         1172 1989    4.0
## 6         1263 1978    2.0
## 7         1287 1959    2.0
## 8         1293 1982    2.0
## 9         1339 1992    3.5
## 10        1343 1991    2.0
## 11        1371 1979    2.5
## 12        1405 1996    1.0
## 13        1953 1971    4.0
## 14        2105 1982    4.0
## 15        2150 1980    3.0
## 16        2193 1988    2.0
## 17        2294 1998    2.0
## 18        2455 1986    2.5
## 19        2968 1981    1.0
## 20        3671 1974    3.0
## 21          10 1995    4.0
## 22          17 1995    5.0
## 23          39 1995    5.0
## 24          47 1995    4.0
## 25          50 1995    4.0
## 26          52 1995    3.0
## 27          62 1995    3.0
## 28         110 1995    4.0
## 29         144 1995    3.0
## 30         150 1995    5.0
## 31         153 1995    4.0
## 32         161 1995    3.0
## 33         165 1995    3.0
## 34         168 1995    3.0
## 35         185 1995    3.0
## 36         186 1995    3.0
## 37         208 1995    3.0
## 38         222 1995    5.0
## 39         223 1994    1.0
## 40         225 1994    3.0
## 41         235 1994    3.0
## 42         248 1994    3.0
## 43         253 1994    4.0
## 44         261 1994    4.0
## 45         265 1992    5.0
## 46         266 1994    5.0
## 47         272 1994    3.0
## 48         273 1994    4.0
## 49         292 1995    3.0
## 50         296 1994    4.0
## 51         300 1994    3.0
## 52         314 1994    4.0
## 53         317 1994    2.0
## 54         319 1994    1.0
## 55         339 1995    3.0
## 56         349 1994    4.0
## 57         350 1994    4.0
## 58         356 1994    3.0
## 59         357 1994    3.0
## 60         364 1994    3.0
## 61         367 1994    3.0
## 62         370 1994    2.0
## 63         371 1994    3.0
## 64         372 1994    3.0
## 65         377 1994    3.0
## 66         382 1994    3.0
## 67         405 1994    2.0
## 68         410 1993    3.0
## 69         454 1993    4.0
## 70         457 1993    3.0
## 71         468 1995    4.0
## 72         474 1993    2.0
## 73         480 1993    4.0
## 74         485 1993    3.0
## 75         497 1993    3.0
## 76         500 1993    4.0
## 77         508 1993    4.0
## 78         509 1993    4.0
## 79         515 1993    4.0
## 80         527 1993    4.0
## 81         537 1994    4.0
## 82         539 1993    3.0
## 83         550 1994    3.0
## 84         551 1993    5.0
## 85         552 1993    3.0
## 86         585 1995    5.0
## 87         586 1990    3.0
## 88         587 1990    3.0
## 89         588 1992    3.0
## 90         589 1991    5.0
## 91         590 1990    5.0
## 92         592 1989    5.0
## 93         593 1991    3.0
## 94         616 1970    3.0
## 95         661 1996    4.0
## 96         720 1996    4.0
## 97          60 1995    3.0
## 98         110 1995    4.0
## 99         247 1994    3.5
## 100        267 1995    3.0
## 101        296 1994    4.5
## 102        318 1994    5.0
## 103        355 1994    2.5
## 104        356 1994    5.0
## 105        377 1994    2.5
## 106        527 1993    3.0
## 107        588 1992    3.0
## 108        592 1989    3.0
## 109        593 1991    3.0
## 110        595 1991    2.0
## 111        736 1996    3.5
## 112        778 1996    4.0
## 113        866 1996    3.0
## 114       1197 1987    5.0
## 115       1210 1983    3.0
## 116       1235 1971    4.0
## 117       1271 1991    3.0
## 118       1378 1988    4.0
## 119       1580 1997    3.5
## 120       1721 1997    4.5
## 121       1884 1998    4.0
## 122       2028 1998    4.0
## 123       2318 1998    4.0
## 124       2513 1989    3.0
## 125       2694 1999    3.0
## 126       2702 1999    3.5
## 127       2716 1984    3.0
## 128       2762 1999    3.5
## 129       2841 1999    4.0
## 130       2858 1999    4.0
## 131       2959 1999    5.0
## 132       3243 1992    3.0
## 133       3510 2000    4.0
## 134       3949 2000    5.0
## 135       5349 2002    3.0
## 136       5669 2002    3.5
## 137       6377 2003    3.0
## 138       7153 2003    2.5
## 139       7361 2004    3.0
## 140       8622 2004    3.5
## 141       8636 2004    3.0
## 142      27369 2000    3.5
## 143      44191 2006    3.5
## 144      48783 2006    4.5
## 145      50068 2006    4.5
## 146      58559 2008    3.0
## 147      84236 2009    4.0
## 148         10 1995    4.0
## 149         34 1995    5.0
## 150        112 1995    5.0
## 151        141 1996    5.0
## 152        153 1995    4.0
## 153        173 1995    3.0
## 154        185 1995    3.0
## 155        260 1977    5.0
## 156        289 1994    4.0
## 157        296 1994    5.0
## 158        329 1994    3.0
## 159        349 1994    5.0
## 160        356 1994    5.0
## 161        357 1994    5.0
## 162        364 1994    5.0
## 163        367 1994    4.0
## 164        380 1994    3.0
## 165        410 1993    3.0
## 166        431 1993    3.0
## 167        434 1993    4.0
## 168        435 1993    1.0
## 169        440 1993    4.0
## 170        442 1993    4.0
## 171        464 1993    4.0
## 172        480 1993    5.0
## 173        541 1982    5.0
## 174        588 1992    5.0
## 175        589 1991    5.0
## 176        590 1990    3.0
## 177        594 1937    5.0
## 178        596 1940    5.0
## 179        610 1981    4.0
## 180        616 1970    5.0
## 181        858 1972    5.0
## 182        903 1958    5.0
## 183        910 1959    4.0
## 184        913 1941    5.0
## 185        919 1939    5.0
## 186       1011 1974    4.0
## 187       1016 1959    4.0
## 188       1022 1950    5.0
## 189       1028 1964    5.0
## 190       1030 1977    5.0
## 191       1031 1971    5.0
## 192       1032 1951    5.0
## 193       1033 1981    5.0
## 194       1036 1988    5.0
## 195       1073 1971    5.0
## 196       1079 1988    5.0
## 197       1089 1992    5.0
## 198       1097 1982    5.0
## 199       1125 1975    5.0
## 200       1127 1989    5.0
## 201       1136 1975    5.0
## 202       1194 1978    5.0
## 203       1196 1980    5.0
## 204       1197 1987    5.0
## 205       1198 1981    5.0
## 206       1200 1986    5.0
## 207       1206 1971    5.0
## 208       1208 1979    5.0
## 209       1210 1983    5.0
## 210       1213 1990    5.0
## 211       1214 1979    5.0
## 212       1219 1960    5.0
## 213       1220 1980    5.0
## 214       1222 1987    5.0
## 215       1225 1984    5.0
## 216       1230 1977    5.0
## 217       1240 1984    5.0
## 218       1243 1990    5.0
## 219       1257 1985    5.0
## 220       1258 1980    5.0
## 221       1259 1986    4.0
## 222       1265 1993    5.0
## 223       1270 1985    5.0
## 224       1278 1974    5.0
## 225       1282 1940    5.0
## 226       1285 1989    4.0
## 227       1288 1984    5.0
## 228       1291 1989    5.0
## 229       1298 1982    4.0
## 230       1307 1989    4.0
## 231       1332 1987    4.0
## 232       1334 1958    5.0
## 233       1344 1962    5.0
## 234       1356 1996    4.0
## 235       1371 1979    4.0
## 236       1372 1991    3.0
## 237       1374 1982    4.0
## 238       1376 1986    3.0
## 239       1377 1992    3.0
## 240       1380 1978    5.0
## 241       1387 1975    5.0
## 242       1388 1978    4.0
## 243       1396 1992    5.0
## 244       1544 1997    3.0
## 245       1580 1997    5.0
## 246       1663 1981    4.0
## 247       1674 1985    5.0
## 248       1805 1998    1.0
## 249       1858 1997    5.0
## 250       1917 1998    4.0
## 251       1918 1998    2.0
## 252       1953 1971    5.0
## 253       1954 1976    5.0
## 254       1961 1988    5.0
## 255       1967 1986    3.0
## 256       1968 1985    5.0
## 257       1994 1982    5.0
## 258       2000 1987    5.0
## 259       2002 1992    3.0
## 260       2003 1984    2.0
## 261       2005 1985    5.0
## 262       2014 1977    4.0
## 263       2018 1942    5.0
## 264       2020 1988    4.0
## 265       2021 1984    4.0
## 266       2033 1985    4.0
## 267       2034 1979    4.0
## 268       2046 1986    5.0
## 269       2054 1989    3.0
## 270       2064 1989    5.0
## 271       2078 1967    5.0
## 272       2080 1955    5.0
## 273       2081 1989    4.0
## 274       2085 1961    5.0
## 275       2086 1985    5.0
## 276       2087 1953    5.0
## 277       2091 1978    5.0
## 278       2094 1991    4.0
## 279       2096 1959    5.0
## 280       2100 1984    5.0
## 281       2102 1928    5.0
## 282       2105 1982    4.0
## 283       2109 1979    5.0
## 284       2110 1982    3.0
## 285       2114 1983    5.0
## 286       2115 1984    5.0
## 287       2124 1991    4.0
## 288       2140 1982    5.0
## 289       2141 1986    4.0
## 290       2143 1985    4.0
## 291       2144 1984    5.0
## 292       2161 1984    5.0
## 293       2174 1988    5.0
## 294       2193 1988    3.0
## 295       2194 1987    5.0
## 296       2248 1989    4.0
## 297       2263 1988    3.0
## 298       2268 1992    5.0
## 299       2289 1992    5.0
## 300       2348 1986    4.0
## 301       2371 1985    4.0
## 302       2403 1982    4.0
## 303       2406 1984    5.0
## 304       2409 1979    4.0
## 305       2454 1958    5.0
## 306       2467 1986    5.0
## 307       2551 1988    4.0
## 308       2616 1990    1.0
## 309       2628 1999    5.0
## 310       2640 1978    5.0
## 311       2659 1982    3.0
## 312       2683 1999    4.0
## 313       2699 1990    4.0
## 314       2716 1984    5.0
## 315       2723 1999    5.0
## 316       2734 1986    4.0
## 317       2770 1999    1.0
## 318       2788 1971    5.0
## 319       2791 1980    5.0
## 320       2795 1983    4.0
## 321       2797 1988    5.0
## 322       2804 1983    5.0
## 323       2822 1992    3.0
## 324       2867 1985    3.0
## 325       2872 1981    5.0
## 326       2877 1975    5.0
## 327       2902 1983    2.0
## 328       2903 1986    1.0
## 329       2916 1990    4.0
## 330       2918 1986    5.0
## 331       2968 1981    5.0
## 332       2986 1990    3.0
## 333       2987 1988    5.0
## 334       2991 1973    5.0
## 335       3016 1982    3.0
## 336       3034 1973    5.0
## 337       3039 1983    4.0
## 338       3040 1979    5.0
## 339       3060 1991    5.0
## 340       3071 1988    4.0
## 341       3101 1987    4.0
## 342       3104 1988    4.0
## 343       3108 1991    5.0
## 344       3169 1985    4.0
## 345       3208 1993    2.0
## 346       3210 1982    4.0
## 347       3251 1985    5.0
## 348       3255 1992    4.0
## 349       3263 1992    3.0
## 350       3265 1992    5.0
## 351       4006 1986    2.0
## 352          3 1995    4.0
## 353         39 1995    4.0
## 354        104 1996    4.0
## 355        141 1996    4.0
## 356        150 1995    4.0
## 357        231 1994    3.5
## 358        277 1994    4.5
## 359        344 1994    3.5
## 360        356 1994    4.0
## 361        364 1994    4.0
## 362        367 1994    4.0
## 363        377 1994    4.0
## 364        440 1993    4.0
## 365        500 1993    4.5
## 366        586 1990    4.0
## 367        588 1992    3.5
## 368        595 1991    4.0
## 369        597 1990    5.0
## 370        788 1996    3.5
## 371        858 1972    2.5
## 372        903 1958    3.5
## 373        919 1939    4.0
## 374       1022 1950    4.0
## 375       1035 1965    5.0
## 376       1193 1975    3.0
## 377       1221 1974    2.5
## 378       1247 1967    4.0
## 379       1307 1989    4.0
## 380       1380 1978    5.0
## 381       1393 1996    3.5
## 382       1485 1997    4.5
## 383       1544 1997    3.5
## 384       1682 1998    4.0
## 385       1721 1997    4.0
## 386       1777 1998    4.0
## 387       1784 1997    4.5
## 388       1923 1998    4.5
## 389       1961 1988    4.0
## 390       1968 1985    4.0
## 391       1997 1973    3.5
## 392       2023 1990    1.5
## 393       2081 1989    5.0
## 394       2273 1998    4.0
## 395       2294 1998    4.0
## 396       2355 1998    3.5
## 397       2424 1998    4.0
## 398       2502 1999    3.5
## 399       2683 1999    4.0
## 400       2694 1999    4.5
## 401       2706 1999    4.0
## 402       2762 1999    3.5
## 403       2770 1999    3.5
## 404       2918 1986    3.5
## 405       2997 1999    3.5
## 406       3114 1999    3.5
## 407       3176 1999    3.5
## 408       3408 2000    4.0
## 409       3753 2000    3.5
## 410       3897 2000    4.5
## 411       3948 2000    3.5
## 412       4014 2000    4.0
## 413       4018 2000    4.0
## 414       4022 2000    3.5
## 415       4025 2000    4.5
## 416       4306 2001    3.5
## 417       4308 2001    3.5
## 418       4447 2001    4.5
## 419       4718 2001    3.5
## 420       4963 2001    3.0
## 421       4995 2001    4.5
## 422       5266 2002    3.5
## 423       5299 2002    4.5
## 424       5349 2002    4.5
## 425       5464 2002    4.0
## 426       5669 2002    3.5
## 427       5679 2002    4.5
## 428       5816 2002    3.0
## 429       5995 2002    4.0
## 430       6218 2002    3.5
## 431       6373 2003    4.0
## 432       6377 2003    4.0
## 433       6502 2002    4.0
## 434       6711 2003    2.5
## 435       6942 2003    4.0
## 436       8376 2004    4.0
## 437       8464 2004    4.0
## 438       8622 2004    3.5
## 439       8636 2004    4.5
## 440       8644 2004    4.0
## 441      30707 2004    4.5
## 442      30749 2004    4.5
## 443      30793 2005    3.5
## 444      33166 2004    5.0
## 445      33679 2005    4.0
## 446      34162 2005    4.5
## 447      35836 2005    4.0
## 448      40819 2005    4.5
## 449      41566 2005    4.0
## 450      41569 2005    4.0
## 451      48385 2006    4.5
## 452        111 1976    4.0
## 453        158 1995    2.0
## 454        173 1995    2.0
## 455        293 1994    5.0
## 456        596 1940    4.0
## 457        903 1958    4.0
## 458       1204 1962    5.0
## 459       1250 1957    4.5
## 460       1259 1986    4.5
## 461       1276 1967    4.5
## 462       1285 1989    4.5
## 463       1358 1996    2.0
## 464       1639 1997    2.0
## 465       1687 1997    2.0
## 466       1747 1997    2.0
## 467       1876 1998    0.5
## 468       1909 1998    3.0
## 469       2001 1989    3.0
## 470       2019 1954    4.0
## 471       2072 1989    4.0
## 472       2174 1988    4.0
## 473       2502 1999    3.5
## 474       2528 1976    3.0
## 475       2529 1968    4.0
## 476       2571 1999    1.0
## 477       2657 1975    2.0
## 478       2692 1998    4.0
## 479       2723 1999    3.0
## 480       2761 1999    4.5
## 481       2890 1999    3.0
## 482       3052 1999    1.0
## 483       3114 1999    4.0
## 484       3300 2000    3.5
## 485       3751 2000    1.5
## 486       4641 2001    1.5
## 487       4975 2001    1.5
## 488       5952 2002    5.0
## 489       7090 2002    3.0
## 490       7153 2003    5.0
## 491       7361 2004    4.0
## 492       8368 2004    3.5
## 493       8636 2004    4.0
## 494       8784 2004    3.0
## 495       8874 2004    4.5
## 496          1 1995    3.0
## 497         10 1995    3.0
## 498         21 1995    3.0
## 499         31 1995    3.0
## 500         34 1995    4.0
## 501         40 1995    4.0
## 502        104 1996    3.0
## 503        110 1995    5.0
## 504        112 1995    4.0
## 505        141 1996    4.0
## 506        151 1995    4.0
## 507        198 1995    2.0
## 508        207 1995    3.0
## 509        260 1977    5.0
## 510        272 1994    3.0
## 511        316 1994    2.0
## 512        318 1994    5.0
## 513        329 1994    3.0
## 514        333 1995    3.0
## 515        345 1994    3.0
## 516        355 1994    3.0
## 517        356 1994    3.0
## 518        357 1994    3.0
## 519        364 1994    3.0
## 520        367 1994    3.0
## 521        377 1994    3.0
## 522        380 1994    4.0
## 523        480 1993    4.0
## 524        500 1993    3.0
## 525        534 1993    4.0
## 526        539 1993    3.0
## 527        541 1982    4.0
## 528        551 1993    4.0
## 529        588 1992    4.0
## 530        589 1991    3.0
## 531        590 1990    4.0
## 532        592 1989    3.0
## 533        594 1937    4.0
## 534        595 1991    3.0
## 535        610 1981    3.0
## 536        671 1996    4.0
## 537        708 1996    3.0
## 538        720 1996    5.0
## 539        724 1996    2.0
## 540        736 1996    1.0
## 541        737 1996    1.0
## 542        745 1995    5.0
## 543        780 1996    3.0
## 544        786 1996    2.0
## 545        924 1968    4.0
## 546       1036 1988    3.0
## 547       1073 1971    3.0
## 548       1079 1988    4.0
## 549       1080 1979    4.0
## 550       1097 1982    3.0
## 551       1125 1975    3.0
## 552       1129 1981    3.0
## 553       1136 1975    4.0
## 554       1148 1993    5.0
## 555       1196 1980    5.0
## 556       1197 1987    3.0
## 557       1198 1981    5.0
## 558       1210 1983    5.0
## 559       1220 1980    4.0
## 560       1223 1989    5.0
## 561       1225 1984    5.0
## 562       1231 1983    4.0
## 563       1240 1984    4.0
## 564       1242 1989    5.0
## 565       1270 1985    3.0
## 566       1275 1986    4.0
## 567       1278 1974    3.0
## 568       1287 1959    4.0
## 569       1288 1984    4.0
## 570       1291 1989    3.0
## 571       1298 1982    3.0
## 572       1302 1989    4.0
## 573       1307 1989    3.0
## 574       1353 1996    3.0
## 575       1371 1979    3.0
## 576       1372 1991    3.0
## 577       1373 1989    2.0
## 578       1374 1982    4.0
## 579       1375 1984    3.0
## 580       1376 1986    3.0
## 581       1394 1987    3.0
## 582       1405 1996    5.0
## 583       1408 1992    1.0
## 584         32 1995    5.0
## 585         45 1995    2.5
## 586         47 1995    5.0
## 587         50 1995    5.0
## 588        110 1995    4.0
## 589        260 1977    3.5
## 590        282 1994    2.0
## 591        296 1994    4.0
## 592        318 1994    5.0
## 593        356 1994    4.0
## 594        457 1993    4.5
## 595        520 1993    3.5
## 596        524 1993    2.0
## 597        527 1993    5.0
## 598        543 1993    5.0
## 599        589 1991    4.0
## 600        593 1991    4.5
## 601        628 1996    4.0
## 602        805 1996    3.5
## 603        858 1972    5.0
## 604       1196 1980    3.5
## 605       1197 1987    4.0
## 606       1198 1981    4.0
## 607       1210 1983    4.0
## 608       1219 1960    4.0
## 609       1225 1984    4.0
## 610       1258 1980    4.0
## 611       1259 1986    4.0
## 612       1265 1993    3.0
## 613       1270 1985    4.0
## 614       1291 1989    4.0
## 615       1302 1989    3.5
## 616       1358 1996    0.5
## 617       1387 1975    4.0
## 618       1393 1996    3.0
## 619       1500 1997    4.0
## 620       1552 1997    3.0
## 621       1617 1997    3.5
## 622       1625 1997    5.0
## 623       1674 1985    4.0
## 624       1704 1997    4.0
## 625       1754 1998    3.0
## 626       1777 1998    5.0
## 627       1876 1998    3.5
## 628       1961 1988    5.0
## 629       2028 1998    4.0
## 630       2100 1984    3.0
## 631       2139 1982    3.0
## 632       2194 1987    4.5
## 633       2302 1992    4.5
## 634       2324 1997    4.0
## 635       2329 1998    5.0
## 636       2353 1998    3.5
## 637       2423 1989    3.5
## 638       2502 1999    5.0
## 639       2571 1999    5.0
## 640       2716 1984    3.5
## 641       2762 1999    4.5
## 642       2770 1999    2.5
## 643       2791 1980    4.5
## 644       2797 1988    3.5
## 645       2804 1983    3.5
## 646       2841 1999    3.0
## 647       2858 1999    4.5
## 648       2918 1986    5.0
## 649       2959 1999    4.0
## 650       3147 1999    4.5
## 651       3578 2000    5.0
## 652       3916 2000    3.5
## 653       3948 2000    4.0
## 654       3996 2000    4.0
## 655       4011 2000    4.5
## 656       4019 2000    3.5
## 657       4034 2000    4.5
## 658       4226 2000    5.0
## 659       4262 1983    4.0
## 660       4448 2001    2.5
## 661       4886 2001    3.5
## 662       4896 2001    3.5
## 663       4963 2001    4.5
## 664       4973 2001    4.0
## 665       4993 2001    3.5
## 666       4995 2001    3.5
## 667       5064 2002    5.0
## 668       5378 2002    3.5
## 669       5445 2002    4.5
## 670       5464 2002    4.0
## 671       5630 2002    4.0
## 672       5650 1983    4.0
## 673       5669 2002    3.0
## 674       5952 2002    4.0
## 675       5989 2002    3.5
## 676       6377 2003    4.0
## 677       6378 2003    3.0
## 678       6870 2003    4.0
## 679       6874 2003    5.0
## 680       6879 2003    3.0
## 681       7143 2003    3.5
## 682       7153 2003    4.0
## 683       7361 2004    4.0
## 684       7438 2004    4.0
## 685       8533 2004    2.5
## 686       8784 2004    4.5
## 687       8873 2004    4.0
## 688       8874 2004    3.0
## 689      32587 2005    3.5
## 690      33166 2004    4.5
## 691      33493 2005    4.5
## 692      33794 2005    4.5
## 693      34162 2005    3.5
## 694      40583 2005    3.5
## 695      40819 2005    3.5
## 696      42007 2005    2.0
## 697      43556 2006    3.5
## 698      43871 2006    3.0
## 699      44004 2006    3.0
## 700          1 1995    4.0
## 701         17 1995    4.0
## 702         26 1995    3.0
## 703         36 1995    5.0
## 704         47 1995    3.0
## 705        318 1994    4.0
## 706        497 1993    4.0
## 707        515 1993    4.0
## 708        527 1993    5.0
## 709        534 1993    5.0
## 710        593 1991    4.0
## 711        608 1996    5.0
## 712        733 1996    2.0
## 713       1059 1996    5.0
## 714       1177 1992    3.0
## 715       1357 1996    4.0
## 716       1358 1996    4.0
## 717       1411 1996    3.0
## 718       1541 1997    2.0
## 719       1584 1997    4.0
## 720       1680 1998    4.0
## 721       1682 1998    5.0
## 722       1704 1997    4.0
## 723       1721 1997    3.0
## 724       1784 1997    5.0
## 725       2028 1998    4.0
## 726       2125 1998    4.0
## 727       2140 1982    4.0
## 728       2249 1990    4.0
## 729       2268 1992    3.0
## 730       2273 1998    3.0
## 731       2278 1998    4.0
## 732       2291 1990    4.0
## 733       2294 1998    2.0
## 734       2302 1992    4.0
## 735       2391 1998    4.0
## 736       2396 1998    4.0
## 737       2427 1998    2.0
## 738       2490 1999    3.0
## 739       2501 1999    4.0
## 740       2539 1999    2.0
## 741       2571 1999    5.0
## 742       2628 1999    3.0
## 743       2762 1999    4.0
## 744       2857 1968    4.0
## 745         50 1995    5.0
## 746        152 1995    4.0
## 747        318 1994    4.0
## 748        344 1994    3.0
## 749        345 1994    4.0
## 750        592 1989    3.0
## 751        735 1994    4.0
## 752       1036 1988    3.0
## 753       1089 1992    3.0
## 754       1101 1986    2.0
## 755       1127 1989    4.0
## 756       1196 1980    4.0
## 757       1197 1987    4.0
## 758       1198 1981    4.0
## 759       1200 1986    4.0
## 760       1210 1983    4.0
## 761       1220 1980    3.0
## 762       1240 1984    4.0
## 763       1291 1989    4.0
## 764       1358 1996    5.0
## 765       1423 1996    4.0
## 766       1459 1997    3.0
## 767       1499 1997    3.0
## 768       1611 1991    5.0
## 769       1690 1997    3.0
## 770       1704 1997    4.0
## 771       1719 1997    5.0
## 772       1887 1998    2.0
## 773       1923 1998    5.0
## 774       2108 1991    3.0
## 775       2344 1985    5.0
## 776       2406 1984    4.0
## 777       2410 1982    2.0
## 778       2539 1999    4.0
## 779       2571 1999    5.0
## 780       2826 1999    5.0
## 781       2827 1999    3.0
## 782       2840 1999    3.0
## 783       2841 1999    4.0
## 784       2881 1999    3.0
## 785       2890 1999    4.0
## 786       2907 1999    2.0
## 787       2926 1988    5.0
## 788       2995 1999    2.0
## 789       3005 1999    3.0
## 790       3019 1989    4.0
## 791         50 1995    5.0
## 792         70 1996    1.0
## 793        126 1994    4.0
## 794        169 1995    3.0
## 795        296 1994    5.0
## 796        778 1996    4.5
## 797        785 1996    3.5
## 798        923 1941    5.0
## 799       1027 1991    4.5
## 800       1201 1966    5.0
## 801       1408 1992    5.0
## 802       1918 1998    3.0
## 803       2042 1994    3.5
## 804       2596 1998    4.5
## 805       2762 1999    3.0
## 806       3424 1989    3.0
## 807       5669 2002    3.0
## 808       6598 2002    5.0
## 809      26614 1988    5.0
## 810      48516 2006    5.0
## 811      51084 2007    4.0
## 812      58295 2008    4.5
## 813      71211 2009    3.5
## 814      77455 2010    4.5
## 815      79132 2010    4.0
## 816      80489 2010    4.5
## 817      80906 2010    3.0
## 818      81158 2010    4.0
## 819      81562 2010    3.5
## 820      88129 2011    4.0
## 821      91500 2012    4.5
## 822      91529 2012    4.5
## 823      91548 2011    4.0
## 824      96079 2012    4.0
## 825      96861 2012    4.0
## 826      97938 2012    4.0
## 827     104841 2013    5.0
## 828     106487 2013    5.0
## 829        253 1994    3.0
## 830        529 1993    1.0
## 831        538 1993    3.0
## 832        608 1996    2.0
## 833        673 1996    1.0
## 834        736 1996    4.0
## 835        737 1996    3.0
## 836       1028 1964    1.0
## 837       1032 1951    2.0
## 838       1077 1973    3.0
## 839       1197 1987    1.0
## 840       1215 1993    5.0
## 841       1220 1980    5.0
## 842       1230 1977    2.0
## 843       1235 1971    5.0
## 844       1295 1988    1.0
## 845       1374 1982    1.0
## 846       1387 1975    4.0
## 847       1639 1997    2.0
## 848       1732 1998    3.0
## 849       2259 1984    2.0
## 850       2355 1998    2.0
## 851       2460 1986    4.0
## 852       2529 1968    1.0
## 853       2668 1982    2.0
## 854       2959 1999    4.0
## 855       3146 1999    2.0
## 856       3148 1999    1.0
## 857       3176 1999    3.0
## 858       3179 1999    2.0
## 859       3298 2000    4.0
## 860       3324 2000    1.0
## 861       3408 2000    4.0
## 862       3474 1997    4.0
## 863       3770 1984    3.0
## 864       3773 1990    2.0
## 865       3780 1950    2.0
## 866       3791 1984    1.0
## 867       3793 2000    5.0
## 868       3794 2000    3.0
## 869       3798 2000    4.0
## 870       3799 2000    1.0
## 871       3801 1959    3.0
## 872       3809 1991    3.0
## 873       3825 2000    5.0
## 874       3827 2000    2.0
## 875       3829 2000    2.0
## 876       3831 2000    4.0
## 877       3841 1990    2.0
## 878       3844 1989    1.0
## 879       3861 2000    3.0
## 880       3863 2000    5.0
## 881       3864 1999    3.0
## 882       3865 2000    5.0
## 883       3869 1991    2.0
## 884       3871 1953    2.0
## 885       3873 1965    3.0
## 886       3879 2000    5.0
## 887       3885 2000    3.0
## 888       3886 2000    2.0
## 889       6184 1976    4.0
## 890          1 1995    5.0
## 891         47 1995    2.5
## 892        110 1995    4.0
## 893        277 1994    4.0
## 894        296 1994    3.5
## 895        318 1994    4.5
## 896        356 1994    5.0
## 897        362 1994    4.5
## 898        480 1993    3.0
## 899        524 1993    3.5
## 900        527 1993    4.0
## 901        531 1993    4.0
## 902        587 1990    3.0
## 903        590 1990    4.0
## 904        914 1964    4.0
## 905        919 1939    3.5
## 906       1027 1991    3.0
## 907       1259 1986    4.0
## 908       1265 1993    2.5
## 909       1918 1998    3.0
## 910       1961 1988    4.0
## 911       2355 1998    4.0
## 912       2571 1999    3.0
## 913       2572 1999    3.5
## 914       2761 1999    4.0
## 915       2762 1999    3.0
## 916       2804 1983    3.0
## 917       2908 1999    3.0
## 918       2918 1986    3.0
## 919       3114 1999    3.0
## 920       3147 1999    4.0
## 921       3255 1992    3.5
## 922       3396 1979    3.5
## 923       3624 2000    3.0
## 924       4306 2001    4.0
## 925       4310 2001    4.5
## 926       4321 1991    2.5
## 927       4718 2001    3.5
## 928       4878 2001    4.5
## 929       4886 2001    3.5
## 930       4993 2001    4.5
## 931       5989 2002    4.0
## 932       6377 2003    4.5
## 933       7361 2004    4.0
## 934       7502 2001    4.5
## 935      54286 2007    3.5
## 936      58559 2008    4.5
## 937      64614 2008    4.5
## 938      69757 2009    4.0
## 939      78499 2010    4.0
## 940      81834 2010    4.5
## 941      88125 2011    4.5
## 942      93363 2012    3.0
## 943        594 1937    1.0
## 944       1196 1980    4.0
## 945       1721 1997    3.0
## 946       2038 1978    3.0
## 947       2355 1998    2.0
## 948       2394 1998    3.0
## 949       2628 1999    3.0
## 950       2683 1999    2.0
## 951       2716 1984    3.0
## 952       2720 1999    2.0
## 953       2724 1999    3.0
## 954       2861 1999    2.0
## 955       3114 1999    4.0
## 956       3157 1999    2.0
## 957       3175 1999    5.0
## 958       3354 2000    3.0
## 959       3623 2000    3.0
## 960       3751 2000    4.0
## 961       3986 2000    3.0
## 962       3988 2000    4.0
## 963          1 1995    2.0
## 964          2 1995    2.0
## 965          5 1995    4.5
## 966          6 1995    4.0
## 967         10 1995    3.0
## 968         11 1995    2.5
## 969         14 1995    2.5
## 970         16 1995    3.5
## 971         17 1995    3.0
## 972         19 1995    1.0
## 973         21 1995    4.5
## 974         22 1995    2.5
## 975         25 1995    3.0
## 976         32 1995    4.0
## 977         34 1995    3.0
## 978         36 1995    1.0
## 979         39 1995    2.5
## 980         44 1995    3.0
## 981         47 1995    5.0
## 982         50 1995    5.0
## 983         52 1995    2.5
## 984         62 1995    2.0
## 985         70 1996    0.5
## 986         82 1995    5.0
## 987         94 1996    3.0
## 988         95 1996    1.5
## 989        101 1996    4.0
## 990        104 1996    1.0
## 991        107 1996    2.0
## 992        110 1995    3.0
## 993        111 1976    5.0
## 994        112 1995    2.5
## 995        123 1994    4.0
## 996        125 1996    3.5
## 997        145 1995    3.5
## 998        149 1994    5.0
## 999        150 1995    3.0
## 1000       153 1995    1.0
## 1001       157 1995    2.0
## 1002       160 1995    0.5
## 1003       161 1995    3.0
## 1004       162 1994    4.0
## 1005       163 1995    2.0
## 1006       164 1995    4.0
## 1007       165 1995    3.0
## 1008       170 1995    2.5
## 1009       172 1995    1.0
## 1010       175 1995    4.0
## 1011       176 1995    4.0
## 1012       180 1995    3.0
## 1013       185 1995    2.0
## 1014       193 1995    1.0
## 1015       196 1995    2.0
## 1016       198 1995    1.5
## 1017       208 1995    1.5
## 1018       214 1994    2.0
## 1019       215 1995    4.5
## 1020       216 1995    1.0
## 1021       223 1994    4.0
## 1022       225 1994    1.0
## 1023       230 1995    1.0
## 1024       231 1994    3.5
## 1025       232 1994    4.0
## 1026       233 1994    4.0
## 1027       235 1994    4.0
## 1028       237 1995    3.5
## 1029       246 1994    5.0
## 1030       247 1994    2.0
## 1031       252 1994    2.0
## 1032       253 1994    2.0
## 1033       260 1977    5.0
## 1034       265 1992    1.0
## 1035       288 1994    2.0
## 1036       292 1995    1.0
## 1037       293 1994    5.0
## 1038       296 1994    5.0
## 1039       300 1994    4.0
## 1040       306 1994    5.0
## 1041       307 1993    4.0
## 1042       308 1994    4.0
## 1043       316 1994    3.0
## 1044       317 1994    1.0
## 1045       318 1994    2.0
## 1046       322 1995    2.5
## 1047       329 1994    1.5
## 1048       335 1995    2.0
## 1049       339 1995    2.5
## 1050       342 1994    3.0
## 1051       344 1994    2.0
## 1052       349 1994    3.0
## 1053       353 1994    3.0
## 1054       355 1994    0.5
## 1055       356 1994    1.0
## 1056       357 1994    3.5
## 1057       364 1994    4.0
## 1058       367 1994    2.0
## 1059       370 1994    3.5
## 1060       371 1994    2.0
## 1061       372 1994    3.0
## 1062       373 1992    3.5
## 1063       377 1994    4.0
## 1064       380 1994    4.0
## 1065       382 1994    3.5
## 1066       429 1994    1.0
## 1067       431 1993    4.0
## 1068       434 1993    3.0
## 1069       435 1993    1.0
## 1070       440 1993    2.5
## 1071       441 1993    4.0
## 1072       442 1993    1.0
## 1073       454 1993    3.0
## 1074       457 1993    5.0
## 1075       466 1993    2.5
## 1076       471 1994    3.0
## 1077       474 1993    3.0
## 1078       480 1993    3.0
## 1079       481 1993    3.0
## 1080       483 1993    1.0
## 1081       485 1993    0.5
## 1082       494 1996    4.0
## 1083       500 1993    3.0
## 1084       508 1993    1.5
## 1085       509 1993    2.0
## 1086       520 1993    3.5
## 1087       524 1993    2.5
## 1088       527 1993    4.0
## 1089       535 1993    3.0
## 1090       539 1993    2.0
## 1091       540 1993    1.5
## 1092       541 1982    5.0
## 1093       543 1993    3.0
## 1094       549 1993    5.0
## 1095       551 1993    2.0
## 1096       555 1993    4.0
## 1097       556 1993    3.5
## 1098       562 1995    3.0
## 1099       574 1994    3.0
## 1100       586 1990    2.0
## 1101       587 1990    1.0
## 1102       588 1992    0.5
## 1103       589 1991    4.0
## 1104       590 1990    3.0
## 1105       592 1989    4.0
## 1106       593 1991    5.0
## 1107       594 1937    2.5
## 1108       597 1990    2.5
## 1109       608 1996    5.0
## 1110       610 1981    3.0
## 1111       628 1996    2.5
## 1112       647 1996    1.5
## 1113       648 1996    4.0
## 1114       663 1996    2.0
## 1115       665 1995    3.0
## 1116       674 1968    3.0
## 1117       680 1965    2.0
## 1118       708 1996    3.0
## 1119       720 1996    3.0
## 1120       724 1996    2.0
## 1121       733 1996    3.5
## 1122       736 1996    1.0
## 1123       745 1995    3.0
## 1124       748 1996    2.5
## 1125       750 1964    4.0
## 1126       762 1996    2.0
## 1127       778 1996    4.0
## 1128       780 1996    2.5
## 1129       784 1996    2.5
## 1130       785 1996    3.0
## 1131       786 1996    0.5
## 1132       788 1996    1.5
## 1133       799 1996    3.0
## 1134       800 1996    5.0
## 1135       802 1996    1.0
## 1136       803 1996    4.5
## 1137       804 1996    3.5
## 1138       832 1996    1.0
## 1139       836 1996    2.0
## 1140       851 1996    4.0
## 1141       858 1972    5.0
## 1142       866 1996    4.0
## 1143       899 1952    5.0
## 1144       903 1958    5.0
## 1145       904 1954    5.0
## 1146       908 1959    5.0
## 1147       909 1960    4.0
## 1148       910 1959    2.5
## 1149       911 1963    4.0
## 1150       912 1942    5.0
## 1151       913 1941    4.0
## 1152       914 1964    1.5
## 1153       916 1953    1.0
## 1154       919 1939    3.0
## 1155       920 1939    3.5
## 1156       922 1950    1.0
## 1157       923 1941    5.0
## 1158       924 1968    5.0
## 1159       926 1950    3.0
## 1160       931 1945    1.0
## 1161       953 1946    3.0
## 1162       994 1996    4.0
## 1163      1020 1993    2.0
## 1164      1035 1965    2.0
## 1165      1036 1988    4.0
## 1166      1041 1996    5.0
## 1167      1047 1996    2.5
## 1168      1059 1996    1.5
## 1169      1060 1996    4.0
## 1170      1073 1971    3.0
## 1171      1079 1988    4.0
## 1172      1084 1967    3.0
## 1173      1088 1987    2.0
## 1174      1089 1992    4.0
## 1175      1092 1992    2.5
## 1176      1093 1991    2.0
## 1177      1094 1992    4.0
## 1178      1095 1992    4.0
## 1179      1097 1982    4.0
## 1180      1100 1990    2.5
## 1181      1101 1986    3.0
## 1182      1120 1996    1.0
## 1183      1127 1989    4.0
## 1184      1131 1986    2.5
## 1185      1136 1975    2.5
## 1186      1147 1996    3.5
## 1187      1148 1993    3.0
## 1188      1171 1992    4.0
## 1189      1173 1989    3.0
## 1190      1176 1991    4.0
## 1191      1178 1957    3.0
## 1192      1179 1990    4.0
## 1193      1183 1996    2.0
## 1194      1186 1989    4.5
## 1195      1189 1988    3.5
## 1196      1193 1975    5.0
## 1197      1196 1980    5.0
## 1198      1197 1987    1.0
## 1199      1198 1981    4.0
## 1200      1199 1985    1.0
## 1201      1200 1986    4.0
## 1202      1201 1966    3.5
## 1203      1203 1957    4.0
## 1204      1204 1962    2.0
## 1205      1206 1971    5.0
## 1206      1207 1962    3.0
## 1207      1208 1979    5.0
## 1208      1209 1968    4.5
## 1209      1210 1983    5.0
## 1210      1211 1987    1.5
## 1211      1212 1949    3.0
## 1212      1213 1990    3.0
## 1213      1214 1979    4.0
## 1214      1215 1993    1.5
## 1215      1217 1985    2.0
## 1216      1218 1989    4.0
## 1217      1219 1960    3.0
## 1218      1220 1980    1.0
## 1219      1221 1974    5.0
## 1220      1222 1987    4.0
## 1221      1223 1989    4.0
## 1222      1225 1984    4.0
## 1223      1228 1980    4.0
## 1224      1230 1977    3.0
## 1225      1231 1983    4.0
## 1226      1233 1981    3.0
## 1227      1234 1973    4.0
## 1228      1235 1971    3.5
## 1229      1240 1984    3.0
## 1230      1243 1990    2.0
## 1231      1244 1979    5.0
## 1232      1246 1989    1.0
## 1233      1247 1967    5.0
## 1234      1248 1958    3.0
## 1235      1249 1990    3.0
## 1236      1250 1957    4.0
## 1237      1251 1963    3.0
## 1238      1252 1974    5.0
## 1239      1254 1948    3.5
## 1240      1258 1980    4.0
## 1241      1259 1986    3.0
## 1242      1260 1931    3.0
## 1243      1262 1963    1.5
## 1244      1263 1978    4.0
## 1245      1264 1981    3.0
## 1246      1265 1993    4.0
## 1247      1266 1992    4.0
## 1248      1267 1962    5.0
## 1249      1270 1985    5.0
## 1250      1272 1970    3.5
## 1251      1276 1967    2.5
## 1252      1280 1991    3.0
## 1253      1281 1940    1.0
## 1254      1283 1952    3.0
## 1255      1284 1946    3.0
## 1256      1287 1959    2.0
## 1257      1288 1984    4.0
## 1258      1289 1983    4.0
## 1259      1290 1987    3.0
## 1260      1291 1989    4.0
## 1261      1293 1982    4.0
## 1262      1297 1985    4.0
## 1263      1302 1989    3.0
## 1264      1303 1975    2.0
## 1265      1304 1969    3.0
## 1266      1307 1989    5.0
## 1267      1320 1992    3.0
## 1268      1333 1963    2.0
## 1269      1334 1958    2.0
## 1270      1339 1992    2.0
## 1271      1342 1992    2.0
## 1272      1356 1996    2.0
## 1273      1358 1996    1.0
## 1274      1361 1996    3.5
## 1275      1370 1990    3.0
## 1276      1377 1992    3.0
## 1277      1380 1978    2.5
## 1278      1385 1992    3.0
## 1279      1387 1975    4.0
## 1280      1391 1996    0.5
## 1281      1393 1996    3.5
## 1282      1394 1987    4.0
## 1283      1396 1992    4.0
## 1284      1405 1996    3.0
## 1285      1407 1996    5.0
## 1286      1449 1996    4.0
## 1287      1464 1997    4.0
## 1288      1466 1997    4.0
## 1289      1476 1997    3.0
## 1290      1479 1997    1.5
## 1291      1483 1996    3.0
## 1292      1484 1996    3.0
## 1293      1485 1997    3.0
## 1294      1500 1997    3.0
## 1295      1502 1996    1.5
## 1296      1503 1997    1.0
## 1297      1513 1997    2.0
## 1298      1517 1997    3.0
## 1299      1527 1997    1.0
## 1300      1529 1997    3.0
## 1301      1544 1997    1.0
## 1302      1546 1996    4.0
## 1303      1552 1997    1.5
## 1304      1556 1997    2.5
## 1305      1562 1997    1.5
## 1306      1569 1997    3.5
## 1307      1573 1997    4.0
## 1308      1580 1997    4.0
## 1309      1584 1997    4.0
## 1310      1589 1997    2.0
## 1311      1597 1997    2.0
## 1312      1608 1997    1.0
## 1313      1610 1990    3.0
## 1314      1615 1997    3.0
## 1315      1616 1997    3.0
## 1316      1617 1997    5.0
## 1317      1625 1997    4.0
## 1318      1635 1997    4.0
## 1319      1639 1997    4.0
## 1320      1644 1997    1.5
## 1321      1645 1997    3.0
## 1322      1649 1997    2.0
## 1323      1653 1997    3.0
## 1324      1663 1981    3.0
## 1325      1673 1997    3.0
## 1326      1676 1997    4.0
## 1327      1680 1998    3.0
## 1328      1682 1998    2.0
## 1329      1689 1997    4.5
## 1330      1690 1997    1.0
## 1331      1694 1997    3.0
## 1332      1704 1997    4.0
## 1333      1717 1997    4.0
## 1334      1719 1997    4.0
## 1335      1721 1997    1.5
## 1336      1722 1997    3.5
## 1337      1729 1997    1.0
## 1338      1732 1998    3.5
## 1339      1735 1998    0.5
## 1340      1747 1997    3.5
## 1341      1748 1998    4.0
## 1342      1752 1998    3.5
## 1343      1753 1998    1.0
## 1344      1754 1998    3.5
## 1345      1777 1998    2.0
## 1346      1779 1998    1.0
## 1347      1784 1997    3.0
## 1348      1792 1998    3.0
## 1349      1805 1998    3.0
## 1350      1807 1998    1.5
## 1351      1810 1998    2.5
## 1352      1816 1997    2.5
## 1353      1827 1997    4.0
## 1354      1831 1998    2.0
## 1355      1834 1997    3.5
## 1356      1836 1998    2.0
## 1357      1845 1998    4.0
## 1358      1859 1997    5.0
## 1359      1860 1997    4.0
## 1360      1862 1998    2.0
## 1361      1876 1998    2.0
## 1362      1882 1998    1.5
## 1363      1883 1998    4.0
## 1364      1889 1997    3.0
## 1365      1895 1998    2.5
## 1366      1897 1998    1.5
## 1367      1904 1997    3.5
## 1368      1909 1998    2.0
## 1369      1912 1998    5.0
## 1370      1914 1998    3.5
## 1371      1917 1998    2.0
## 1372      1921 1998    4.0
## 1373      1923 1998    4.5
## 1374      1945 1954    4.0
## 1375      1950 1967    3.0
## 1376      1952 1969    3.0
## 1377      1953 1971    3.0
## 1378      1954 1976    3.0
## 1379      1955 1979    4.5
## 1380      1956 1980    4.0
## 1381      1961 1988    3.5
## 1382      1962 1989    3.0
## 1383      1964 1971    3.0
## 1384      1968 1985    4.0
## 1385      1994 1982    2.5
## 1386      1997 1973    5.0
## 1387      2000 1987    3.0
## 1388      2003 1984    3.0
## 1389      2005 1985    4.0
## 1390      2006 1998    4.0
## 1391      2010 1927    3.0
## 1392      2011 1989    3.0
## 1393      2012 1990    1.0
## 1394      2018 1942    2.0
## 1395      2019 1954    4.5
## 1396      2020 1988    2.5
## 1397      2025 1997    2.0
## 1398      2028 1998    3.0
## 1399      2041 1981    2.0
## 1400      2054 1989    2.0
## 1401      2058 1998    2.5
## 1402      2060 1998    2.0
## 1403      2064 1989    4.5
## 1404      2076 1986    3.0
## 1405      2100 1984    2.0
## 1406      2105 1982    4.0
## 1407      2108 1991    4.5
## 1408      2115 1984    4.0
## 1409      2124 1991    2.0
## 1410      2126 1998    1.0
## 1411      2133 1987    3.5
## 1412      2134 1985    3.5
## 1413      2140 1982    3.0
## 1414      2145 1986    2.0
## 1415      2150 1980    3.0
## 1416      2160 1968    3.0
## 1417      2161 1984    3.0
## 1418      2167 1998    3.0
## 1419      2174 1988    4.0
## 1420      2186 1951    3.0
## 1421      2194 1987    4.0
## 1422      2231 1998    3.0
## 1423      2232 1997    4.0
## 1424      2243 1987    4.5
## 1425      2248 1989    3.5
## 1426      2268 1992    1.0
## 1427      2269 1993    2.5
## 1428      2273 1998    2.5
## 1429      2278 1998    2.5
## 1430      2282 1998    0.5
## 1431      2288 1982    3.0
## 1432      2289 1992    4.0
## 1433      2291 1990    3.0
## 1434      2294 1998    2.0
## 1435      2302 1992    3.5
## 1436      2303 1975    3.0
## 1437      2311 1984    2.0
## 1438      2313 1980    3.5
## 1439      2318 1998    4.5
## 1440      2321 1998    3.5
## 1441      2324 1997    2.0
## 1442      2329 1998    1.0
## 1443      2333 1998    3.0
## 1444      2334 1998    3.0
## 1445      2336 1998    2.0
## 1446      2340 1998    2.0
## 1447      2351 1957    1.0
## 1448      2353 1998    0.5
## 1449      2355 1998    2.0
## 1450      2357 1998    3.0
## 1451      2360 1998    2.0
## 1452      2366 1933    3.0
## 1453      2369 1985    1.0
## 1454      2371 1985    3.5
## 1455      2378 1984    3.0
## 1456      2387 1998    3.5
## 1457      2391 1998    3.0
## 1458      2395 1998    5.0
## 1459      2396 1998    2.0
## 1460      2405 1985    3.0
## 1461      2406 1984    3.5
## 1462      2407 1985    3.0
## 1463      2413 1985    4.5
## 1464      2424 1998    1.5
## 1465      2427 1998    3.0
## 1466      2428 1998    1.0
## 1467      2439 1997    2.0
## 1468      2447 1999    2.5
## 1469      2455 1986    3.5
## 1470      2467 1986    1.0
## 1471      2478 1986    4.0
## 1472      2490 1999    1.0
## 1473      2501 1999    3.0
## 1474      2502 1999    5.0
## 1475      2505 1999    0.5
## 1476      2528 1976    2.0
## 1477      2539 1999    2.5
## 1478      2541 1999    1.0
## 1479      2542 1998    1.0
## 1480      2560 1999    3.0
## 1481      2568 1999    0.5
## 1482      2571 1999    5.0
## 1483      2572 1999    5.0
## 1484      2574 1999    1.0
## 1485      2575 1998    3.0
## 1486      2579 1998    2.5
## 1487      2580 1999    3.0
## 1488      2581 1999    1.0
## 1489      2585 1998    1.0
## 1490      2594 1997    4.0
## 1491      2598 1999    1.5
## 1492      2599 1999    3.0
## 1493      2600 1999    3.0
## 1494      2605 1999    1.0
## 1495      2617 1999    1.0
## 1496      2624 1998    3.0
## 1497      2628 1999    2.5
## 1498      2640 1978    4.0
## 1499      2648 1931    3.0
## 1500      2657 1975    2.0
## 1501      2671 1999    4.0
## 1502      2678 1998    1.0
## 1503      2683 1999    1.0
## 1504      2686 1998    3.0
## 1505      2692 1998    3.0
## 1506      2699 1990    3.0
## 1507      2700 1999    3.0
## 1508      2701 1999    1.0
## 1509      2702 1999    1.5
## 1510      2706 1999    3.0
## 1511      2707 1999    3.0
## 1512      2709 1999    1.0
## 1513      2710 1999    1.0
## 1514      2712 1999    4.0
## 1515      2713 1999    1.0
## 1516      2716 1984    4.0
## 1517      2717 1989    3.5
## 1518      2718 1999    1.5
## 1519      2722 1999    2.0
## 1520      2723 1999    1.0
## 1521      2726 1956    2.5
## 1522      2729 1962    3.0
## 1523      2759 1999    1.0
## 1524      2761 1999    2.0
## 1525      2762 1999    1.0
## 1526      2763 1999    1.0
## 1527      2769 2000    2.0
## 1528      2770 1999    4.0
## 1529      2791 1980    4.0
## 1530      2795 1983    3.5
## 1531      2797 1988    4.0
## 1532      2803 1993    1.5
## 1533      2819 1975    3.0
## 1534      2840 1999    1.0
## 1535      2841 1999    2.0
## 1536      2858 1999    4.0
## 1537      2871 1972    4.0
## 1538      2881 1999    1.0
## 1539      2890 1999    4.0
## 1540      2905 1962    4.0
## 1541      2908 1999    1.0
## 1542      2912 1999    4.0
## 1543      2915 1983    1.5
## 1544      2916 1990    4.0
## 1545      2918 1986    4.0
## 1546      2925 1970    4.0
## 1547      2947 1964    5.0
## 1548      2949 1962    4.0
## 1549      2952 1996    1.0
## 1550      2959 1999    5.0
## 1551      2973 1989    4.0
## 1552      2976 1999    2.0
## 1553      2983 1965    4.0
## 1554      2985 1987    3.0
## 1555      2987 1988    4.0
## 1556      2990 1989    3.5
## 1557      2993 1965    4.0
## 1558      2997 1999    5.0
## 1559      3000 1997    4.0
## 1560      3004 1999    1.0
## 1561      3005 1999    1.0
## 1562      3006 1999    5.0
## 1563      3007 1999    2.5
## 1564      3008 1998    2.0
## 1565      3010 1999    4.0
## 1566      3019 1989    3.0
## 1567      3020 1993    3.0
## 1568      3030 1961    4.0
## 1569      3033 1987    4.0
## 1570      3039 1983    4.0
## 1571      3044 1991    3.0
## 1572      3052 1999    3.0
## 1573      3060 1991    4.0
## 1574      3077 1998    3.0
## 1575      3081 1999    1.0
## 1576      3082 1999    3.0
## 1577      3083 1999    5.0
## 1578      3089 1948    3.0
## 1579      3101 1987    4.0
## 1580      3104 1988    4.0
## 1581      3107 1991    3.0
## 1582      3108 1991    4.0
## 1583      3113 1999    2.0
## 1584      3114 1999    1.0
## 1585      3128 1999    4.0
## 1586      3129 1999    3.5
## 1587      3134 1937    1.0
## 1588      3146 1999    1.5
## 1589      3147 1999    1.0
## 1590      3148 1999    1.0
## 1591      3150 1999    3.0
## 1592      3152 1971    3.0
## 1593      3157 1999    1.0
## 1594      3160 1999    3.0
## 1595      3168 1969    2.5
## 1596      3173 1999    2.5
## 1597      3174 1999    1.0
## 1598      3175 1999    4.0
## 1599      3176 1999    2.0
## 1600      3181 1999    1.0
## 1601      3182 1999    2.0
## 1602      3185 1999    2.0
## 1603      3210 1982    5.0
## 1604      3219 1990    2.0
## 1605      3225 2000    1.0
## 1606      3246 1992    4.0
## 1607      3250 1993    2.0
## 1608      3253 1992    3.0
## 1609      3255 1992    2.0
## 1610      3256 1992    2.0
## 1611      3261 1992    4.0
## 1612      3262 1992    1.0
## 1613      3265 1992    4.0
## 1614      3266 1992    5.0
## 1615      3267 1992    3.0
## 1616      3272 1992    2.0
## 1617      3273 2000    1.0
## 1618      3275 2000    0.5
## 1619      3285 2000    2.0
## 1620      3286 2000    3.0
## 1621      3298 2000    4.0
## 1622      3300 2000    5.0
## 1623      3301 2000    4.0
## 1624      3307 1931    3.0
## 1625      3316 2000    1.5
## 1626      3317 2000    5.0
## 1627      3318 1999    3.0
## 1628      3320 1999    5.0
## 1629      3328 1999    4.0
## 1630      3358 1991    2.5
## 1631      3361 1988    3.0
## 1632      3362 1975    3.5
## 1633      3386 1991    3.0
## 1634      3390 1986    1.0
## 1635      3408 2000    2.0
## 1636      3409 2000    4.0
## 1637      3418 1991    1.0
## 1638      3421 1978    1.5
## 1639      3429 1989    3.0
## 1640      3435 1944    2.5
## 1641      3448 1987    2.5
## 1642      3461 1963    3.0
## 1643      3462 1936    1.5
## 1644      3471 1977    4.0
## 1645      3476 1990    4.5
## 1646      3477 1995    3.0
## 1647      3481 2000    5.0
## 1648      3484 2000    0.5
## 1649      3489 1991    2.0
## 1650      3499 1990    3.0
## 1651      3504 1976    4.0
## 1652      3505 1987    4.0
## 1653      3510 2000    2.0
## 1654      3512 2000    3.0
## 1655      3527 1987    3.0
## 1656      3534 2000    1.0
## 1657      3535 2000    1.0
## 1658      3536 2000    4.0
## 1659      3538 1999    1.5
## 1660      3543 1982    2.0
## 1661      3552 1980    2.0
## 1662      3555 2000    1.0
## 1663      3556 1999    3.0
## 1664      3566 2000    3.0
## 1665      3569 1998    4.0
## 1666      3571 2000    4.0
## 1667      3577 1988    3.5
## 1668      3578 2000    2.0
## 1669      3598 2000    3.0
## 1670      3617 2000    4.0
## 1671      3618 2000    2.0
## 1672      3623 2000    1.0
## 1673      3624 2000    2.0
## 1674      3626 1999    3.0
## 1675      3633 1969    4.0
## 1676      3634 1964    2.0
## 1677      3635 1977    3.5
## 1678      3638 1979    3.5
## 1679      3639 1974    2.0
## 1680      3671 1974    2.0
## 1681      3683 1984    4.0
## 1682      3707 1986    5.0
## 1683      3717 2000    1.0
## 1684      3728 1992    4.0
## 1685      3730 1974    5.0
## 1686      3735 1973    2.0
## 1687      3742 1925    2.5
## 1688      3745 2000    1.0
## 1689      3747 1999    2.0
## 1690      3751 2000    1.0
## 1691      3752 2000    1.0
## 1692      3755 2000    1.5
## 1693      3763 1986    2.0
## 1694      3783 1998    2.0
## 1695      3785 2000    4.0
## 1696      3786 1999    2.0
## 1697      3787 1999    3.0
## 1698      3788 1966    3.0
## 1699      3793 2000    2.0
## 1700      3794 2000    4.0
## 1701      3798 2000    2.0
## 1702      3800 1999    2.0
## 1703      3801 1959    3.0
## 1704      3823 1999    2.0
## 1705      3825 2000    1.0
## 1706      3826 2000    1.0
## 1707      3827 2000    2.5
## 1708      3852 2000    3.0
## 1709      3854 1999    3.0
## 1710      3861 2000    3.0
## 1711      3863 2000    2.0
## 1712      3868 1988    4.0
## 1713      3882 2000    4.0
## 1714      3892 2000    1.0
## 1715      3893 2000    1.0
## 1716      3896 2000    3.0
## 1717      3897 2000    3.0
## 1718      3910 2000    2.0
## 1719      3911 2000    2.0
## 1720      3915 2000    5.0
## 1721      3943 2000    3.0
## 1722      3948 2000    5.0
## 1723      3949 2000    5.0
## 1724      3952 2000    4.0
## 1725      3956 2000    1.0
## 1726      3967 2000    1.0
## 1727      3968 2000    2.5
## 1728      3969 2000    1.0
## 1729      3977 2000    3.0
## 1730      3979 2000    1.0
## 1731      3981 2000    1.0
## 1732      3983 2000    5.0
## 1733      3984 1971    4.0
## 1734      3986 2000    1.0
## 1735      3987 2000    4.0
## 1736      3988 2000    1.0
## 1737      3989 1999    3.0
## 1738      3990 2000    1.0
## 1739      3993 2000    1.0
## 1740      3994 2000    4.0
## 1741      3996 2000    5.0
## 1742      3998 2000    1.0
## 1743      3999 2000    3.0
## 1744      4005 1987    3.5
## 1745      4006 1986    3.0
## 1746      4007 1987    3.5
## 1747      4010 1985    2.0
## 1748      4011 2000    1.0
## 1749      4014 2000    2.0
## 1750      4015 2000    5.0
## 1751      4017 2000    4.0
## 1752      4018 2000    1.0
## 1753      4019 2000    2.0
## 1754      4020 2000    3.0
## 1755      4021 2000    3.0
## 1756      4022 2000    3.0
## 1757      4023 2000    2.0
## 1758      4025 2000    1.0
## 1759      4027 2000    3.0
## 1760      4029 2000    4.0
## 1761      4030 2000    2.0
## 1762      4033 2000    4.0
## 1763      4034 2000    4.0
## 1764      4036 2000    1.0
## 1765      4037 1987    3.0
## 1766      4052 2001    1.0
## 1767      4055 2000    1.0
## 1768      4056 2001    5.0
## 1769      4066 1988    4.0
## 1770      4079 1987    4.0
## 1771      4082 1987    1.0
## 1772      4085 1984    3.0
## 1773      4121 1987    3.0
## 1774      4144 2000    4.0
## 1775      4148 2001    1.0
## 1776      4149 2001    1.0
## 1777      4158 2001    2.0
## 1778      4161 2001    3.0
## 1779      4167 2001    1.0
## 1780      4168 2001    3.0
## 1781      4210 1986    4.5
## 1782      4223 2001    1.0
## 1783      4225 2001    1.0
## 1784      4226 2000    5.0
## 1785      4232 2001    3.0
## 1786      4235 2000    4.0
## 1787      4238 2001    3.0
## 1788      4239 2001    1.0
## 1789      4246 2001    2.0
## 1790      4247 2001    1.0
## 1791      4262 1983    3.0
## 1792      4270 2001    1.5
## 1793      4271 2000    4.0
## 1794      4299 2001    2.5
## 1795      4302 2000    5.0
## 1796      4306 2001    1.0
## 1797      4308 2001    2.0
## 1798      4310 2001    3.0
## 1799      4321 1991    2.0
## 1800      4322 1988    4.0
## 1801      4343 2001    1.0
## 1802      4344 2001    2.0
## 1803      4351 1991    3.0
## 1804      4361 1982    5.0
## 1805      4367 2001    1.0
## 1806      4369 2001    3.0
## 1807      4370 2001    1.0
## 1808      4372 2001    3.0
## 1809      4378 2000    3.0
## 1810      4380 2000    2.0
## 1811      4381 2001    2.0
## 1812      4383 2000    3.0
## 1813      4386 2001    1.0
## 1814      4388 2001    3.0
## 1815      4410 1986    3.0
## 1816      4446 2001    4.0
## 1817      4447 2001    1.5
## 1818      4448 2001    1.0
## 1819      4450 2001    2.0
## 1820      4451 2001    2.5
## 1821      4489 1988    4.5
## 1822      4546 1988    3.0
## 1823      4571 1989    3.0
## 1824      4621 1989    3.0
## 1825      4623 1989    4.0
## 1826      4638 2001    1.0
## 1827      4639 2001    1.0
## 1828      4641 2001    3.0
## 1829      4642 2000    1.5
## 1830      4643 2001    3.0
## 1831      4654 1989    1.0
## 1832      4658 1989    2.0
## 1833      4666 1989    1.0
## 1834      4675 1989    2.0
## 1835      4678 1989    4.0
## 1836      4679 1989    3.0
## 1837      4700 2001    2.0
## 1838      4701 2001    3.0
## 1839      4713 1980    4.0
## 1840      4718 2001    4.0
## 1841      4719 2001    2.0
## 1842      4720 2001    2.0
## 1843      4723 2001    3.5
## 1844      4727 2001    3.0
## 1845      4728 2001    4.0
## 1846      4731 2000    5.0
## 1847      4734 2001    1.0
## 1848      4738 2000    3.5
## 1849      4744 2001    1.0
## 1850      4776 2001    2.5
## 1851      4816 2001    3.0
## 1852      4823 2001    2.5
## 1853      4844 2001    2.0
## 1854      4848 2001    2.0
## 1855      4873 2001    5.0
## 1856      4878 2001    4.0
## 1857      4881 2001    1.5
## 1858      4886 2001    5.0
## 1859      4888 2001    3.0
## 1860      4890 2001    3.0
## 1861      4896 2001    1.0
## 1862      4901 2001    4.0
## 1863      4902 2001    2.0
## 1864      4903 2001    5.0
## 1865      4914 1960    4.0
## 1866      4958 2001    1.0
## 1867      4963 2001    4.0
## 1868      4973 2001    2.0
## 1869      4974 2001    2.0
## 1870      4975 2001    1.0
## 1871      4979 2001    5.0
## 1872      4992 2001    1.5
## 1873      4993 2001    5.0
## 1874      4995 2001    1.0
## 1875      5000 1969    3.5
## 1876      5008 1957    3.5
## 1877      5010 2001    4.5
## 1878      5013 2001    2.0
## 1879      5015 2001    1.0
## 1880      5026 2001    2.0
## 1881      5060 1970    1.5
## 1882      5066 2002    3.0
## 1883      5071 2000    5.0
## 1884      5074 2001    1.0
## 1885      5075 2000    4.0
## 1886      5110 2001    1.5
## 1887      5120 1972    3.0
## 1888      5128 2002    1.0
## 1889      5135 2001    4.0
## 1890      5170 2002    2.0
## 1891      5171 2002    0.5
## 1892      5218 2002    1.0
## 1893      5219 2002    1.0
## 1894      5220 2002    3.0
## 1895      5222 2001    2.0
## 1896      5225 2001    1.5
## 1897      5254 2002    1.0
## 1898      5266 2002    1.0
## 1899      5269 2001    4.5
## 1900      5279 1991    0.5
## 1901      5283 2002    3.0
## 1902      5291 1950    3.5
## 1903      5293 2002    3.0
## 1904      5296 2002    1.5
## 1905      5298 2001    2.5
## 1906      5299 2002    0.5
## 1907      5308 1987    2.5
## 1908      5313 2002    1.0
## 1909      5319 2000    3.5
## 1910      5339 1992    3.5
## 1911      5346 1990    3.5
## 1912      5349 2002    1.0
## 1913      5363 2002    1.0
## 1914      5364 2002    2.5
## 1915      5377 2002    4.0
## 1916      5378 2002    3.0
## 1917      5388 2002    2.0
## 1918      5391 2001    2.5
## 1919      5400 2002    3.0
## 1920      5410 1972    2.0
## 1921      5416 2002    1.5
## 1922      5418 2002    2.0
## 1923      5419 2002    1.0
## 1924      5444 2002    1.0
## 1925      5445 2002    5.0
## 1926      5449 2002    2.0
## 1927      5458 2002    1.0
## 1928      5459 2002    1.0
## 1929      5463 2002    1.0
## 1930      5464 2002    0.5
## 1931      5477 2001    5.0
## 1932      5478 2002    2.0
## 1933      5481 2002    2.0
## 1934      5500 1984    4.0
## 1935      5502 2002    1.0
## 1936      5504 2002    2.0
## 1937      5507 2002    1.0
## 1938      5508 2002    3.0
## 1939      5515 2000    4.0
## 1940      5524 2002    1.0
## 1941      5528 2002    1.0
## 1942      5541 1991    3.0
## 1943      5553 1987    2.0
## 1944      5568 1984    3.0
## 1945      5577 2002    2.5
## 1946      5617 2002    3.5
## 1947      5618 2001    1.5
## 1948      5620 2002    0.5
## 1949      5630 2002    1.5
## 1950      5650 1983    3.0
## 1951      5662 1997    4.0
## 1952      5669 2002    4.0
## 1953      5673 2002    3.5
## 1954      5679 2002    4.0
## 1955      5791 2002    2.0
## 1956      5792 2002    4.0
## 1957      5809 2002    3.0
## 1958      5816 2002    1.0
## 1959      5872 2002    3.0
## 1960      5878 2002    1.0
## 1961      5893 1994    5.0
## 1962      5902 2002    4.0
## 1963      5903 2002    2.0
## 1964      5909 2001    1.0
## 1965      5945 2002    1.0
## 1966      5952 2002    5.0
## 1967      5954 2002    1.0
## 1968      5956 2002    2.5
## 1969      5957 2002    4.5
## 1970      5959 2002    3.0
## 1971      5968 1990    3.0
## 1972      5989 2002    2.5
## 1973      5991 2002    1.0
## 1974      5995 2002    4.0
## 1975      6003 2002    1.5
## 1976      6016 2002    2.0
## 1977      6025 1993    3.0
## 1978      6037 1982    3.0
## 1979      6059 2003    2.0
## 1980      6155 2003    0.5
## 1981      6157 2003    0.5
## 1982      6180 1990    1.0
## 1983      6188 2003    3.5
## 1984      6203 1991    3.0
## 1985      6218 2002    0.5
## 1986      6271 1973    4.0
## 1987      6281 2002    1.0
## 1988      6283 2001    1.0
## 1989      6287 2003    0.5
## 1990      6296 2003    1.5
## 1991      6299 2001    2.5
## 1992      6303 1971    2.5
## 1993      6327 2003    4.0
## 1994      6331 2002    3.0
## 1995      6333 2003    3.0
## 1996      6365 2003    1.0
## 1997      6373 2003    2.0
## 1998      6377 2003    1.0
## 1999      6378 2003    3.0
## 2000      6380 2003    3.0
## 2001      6385 2002    1.5
## 2002      6433 1929    3.0
## 2003      6440 1991    3.5
## 2004      6442 1992    3.5
## 2005      6464 1997    2.5
## 2006      6502 2002    3.5
## 2007      6503 2003    2.5
## 2008      6534 2003    2.0
## 2009      6537 2003    2.5
## 2010      6539 2003    3.5
## 2011      6547 2003    1.0
## 2012      6552 2002    1.5
## 2013      6586 2003    3.0
## 2014      6593 2003    1.0
## 2015      6620 2003    1.5
## 2016      6641 2000    4.0
## 2017      6650 1949    3.5
## 2018      6708 2003    2.0
## 2019      6711 2003    3.5
## 2020      6754 2003    0.5
## 2021      6773 2003    1.0
## 2022      6783 1939    2.0
## 2023      6787 1976    5.0
## 2024      6816 1987    4.0
## 2025      6820 2000    2.5
## 2026      6863 2003    2.0
## 2027      6867 2003    3.5
## 2028      6870 2003    3.5
## 2029      6873 2003    1.0
## 2030      6874 2003    1.0
## 2031      6875 2003    1.0
## 2032      6879 2003    2.5
## 2033      6885 2003    1.0
## 2034      6932 2003    4.5
## 2035      6934 2003    1.5
## 2036      6936 2003    1.0
## 2037      6942 2003    3.0
## 2038      6944 1991    4.0
## 2039      6947 2003    1.0
## 2040      6953 2003    2.0
## 2041      6957 2003    4.0
## 2042      6961 1992    2.5
## 2043      6975 1997    4.0
## 2044      6978 1991    2.5
## 2045      6979 1983    3.0
## 2046      6989 1983    2.5
## 2047      7003 1991    2.0
## 2048      7004 1990    2.5
## 2049      7008 1972    3.5
## 2050      7010 1992    3.5
## 2051      7028 1990    3.5
## 2052      7034 1998    4.5
## 2053      7090 2002    3.0
## 2054      7123 1991    3.5
## 2055      7132 1935    3.0
## 2056      7143 2003    2.0
## 2057      7147 2003    1.5
## 2058      7153 2003    1.5
## 2059      7156 2003    3.0
## 2060      7162 2003    1.0
## 2061      7173 2004    0.5
## 2062      7199 2003    1.0
## 2063      7254 2004    1.0
## 2064      7265 2003    3.5
## 2065      7293 2004    1.0
## 2066      7317 2004    3.0
## 2067      7323 2003    2.0
## 2068      7325 2004    0.5
## 2069      7327 1966    1.5
## 2070      7346 2004    3.0
## 2071      7348 2004    2.0
## 2072      7361 2004    5.0
## 2073      7371 2003    1.0
## 2074      7373 2004    1.5
## 2075      7438 2004    0.5
## 2076      7444 2004    1.0
## 2077      7445 2004    1.5
## 2078      7451 2004    3.5
## 2079      7458 2004    1.5
## 2080      7484 1970    4.0
## 2081      7487 1990    1.5
## 2082      7560 1964    3.5
## 2083      7569 1967    3.5
## 2084      7573 1983    2.5
## 2085      7698 1979    3.0
## 2086      7792 1974    2.5
## 2087      7925 1958    3.0
## 2088      8011 2002    2.0
## 2089      8264 1975    4.0
## 2090      8360 2004    2.5
## 2091      8361 2004    4.0
## 2092      8366 2004    2.5
## 2093      8368 2004    1.5
## 2094      8376 2004    2.5
## 2095      8464 2004    3.0
## 2096      8528 2004    1.0
## 2097      8529 2004    1.5
## 2098      8531 2004    1.5
## 2099      8581 1999    2.5
## 2100      8582 1992    3.5
## 2101      8622 2004    3.5
## 2102      8623 1987    3.0
## 2103      8636 2004    3.0
## 2104      8638 2004    4.0
## 2105      8641 2004    3.0
## 2106      8644 2004    1.0
## 2107      8645 2004    2.0
## 2108      8665 2004    3.5
## 2109      8781 2004    0.5
## 2110      8784 2004    2.0
## 2111      8798 2004    3.0
## 2112      8807 2004    2.5
## 2113      8865 2004    1.0
## 2114      8874 2004    2.5
## 2115      8910 2004    2.5
## 2116      8914 2004    4.5
## 2117      8917 2004    4.0
## 2118      8930 2003    2.5
## 2119      8948 2004    1.0
## 2120      8949 2004    4.5
## 2121      8950 2004    2.0
## 2122      8957 2004    3.0
## 2123      8958 2004    3.5
## 2124      8961 2004    2.0
## 2125      8970 2004    2.0
## 2126      8972 2004    3.5
## 2127      8974 2004    2.5
## 2128      8984 2004    2.0
## 2129     26131 1966    5.0
## 2130     26152 1966    4.0
## 2131     26587 1989    5.0
## 2132     26729 1991    4.5
## 2133     26810 1993    2.0
## 2134     27020 1998    2.5
## 2135     27478 2002    2.5
## 2136     27660 2003    4.0
## 2137     27773 2003    1.0
## 2138     27821 2005    1.0
## 2139     27846 2003    4.0
## 2140     27904 2006    2.5
## 2141     30707 2004    1.5
## 2142     30749 2004    2.0
## 2143     30810 2004    1.5
## 2144     30812 2004    0.5
## 2145     30825 2004    1.5
## 2146     31685 2005    0.5
## 2147     31696 2005    3.5
## 2148     32587 2005    3.5
## 2149     33004 2005    0.5
## 2150     33154 2005    3.5
## 2151     33166 2004    3.5
## 2152     33493 2005    5.0
## 2153     33679 2005    3.5
## 2154     33794 2005    4.5
## 2155     34048 2005    0.5
## 2156     34072 2005    1.5
## 2157     34150 2005    1.0
## 2158     34162 2005    1.0
## 2159     34319 2005    1.0
## 2160     34334 2005    1.5
## 2161     34405 2005    0.5
## 2162     34542 2005    3.5
## 2163     35836 2005    3.0
## 2164     35957 2005    2.5
## 2165     36517 2005    1.5
## 2166     36529 2005    1.0
## 2167     37386 2005    2.0
## 2168     37729 2005    2.0
## 2169     37741 2005    2.5
## 2170     38061 2005    4.5
## 2171     38886 2005    1.5
## 2172     39292 2005    4.5
## 2173     40583 2005    2.0
## 2174     40815 2005    1.5
## 2175     41997 2005    2.5
## 2176     42718 2004    4.5
## 2177     44004 2006    1.0
## 2178     44191 2006    2.5
## 2179     44195 2006    2.0
## 2180     44199 2006    4.0
## 2181     44555 2006    1.0
## 2182     44597 1963    2.5
## 2183     44665 2006    1.0
## 2184     44761 2005    1.5
## 2185     44788 2006    4.0
## 2186     45186 2006    2.5
## 2187     45447 2006    1.0
## 2188     45499 2006    2.5
## 2189     45517 2006    0.5
## 2190     45666 2006    4.0
## 2191     45672 2006    1.5
## 2192     45720 2006    1.5
## 2193     45722 2006    2.0
## 2194     45728 2006    0.5
## 2195     45950 2006    3.0
## 2196     46530 2006    0.5
## 2197     46578 2006    1.0
## 2198     46723 2006    2.0
## 2199     46970 2006    2.0
## 2200     46972 2006    3.5
## 2201     46976 2006    3.5
## 2202     47610 2006    1.5
## 2203     47999 2006    2.5
## 2204     48043 2006    0.5
## 2205     48082 2006    1.0
## 2206     48385 2006    4.0
## 2207     48394 2006    1.5
## 2208     48516 2006    3.0
## 2209     48774 2006    4.0
## 2210     48780 2006    4.0
## 2211     49272 2006    4.0
## 2212     49278 2006    2.5
## 2213     49286 2006    2.5
## 2214     50851 2006    3.5
## 2215     50872 2007    3.5
## 2216     51080 2007    4.5
## 2217     51255 2007    1.5
## 2218     51540 2007    5.0
## 2219     51662 2007    2.0
## 2220     52245 2007    1.5
## 2221     52328 2007    1.5
## 2222     52604 2007    2.0
## 2223     52722 2007    1.5
## 2224     52973 2007    3.5
## 2225     53322 2007    3.5
## 2226     53464 2007    1.5
## 2227     53894 2007    2.5
## 2228     53972 2007    3.0
## 2229     53996 2007    4.0
## 2230     54001 2007    2.0
## 2231     54272 2007    1.0
## 2232     54286 2007    2.5
## 2233     54372 2006    4.5
## 2234     54503 2007    3.5
## 2235     54881 2007    4.5
## 2236     55247 2007    1.0
## 2237     55269 2007    1.0
## 2238     55276 2007    3.5
## 2239     55442 2007    2.5
## 2240     55765 2007    2.0
## 2241     55820 2007    2.0
## 2242     55830 2008    2.5
## 2243     56174 2007    1.0
## 2244     56367 2007    2.0
## 2245     56563 2007    4.0
## 2246     56775 2007    3.0
## 2247     56782 2007    1.0
## 2248     57368 2008    1.5
## 2249     57640 2008    4.0
## 2250     57669 2008    1.5
## 2251     58025 2008    1.0
## 2252     58295 2008    1.5
## 2253     58559 2008    4.5
## 2254     58998 2008    1.5
## 2255     59126 2008    4.0
## 2256     59315 2008    4.5
## 2257     59369 2008    2.5
## 2258     59519 2006    3.5
## 2259     59615 2008    1.0
## 2260     59784 2008    3.5
## 2261     59900 2008    1.5
## 2262     60037 2008    0.5
## 2263     60040 2008    3.0
## 2264     60069 2008    4.5
## 2265     60072 2008    1.0
## 2266     60074 2008    1.0
## 2267     60126 2008    1.0
## 2268     60295 2007    3.5
## 2269     60684 2009    4.0
## 2270     60766 2008    3.5
## 2271     61024 2008    1.0
## 2272     61132 2008    2.0
## 2273     61323 2008    1.0
## 2274     61394 2008    2.0
## 2275     62374 2008    3.5
## 2276     62434 2008    3.5
## 2277     62511 2008    4.5
## 2278     63082 2008    0.5
## 2279     63113 2008    3.5
## 2280     63131 2008    2.0
## 2281     63859 2008    3.0
## 2282     64620 2008    2.0
## 2283     64839 2008    1.0
## 2284     64957 2008    1.5
## 2285     65642 2007    4.5
## 2286     65802 2009    0.5
## 2287     66097 2009    3.0
## 2288     66130 2008    1.5
## 2289     66203 2009    1.0
## 2290     66596 2009    1.5
## 2291     66665 2009    3.0
## 2292     66934 2008    0.5
## 2293     67087 2009    1.5
## 2294     67193 2009    1.5
## 2295     67665 2008    3.5
## 2296     67734 2009    1.5
## 2297     67997 2009    4.0
## 2298     68157 2009    3.0
## 2299     68159 2009    4.0
## 2300     68237 2009    3.5
## 2301     68319 2009    2.0
## 2302     68324 2009    1.0
## 2303     68358 2009    4.5
## 2304     68791 2009    4.0
## 2305     68793 2009    3.0
## 2306     68954 2009    2.0
## 2307     69122 2009    1.0
## 2308     69306 2009    2.0
## 2309     69406 2009    1.0
## 2310     69436 2009    0.5
## 2311     69481 2008    4.5
## 2312     69524 1989    4.0
## 2313     69526 2009    3.0
## 2314     70286 2009    5.0
## 2315     70293 2009    3.5
## 2316     70336 2009    4.5
## 2317     70697 2009    2.5
## 2318     70862 2008    2.5
## 2319     71211 2009    3.5
## 2320     71264 2009    1.5
## 2321     71282 2008    2.5
## 2322     71462 2009    3.0
## 2323     71464 2009    2.0
## 2324     71535 2009    1.0
## 2325     71838 2009    2.0
## 2326     72011 2009    2.5
## 2327     72226 2009    1.5
## 2328     72378 2009    1.0
## 2329     72998 2009    4.0
## 2330     73017 2009    1.0
## 2331     73344 2009    3.5
## 2332     74458 2010    0.5
## 2333     74649 2008    4.0
## 2334     74795 2010    1.5
## 2335     74851 2010    0.5
## 2336     76077 2010    2.0
## 2337     76093 2010    4.0
## 2338     76251 2010    3.0
## 2339     76293 2010    3.0
## 2340     76738 2010    2.5
## 2341     77364 2010    2.5
## 2342     77455 2010    4.0
## 2343     77561 2010    1.0
## 2344     78209 2010    3.0
## 2345     78469 2010    3.0
## 2346     78499 2010    2.0
## 2347     78574 2010    4.5
## 2348     79057 2010    2.5
## 2349     79132 2010    5.0
## 2350     79185 2010    2.5
## 2351     79242 2010    2.5
## 2352     79293 2010    1.5
## 2353     79428 2010    1.0
## 2354     79695 2010    0.5
## 2355     79702 2010    1.5
## 2356     80126 2010    1.0
## 2357     80185 2010    3.0
## 2358     80463 2010    2.0
## 2359     80489 2010    4.0
## 2360     80862 2010    2.5
## 2361     80906 2010    4.0
## 2362     81158 2010    3.0
## 2363     81191 2010    3.0
## 2364     81229 2010    3.5
## 2365     81591 2010    1.0
## 2366     81782 2010    3.0
## 2367     81834 2010    2.0
## 2368     81845 2010    3.0
## 2369     81847 2010    1.0
## 2370     81932 2010    3.0
## 2371     82461 2010    3.0
## 2372     82854 2010    0.5
## 2373     83270 2010    1.0
## 2374     83293 2010    3.5
## 2375     83349 2011    1.0
## 2376     83613 2011    0.5
## 2377     83827 2010    4.0
## 2378     84152 2011    3.0
## 2379     84374 2011    2.5
## 2380     84392 2011    2.5
## 2381     84954 2011    1.0
## 2382     85414 2011    4.0
## 2383     85774 2010    4.0
## 2384     86190 2011    1.5
## 2385     86332 2011    1.0
## 2386     86644 2011    1.5
## 2387     86781 2010    5.0
## 2388     86833 2011    4.0
## 2389     86882 2011    2.5
## 2390     86898 2011    3.5
## 2391     86911 2011    0.5
## 2392     87222 2011    4.0
## 2393     87232 2011    1.5
## 2394     87304 2010    0.5
## 2395     87306 2011    1.0
## 2396     87430 2011    0.5
## 2397     87485 2011    1.0
## 2398     87520 2011    4.5
## 2399     87869 2011    2.5
## 2400     87930 2011    2.0
## 2401     88125 2011    3.0
## 2402     88129 2011    2.5
## 2403     88140 2011    1.0
## 2404     88163 2011    3.5
## 2405     88356 2011    1.5
## 2406     88744 2011    4.5
## 2407     88950 2010    0.5
## 2408     89090 2011    1.5
## 2409     89337 2011    3.0
## 2410     89470 2011    1.5
## 2411     89492 2011    5.0
## 2412     89745 2012    3.0
## 2413     89840 2011    1.0
## 2414     90249 2011    3.5
## 2415     90266 2011    2.5
## 2416     90428 2011    4.5
## 2417     90439 2011    0.5
## 2418     90531 2011    4.0
## 2419     90600 2011    3.5
## 2420     90603 2011    2.5
## 2421     90647 2011    3.0
## 2422     90746 2011    1.5
## 2423     90866 2011    1.0
## 2424     90870 2011    0.5
## 2425     91500 2012    0.5
## 2426     91505 2010    1.0
## 2427     91529 2012    3.0
## 2428     91535 2012    2.0
## 2429     91542 2011    1.0
## 2430     91630 2011    2.5
## 2431     91653 2011    4.5
## 2432     91658 2011    4.0
## 2433     91842 2012    3.0
## 2434     91869 2011    3.0
## 2435     92420 2012    1.5
## 2436     92507 2012    2.5
## 2437     93326 2012    1.0
## 2438     93363 2012    1.0
## 2439     93510 2012    3.0
## 2440     93721 2011    2.0
## 2441     93831 2012    2.5
## 2442     93840 2012    3.5
## 2443     94015 2012    1.0
## 2444     94018 2012    1.0
## 2445     94478 2012    1.0
## 2446     94677 2012    4.0
## 2447     94777 2012    2.5
## 2448     94780 2012    1.5
## 2449     94833 2012    1.5
## 2450     94864 2012    1.5
## 2451     94959 2012    1.0
## 2452     95105 2012    1.0
## 2453     95167 2012    1.0
## 2454     95199 2012    0.5
## 2455     95311 2008    1.5
## 2456     95443 2012    0.5
## 2457     95510 2012    3.5
## 2458     95558 2012    1.0
## 2459     95875 2012    1.5
## 2460     96079 2012    3.0
## 2461     96150 2012    2.0
## 2462     96488 2012    3.5
## 2463     96610 2012    1.5
## 2464     96667 2012    2.5
## 2465     96737 2012    2.5
## 2466     97304 2012    2.5
## 2467     97393 2012    3.5
## 2468     97866 2012    3.5
## 2469     97913 2012    2.5
## 2470     97923 2012    3.0
## 2471     97938 2012    2.5
## 2472     98122 2012    0.5
## 2473     98154 2012    0.5
## 2474     98809 2012    0.5
## 2475     98961 2012    3.0
## 2476     99007 2013    1.0
## 2477     99112 2012    3.5
## 2478     99114 2012    1.5
## 2479     99149 2012    1.0
## 2480     99468 2012    2.5
## 2481     99811 2012    4.0
## 2482    100032 2012    2.0
## 2483    100083 2013    0.5
## 2484    100365 2012    2.5
## 2485    100383 2013    1.0
## 2486    100517 2012    3.0
## 2487    100556 2012    4.0
## 2488    100581 2012    1.5
## 2489    100714 2013    3.0
## 2490    100745 2013    1.0
## 2491    101076 2013    3.0
## 2492    101112 2013    0.5
## 2493    101362 2013    3.0
## 2494    101864 2013    3.5
## 2495    101895 2013    1.0
## 2496    102123 2013    1.5
## 2497    102125 2013    2.0
## 2498    102445 2013    3.0
## 2499    102800 2012    2.5
## 2500    102880 2013    0.5
## 2501    102903 2013    1.0
## 2502    103042 2013    2.5
## 2503    103228 2013    5.0
## 2504    103249 2013    0.5
## 2505    103253 2013    1.0
## 2506    103372 2013    1.0
## 2507    103810 2013    1.5
## 2508    104211 2013    3.5
## 2509    104241 2013    1.0
## 2510    104272 2013    3.0
## 2511    104726 2012    3.0
## 2512    104841 2013    3.5
## 2513    104879 2013    4.0
## 2514    105504 2013    3.5
## 2515    106072 2013    2.0
## 2516    106111 2013    1.0
## 2517    106332 2013    3.5
## 2518    106489 2013    2.0
## 2519    106782 2013    3.5
## 2520    106916 2013    1.5
## 2521    106920 2013    4.5
## 2522    107348 2013    0.5
## 2523    107406 2013    4.0
## 2524    107910 2013    4.5
## 2525    108188 2014    2.0
## 2526    108190 2014    0.5
## 2527    108689 2014    0.5
## 2528    108729 2013    1.0
## 2529    108932 2014    1.5
## 2530    108945 2014    1.0
## 2531    109187 2013    0.5
## 2532    109374 2014    1.0
## 2533    109487 2014    3.5
## 2534    109673 2014    1.5
## 2535    109687 2013    2.5
## 2536    109848 2013    3.0
## 2537    110102 2014    4.0
## 2538    110127 2014    0.5
## 2539    110553 2014    0.5
## 2540    110730 2014    1.0
## 2541    110771 2014    2.0
## 2542    111228 2013    2.5
## 2543    111360 2014    1.0
## 2544    111362 2014    3.5
## 2545    111364 2014    4.0
## 2546    111443 2014    4.0
## 2547    111622 2013    4.5
## 2548    111759 2014    4.5
## 2549    111781 2015    4.5
## 2550    112138 2014    3.5
## 2551    112171 2014    2.5
## 2552    112183 2014    2.0
## 2553    112370 2014    3.5
## 2554    112552 2014    1.5
## 2555    112556 2014    4.5
## 2556    112623 2014    4.0
## 2557    112788 2014    1.0
## 2558    112852 2014    4.5
## 2559    112940 2014    1.5
## 2560    113345 2015    0.5
## 2561    113348 2014    2.0
## 2562    113378 2014    0.5
## 2563    113741 2013    1.0
## 2564    114180 2014    1.0
## 2565    114635 2014    4.0
## 2566    115149 2014    4.0
## 2567    115502 2014    3.5
## 2568    115569 2014    5.0
## 2569    115617 2014    1.5
## 2570    115713 2015    3.5
## 2571    116161 2014    1.0
## 2572    116797 2014    0.5
## 2573    116799 2014    0.5
## 2574    116823 2014    0.5
## 2575    116897 2014    4.5
## 2576    117176 2014    1.0
## 2577    117529 2015    4.0
## 2578    117533 2014    3.5
## 2579    118696 2014    1.5
## 2580    119141 2014    2.0
## 2581    119145 2015    1.5
## 2582    120466 2015    1.5
## 2583    120799 2015    3.0
## 2584    121171 2014    3.0
## 2585    121231 2014    4.5
## 2586    122882 2015    1.0
## 2587    122886 2015    3.5
## 2588    122890 2016    3.0
## 2589    122892 2015    3.0
## 2590    122900 2015    3.0
## 2591    122902 2015    0.5
## 2592    122904 2016    1.0
## 2593    122920 2016    3.0
## 2594    122924 2016    2.5
## 2595    127136 2015    1.0
## 2596    128360 2015    2.5
## 2597    129937 2015    1.5
## 2598    130452 2014    2.0
## 2599    130490 2015    0.5
## 2600    130576 2015    2.0
## 2601    130634 2015    2.0
## 2602    131013 2015    3.0
## 2603    132046 2015    0.5
## 2604    132480 2015    3.0
## 2605    132796 2015    3.0
## 2606    132961 2015    3.0
## 2607    134130 2015    3.5
## 2608    134368 2015    4.5
## 2609    134393 2015    4.0
## 2610    134853 2015    1.0
## 2611    135133 2015    0.5
## 2612    135436 2016    1.0
## 2613    135567 2016    3.0
## 2614    135569 2016    3.0
## 2615    136020 2015    3.0
## 2616    136562 2015    1.5
## 2617    136864 2016    3.0
## 2618    137337 2015    3.5
## 2619    137857 2016    3.0
## 2620    138036 2015    1.0
## 2621    139385 2015    2.5
## 2622    139644 2015    3.0
## 2623    139757 2015    3.5
## 2624    139855 2015    2.0
## 2625    140110 2015    2.5
## 2626    140174 2015    4.0
## 2627    140267 2015    4.0
## 2628    140711 2015    2.5
## 2629    140928 2015    0.5
## 2630    142488 2015    3.5
## 2631    142507 2015    3.0
## 2632    143385 2015    2.5
## 2633    145839 2015    1.0
## 2634    145935 2015    3.0
## 2635    146656 2015    3.5
## 2636    148626 2015    3.5
## 2637    149352 2015    3.0
## 2638    149354 2015    3.5
## 2639    149406 2016    4.0
## 2640    152057 2016    0.5
## 2641    152077 2016    2.0
## 2642    152079 2016    1.5
## 2643    152081 2016    3.0
## 2644    155820 2016    1.0
## 2645    156607 2016    0.5
## 2646    156609 2016    3.5
## 2647    157200 2016    1.5
## 2648    157296 2016    2.0
## 2649    157667 2016    1.5
## 2650    158238 2016    3.5
## 2651    158528 2016    3.5
## 2652    159093 2016    1.0
## 2653    159690 2016    2.0
## 2654    159755 2016    1.0
## 2655    159858 2016    4.0
## 2656    159972 2016    0.5
## 2657    160080 2016    1.0
## 2658    160271 2016    2.5
## 2659    160563 2016    1.0
## 2660    160565 2016    2.0
## 2661    160567 2016    4.0
## 2662    161155 2016    0.5
## 2663        50 1995    4.5
## 2664       318 1994    4.0
## 2665       337 1993    4.0
## 2666       527 1993    4.0
## 2667       750 1964    4.0
## 2668      1653 1997    5.0
## 2669      1704 1997    5.0
## 2670      1961 1988    3.5
## 2671      2012 1990    4.0
## 2672      2278 1998    3.5
## 2673      2539 1999    4.0
## 2674      2706 1999    5.0
## 2675      2797 1988    3.0
## 2676      2858 1999    4.0
## 2677      3623 2000    4.0
## 2678      4014 2000    3.5
## 2679      4231 2001    4.5
## 2680      4246 2001    4.0
## 2681      4718 2001    4.5
## 2682      4738 2000    4.5
## 2683      4772 2000    5.0
## 2684      4823 2001    4.0
## 2685      4995 2001    4.5
## 2686      5349 2002    3.0
## 2687      5445 2002    4.5
## 2688      6016 2002    4.0
## 2689      6711 2003    4.5
## 2690      6874 2003    3.5
## 2691      7346 2004    4.0
## 2692         6 1995    4.5
## 2693        25 1995    4.5
## 2694        29 1995    4.5
## 2695        32 1995    4.5
## 2696        36 1995    4.5
## 2697        47 1995    5.0
## 2698        50 1995    5.0
## 2699       111 1976    5.0
## 2700       170 1995    4.0
## 2701       172 1995    3.5
## 2702       185 1995    3.0
## 2703       194 1995    4.0
## 2704       198 1995    5.0
## 2705       223 1994    2.5
## 2706       235 1994    5.0
## 2707       247 1994    2.0
## 2708       260 1977    3.5
## 2709       288 1994    2.0
## 2710       293 1994    4.0
## 2711       296 1994    5.0
## 2712       307 1993    3.5
## 2713       318 1994    5.0
## 2714       348 1994    3.5
## 2715       356 1994    2.5
## 2716       377 1994    0.5
## 2717       431 1993    4.5
## 2718       480 1993    0.5
## 2719       482 1994    0.5
## 2720       492 1993    5.0
## 2721       527 1993    4.0
## 2722       541 1982    5.0
## 2723       555 1993    4.0
## 2724       590 1990    3.0
## 2725       593 1991    4.5
## 2726       608 1996    3.5
## 2727       680 1965    4.5
## 2728       714 1995    4.5
## 2729       736 1996    2.5
## 2730       778 1996    4.5
## 2731       858 1972    5.0
## 2732       866 1996    4.5
## 2733       903 1958    5.0
## 2734       904 1954    4.5
## 2735       908 1959    5.0
## 2736       910 1959    3.5
## 2737       912 1942    4.5
## 2738       913 1941    5.0
## 2739       922 1950    5.0
## 2740       923 1941    4.5
## 2741       924 1968    4.5
## 2742       928 1940    4.5
## 2743       930 1946    3.5
## 2744       931 1945    4.5
## 2745       942 1944    3.5
## 2746       965 1935    3.5
## 2747      1036 1988    2.5
## 2748      1077 1973    4.0
## 2749      1079 1988    2.5
## 2750      1089 1992    5.0
## 2751      1092 1992    4.0
## 2752      1095 1992    2.0
## 2753      1104 1951    3.5
## 2754      1136 1975    5.0
## 2755      1173 1989    1.0
## 2756      1175 1991    4.5
## 2757      1193 1975    4.5
## 2758      1199 1985    4.5
## 2759      1206 1971    5.0
## 2760      1210 1983    3.5
## 2761      1212 1949    5.0
## 2762      1213 1990    5.0
## 2763      1218 1989    4.0
## 2764      1220 1980    4.0
## 2765      1221 1974    5.0
## 2766      1230 1977    5.0
## 2767      1232 1979    5.0
## 2768      1235 1971    5.0
## 2769      1237 1957    5.0
## 2770      1240 1984    3.0
## 2771      1241 1992    0.5
## 2772      1244 1979    4.0
## 2773      1245 1990    4.0
## 2774      1246 1989    5.0
## 2775      1248 1958    5.0
## 2776      1249 1990    2.5
## 2777      1251 1963    3.5
## 2778      1252 1974    5.0
## 2779      1255 1987    2.0
## 2780      1258 1980    3.5
## 2781      1263 1978    4.5
## 2782      1265 1993    4.5
## 2783      1267 1962    5.0
## 2784      1270 1985    4.5
## 2785      1298 1982    4.5
## 2786      1333 1963    2.0
## 2787      1348 1922    5.0
## 2788      1396 1992    3.0
## 2789      1411 1996    5.0
## 2790      1464 1997    5.0
## 2791      1466 1997    4.5
## 2792      1517 1997    3.0
## 2793      1570 1992    2.5
## 2794      1580 1997    2.5
## 2795      1597 1997    2.5
## 2796      1617 1997    4.5
## 2797      1625 1997    5.0
## 2798      1627 1997    4.0
## 2799      1645 1997    3.5
## 2800      1653 1997    5.0
## 2801      1673 1997    4.5
## 2802      1674 1985    4.5
## 2803      1704 1997    4.0
## 2804      1721 1997    0.5
## 2805      1729 1997    2.5
## 2806      1732 1998    4.0
## 2807      1748 1998    4.5
## 2808      1809 1997    3.0
## 2809      1834 1997    4.5
## 2810      1884 1998    5.0
## 2811      1921 1998    5.0
## 2812      1923 1998    3.0
## 2813      1997 1973    4.0
## 2814      2010 1927    5.0
## 2815      2011 1989    4.0
## 2816      2012 1990    4.0
## 2817      2021 1984    3.5
## 2818      2023 1990    4.0
## 2819      2028 1998    3.5
## 2820      2066 1947    5.0
## 2821      2067 1965    4.5
## 2822      2076 1986    5.0
## 2823      2110 1982    3.5
## 2824      2117 1984    4.5
## 2825      2118 1983    4.0
## 2826      2159 1986    2.5
## 2827      2160 1968    4.5
## 2828      2167 1998    2.0
## 2829      2204 1942    4.5
## 2830      2232 1997    4.5
## 2831      2278 1998    3.5
## 2832      2324 1997    4.5
## 2833      2329 1998    4.0
## 2834      2353 1998    3.5
## 2835      2396 1998    4.5
## 2836      2455 1986    4.0
## 2837      2467 1986    5.0
## 2838      2490 1999    4.0
## 2839      2502 1999    1.0
## 2840      2539 1999    2.5
## 2841      2551 1988    5.0
## 2842      2571 1999    5.0
## 2843      2579 1998    5.0
## 2844      2594 1997    5.0
## 2845      2600 1999    5.0
## 2846      2606 1999    3.0
## 2847      2657 1975    3.0
## 2848      2672 1999    3.5
## 2849      2677 1999    4.0
## 2850      2683 1999    3.0
## 2851      2692 1998    4.5
## 2852      2707 1999    3.5
## 2853      2710 1999    3.5
## 2854      2712 1999    3.0
## 2855      2726 1956    4.5
## 2856      2762 1999    4.5
## 2857      2791 1980    2.0
## 2858      2858 1999    4.5
## 2859      2892 1998    3.5
## 2860      2916 1990    4.0
## 2861      2918 1986    3.0
## 2862      2952 1996    2.5
## 2863      2959 1999    5.0
## 2864      2973 1989    5.0
## 2865      2997 1999    5.0
## 2866      3018 1985    4.0
## 2867      3134 1937    5.0
## 2868      3147 1999    4.0
## 2869      3160 1999    2.5
## 2870      3253 1992    2.0
## 2871      3262 1992    4.5
## 2872      3267 1992    4.0
## 2873      3328 1999    4.0
## 2874      3386 1991    4.0
## 2875      3408 2000    2.5
## 2876      3435 1944    5.0
## 2877      3476 1990    4.5
## 2878      3503 1972    4.5
## 2879      3504 1976    3.5
## 2880      3535 2000    4.5
## 2881      3578 2000    4.0
## 2882      3598 2000    4.0
## 2883      3676 1977    5.0
## 2884      3730 1974    3.0
## 2885      3735 1973    4.0
## 2886      3742 1925    4.0
## 2887      3785 2000    3.5
## 2888      3788 1966    4.5
## 2889      3863 2000    3.5
## 2890      3949 2000    4.0
## 2891      3977 2000    1.0
## 2892      3994 2000    4.0
## 2893      3996 2000    4.5
## 2894      4027 2000    1.5
## 2895      4034 2000    4.0
## 2896      4037 1987    4.5
## 2897      4210 1986    3.0
## 2898      4226 2000    5.0
## 2899      4239 2001    3.5
## 2900      4246 2001    0.5
## 2901      4262 1983    5.0
## 2902      4306 2001    3.5
## 2903      4404 1926    5.0
## 2904      4437 1977    5.0
## 2905      4546 1988    4.5
## 2906      4552 1988    4.0
## 2907      4645 1997    4.5
## 2908      4725 2001    4.5
## 2909      4848 2001    5.0
## 2910      4878 2001    4.0
## 2911      4886 2001    3.5
## 2912      4896 2001    0.5
## 2913      4914 1960    5.0
## 2914      4963 2001    4.0
## 2915      4973 2001    4.5
## 2916      4975 2001    4.0
## 2917      4993 2001    4.5
## 2918      4995 2001    3.0
## 2919      5015 2001    4.0
## 2920      5017 1953    5.0
## 2921      5054 1983    4.0
## 2922      5060 1970    0.5
## 2923      5062 1966    5.0
## 2924      5072 2001    2.5
## 2925      5105 1973    5.0
## 2926      5137 2001    4.5
## 2927      5254 2002    2.5
## 2928      5266 2002    3.0
## 2929      5299 2002    0.5
## 2930      5316 2001    1.5
## 2931      5349 2002    1.5
## 2932      5388 2002    4.0
## 2933      5418 2002    3.5
## 2934      5445 2002    4.5
## 2935      5464 2002    4.0
## 2936      5502 2002    0.5
## 2937      5574 2002    2.0
## 2938      5608 2001    4.5
## 2939      5630 2002    4.0
## 2940      5669 2002    4.5
## 2941      5679 2002    4.0
## 2942      5686 2002    2.5
## 2943      5782 1981    4.5
## 2944      5809 2002    2.0
## 2945      5853 1981    3.0
## 2946      5867 1981    4.0
## 2947      5881 2002    4.0
## 2948      5893 1994    2.0
## 2949      5903 2002    3.5
## 2950      5949 2001    4.5
## 2951      5952 2002    4.5
## 2952      6016 2002    5.0
## 2953      6059 2003    3.5
## 2954      6140 1982    4.0
## 2955      6197 2002    4.5
## 2956      6214 2002    3.0
## 2957      6242 1998    4.0
## 2958      6281 2002    3.5
## 2959      6287 2003    1.0
## 2960      6294 2003    0.5
## 2961      6322 2003    2.0
## 2962      6323 2003    2.0
## 2963      6365 2003    2.0
## 2964      6378 2003    2.0
## 2965      6383 2003    0.5
## 2966      6385 2002    4.0
## 2967      6502 2002    3.0
## 2968      6503 2003    0.5
## 2969      6530 1976    5.0
## 2970      6538 2003    4.0
## 2971      6584 1966    3.5
## 2972      6643 1953    4.5
## 2973      6666 1972    4.5
## 2974      6708 2003    3.5
## 2975      6711 2003    1.5
## 2976      6757 2002    4.0
## 2977      6774 1983    4.0
## 2978      6777 1961    4.0
## 2979      6790 2001    3.5
## 2980      6858 1962    2.0
## 2981      6874 2003    4.5
## 2982      6971 1991    5.0
## 2983      6975 1997    3.5
## 2984      6979 1983    3.5
## 2985      6987 1920    5.0
## 2986      6993 1986    4.0
## 2987      7003 1991    4.0
## 2988      7013 1955    2.5
## 2989      7022 2000    4.5
## 2990      7044 1990    2.5
## 2991      7068 1961    4.5
## 2992      7069 1971    4.5
## 2993      7084 1972    3.5
## 2994      7090 2002    4.0
## 2995      7115 1975    4.5
## 2996      7116 1955    4.5
## 2997      7123 1991    5.0
## 2998      7135 1960    4.5
## 2999      7153 2003    4.5
## 3000      7163 2003    2.0
## 3001      7223 1950    4.0
## 3002      7254 2004    4.0
## 3003      7361 2004    4.5
## 3004      7371 2003    5.0
## 3005      7438 2004    4.5
## 3006      7445 2004    1.0
## 3007      7587 1967    5.0
## 3008      7700 1953    5.0
## 3009      7728 1946    4.5
## 3010      7771 1964    5.0
## 3011      7792 1974    4.0
## 3012      7827 2002    4.0
## 3013      7981 2002    5.0
## 3014      7982 2003    3.5
## 3015      7991 1975    0.5
## 3016      8195 1960    3.0
## 3017      8228 1931    5.0
## 3018      8360 2004    3.0
## 3019      8370 2003    3.0
## 3020      8477 1962    4.5
## 3021      8600 1938    4.0
## 3022      8620 1962    3.5
## 3023      8622 2004    3.0
## 3024      8644 2004    2.0
## 3025      8665 2004    3.5
## 3026      8690 1972    3.0
## 3027      8781 2004    2.0
## 3028      8783 2004    0.5
## 3029      8798 2004    4.5
## 3030      8865 2004    0.5
## 3031      8874 2004    3.5
## 3032      8914 2004    4.5
## 3033      8928 1967    3.0
## 3034      8950 2004    5.0
## 3035      8957 2004    3.0
## 3036      8958 2004    5.0
## 3037      8973 2004    3.5
## 3038      8983 2004    2.5
## 3039     27266 2004    3.5
## 3040     27317 1999    5.0
## 3041     27604 2001    3.0
## 3042     27721 2004    4.0
## 3043     27773 2003    5.0
## 3044     27788 2005    3.0
## 3045     27834 2003    4.5
## 3046     31410 2004    5.0
## 3047     31878 2004    3.0
## 3048     31952 2003    4.5
## 3049     32587 2005    5.0
## 3050     33004 2005    2.5
## 3051     33615 2005    1.0
## 3052     33683 2003    2.0
## 3053     34048 2005    3.0
## 3054     34437 2005    5.0
## 3055         5 1995    3.0
## 3056         6 1995    4.0
## 3057         7 1995    3.0
## 3058         9 1995    3.0
## 3059        14 1995    2.0
## 3060        17 1995    4.0
## 3061        18 1995    3.0
## 3062        25 1995    5.0
## 3063        32 1995    5.0
## 3064        36 1995    3.0
## 3065        52 1995    3.0
## 3066        62 1995    4.0
## 3067        74 1996    2.0
## 3068        76 1995    3.0
## 3069        79 1996    2.0
## 3070        81 1995    3.0
## 3071        85 1995    4.0
## 3072        86 1996    4.0
## 3073        92 1996    3.0
## 3074        95 1996    3.0
## 3075       100 1996    4.0
## 3076       140 1996    3.0
## 3077       141 1996    4.0
## 3078       260 1977    3.0
## 3079       376 1994    3.0
## 3080       494 1996    3.0
## 3081       608 1996    4.0
## 3082       628 1996    4.0
## 3083       640 1996    3.0
## 3084       648 1996    3.0
## 3085       653 1996    4.0
## 3086       707 1996    3.0
## 3087       708 1996    4.0
## 3088       719 1996    3.0
## 3089       733 1996    4.0
## 3090       736 1996    2.0
## 3091       743 1996    3.0
## 3092       748 1996    3.0
## 3093       762 1996    1.0
## 3094       765 1996    2.0
## 3095       780 1996    3.0
## 3096       785 1996    4.0
## 3097       786 1996    4.0
## 3098       788 1996    3.0
## 3099       802 1996    4.0
## 3100       805 1996    4.0
## 3101       818 1996    3.0
## 3102       832 1996    3.0
## 3103       849 1996    4.0
## 3104       852 1996    3.0
## 3105       880 1996    1.0
## 3106         1 1995    3.0
## 3107         2 1995    3.0
## 3108         3 1995    3.0
## 3109         4 1995    3.0
## 3110         6 1995    3.0
## 3111         7 1995    3.0
## 3112         9 1995    3.0
## 3113        10 1995    3.0
## 3114        11 1995    3.0
## 3115        14 1995    5.0
## 3116        16 1995    5.0
## 3117        21 1995    3.0
## 3118        22 1995    3.0
## 3119        23 1995    1.0
## 3120        25 1995    3.0
## 3121        29 1995    3.0
## 3122        32 1995    3.0
## 3123        34 1995    4.0
## 3124        35 1995    3.0
## 3125        36 1995    3.0
## 3126        39 1995    3.0
## 3127        42 1995    3.0
## 3128        45 1995    3.0
## 3129        47 1995    5.0
## 3130        48 1995    3.0
## 3131        50 1995    4.0
## 3132        52 1995    3.0
## 3133        57 1995    3.0
## 3134        58 1994    3.0
## 3135        63 1996    3.0
## 3136        64 1996    2.0
## 3137        70 1996    4.0
## 3138        74 1996    3.0
## 3139        89 1995    3.0
## 3140        94 1996    3.0
## 3141        95 1996    3.0
## 3142        97 1995    4.0
## 3143       101 1996    3.0
## 3144       105 1995    3.0
## 3145       110 1995    3.0
## 3146       111 1976    5.0
## 3147       112 1995    3.0
## 3148       122 1992    3.0
## 3149       125 1996    3.0
## 3150       141 1996    3.0
## 3151       145 1995    4.0
## 3152       150 1995    3.0
## 3153       153 1995    3.0
## 3154       154 1967    4.0
## 3155       159 1995    4.0
## 3156       160 1995    4.0
## 3157       162 1994    5.0
## 3158       165 1995    3.0
## 3159       166 1995    2.0
## 3160       172 1995    1.0
## 3161       176 1995    4.0
## 3162       177 1995    2.0
## 3163       179 1995    2.0
## 3164       180 1995    3.0
## 3165       194 1995    4.0
## 3166       196 1995    3.0
## 3167       198 1995    3.0
## 3168       202 1995    3.0
## 3169       206 1995    3.0
## 3170       208 1995    3.0
## 3171       209 1995    2.0
## 3172       215 1995    3.0
## 3173       223 1994    4.0
## 3174       229 1994    4.0
## 3175       230 1995    5.0
## 3176       231 1994    3.0
## 3177       235 1994    3.0
## 3178       246 1994    4.0
## 3179       247 1994    4.0
## 3180       249 1994    3.0
## 3181       253 1994    3.0
## 3182       260 1977    4.0
## 3183       261 1994    4.0
## 3184       262 1995    5.0
## 3185       266 1994    1.0
## 3186       269 1993    3.0
## 3187       276 1994    1.0
## 3188       281 1994    3.0
## 3189       283 1995    3.0
## 3190       288 1994    5.0
## 3191       292 1995    4.0
## 3192       293 1994    4.0
## 3193       296 1994    5.0
## 3194       300 1994    3.0
## 3195       306 1994    5.0
## 3196       307 1993    5.0
## 3197       308 1994    5.0
## 3198       316 1994    3.0
## 3199       318 1994    4.0
## 3200       326 1994    5.0
## 3201       328 1995    4.0
## 3202       329 1994    3.0
## 3203       332 1995    3.0
## 3204       333 1995    3.0
## 3205       334 1994    4.0
## 3206       337 1993    3.0
## 3207       339 1995    4.0
## 3208       340 1994    3.0
## 3209       344 1994    3.0
## 3210       345 1994    3.0
## 3211       346 1993    3.0
## 3212       348 1994    4.0
## 3213       349 1994    3.0
## 3214       350 1994    3.0
## 3215       353 1994    3.0
## 3216       354 1994    3.0
## 3217       356 1994    5.0
## 3218       357 1994    5.0
## 3219       361 1994    4.0
## 3220       364 1994    3.0
## 3221       365 1993    3.0
## 3222       366 1994    3.0
## 3223       367 1994    3.0
## 3224       369 1994    3.0
## 3225       371 1994    3.0
## 3226       372 1994    1.0
## 3227       373 1992    4.0
## 3228       376 1994    3.0
## 3229       377 1994    3.0
## 3230       379 1994    3.0
## 3231       380 1994    3.0
## 3232       382 1994    3.0
## 3233       383 1994    3.0
## 3234       407 1995    3.0
## 3235       412 1993    3.0
## 3236       423 1994    3.0
## 3237       428 1993    3.0
## 3238       429 1994    4.0
## 3239       431 1993    4.0
## 3240       434 1993    3.0
## 3241       440 1993    3.0
## 3242       441 1993    3.0
## 3243       445 1993    3.0
## 3244       448 1993    3.0
## 3245       450 1994    3.0
## 3246       451 1993    3.0
## 3247       454 1993    3.0
## 3248       456 1994    4.0
## 3249       457 1993    4.0
## 3250       464 1993    4.0
## 3251       465 1993    5.0
## 3252       468 1995    4.0
## 3253       471 1994    3.0
## 3254       474 1993    3.0
## 3255       475 1993    3.0
## 3256       479 1993    2.0
## 3257       480 1993    4.0
## 3258       481 1993    1.0
## 3259       482 1994    2.0
## 3260       485 1993    1.0
## 3261       491 1993    3.0
## 3262       493 1993    4.0
## 3263       494 1996    3.0
## 3264       500 1993    3.0
## 3265       501 1993    5.0
## 3266       504 1994    3.0
## 3267       507 1993    3.0
## 3268       508 1993    3.0
## 3269       509 1993    4.0
## 3270       513 1994    1.0
## 3271       515 1993    5.0
## 3272       517 1993    2.0
## 3273       519 1993    1.0
## 3274       520 1993    3.0
## 3275       522 1992    3.0
## 3276       527 1993    4.0
## 3277       529 1993    3.0
## 3278       531 1993    5.0
## 3279       534 1993    5.0
## 3280       535 1993    4.0
## 3281       537 1994    3.0
## 3282       541 1982    4.0
## 3283       547 1994    4.0
## 3284       550 1994    3.0
## 3285       551 1993    4.0
## 3286       555 1993    3.0
## 3287       562 1995    3.0
## 3288       580 1994    1.0
## 3289       586 1990    3.0
## 3290       588 1992    3.0
## 3291       589 1991    3.0
## 3292       590 1990    3.0
## 3293       592 1989    4.0
## 3294       593 1991    3.0
## 3295       594 1937    4.0
## 3296       595 1991    5.0
## 3297       596 1940    5.0
## 3298       597 1990    3.0
## 3299       599 1969    4.0
## 3300       608 1996    5.0
## 3301       610 1981    4.0
## 3302       612 1996    3.0
## 3303       628 1996    3.0
## 3304       648 1996    3.0
## 3305       653 1996    3.0
## 3306       661 1996    4.0
## 3307       662 1996    3.0
## 3308       663 1996    4.0
## 3309       674 1968    4.0
## 3310       703 1996    3.0
## 3311       724 1996    3.0
## 3312       733 1996    3.0
## 3313       736 1996    3.0
## 3314       748 1996    3.0
## 3315       750 1964    5.0
## 3316       780 1996    3.0
## 3317       784 1996    3.0
## 3318       785 1996    3.0
## 3319       786 1996    3.0
## 3320       788 1996    3.0
## 3321       799 1996    3.0
## 3322       800 1996    3.0
## 3323       802 1996    3.0
## 3324       805 1996    3.0
## 3325       858 1972    5.0
## 3326       880 1996    2.0
## 3327       891 1995    3.0
## 3328       898 1940    5.0
## 3329       902 1961    3.0
## 3330       903 1958    4.0
## 3331       904 1954    5.0
## 3332       908 1959    4.0
## 3333       911 1963    5.0
## 3334       912 1942    3.0
## 3335       913 1941    5.0
## 3336       914 1964    3.0
## 3337       915 1954    4.0
## 3338       916 1953    5.0
## 3339       917 1939    4.0
## 3340       920 1939    4.0
## 3341       923 1941    5.0
## 3342       924 1968    4.0
## 3343       928 1940    5.0
## 3344       929 1940    4.0
## 3345       930 1946    4.0
## 3346       931 1945    3.0
## 3347       933 1955    3.0
## 3348       940 1938    4.0
## 3349       950 1934    4.0
## 3350       951 1940    5.0
## 3351       953 1946    5.0
## 3352       954 1939    4.0
## 3353       955 1938    4.0
## 3354       965 1935    4.0
## 3355       966 1945    4.0
## 3356       968 1968    5.0
## 3357       969 1951    5.0
## 3358       982 1955    4.0
## 3359      1013 1961    3.0
## 3360      1019 1954    4.0
## 3361      1022 1950    4.0
## 3362      1023 1968    4.0
## 3363      1028 1964    3.0
## 3364      1029 1941    5.0
## 3365      1035 1965    4.0
## 3366      1036 1988    4.0
## 3367      1041 1996    5.0
## 3368      1042 1996    3.0
## 3369      1060 1996    5.0
## 3370      1061 1996    3.0
## 3371      1073 1971    4.0
## 3372      1077 1973    3.0
## 3373      1079 1988    4.0
## 3374      1080 1979    3.0
## 3375      1082 1972    3.0
## 3376      1084 1967    4.0
## 3377      1086 1954    4.0
## 3378      1088 1987    3.0
## 3379      1089 1992    4.0
## 3380      1090 1986    4.0
## 3381      1091 1989    3.0
## 3382      1092 1992    1.0
## 3383      1093 1991    3.0
## 3384      1094 1992    4.0
## 3385      1095 1992    5.0
## 3386      1097 1982    5.0
## 3387      1101 1986    3.0
## 3388      1103 1955    4.0
## 3389      1104 1951    4.0
## 3390      1124 1981    3.0
## 3391      1126 1991    3.0
## 3392      1127 1989    3.0
## 3393      1128 1980    4.0
## 3394      1129 1981    3.0
## 3395      1130 1980    4.0
## 3396      1136 1975    5.0
## 3397      1148 1993    4.0
## 3398      1161 1979    3.0
## 3399      1171 1992    3.0
## 3400      1175 1991    3.0
## 3401      1176 1991    4.0
## 3402      1178 1957    5.0
## 3403      1179 1990    5.0
## 3404      1183 1996    3.0
## 3405      1185 1989    4.0
## 3406      1193 1975    4.0
## 3407      1196 1980    5.0
## 3408      1197 1987    3.0
## 3409      1198 1981    4.0
## 3410      1199 1985    4.0
## 3411      1200 1986    4.0
## 3412      1201 1966    4.0
## 3413      1203 1957    4.0
## 3414      1204 1962    4.0
## 3415      1206 1971    4.0
## 3416      1207 1962    5.0
## 3417      1208 1979    5.0
## 3418      1210 1983    4.0
## 3419      1211 1987    5.0
## 3420      1212 1949    4.0
## 3421      1213 1990    5.0
## 3422      1214 1979    4.0
## 3423      1215 1993    4.0
## 3424      1216 1988    2.0
## 3425      1217 1985    5.0
## 3426      1218 1989    4.0
## 3427      1219 1960    5.0
## 3428      1220 1980    5.0
## 3429      1221 1974    5.0
## 3430      1222 1987    5.0
## 3431      1225 1984    5.0
## 3432      1227 1984    3.0
## 3433      1228 1980    5.0
## 3434      1230 1977    4.0
## 3435      1231 1983    5.0
## 3436      1233 1981    4.0
## 3437      1237 1957    4.0
## 3438      1238 1983    5.0
## 3439      1240 1984    4.0
## 3440      1242 1989    5.0
## 3441      1244 1979    4.0
## 3442      1246 1989    3.0
## 3443      1247 1967    3.0
## 3444      1248 1958    4.0
## 3445      1249 1990    4.0
## 3446      1250 1957    4.0
## 3447      1252 1974    4.0
## 3448      1253 1951    4.0
## 3449      1254 1948    5.0
## 3450      1257 1985    5.0
## 3451      1258 1980    5.0
## 3452      1259 1986    3.0
## 3453      1260 1931    5.0
## 3454      1261 1987    5.0
## 3455      1262 1963    4.0
## 3456      1263 1978    4.0
## 3457      1265 1993    4.0
## 3458      1266 1992    4.0
## 3459      1267 1962    4.0
## 3460      1268 1990    3.0
## 3461      1269 1944    4.0
## 3462      1270 1985    5.0
## 3463      1271 1991    3.0
## 3464      1272 1970    3.0
## 3465      1274 1988    4.0
## 3466      1275 1986    3.0
## 3467      1276 1967    4.0
## 3468      1278 1974    4.0
## 3469      1282 1940    4.0
## 3470      1283 1952    4.0
## 3471      1284 1946    4.0
## 3472      1285 1989    3.0
## 3473      1286 1980    4.0
## 3474      1287 1959    4.0
## 3475      1288 1984    5.0
## 3476      1290 1987    3.0
## 3477      1291 1989    3.0
## 3478      1292 1979    4.0
## 3479      1297 1985    4.0
## 3480      1298 1982    1.0
## 3481      1299 1984    4.0
## 3482      1302 1989    3.0
## 3483      1304 1969    3.0
## 3484      1306 1991    3.0
## 3485      1307 1989    3.0
## 3486      1320 1992    3.0
## 3487      1321 1981    3.0
## 3488      1327 1979    3.0
## 3489      1332 1987    2.0
## 3490      1333 1963    4.0
## 3491      1334 1958    3.0
## 3492      1336 1991    3.0
## 3493      1339 1992    3.0
## 3494      1342 1992    3.0
## 3495      1343 1991    4.0
## 3496      1344 1962    5.0
## 3497      1345 1976    4.0
## 3498      1347 1984    3.0
## 3499      1348 1922    5.0
## 3500      1350 1976    3.0
## 3501      1354 1996    5.0
## 3502      1356 1996    3.0
## 3503      1357 1996    4.0
## 3504      1370 1990    4.0
## 3505      1371 1979    4.0
## 3506      1372 1991    2.0
## 3507      1373 1989    3.0
## 3508      1374 1982    3.0
## 3509      1375 1984    4.0
## 3510      1376 1986    3.0
## 3511      1377 1992    3.0
## 3512      1378 1988    2.0
## 3513      1380 1978    3.0
## 3514      1381 1982    3.0
## 3515      1382 1990    1.0
## 3516      1385 1992    3.0
## 3517      1387 1975    5.0
## 3518      1388 1978    1.0
## 3519      1389 1983    1.0
## 3520      1391 1996    2.0
## 3521      1393 1996    3.0
## 3522      1394 1987    5.0
## 3523      1396 1992    3.0
## 3524      1405 1996    3.0
## 3525      1408 1992    3.0
## 3526      1441 1993    3.0
## 3527      2019 1954    3.0
## 3528      4970 1930    4.0
## 3529         1 1995    3.5
## 3530        32 1995    2.5
## 3531        34 1995    3.5
## 3532       107 1996    3.5
## 3533       110 1995    2.0
## 3534       150 1995    3.0
## 3535       153 1995    4.0
## 3536       207 1995    2.5
## 3537       231 1994    1.0
## 3538       260 1977    1.5
## 3539       296 1994    0.5
## 3540       316 1994    3.5
## 3541       318 1994    4.5
## 3542       344 1994    1.0
## 3543       356 1994    2.0
## 3544       364 1994    3.5
## 3545       367 1994    1.0
## 3546       380 1994    4.0
## 3547       457 1993    4.5
## 3548       480 1993    3.0
## 3549       497 1993    5.0
## 3550       500 1993    3.0
## 3551       527 1993    2.5
## 3552       588 1992    3.5
## 3553       590 1990    2.0
## 3554       592 1989    4.0
## 3555       593 1991    0.5
## 3556       595 1991    4.0
## 3557       597 1990    4.0
## 3558       608 1996    2.0
## 3559       671 1996    4.0
## 3560       720 1996    5.0
## 3561       736 1996    3.5
## 3562       745 1995    5.0
## 3563       750 1964    4.0
## 3564       780 1996    5.0
## 3565       858 1972    2.0
## 3566       904 1954    3.0
## 3567       905 1934    3.5
## 3568       912 1942    2.0
## 3569      1019 1954    3.0
## 3570      1097 1982    1.5
## 3571      1103 1955    4.0
## 3572      1136 1975    4.5
## 3573      1148 1993    5.0
## 3574      1196 1980    2.0
## 3575      1198 1981    4.5
## 3576      1204 1962    4.5
## 3577      1207 1962    4.0
## 3578      1210 1983    3.0
## 3579      1247 1967    1.0
## 3580      1269 1944    4.0
## 3581      1270 1985    3.5
## 3582      1293 1982    3.5
## 3583      1378 1988    3.0
## 3584      1441 1993    2.5
## 3585      1580 1997    5.0
## 3586      1680 1998    5.0
## 3587      1907 1998    4.0
## 3588      1960 1987    4.0
## 3589      2013 1972    3.0
## 3590      2405 1985    4.5
## 3591      2571 1999    4.5
## 3592      2690 1999    5.0
## 3593      2762 1999    3.5
## 3594      2908 1999    0.5
## 3595      2959 1999    0.5
## 3596      3148 1999    0.5
## 3597      3196 1953    0.5
## 3598      3406 1951    4.5
## 3599      3555 2000    2.0
## 3600      3809 1991    2.0
## 3601      4993 2001    4.0
## 3602      5380 2002    4.0
## 3603      5618 2001    3.5
## 3604      5747 1981    4.0
## 3605      6201 1986    4.5
## 3606      6385 2002    4.5
## 3607      6516 1956    4.0
## 3608      6753 2003    4.0
## 3609      7153 2003    4.0
## 3610      7212 1949    5.0
## 3611      7841 2003    1.0
## 3612      8191 1969    4.0
## 3613      8493 1990    3.5
## 3614      8611 1947    1.5
## 3615      8970 2004    2.5
## 3616     26111 1964    4.0
## 3617     31116 1941    5.0
## 3618     32469 1955    4.0
## 3619     38038 2005    4.5
## 3620     47721 1956    1.0
## 3621     51471 2006    5.0
## 3622     54259 2007    4.0
## 3623     58047 2008    4.0
## 3624     58299 2008    3.5
## 3625     59784 2008    4.0
## 3626     64285 2008    5.0
## 3627        10 1995    3.0
## 3628        21 1995    3.0
## 3629        32 1995    4.0
## 3630        34 1995    4.0
## 3631        36 1995    3.0
## 3632        44 1995    3.0
## 3633        47 1995    4.0
## 3634        95 1996    3.0
## 3635       112 1995    4.0
## 3636       151 1995    4.0
## 3637       181 1995    2.0
## 3638       196 1995    3.0
## 3639       208 1995    2.0
## 3640       260 1977    3.0
## 3641       266 1994    3.0
## 3642       273 1994    3.0
## 3643       288 1994    3.0
## 3644       296 1994    3.0
## 3645       316 1994    3.0
## 3646       329 1994    3.0
## 3647       333 1995    3.0
## 3648       344 1994    3.0
## 3649       356 1994    4.0
## 3650       377 1994    4.0
## 3651       379 1994    3.0
## 3652       380 1994    3.0
## 3653       393 1994    3.0
## 3654       442 1993    3.0
## 3655       457 1993    3.0
## 3656       466 1993    3.0
## 3657       480 1993    3.0
## 3658       485 1993    3.0
## 3659       509 1993    4.0
## 3660       527 1993    5.0
## 3661       541 1982    3.0
## 3662       543 1993    3.0
## 3663       551 1993    3.0
## 3664       553 1993    3.0
## 3665       586 1990    3.0
## 3666       589 1991    5.0
## 3667       590 1990    4.0
## 3668       592 1989    3.0
## 3669       593 1991    4.0
## 3670       594 1937    3.0
## 3671       595 1991    3.0
## 3672       597 1990    3.0
## 3673       610 1981    2.0
## 3674       648 1996    3.0
## 3675       733 1996    3.0
## 3676       750 1964    5.0
## 3677       780 1996    3.0
## 3678       849 1996    3.0
## 3679       858 1972    4.0
## 3680       899 1952    3.0
## 3681       908 1959    3.0
## 3682       910 1959    3.0
## 3683       912 1942    5.0
## 3684       913 1941    4.0
## 3685       914 1964    5.0
## 3686       918 1944    4.0
## 3687       919 1939    4.0
## 3688       920 1939    4.0
## 3689       921 1982    4.0
## 3690       923 1941    5.0
## 3691       924 1968    4.0
## 3692       945 1935    3.0
## 3693       948 1956    3.0
## 3694       952 1956    3.0
## 3695       953 1946    5.0
## 3696       954 1939    4.0
## 3697       969 1951    5.0
## 3698      1012 1957    3.0
## 3699      1019 1954    3.0
## 3700      1022 1950    3.0
## 3701      1028 1964    3.0
## 3702      1031 1971    3.0
## 3703      1032 1951    3.0
## 3704      1035 1965    4.0
## 3705      1036 1988    4.0
## 3706      1079 1988    3.0
## 3707      1080 1979    3.0
## 3708      1088 1987    2.0
## 3709      1089 1992    3.0
## 3710      1090 1986    4.0
## 3711      1091 1989    3.0
## 3712      1097 1982    3.0
## 3713      1103 1955    3.0
## 3714      1124 1981    4.0
## 3715      1125 1975    4.0
## 3716      1127 1989    3.0
## 3717      1129 1981    3.0
## 3718      1135 1980    3.0
## 3719      1136 1975    5.0
## 3720      1148 1993    5.0
## 3721      1173 1989    5.0
## 3722      1175 1991    4.0
## 3723      1193 1975    3.0
## 3724      1196 1980    4.0
## 3725      1198 1981    5.0
## 3726      1199 1985    4.0
## 3727      1200 1986    4.0
## 3728      1203 1957    4.0
## 3729      1206 1971    5.0
## 3730      1208 1979    4.0
## 3731      1210 1983    4.0
## 3732      1214 1979    4.0
## 3733      1217 1985    5.0
## 3734      1221 1974    3.0
## 3735      1222 1987    3.0
## 3736      1224 1989    5.0
## 3737      1225 1984    5.0
## 3738      1228 1980    4.0
## 3739      1231 1983    3.0
## 3740      1234 1973    3.0
## 3741      1240 1984    5.0
## 3742      1246 1989    4.0
## 3743      1250 1957    4.0
## 3744      1252 1974    3.0
## 3745      1253 1951    3.0
## 3746      1254 1948    5.0
## 3747      1256 1933    3.0
## 3748      1259 1986    4.0
## 3749      1263 1978    4.0
## 3750      1265 1993    3.0
## 3751      1266 1992    3.0
## 3752      1270 1985    4.0
## 3753      1275 1986    2.0
## 3754      1281 1940    4.0
## 3755      1282 1940    3.0
## 3756      1283 1952    4.0
## 3757      1287 1959    5.0
## 3758      1288 1984    4.0
## 3759      1291 1989    4.0
## 3760      1292 1979    4.0
## 3761      1295 1988    3.0
## 3762      1296 1986    4.0
## 3763      1297 1985    3.0
## 3764      1298 1982    3.0
## 3765      1301 1956    3.0
## 3766      1302 1989    4.0
## 3767      1303 1975    5.0
## 3768      1320 1992    3.0
## 3769      1321 1981    4.0
## 3770      1327 1979    3.0
## 3771      1334 1958    3.0
## 3772      1345 1976    3.0
## 3773      1346 1982    3.0
## 3774      1350 1976    3.0
## 3775      1370 1990    3.0
## 3776      1371 1979    3.0
## 3777      1372 1991    3.0
## 3778      1373 1989    3.0
## 3779      1374 1982    4.0
## 3780      1375 1984    3.0
## 3781      1376 1986    3.0
## 3782      1380 1978    3.0
## 3783      1387 1975    3.0
## 3784      1388 1978    3.0
## 3785      1394 1987    4.0
## 3786      1395 1987    3.0
## 3787      1427 1997    3.0
## 3788      5060 1970    3.0
## 3789        32 1995    4.5
## 3790        44 1995    2.0
## 3791        47 1995    3.5
## 3792        48 1995    2.0
## 3793        70 1996    3.0
## 3794       153 1995    3.0
## 3795       158 1995    1.0
## 3796       163 1995    4.5
## 3797       173 1995    1.5
## 3798       208 1995    2.0
## 3799       231 1994    2.5
## 3800       235 1994    2.0
## 3801       253 1994    4.5
## 3802       260 1977    4.0
## 3803       267 1995    2.0
## 3804       296 1994    5.0
## 3805       315 1994    3.0
## 3806       355 1994    2.0
## 3807       356 1994    3.5
## 3808       442 1993    2.5
## 3809       457 1993    4.5
## 3810       480 1993    4.5
## 3811       485 1993    2.5
## 3812       541 1982    4.5
## 3813       551 1993    5.0
## 3814       552 1993    3.0
## 3815       555 1993    4.0
## 3816       586 1990    1.0
## 3817       588 1992    2.0
## 3818       589 1991    5.0
## 3819       592 1989    4.5
## 3820       593 1991    4.5
## 3821       648 1996    5.0
## 3822       784 1996    1.5
## 3823       785 1996    2.5
## 3824       858 1972    4.0
## 3825      1080 1979    3.5
## 3826      1089 1992    4.0
## 3827      1097 1982    2.5
## 3828      1101 1986    2.0
## 3829      1148 1993    2.0
## 3830      1196 1980    4.5
## 3831      1198 1981    5.0
## 3832      1200 1986    5.0
## 3833      1201 1966    2.5
## 3834      1208 1979    3.5
## 3835      1210 1983    5.0
## 3836      1214 1979    3.5
## 3837      1215 1993    4.0
## 3838      1240 1984    4.0
## 3839      1255 1987    4.0
## 3840      1263 1978    3.0
## 3841      1270 1985    4.0
## 3842      1291 1989    5.0
## 3843      1320 1992    3.5
## 3844      1339 1992    4.5
## 3845      1356 1996    4.0
## 3846      1371 1979    2.0
## 3847      1372 1991    4.0
## 3848      1374 1982    3.5
## 3849      1375 1984    4.0
## 3850      1376 1986    4.0
## 3851      1377 1992    4.0
## 3852      1387 1975    4.0
## 3853      1391 1996    3.5
## 3854      1527 1997    4.5
## 3855      1544 1997    3.0
## 3856      1580 1997    4.0
## 3857      1608 1997    2.5
## 3858      1625 1997    2.0
## 3859      1641 1997    2.0
## 3860      1645 1997    2.5
## 3861      1682 1998    2.5
## 3862      1693 1997    2.0
## 3863      1721 1997    3.0
## 3864      1722 1997    3.5
## 3865      1769 1998    2.5
## 3866      1799 1997    4.0
## 3867      1876 1998    2.0
## 3868      1884 1998    4.5
## 3869      1909 1998    3.0
## 3870      1917 1998    2.5
## 3871      1923 1998    2.5
## 3872      1997 1973    3.0
## 3873      2006 1998    2.5
## 3874      2011 1989    3.5
## 3875      2023 1990    3.5
## 3876      2081 1989    2.5
## 3877      2115 1984    3.5
## 3878      2174 1988    4.0
## 3879      2232 1997    3.5
## 3880      2288 1982    4.0
## 3881      2291 1990    4.5
## 3882      2301 1981    3.5
## 3883      2340 1998    2.5
## 3884      2402 1985    3.0
## 3885      2431 1998    2.0
## 3886      2459 1974    4.0
## 3887      2502 1999    1.5
## 3888      2542 1998    4.5
## 3889      2571 1999    4.5
## 3890      2605 1999    2.0
## 3891      2616 1990    2.5
## 3892      2617 1999    2.5
## 3893      2657 1975    2.0
## 3894      2672 1999    2.0
## 3895      2683 1999    2.5
## 3896      2700 1999    2.0
## 3897      2701 1999    2.0
## 3898      2710 1999    2.0
## 3899      2712 1999    4.5
## 3900      2716 1984    3.0
## 3901      2717 1989    3.0
## 3902      2723 1999    2.0
## 3903      2762 1999    4.0
## 3904      2763 1999    1.5
## 3905      2858 1999    4.0
## 3906      2881 1999    2.0
## 3907      2953 1992    1.0
## 3908      2959 1999    4.0
## 3909      2985 1987    2.0
## 3910      2987 1988    4.0
## 3911      2990 1989    3.0
## 3912      3033 1987    4.0
## 3913      3052 1999    2.5
## 3914      3081 1999    5.0
## 3915      3082 1999    3.5
## 3916      3147 1999    2.5
## 3917      3176 1999    2.5
## 3918      3213 1993    4.0
## 3919      3253 1992    1.5
## 3920      3285 2000    2.0
## 3921      3300 2000    3.0
## 3922      3354 2000    2.5
## 3923      3355 1999    4.5
## 3924      3408 2000    1.5
## 3925      3438 1990    3.0
## 3926      3527 1987    4.0
## 3927      3535 2000    4.5
## 3928      3578 2000    3.0
## 3929      3623 2000    2.5
## 3930      3697 1990    2.5
## 3931      3751 2000    2.0
## 3932      3793 2000    4.5
## 3933      3809 1991    2.0
## 3934      3826 2000    2.0
## 3935      3868 1988    4.0
## 3936      3977 2000    2.5
## 3937      3994 2000    3.0
## 3938      3996 2000    2.0
## 3939      3999 2000    2.0
## 3940      4011 2000    4.5
## 3941      4015 2000    2.0
## 3942      4027 2000    2.0
## 3943      4105 1981    4.0
## 3944      4226 2000    5.0
## 3945      4239 2001    2.0
## 3946      4262 1983    3.5
## 3947      4306 2001    4.5
## 3948      4370 2001    3.5
## 3949      4383 2000    3.5
## 3950      4643 2001    2.5
## 3951      4701 2001    4.0
## 3952      4720 2001    2.5
## 3953      4776 2001    3.0
## 3954      4886 2001    4.0
## 3955      4896 2001    3.5
## 3956      4963 2001    2.5
## 3957      4975 2001    4.5
## 3958      4993 2001    5.0
## 3959      5010 2001    2.5
## 3960      5026 2001    4.0
## 3961      5219 2002    3.0
## 3962      5266 2002    2.5
## 3963      5349 2002    5.0
## 3964      5400 2002    2.5
## 3965      5445 2002    4.5
## 3966      5459 2002    3.5
## 3967      5464 2002    2.5
## 3968      5630 2002    4.5
## 3969      5679 2002    4.0
## 3970      5816 2002    3.5
## 3971      5872 2002    3.5
## 3972      5903 2002    4.0
## 3973      5952 2002    4.5
## 3974      5989 2002    3.5
## 3975      6286 2002    4.5
## 3976      6333 2003    4.5
## 3977      6365 2003    2.5
## 3978      6373 2003    2.0
## 3979      6502 2002    3.0
## 3980      6539 2003    4.0
## 3981      6541 2003    2.5
## 3982      6754 2003    2.5
## 3983      6874 2003    4.0
## 3984      6893 1969    2.0
## 3985      6934 2003    2.0
## 3986      7143 2003    4.0
## 3987      7147 2003    4.0
## 3988      7153 2003    4.0
## 3989      7360 2004    3.5
## 3990      7373 2004    3.0
## 3991      7438 2004    4.5
## 3992      7454 2004    3.0
## 3993      7482 1973    4.0
## 3994      8360 2004    3.5
## 3995      8368 2004    3.5
## 3996      8636 2004    4.5
## 3997      8798 2004    3.0
## 3998      8947 2004    3.0
## 3999      8950 2004    4.0
## 4000      8957 2004    4.5
## 4001      8961 2004    3.5
## 4002     30793 2005    4.0
## 4003     31184 2004    4.5
## 4004     31696 2005    4.0
## 4005     32587 2005    4.5
## 4006     33493 2005    2.5
## 4007     33794 2005    3.0
## 4008     37729 2005    5.0
## 4009         1 1995    3.0
## 4010         6 1995    3.5
## 4011        11 1995    3.5
## 4012        16 1995    4.0
## 4013        19 1995    2.0
## 4014        20 1995    1.5
## 4015        24 1995    3.5
## 4016        32 1995    4.0
## 4017        34 1995    3.5
## 4018        47 1995    4.5
## 4019        50 1995    4.0
## 4020        58 1994    3.5
## 4021        62 1995    4.0
## 4022        89 1995    4.0
## 4023       104 1996    3.5
## 4024       110 1995    3.5
## 4025       111 1976    5.0
## 4026       150 1995    3.5
## 4027       153 1995    3.0
## 4028       154 1967    4.0
## 4029       172 1995    2.5
## 4030       185 1995    3.5
## 4031       224 1995    4.0
## 4032       235 1994    4.0
## 4033       236 1995    4.5
## 4034       246 1994    4.5
## 4035       247 1994    4.0
## 4036       252 1994    4.0
## 4037       253 1994    3.5
## 4038       260 1977    4.5
## 4039       262 1995    4.0
## 4040       265 1992    3.5
## 4041       292 1995    2.5
## 4042       293 1994    4.0
## 4043       296 1994    4.5
## 4044       300 1994    4.0
## 4045       306 1994    3.5
## 4046       307 1993    2.5
## 4047       316 1994    3.5
## 4048       318 1994    5.0
## 4049       319 1994    4.5
## 4050       337 1993    4.5
## 4051       344 1994    2.0
## 4052       345 1994    4.0
## 4053       356 1994    4.5
## 4054       380 1994    4.0
## 4055       425 1994    3.5
## 4056       431 1993    3.5
## 4057       442 1993    3.5
## 4058       457 1993    3.5
## 4059       465 1993    3.5
## 4060       471 1994    3.5
## 4061       480 1993    3.5
## 4062       485 1993    3.0
## 4063       492 1993    4.5
## 4064       497 1993    4.5
## 4065       508 1993    4.5
## 4066       509 1993    4.5
## 4067       527 1993    3.5
## 4068       532 1994    3.5
## 4069       535 1993    4.5
## 4070       539 1993    2.5
## 4071       541 1982    3.0
## 4072       586 1990    3.5
## 4073       588 1992    4.0
## 4074       589 1991    3.5
## 4075       590 1990    2.5
## 4076       592 1989    3.5
## 4077       593 1991    4.5
## 4078       595 1991    4.5
## 4079       597 1990    3.0
## 4080       605 1996    4.0
## 4081       608 1996    4.5
## 4082       648 1996    4.5
## 4083       653 1996    2.5
## 4084       668 1955    4.5
## 4085       670 1959    4.5
## 4086       745 1995    4.5
## 4087       750 1964    4.5
## 4088       778 1996    4.5
## 4089       780 1996    3.5
## 4090       788 1996    2.0
## 4091       802 1996    3.5
## 4092       805 1996    3.5
## 4093       841 1959    4.0
## 4094       858 1972    5.0
## 4095       898 1940    4.5
## 4096       899 1952    4.5
## 4097       900 1951    2.5
## 4098       903 1958    3.5
## 4099       904 1954    4.5
## 4100       905 1934    4.0
## 4101       908 1959    5.0
## 4102       909 1960    3.5
## 4103       910 1959    4.5
## 4104       911 1963    4.0
## 4105       912 1942    5.0
## 4106       913 1941    4.0
## 4107       914 1964    3.0
## 4108       920 1939    3.5
## 4109       922 1950    4.5
## 4110       923 1941    5.0
## 4111       924 1968    3.5
## 4112       926 1950    4.0
## 4113       928 1940    4.5
## 4114       930 1946    4.0
## 4115       931 1945    4.5
## 4116       933 1955    3.5
## 4117       942 1944    4.0
## 4118       948 1956    3.5
## 4119       949 1955    3.5
## 4120       952 1956    3.5
## 4121       953 1946    4.5
## 4122       954 1939    5.0
## 4123       955 1938    3.5
## 4124       965 1935    3.5
## 4125       969 1951    3.5
## 4126       971 1958    3.5
## 4127      1035 1965    2.5
## 4128      1036 1988    3.0
## 4129      1041 1996    4.0
## 4130      1059 1996    4.5
## 4131      1061 1996    3.5
## 4132      1077 1973    4.0
## 4133      1078 1971    4.0
## 4134      1080 1979    4.0
## 4135      1084 1967    4.0
## 4136      1089 1992    3.5
## 4137      1090 1986    4.0
## 4138      1096 1982    2.5
## 4139      1097 1982    5.0
## 4140      1101 1986    3.0
## 4141      1103 1955    4.5
## 4142      1104 1951    4.0
## 4143      1136 1975    4.0
## 4144      1172 1989    5.0
## 4145      1175 1991    3.5
## 4146      1176 1991    3.0
## 4147      1178 1957    4.0
## 4148      1183 1996    4.0
## 4149      1185 1989    3.0
## 4150      1188 1992    4.0
## 4151      1193 1975    4.5
## 4152      1196 1980    4.5
## 4153      1197 1987    5.0
## 4154      1198 1981    4.5
## 4155      1199 1985    3.5
## 4156      1201 1966    4.0
## 4157      1202 1987    4.5
## 4158      1203 1957    4.5
## 4159      1204 1962    5.0
## 4160      1206 1971    4.5
## 4161      1207 1962    3.5
## 4162      1208 1979    5.0
## 4163      1210 1983    4.0
## 4164      1211 1987    3.5
## 4165      1212 1949    3.5
## 4166      1213 1990    5.0
## 4167      1217 1985    4.5
## 4168      1218 1989    3.5
## 4169      1219 1960    5.0
## 4170      1221 1974    4.5
## 4171      1222 1987    3.5
## 4172      1225 1984    4.5
## 4173      1227 1984    3.5
## 4174      1228 1980    4.0
## 4175      1230 1977    4.0
## 4176      1231 1983    4.0
## 4177      1232 1979    4.0
## 4178      1233 1981    3.5
## 4179      1234 1973    3.5
## 4180      1235 1971    1.5
## 4181      1237 1957    4.5
## 4182      1240 1984    3.5
## 4183      1241 1992    2.5
## 4184      1243 1990    3.5
## 4185      1244 1979    3.5
## 4186      1246 1989    4.0
## 4187      1247 1967    4.0
## 4188      1248 1958    4.5
## 4189      1250 1957    4.0
## 4190      1251 1963    5.0
## 4191      1252 1974    4.5
## 4192      1254 1948    3.5
## 4193      1256 1933    3.5
## 4194      1258 1980    3.5
## 4195      1260 1931    4.0
## 4196      1262 1963    4.0
## 4197      1263 1978    3.0
## 4198      1265 1993    4.0
## 4199      1266 1992    3.5
## 4200      1267 1962    5.0
## 4201      1269 1944    4.0
## 4202      1270 1985    4.5
## 4203      1272 1970    2.0
## 4204      1277 1990    3.5
## 4205      1280 1991    5.0
## 4206      1281 1940    3.0
## 4207      1284 1946    4.0
## 4208      1287 1959    4.0
## 4209      1288 1984    3.5
## 4210      1291 1989    3.5
## 4211      1293 1982    5.0
## 4212      1304 1969    4.0
## 4213      1305 1984    4.5
## 4214      1307 1989    4.0
## 4215      1333 1963    3.5
## 4216      1343 1991    4.0
## 4217      1348 1922    2.5
## 4218      1354 1996    4.5
## 4219      1356 1996    3.0
## 4220      1377 1992    2.5
## 4221      1380 1978    2.5
## 4222      1387 1975    3.5
## 4223      1391 1996    3.5
## 4224      1393 1996    4.0
## 4225      1394 1987    4.0
## 4226      1408 1992    3.5
## 4227      1411 1996    3.5
## 4228      1438 1997    3.0
## 4229      1464 1997    2.0
## 4230      1499 1997    1.5
## 4231      1500 1997    4.5
## 4232      1515 1997    3.0
## 4233      1527 1997    3.5
## 4234      1544 1997    2.0
## 4235      1552 1997    3.0
## 4236      1556 1997    0.5
## 4237      1562 1997    1.0
## 4238      1580 1997    3.5
## 4239      1584 1997    4.0
## 4240      1608 1997    2.5
## 4241      1617 1997    4.0
## 4242      1625 1997    4.5
## 4243      1673 1997    4.0
## 4244      1682 1998    5.0
## 4245      1693 1997    4.0
## 4246      1704 1997    3.5
## 4247      1721 1997    5.0
## 4248      1722 1997    3.0
## 4249      1732 1998    4.0
## 4250      1735 1998    4.5
## 4251      1748 1998    5.0
## 4252      1792 1998    3.5
## 4253      1797 1998    3.5
## 4254      1835 1998    3.5
## 4255      1860 1997    5.0
## 4256      1873 1998    3.0
## 4257      1876 1998    3.0
## 4258      1900 1997    3.5
## 4259      1907 1998    3.5
## 4260      1917 1998    2.0
## 4261      1927 1930    3.0
## 4262      1931 1935    4.0
## 4263      1932 1936    1.5
## 4264      1935 1941    4.0
## 4265      1941 1948    3.5
## 4266      1944 1953    4.0
## 4267      1945 1954    4.5
## 4268      1946 1955    4.0
## 4269      1947 1961    4.0
## 4270      1949 1966    3.5
## 4271      1950 1967    4.5
## 4272      1951 1968    3.0
## 4273      1952 1969    4.0
## 4274      1953 1971    3.0
## 4275      1954 1976    3.0
## 4276      1955 1979    4.0
## 4277      1956 1980    1.0
## 4278      1957 1981    3.5
## 4279      1958 1983    3.5
## 4280      1959 1985    2.5
## 4281      1960 1987    1.5
## 4282      1961 1988    4.0
## 4283      1962 1989    3.5
## 4284      1997 1973    3.5
## 4285      2002 1992    3.5
## 4286      2010 1927    3.5
## 4287      2011 1989    4.0
## 4288      2012 1990    4.5
## 4289      2019 1954    4.0
## 4290      2022 1988    4.0
## 4291      2023 1990    3.0
## 4292      2027 1998    3.5
## 4293      2028 1998    4.0
## 4294      2067 1965    2.5
## 4295      2068 1982    5.0
## 4296      2115 1984    4.0
## 4297      2126 1998    2.0
## 4298      2132 1966    4.0
## 4299      2143 1985    1.5
## 4300      2174 1988    3.5
## 4301      2176 1948    5.0
## 4302      2178 1972    3.0
## 4303      2181 1964    4.0
## 4304      2183 1956    3.5
## 4305      2186 1951    5.0
## 4306      2194 1987    3.5
## 4307      2203 1943    4.0
## 4308      2205 1941    3.5
## 4309      2231 1998    3.5
## 4310      2248 1989    3.5
## 4311      2273 1998    3.5
## 4312      2278 1998    4.0
## 4313      2289 1992    4.0
## 4314      2291 1990    4.0
## 4315      2313 1980    3.5
## 4316      2321 1998    5.0
## 4317      2324 1997    3.5
## 4318      2329 1998    2.5
## 4319      2333 1998    3.5
## 4320      2334 1998    2.5
## 4321      2336 1998    3.0
## 4322      2351 1957    5.0
## 4323      2353 1998    3.0
## 4324      2357 1998    4.0
## 4325      2360 1998    3.5
## 4326      2361 1972    4.0
## 4327      2394 1998    3.5
## 4328      2396 1998    4.5
## 4329      2406 1984    4.0
## 4330      2424 1998    3.0
## 4331      2467 1986    4.0
## 4332      2474 1986    2.5
## 4333      2501 1999    4.0
## 4334      2502 1999    4.0
## 4335      2539 1999    2.0
## 4336      2542 1998    3.5
## 4337      2571 1999    4.0
## 4338      2575 1998    3.0
## 4339      2580 1999    3.5
## 4340      2599 1999    3.5
## 4341      2600 1999    4.0
## 4342      2617 1999    3.5
## 4343      2628 1999    2.5
## 4344      2640 1978    4.5
## 4345      2644 1931    3.5
## 4346      2648 1931    4.5
## 4347      2657 1975    3.0
## 4348      2692 1998    5.0
## 4349      2699 1990    1.5
## 4350      2702 1999    4.0
## 4351      2712 1999    4.5
## 4352      2716 1984    3.0
## 4353      2721 1999    3.5
## 4354      2724 1999    2.0
## 4355      2726 1956    4.5
## 4356      2728 1960    4.0
## 4357      2729 1962    3.5
## 4358      2730 1975    4.0
## 4359      2731 1959    5.0
## 4360      2739 1985    4.0
## 4361      2746 1986    2.0
## 4362      2762 1999    4.0
## 4363      2805 1999    2.5
## 4364      2858 1999    3.5
## 4365      2871 1972    3.5
## 4366      2890 1999    4.0
## 4367      2905 1962    4.0
## 4368      2908 1999    3.5
## 4369      2918 1986    4.0
## 4370      2932 1978    4.0
## 4371      2947 1964    3.5
## 4372      2952 1996    3.5
## 4373      2953 1992    3.5
## 4374      2959 1999    3.5
## 4375      2970 1982    4.0
## 4376      2976 1999    4.5
## 4377      2987 1988    3.5
## 4378      2997 1999    4.5
## 4379      3006 1999    4.5
## 4380      3019 1989    3.5
## 4381      3020 1993    2.5
## 4382      3052 1999    3.5
## 4383      3053 1999    2.0
## 4384      3067 1988    5.0
## 4385      3081 1999    3.0
## 4386      3082 1999    2.5
## 4387      3083 1999    5.0
## 4388      3088 1950    2.5
## 4389      3089 1948    4.5
## 4390      3095 1940    3.0
## 4391      3100 1992    3.5
## 4392      3114 1999    3.5
## 4393      3147 1999    3.0
## 4394      3152 1971    2.0
## 4395      3155 1999    2.5
## 4396      3159 1999    4.0
## 4397      3160 1999    4.5
## 4398      3168 1969    4.0
## 4399      3176 1999    5.0
## 4400      3201 1970    3.5
## 4401      3245 1964    4.5
## 4402      3246 1992    4.5
## 4403      3248 1993    3.0
## 4404      3252 1992    4.5
## 4405      3267 1992    3.5
## 4406      3307 1931    4.0
## 4407      3310 1921    5.0
## 4408      3317 2000    4.0
## 4409      3365 1956    2.5
## 4410      3371 1976    3.5
## 4411      3386 1991    5.0
## 4412      3405 1958    3.5
## 4413      3408 2000    4.5
## 4414      3415 1975    1.5
## 4415      3424 1989    4.0
## 4416      3435 1944    4.5
## 4417      3448 1987    4.0
## 4418      3462 1936    4.5
## 4419      3468 1961    3.0
## 4420      3471 1977    4.5
## 4421      3475 1951    3.5
## 4422      3481 2000    3.5
## 4423      3489 1991    3.5
## 4424      3498 1978    4.5
## 4425      3503 1972    3.5
## 4426      3504 1976    3.0
## 4427      3510 2000    3.5
## 4428      3535 2000    4.0
## 4429      3546 1962    4.0
## 4430      3559 1952    2.0
## 4431      3569 1998    1.0
## 4432      3578 2000    4.0
## 4433      3618 2000    3.0
## 4434      3623 2000    2.0
## 4435      3629 1925    4.0
## 4436      3668 1968    3.0
## 4437      3671 1974    3.5
## 4438      3681 1965    3.5
## 4439      3730 1974    3.5
## 4440      3736 1951    4.0
## 4441      3741 1973    2.5
## 4442      3751 2000    4.0
## 4443      3753 2000    2.0
## 4444      3788 1966    4.0
## 4445      3801 1959    2.0
## 4446      3844 1989    3.0
## 4447      3871 1953    3.0
## 4448      3897 2000    4.5
## 4449      3910 2000    4.5
## 4450      3949 2000    5.0
## 4451      3983 2000    4.5
## 4452      3989 1999    4.0
## 4453      3992 2000    3.5
## 4454      3994 2000    4.0
## 4455      3996 2000    4.0
## 4456      4007 1987    4.0
## 4457      4008 1989    4.0
## 4458      4011 2000    4.5
## 4459      4014 2000    3.5
## 4460      4022 2000    2.0
## 4461      4027 2000    3.5
## 4462      4034 2000    3.5
## 4463      4037 1987    3.5
## 4464      4103 1987    3.5
## 4465      4148 2001    1.0
## 4466      4167 2001    3.0
## 4467      4223 2001    2.0
## 4468      4225 2001    4.0
## 4469      4226 2000    4.5
## 4470      4235 2000    4.0
## 4471      4267 2001    4.0
## 4472      4278 1934    3.5
## 4473      4282 1969    2.0
## 4474      4297 1987    3.5
## 4475      4308 2001    4.5
## 4476      4310 2001    1.5
## 4477      4312 1999    3.5
## 4478      4343 2001    3.0
## 4479      4344 2001    0.5
## 4480      4359 1955    2.0
## 4481      4370 2001    3.0
## 4482      4378 2000    4.0
## 4483      4432 1957    3.5
## 4484      4447 2001    3.5
## 4485      4458 1994    3.0
## 4486      4564 1989    1.5
## 4487      4571 1989    3.5
## 4488      4641 2001    4.0
## 4489      4720 2001    4.0
## 4490      4816 2001    3.0
## 4491      4823 2001    4.0
## 4492      4848 2001    4.0
## 4493      4857 1971    3.5
## 4494      4865 2001    3.5
## 4495      4878 2001    3.5
## 4496      4881 2001    3.5
## 4497      4886 2001    3.5
## 4498      4896 2001    3.5
## 4499      4901 2001    3.0
## 4500      4914 1960    5.0
## 4501      4963 2001    5.0
## 4502      4967 2001    5.0
## 4503      4973 2001    5.0
## 4504      4975 2001    2.0
## 4505      4976 2001    3.0
## 4506      4978 2001    4.5
## 4507      4979 2001    4.0
## 4508      4993 2001    4.0
## 4509      4995 2001    4.5
## 4510      5013 2001    4.5
## 4511      5014 2001    1.0
## 4512      5015 2001    3.5
## 4513      5060 1970    3.0
## 4514      5073 2001    3.0
## 4515      5096 1994    3.0
## 4516      5114 1952    4.0
## 4517      5135 2001    4.0
## 4518      5147 1957    4.0
## 4519      5177 1942    4.5
## 4520      5222 2001    4.0
## 4521      5225 2001    5.0
## 4522      5266 2002    4.0
## 4523      5291 1950    4.0
## 4524      5299 2002    2.5
## 4525      5304 1945    3.5
## 4526      5348 2002    3.5
## 4527      5349 2002    2.0
## 4528      5367 1985    4.0
## 4529      5373 1957    3.5
## 4530      5377 2002    3.5
## 4531      5378 2002    0.5
## 4532      5385 1978    3.5
## 4533      5388 2002    3.5
## 4534      5445 2002    3.0
## 4535      5446 2002    4.0
## 4536      5463 2002    2.5
## 4537      5464 2002    2.0
## 4538      5470 1952    3.0
## 4539      5489 1979    3.0
## 4540      5502 2002    4.0
## 4541      5599 1931    3.5
## 4542      5618 2001    3.5
## 4543      5633 2002    4.5
## 4544      5669 2002    4.0
## 4545      5673 2002    4.5
## 4546      5679 2002    3.5
## 4547      5682 2001    3.5
## 4548      5810 2002    4.0
## 4549      5816 2002    2.5
## 4550      5878 2002    4.0
## 4551      5881 2002    4.0
## 4552      5882 2002    1.5
## 4553      5902 2002    5.0
## 4554      5940 1982    4.0
## 4555      5949 2001    4.0
## 4556      5952 2002    4.0
## 4557      5954 2002    3.5
## 4558      5956 2002    3.5
## 4559      5971 1988    4.5
## 4560      5989 2002    5.0
## 4561      5991 2002    2.5
## 4562      5992 2002    5.0
## 4563      5995 2002    4.5
## 4564      6001 1983    4.5
## 4565      6008 2002    3.0
## 4566      6016 2002    5.0
## 4567      6162 2002    2.5
## 4568      6197 2002    2.5
## 4569      6214 2002    3.5
## 4570      6218 2002    4.0
## 4571      6235 1990    4.0
## 4572      6281 2002    4.0
## 4573      6323 2003    3.5
## 4574      6333 2003    3.5
## 4575      6365 2003    4.5
## 4576      6377 2003    3.5
## 4577      6404 1952    3.5
## 4578      6415 1987    1.5
## 4579      6440 1991    3.5
## 4580      6537 2003    3.0
## 4581      6539 2003    4.5
## 4582      6552 2002    3.5
## 4583      6591 2002    4.0
## 4584      6599 1961    3.5
## 4585      6611 1952    4.5
## 4586      6620 2003    3.5
## 4587      6641 2000    2.5
## 4588      6643 1953    4.5
## 4589      6666 1972    3.0
## 4590      6669 1952    4.0
## 4591      6708 2003    3.5
## 4592      6709 2003    1.5
## 4593      6711 2003    3.0
## 4594      6783 1939    4.0
## 4595      6787 1976    4.0
## 4596      6796 1991    3.5
## 4597      6807 1983    3.0
## 4598      6867 2003    3.5
## 4599      6870 2003    3.5
## 4600      6873 2003    4.0
## 4601      6874 2003    5.0
## 4602      6881 2003    4.5
## 4603      6890 2003    4.0
## 4604      6918 1957    5.0
## 4605      6932 2003    4.0
## 4606      6934 2003    3.0
## 4607      6944 1991    3.0
## 4608      6947 2003    2.5
## 4609      6953 2003    3.5
## 4610      6954 2003    3.0
## 4611      6975 1997    4.5
## 4612      6981 1955    2.5
## 4613      6982 1952    2.0
## 4614      6985 1928    4.0
## 4615      6987 1920    4.0
## 4616      6993 1986    3.5
## 4617      7004 1990    2.0
## 4618      7008 1972    1.5
## 4619      7013 1955    4.0
## 4620      7038 2000    4.0
## 4621      7042 1986    2.5
## 4622      7063 1972    4.5
## 4623      7070 1948    4.5
## 4624      7072 1939    4.5
## 4625      7088 1959    4.0
## 4626      7090 2002    4.5
## 4627      7104 1979    2.0
## 4628      7132 1935    3.5
## 4629      7136 1968    5.0
## 4630      7139 2002    3.5
## 4631      7147 2003    4.0
## 4632      7153 2003    4.5
## 4633      7160 2003    3.0
## 4634      7161 2003    2.0
## 4635      7162 2003    2.0
## 4636      7234 1954    4.0
## 4637      7265 2003    4.0
## 4638      7323 2003    4.0
## 4639      7347 2004    3.0
## 4640      7361 2004    4.5
## 4641      7371 2003    4.5
## 4642      7419 1985    3.5
## 4643      7438 2004    3.5
## 4644      7458 2004    2.0
## 4645      7569 1967    3.5
## 4646      7587 1967    4.0
## 4647      7713 1942    3.5
## 4648      7748 1965    3.5
## 4649      7759 1983    1.0
## 4650      7766 1957    4.0
## 4651      7771 1964    4.0
## 4652      7942 1953    3.0
## 4653      8019 2002    3.5
## 4654      8042 1973    4.5
## 4655      8125 1927    4.0
## 4656      8154 1960    3.5
## 4657      8195 1960    3.0
## 4658      8239 1961    3.5
## 4659      8338 1947    3.5
## 4660      8368 2004    4.0
## 4661      8376 2004    4.5
## 4662      8464 2004    3.5
## 4663      8507 1932    3.5
## 4664      8529 2004    2.0
## 4665      8636 2004    3.5
## 4666      8656 1988    2.5
## 4667      8873 2004    4.5
## 4668      8910 2004    4.0
## 4669      8949 2004    3.5
## 4670      8955 2004    5.0
## 4671      8958 2004    4.5
## 4672      8966 2004    3.5
## 4673      8970 2004    4.5
## 4674      8973 2004    4.0
## 4675      8984 2004    3.0
## 4676     25753 1924    3.5
## 4677     25769 1928    4.5
## 4678     25805 1934    2.5
## 4679     26052 1959    4.0
## 4680     26131 1966    4.0
## 4681     26242 1971    5.0
## 4682     26729 1991    4.5
## 4683     27266 2004    3.0
## 4684     27317 1999    3.0
## 4685     27721 2004    3.0
## 4686     27803 2004    4.5
## 4687     30707 2004    3.5
## 4688     30749 2004    4.5
## 4689     30793 2005    3.5
## 4690     30812 2004    3.5
## 4691     30820 2004    4.0
## 4692     31101 2003    4.0
## 4693     31658 2004    3.5
## 4694     32587 2005    3.5
## 4695     32892 1962    4.0
## 4696     33162 2005    2.5
## 4697     33166 2004    5.0
## 4698     33493 2005    4.0
## 4699     33794 2005    3.5
## 4700     33903 2004    3.5
## 4701     34048 2005    3.0
## 4702     34143 2005    2.5
## 4703     34326 2005    4.0
## 4704     34437 2005    3.0
## 4705     36517 2005    3.5
## 4706     36529 2005    3.5
## 4707     36535 2005    4.5
## 4708     37733 2005    3.5
## 4709     37736 2005    3.0
## 4710     37741 2005    4.0
## 4711     38038 2005    4.0
## 4712     39183 2005    4.5
## 4713     39231 2005    4.0
## 4714     39292 2005    4.5
## 4715     39869 2005    4.0
## 4716     40278 2005    3.5
## 4717     40583 2005    4.0
## 4718     40629 2005    4.0
## 4719     40815 2005    3.0
## 4720     40819 2005    3.0
## 4721     41285 2005    4.5
## 4722     41569 2005    2.0
## 4723     41571 2005    2.5
## 4724     41863 2006    3.5
## 4725     41997 2005    4.0
## 4726     42004 2005    4.0
## 4727     42418 2005    3.5
## 4728     42734 2005    3.0
## 4729     44191 2006    4.5
## 4730     44204 2005    4.0
## 4731     45186 2006    3.5
## 4732     45447 2006    1.5
## 4733     45722 2006    2.5
## 4734     48385 2006    3.5
## 4735         6 1995    5.0
## 4736        36 1995    3.0
## 4737        81 1995    4.0
## 4738        95 1996    3.0
## 4739       150 1995    3.0
## 4740       165 1995    4.0
## 4741       296 1994    5.0
## 4742       316 1994    3.0
## 4743       356 1994    4.0
## 4744       380 1994    4.0
## 4745       457 1993    4.0
## 4746       588 1992    3.0
## 4747       590 1990    4.0
## 4748       592 1989    3.0
## 4749       610 1981    3.0
## 4750       648 1996    4.0
## 4751       736 1996    3.0
## 4752       780 1996    4.0
## 4753       786 1996    4.0
## 4754      1034 1996    3.0
## 4755      1161 1979    4.0
## 4756         3 1995    3.0
## 4757        32 1995    4.0
## 4758        78 1995    3.0
## 4759       104 1996    4.0
## 4760       260 1977    4.0
## 4761       494 1996    3.0
## 4762       608 1996    3.0
## 4763       653 1996    2.0
## 4764       663 1996    2.0
## 4765       707 1996    3.0
## 4766       778 1996    4.0
## 4767       780 1996    4.0
## 4768       784 1996    3.0
## 4769       786 1996    3.0
## 4770       788 1996    2.0
## 4771       802 1996    5.0
## 4772       832 1996    3.0
## 4773       842 1996    2.0
## 4774      1073 1971    5.0
## 4775      1354 1996    1.0
## 4776      1356 1996    3.0
## 4777      1358 1996    5.0
## 4778      1391 1996    2.0
## 4779      1405 1996    3.0
## 4780      1409 1996    2.0
## 4781      1483 1996    3.0
## 4782         1 1995    5.0
## 4783        32 1995    4.5
## 4784        47 1995    4.5
## 4785        50 1995    4.5
## 4786        63 1996    0.5
## 4787        69 1995    4.5
## 4788       153 1995    3.5
## 4789       165 1995    2.5
## 4790       260 1977    3.0
## 4791       296 1994    3.5
## 4792       316 1994    0.5
## 4793       318 1994    4.0
## 4794       344 1994    0.5
## 4795       356 1994    4.5
## 4796       367 1994    2.0
## 4797       377 1994    3.0
## 4798       380 1994    3.0
## 4799       457 1993    3.5
## 4800       480 1993    2.5
## 4801       500 1993    1.0
## 4802       555 1993    3.5
## 4803       589 1991    4.0
## 4804       593 1991    3.5
## 4805       608 1996    3.5
## 4806       648 1996    2.5
## 4807       720 1996    3.0
## 4808       733 1996    3.0
## 4809       778 1996    4.5
## 4810       780 1996    3.5
## 4811       858 1972    4.0
## 4812      1036 1988    3.5
## 4813      1089 1992    3.5
## 4814      1196 1980    3.5
## 4815      1198 1981    4.0
## 4816      1210 1983    3.5
## 4817      1405 1996    1.5
## 4818      1527 1997    4.0
## 4819      1580 1997    3.5
## 4820      1653 1997    3.5
## 4821      1687 1997    3.5
## 4822      1732 1998    4.0
## 4823      1753 1998    3.0
## 4824      1831 1998    3.0
## 4825      1884 1998    4.0
## 4826      2028 1998    3.0
## 4827      2329 1998    4.0
## 4828      2355 1998    4.0
## 4829      2542 1998    5.0
## 4830      2571 1999    5.0
## 4831      2692 1998    4.5
## 4832      2858 1999    4.0
## 4833      2959 1999    4.0
## 4834      3108 1991    2.0
## 4835      3114 1999    4.5
## 4836      3147 1999    3.0
## 4837      3275 2000    4.0
## 4838      3481 2000    2.5
## 4839      3578 2000    2.5
## 4840      3744 2000    4.0
## 4841      4011 2000    5.0
## 4842      4019 2000    4.0
## 4843      4027 2000    3.0
## 4844      4161 2001    3.5
## 4845      4226 2000    4.0
## 4846      4262 1983    2.5
## 4847      4306 2001    4.0
## 4848      4776 2001    4.0
## 4849      4844 2001    2.0
## 4850      4865 2001    4.5
## 4851      4963 2001    1.5
## 4852      4973 2001    3.5
## 4853      4979 2001    4.0
## 4854      4995 2001    3.0
## 4855      5010 2001    3.5
## 4856      5110 2001    4.0
## 4857      5218 2002    4.0
## 4858      5418 2002    4.0
## 4859      5608 2001    4.0
## 4860      5617 2002    2.0
## 4861      5903 2002    2.5
## 4862      5952 2002    4.0
## 4863      5954 2002    3.0
## 4864      5989 2002    2.0
## 4865      6016 2002    5.0
## 4866      6333 2003    0.5
## 4867      6539 2003    1.5
## 4868      6708 2003    3.5
## 4869      6867 2003    4.0
## 4870      6870 2003    3.0
## 4871      6874 2003    4.5
## 4872      7323 2003    4.0
## 4873      7361 2004    3.5
## 4874      7438 2004    3.5
## 4875      7445 2004    4.5
## 4876      8368 2004    3.0
## 4877      8665 2004    4.0
## 4878      8784 2004    2.0
## 4879      8798 2004    5.0
## 4880      8874 2004    1.5
## 4881      8961 2004    4.0
## 4882     27376 2001    0.5
## 4883     27831 2004    5.0
## 4884     30810 2004    3.0
## 4885     31410 2004    2.0
## 4886     31878 2004    4.0
## 4887     32587 2005    4.0
## 4888     33794 2005    4.0
## 4889     34437 2005    3.0
## 4890     36529 2005    4.0
## 4891     37731 2005    3.0
## 4892     37741 2005    3.5
## 4893     38038 2005    3.0
## 4894     38061 2005    4.5
## 4895     41997 2005    4.0
## 4896     44191 2006    5.0
## 4897     44195 2006    5.0
## 4898     44199 2006    4.5
## 4899     44665 2006    3.5
## 4900     46976 2006    4.0
## 4901     47610 2006    4.5
## 4902     48516 2006    4.5
## 4903     48774 2006    3.0
## 4904     48780 2006    4.5
## 4905     49272 2006    4.0
## 4906     49278 2006    3.0
## 4907     49530 2006    4.0
## 4908     50851 2006    3.5
## 4909     50872 2007    5.0
## 4910     51255 2007    3.5
## 4911     51662 2007    4.0
## 4912     52604 2007    4.0
## 4913     52952 2006    4.0
## 4914     53129 2007    4.5
## 4915     53972 2007    3.0
## 4916     54286 2007    5.0
## 4917     54503 2007    2.5
## 4918     55118 2007    2.5
## 4919     55167 2006    0.5
## 4920     55247 2007    4.0
## 4921     55276 2007    3.5
## 4922     55280 2007    3.5
## 4923     55765 2007    2.5
## 4924     55820 2007    3.0
## 4925     56782 2007    3.5
## 4926     57669 2008    3.5
## 4927     58559 2008    5.0
## 4928     59315 2008    3.5
## 4929     59369 2008    5.0
## 4930     59387 2006    3.0
## 4931     59784 2008    5.0
## 4932     60069 2008    3.0
## 4933     60684 2009    5.0
## 4934     61024 2008    3.0
## 4935     61323 2008    3.5
## 4936     62849 2008    4.5
## 4937     63082 2008    3.0
## 4938     65514 2008    5.0
## 4939     67997 2009    3.5
## 4940     68157 2009    3.5
## 4941     68358 2009    2.0
## 4942     68954 2009    3.5
## 4943     69122 2009    3.5
## 4944     70533 2007    0.5
## 4945     71464 2009    2.0
## 4946     72998 2009    3.5
## 4947     73017 2009    3.5
## 4948     73587 2009    4.5
## 4949     79132 2010    3.5
## 4950     80489 2010    2.0
## 4951     82459 2010    4.0
## 4952     91542 2011    3.5
## 4953     92259 2011    4.5
## 4954        50 1995    4.0
## 4955        73 1995    5.0
## 4956       111 1976    4.0
## 4957       296 1994    4.0
## 4958       527 1993    5.0
## 4959       593 1991    4.0
## 4960      1213 1990    4.0
## 4961      1343 1991    4.0
## 4962      1584 1997    4.0
## 4963      1610 1990    4.0
## 4964      1639 1997    4.0
## 4965      1704 1997    5.0
## 4966      1721 1997    3.0
## 4967      1892 1998    4.0
## 4968      2356 1998    2.0
## 4969      2391 1998    3.0
## 4970      2396 1998    2.0
## 4971      2501 1999    4.0
## 4972      2502 1999    4.0
## 4973      2710 1999    1.0
## 4974      2712 1999    4.0
## 4975      2762 1999    5.0
## 4976      2858 1999    5.0
## 4977        21 1995    5.0
## 4978        58 1994    5.0
## 4979       110 1995    4.0
## 4980       345 1994    5.0
## 4981       898 1940    5.0
## 4982       899 1952    5.0
## 4983       902 1961    5.0
## 4984       903 1958    3.0
## 4985       904 1954    4.0
## 4986       908 1959    5.0
## 4987       909 1960    4.0
## 4988       913 1941    4.0
## 4989       920 1939    5.0
## 4990       924 1968    4.0
## 4991       926 1950    5.0
## 4992       933 1955    4.0
## 4993       953 1946    2.0
## 4994      1059 1996    5.0
## 4995      1079 1988    5.0
## 4996      1094 1992    4.0
## 4997      1203 1957    5.0
## 4998      1206 1971    4.0
## 4999      1219 1960    5.0
## 5000      1225 1984    5.0
## 5001      1250 1957    5.0
## 5002      1252 1974    5.0
## 5003      1267 1962    5.0
## 5004      1296 1986    5.0
## 5005      1300 1985    4.0
## 5006      1366 1996    5.0
## 5007      1610 1990    4.0
## 5008      1617 1997    5.0
## 5009      1674 1985    4.0
## 5010      1831 1998    1.0
## 5011      1883 1998    4.0
## 5012      1945 1954    5.0
## 5013      1956 1980    4.0
## 5014      1962 1989    3.0
## 5015      2019 1954    2.0
## 5016      2028 1998    3.0
## 5017      2109 1979    5.0
## 5018      2202 1944    5.0
## 5019      2291 1990    4.0
## 5020      2300 1968    4.0
## 5021      2324 1997    5.0
## 5022      2406 1984    2.0
## 5023      2470 1986    4.0
## 5024      2571 1999    5.0
## 5025      2583 1999    5.0
## 5026      2662 1953    4.0
## 5027       778 1996    5.0
## 5028      1569 1997    2.0
## 5029      1681 1997    0.5
## 5030      1717 1997    3.0
## 5031      2065 1985    0.5
## 5032      2367 1976    0.5
## 5033      2384 1998    1.5
## 5034      2459 1974    3.5
## 5035      2513 1989    3.0
## 5036      2571 1999    5.0
## 5037      2713 1999    3.0
## 5038      2717 1989    2.5
## 5039      2942 1983    0.5
## 5040      3720 1999    4.0
## 5041      5065 2002    2.0
## 5042      6365 2003    2.5
## 5043      6502 2002    5.0
## 5044      6934 2003    2.5
## 5045     27822 2003    4.0
## 5046     51662 2007    4.5
## 5047     58559 2008    5.0
## 5048     73268 2010    3.0
## 5049         1 1995    4.0
## 5050         2 1995    2.0
## 5051         6 1995    4.0
## 5052         8 1995    4.0
## 5053        11 1995    4.0
## 5054        14 1995    4.0
## 5055        16 1995    5.0
## 5056        18 1995    2.0
## 5057        21 1995    5.0
## 5058        23 1995    4.0
## 5059        25 1995    4.0
## 5060        32 1995    2.0
## 5061        34 1995    4.0
## 5062        42 1995    3.0
## 5063        45 1995    3.0
## 5064        47 1995    4.0
## 5065        50 1995    5.0
## 5066        52 1995    5.0
## 5067        60 1995    2.0
## 5068        70 1996    4.0
## 5069        78 1995    2.0
## 5070       100 1996    4.0
## 5071       110 1995    5.0
## 5072       111 1976    4.0
## 5073       118 1996    3.0
## 5074       141 1996    4.0
## 5075       150 1995    5.0
## 5076       158 1995    3.0
## 5077       161 1995    5.0
## 5078       162 1994    1.0
## 5079       165 1995    4.0
## 5080       170 1995    4.0
## 5081       196 1995    2.0
## 5082       203 1995    3.0
## 5083       208 1995    2.0
## 5084       209 1995    2.0
## 5085       224 1995    4.0
## 5086       227 1994    2.0
## 5087       228 1995    2.0
## 5088       235 1994    4.0
## 5089       253 1994    4.0
## 5090       254 1995    3.0
## 5091       260 1977    4.0
## 5092       261 1994    4.0
## 5093       272 1994    4.0
## 5094       281 1994    4.0
## 5095       282 1994    5.0
## 5096       288 1994    1.0
## 5097       296 1994    5.0
## 5098       300 1994    5.0
## 5099       317 1994    4.0
## 5100       318 1994    5.0
## 5101       337 1993    5.0
## 5102       344 1994    2.0
## 5103       348 1994    5.0
## 5104       349 1994    5.0
## 5105       350 1994    4.0
## 5106       356 1994    5.0
## 5107       357 1994    4.0
## 5108       364 1994    3.0
## 5109       368 1994    4.0
## 5110       369 1994    3.0
## 5111       371 1994    4.0
## 5112       377 1994    4.0
## 5113       380 1994    4.0
## 5114       382 1994    4.0
## 5115       410 1993    4.0
## 5116       412 1993    5.0
## 5117       413 1994    2.0
## 5118       419 1993    2.0
## 5119       424 1994    4.0
## 5120       425 1994    4.0
## 5121       426 1993    2.0
## 5122       428 1993    5.0
## 5123       432 1994    3.0
## 5124       434 1993    4.0
## 5125       440 1993    4.0
## 5126       445 1993    4.0
## 5127       451 1993    4.0
## 5128       454 1993    5.0
## 5129       457 1993    5.0
## 5130       459 1994    4.0
## 5131       463 1993    4.0
## 5132       471 1994    4.0
## 5133       472 1994    4.0
## 5134       474 1993    5.0
## 5135       477 1993    4.0
## 5136       480 1993    4.0
## 5137       485 1993    4.0
## 5138       492 1993    4.0
## 5139       500 1993    4.0
## 5140       507 1993    4.0
## 5141       508 1993    5.0
## 5142       509 1993    5.0
## 5143       515 1993    5.0
## 5144       517 1993    4.0
## 5145       518 1994    2.0
## 5146       523 1993    2.0
## 5147       527 1993    5.0
## 5148       531 1993    3.0
## 5149       532 1994    2.0
## 5150       534 1993    4.0
## 5151       535 1993    4.0
## 5152       538 1993    4.0
## 5153       539 1993    3.0
## 5154       540 1993    4.0
## 5155       541 1982    4.0
## 5156       553 1993    4.0
## 5157       555 1993    5.0
## 5158       556 1993    4.0
## 5159       581 1995    3.0
## 5160       586 1990    4.0
## 5161       587 1990    2.0
## 5162       588 1992    5.0
## 5163       589 1991    4.0
## 5164       590 1990    5.0
## 5165       592 1989    4.0
## 5166       593 1991    4.0
## 5167       594 1937    3.0
## 5168       595 1991    5.0
## 5169       596 1940    4.0
## 5170       597 1990    4.0
## 5171       608 1996    5.0
## 5172       628 1996    5.0
## 5173       640 1996    3.0
## 5174       647 1996    5.0
## 5175       661 1996    2.0
## 5176       707 1996    3.0
## 5177       733 1996    4.0
## 5178       736 1996    4.0
## 5179       750 1964    3.0
## 5180       762 1996    3.0
## 5181       765 1996    3.0
## 5182       767 1995    4.0
## 5183       780 1996    4.0
## 5184       782 1996    3.0
## 5185       800 1996    4.0
## 5186       805 1996    5.0
## 5187       806 1996    1.0
## 5188       832 1996    4.0
## 5189       858 1972    5.0
## 5190       869 1996    2.0
## 5191       898 1940    5.0
## 5192       899 1952    4.0
## 5193       903 1958    4.0
## 5194       904 1954    4.0
## 5195       908 1959    4.0
## 5196       912 1942    5.0
## 5197       913 1941    5.0
## 5198       914 1964    4.0
## 5199       919 1939    4.0
## 5200       920 1939    5.0
## 5201       921 1982    5.0
## 5202       922 1950    5.0
## 5203       923 1941    5.0
## 5204       924 1968    4.0
## 5205       928 1940    5.0
## 5206       947 1936    4.0
## 5207       950 1934    4.0
## 5208       953 1946    4.0
## 5209       954 1939    4.0
## 5210       969 1951    4.0
## 5211       971 1958    4.0
## 5212       996 1996    3.0
## 5213      1006 1996    4.0
## 5214      1010 1969    3.0
## 5215      1012 1957    3.0
## 5216      1013 1961    4.0
## 5217      1017 1960    2.0
## 5218      1018 1965    3.0
## 5219      1025 1963    4.0
## 5220      1027 1991    3.0
## 5221      1028 1964    4.0
## 5222      1035 1965    4.0
## 5223      1036 1988    4.0
## 5224      1042 1996    4.0
## 5225      1061 1996    3.0
## 5226      1073 1971    3.0
## 5227      1078 1971    2.0
## 5228      1079 1988    5.0
## 5229      1081 1982    4.0
## 5230      1082 1972    4.0
## 5231      1084 1967    4.0
## 5232      1086 1954    4.0
## 5233      1088 1987    4.0
## 5234      1089 1992    5.0
## 5235      1090 1986    4.0
## 5236      1091 1989    1.0
## 5237      1092 1992    4.0
## 5238      1093 1991    1.0
## 5239      1094 1992    5.0
## 5240      1095 1992    5.0
## 5241      1096 1982    5.0
## 5242      1097 1982    4.0
## 5243      1101 1986    4.0
## 5244      1104 1951    4.0
## 5245      1114 1996    3.0
## 5246      1120 1996    4.0
## 5247      1124 1981    4.0
## 5248      1126 1991    2.0
## 5249      1129 1981    3.0
## 5250      1135 1980    3.0
## 5251      1171 1992    3.0
## 5252      1179 1990    5.0
## 5253      1181 1997    4.0
## 5254      1186 1989    4.0
## 5255      1189 1988    3.0
## 5256      1193 1975    4.0
## 5257      1196 1980    4.0
## 5258      1197 1987    3.0
## 5259      1198 1981    5.0
## 5260      1200 1986    3.0
## 5261      1206 1971    2.0
## 5262      1207 1962    5.0
## 5263      1208 1979    5.0
## 5264      1210 1983    4.0
## 5265      1212 1949    3.0
## 5266      1213 1990    5.0
## 5267      1214 1979    4.0
## 5268      1219 1960    4.0
## 5269      1220 1980    5.0
## 5270      1221 1974    5.0
## 5271      1222 1987    4.0
## 5272      1225 1984    5.0
## 5273      1226 1952    4.0
## 5274      1227 1984    5.0
## 5275      1228 1980    5.0
## 5276      1231 1983    5.0
## 5277      1234 1973    5.0
## 5278      1235 1971    2.0
## 5279      1240 1984    4.0
## 5280      1242 1989    5.0
## 5281      1244 1979    4.0
## 5282      1245 1990    4.0
## 5283      1246 1989    4.0
## 5284      1247 1967    4.0
## 5285      1250 1957    5.0
## 5286      1252 1974    5.0
## 5287      1258 1980    4.0
## 5288      1259 1986    4.0
## 5289      1263 1978    5.0
## 5290      1265 1993    4.0
## 5291      1266 1992    5.0
## 5292      1267 1962    5.0
## 5293      1270 1985    5.0
## 5294      1271 1991    4.0
## 5295      1272 1970    5.0
## 5296      1276 1967    5.0
## 5297      1277 1990    5.0
## 5298      1278 1974    3.0
## 5299      1283 1952    4.0
## 5300      1285 1989    4.0
## 5301      1286 1980    3.0
## 5302      1291 1989    4.0
## 5303      1292 1979    5.0
## 5304      1302 1989    4.0
## 5305      1303 1975    4.0
## 5306      1304 1969    4.0
## 5307      1307 1989    4.0
## 5308      1320 1992    3.0
## 5309      1321 1981    4.0
## 5310      1327 1979    4.0
## 5311      1332 1987    4.0
## 5312      1333 1963    5.0
## 5313      1334 1958    4.0
## 5314      1339 1992    4.0
## 5315      1343 1991    5.0
## 5316      1345 1976    3.0
## 5317      1346 1982    4.0
## 5318      1350 1976    4.0
## 5319      1352 1996    4.0
## 5320      1358 1996    5.0
## 5321      1366 1996    5.0
## 5322      1370 1990    4.0
## 5323      1377 1992    3.0
## 5324      1378 1988    4.0
## 5325      1380 1978    4.0
## 5326      1385 1992    3.0
## 5327      1387 1975    4.0
## 5328      1388 1978    3.0
## 5329      1390 1996    3.0
## 5330      1393 1996    4.0
## 5331      1394 1987    5.0
## 5332      1395 1987    5.0
## 5333      1396 1992    4.0
## 5334      1399 1996    3.0
## 5335      1422 1997    4.0
## 5336      1438 1997    3.0
## 5337      1440 1993    3.0
## 5338      1459 1997    4.0
## 5339      1461 1997    4.0
## 5340      1466 1997    5.0
## 5341      1485 1997    4.0
## 5342      1488 1997    4.0
## 5343      1508 1997    4.0
## 5344      1517 1997    3.0
## 5345      1523 1997    4.0
## 5346      1552 1997    4.0
## 5347      1562 1997    3.0
## 5348      1566 1997    4.0
## 5349      1580 1997    4.0
## 5350      1584 1997    5.0
## 5351      1588 1997    2.0
## 5352      1589 1997    3.0
## 5353      1598 1998    4.0
## 5354      1608 1997    5.0
## 5355      1610 1990    5.0
## 5356      1611 1991    2.0
## 5357      1614 1997    3.0
## 5358      1617 1997    5.0
## 5359      1620 1997    4.0
## 5360      1624 1997    4.0
## 5361      1625 1997    3.0
## 5362      1645 1997    5.0
## 5363      1672 1997    4.0
## 5364      1673 1997    4.0
## 5365      1674 1985    5.0
## 5366      1682 1998    5.0
## 5367      1686 1997    4.0
## 5368      1690 1997    3.0
## 5369      1694 1997    5.0
## 5370      1701 1997    4.0
## 5371      1704 1997    5.0
## 5372      1711 1997    5.0
## 5373      1721 1997    4.0
## 5374      1726 1997    2.0
## 5375      1729 1997    5.0
## 5376      1732 1998    3.0
## 5377      1747 1997    4.0
## 5378      1783 1998    4.0
## 5379      1784 1997    5.0
## 5380      1785 1990    4.0
## 5381      1791 1998    4.0
## 5382      1798 1998    3.0
## 5383      1805 1998    4.0
## 5384      1810 1998    3.0
## 5385      1834 1997    4.0
## 5386      1864 1998    3.0
## 5387      1873 1998    5.0
## 5388      1876 1998    4.0
## 5389      1882 1998    2.0
## 5390      1884 1998    1.0
## 5391      1892 1998    5.0
## 5392      1912 1998    4.0
## 5393      1917 1998    4.0
## 5394      1923 1998    4.0
## 5395      1943 1952    3.0
## 5396      1945 1954    4.0
## 5397      1947 1961    4.0
## 5398      1951 1968    4.0
## 5399      1952 1969    4.0
## 5400      1953 1971    4.0
## 5401      1954 1976    5.0
## 5402      1955 1979    4.0
## 5403      1956 1980    4.0
## 5404      1957 1981    4.0
## 5405      1958 1983    3.0
## 5406      1960 1987    5.0
## 5407      1961 1988    5.0
## 5408      1962 1989    5.0
## 5409      1965 1984    4.0
## 5410      1968 1985    4.0
## 5411      1982 1978    3.0
## 5412      1994 1982    4.0
## 5413      1997 1973    5.0
## 5414      2000 1987    4.0
## 5415      2001 1989    4.0
## 5416      2002 1992    3.0
## 5417      2003 1984    3.0
## 5418      2009 1973    3.0
## 5419      2011 1989    4.0
## 5420      2012 1990    3.0
## 5421      2013 1972    3.0
## 5422      2015 1961    3.0
## 5423      2023 1990    5.0
## 5424      2024 1991    1.0
## 5425      2025 1997    4.0
## 5426      2028 1998    5.0
## 5427      2054 1989    1.0
## 5428      2064 1989    4.0
## 5429      2065 1985    5.0
## 5430      2070 1983    4.0
## 5431      2076 1986    4.0
## 5432      2078 1967    3.0
## 5433      2081 1989    4.0
## 5434      2082 1992    2.0
## 5435      2083 1992    4.0
## 5436      2088 1980    3.0
## 5437      2094 1991    4.0
## 5438      2105 1982    2.0
## 5439      2108 1991    4.0
## 5440      2109 1979    3.0
## 5441      2112 1991    3.0
## 5442      2114 1983    4.0
## 5443      2115 1984    4.0
## 5444      2116 1978    3.0
## 5445      2117 1984    3.0
## 5446      2118 1983    4.0
## 5447      2120 1993    4.0
## 5448      2121 1983    2.0
## 5449      2122 1984    2.0
## 5450      2124 1991    4.0
## 5451      2126 1998    4.0
## 5452      2136 1963    3.0
## 5453      2144 1984    3.0
## 5454      2145 1986    3.0
## 5455      2146 1985    4.0
## 5456      2148 1986    1.0
## 5457      2159 1986    2.0
## 5458      2160 1968    5.0
## 5459      2166 1998    4.0
## 5460      2174 1988    4.0
## 5461      2183 1956    4.0
## 5462      2184 1955    4.0
## 5463      2188 1998    3.0
## 5464      2193 1988    3.0
## 5465      2194 1987    5.0
## 5466      2231 1998    5.0
## 5467      2236 1998    3.0
## 5468      2240 1980    4.0
## 5469      2243 1987    5.0
## 5470      2245 1988    4.0
## 5471      2247 1988    4.0
## 5472      2249 1990    4.0
## 5473      2252 1992    4.0
## 5474      2253 1992    3.0
## 5475      2255 1982    2.0
## 5476      2259 1984    3.0
## 5477      2263 1988    2.0
## 5478      2264 1989    2.0
## 5479      2267 1991    4.0
## 5480      2268 1992    5.0
## 5481      2269 1993    5.0
## 5482      2278 1998    3.0
## 5483      2286 1980    1.0
## 5484      2289 1992    5.0
## 5485      2291 1990    5.0
## 5486      2296 1998    2.0
## 5487      2300 1968    5.0
## 5488      2301 1981    4.0
## 5489      2302 1992    4.0
## 5490      2307 1998    4.0
## 5491      2311 1984    3.0
## 5492      2313 1980    4.0
## 5493      2320 1998    4.0
## 5494      2321 1998    5.0
## 5495      2329 1998    3.0
## 5496      2334 1998    3.0
## 5497      2336 1998    5.0
## 5498      2346 1975    3.0
## 5499      2347 1984    3.0
## 5500      2352 1983    4.0
## 5501      2353 1998    5.0
## 5502      2355 1998    5.0
## 5503      2367 1976    2.0
## 5504      2369 1985    4.0
## 5505      2371 1985    3.0
## 5506      2374 1986    3.0
## 5507      2376 1985    4.0
## 5508      2389 1998    3.0
## 5509      2391 1998    5.0
## 5510      2396 1998    5.0
## 5511      2398 1947    4.0
## 5512      2402 1985    3.0
## 5513      2403 1982    3.0
## 5514      2407 1985    4.0
## 5515      2409 1979    4.0
## 5516      2410 1982    4.0
## 5517      2411 1985    4.0
## 5518      2412 1990    4.0
## 5519      2417 1986    3.0
## 5520      2418 1986    3.0
## 5521      2420 1984    2.0
## 5522      2424 1998    4.0
## 5523      2427 1998    1.0
## 5524      2432 1998    4.0
## 5525      2433 1998    4.0
## 5526      2435 1998    2.0
## 5527      2454 1958    4.0
## 5528      2457 1986    4.0
## 5529      2463 1986    4.0
## 5530      2468 1986    2.0
## 5531      2470 1986    4.0
## 5532      2474 1986    5.0
## 5533      2490 1999    5.0
## 5534      2505 1999    3.0
## 5535      2513 1989    1.0
## 5536      2517 1983    2.0
## 5537      2518 1982    3.0
## 5538      2520 1970    4.0
## 5539      2521 1974    3.0
## 5540      2523 1977    3.0
## 5541      2524 1974    4.0
## 5542      2528 1976    3.0
## 5543      2529 1968    4.0
## 5544      2530 1970    2.0
## 5545      2531 1973    2.0
## 5546      2532 1972    3.0
## 5547      2533 1971    2.0
## 5548      2535 1974    4.0
## 5549      2539 1999    4.0
## 5550      2551 1988    2.0
## 5551      2561 1999    4.0
## 5552      2571 1999    3.0
## 5553      2574 1999    3.0
## 5554      2577 1997    3.0
## 5555      2598 1999    4.0
## 5556      2599 1999    5.0
## 5557      2605 1999    4.0
## 5558      2611 1999    5.0
## 5559      2616 1990    3.0
## 5560      2617 1999    3.0
## 5561      2639 1981    4.0
## 5562      2640 1978    4.0
## 5563      2641 1980    4.0
## 5564      2642 1983    1.0
## 5565      2664 1956    3.0
## 5566      2671 1999    4.0
## 5567      2687 1999    5.0
## 5568      2688 1999    4.0
## 5569      2701 1999    2.0
## 5570      2702 1999    2.0
## 5571      2707 1999    3.0
## 5572      2712 1999    4.0
## 5573      2716 1984    4.0
## 5574      2729 1962    5.0
## 5575      2730 1975    4.0
## 5576      2738 1986    3.0
## 5577      2739 1985    5.0
## 5578      2741 1986    4.0
## 5579      2746 1986    4.0
## 5580      2749 1986    4.0
## 5581      2750 1987    4.0
## 5582      2757 1982    2.0
## 5583      2762 1999    5.0
## 5584      2763 1999    5.0
## 5585      2770 1999    3.0
## 5586      2782 1961    4.0
## 5587      2787 1985    4.0
## 5588      2790 1981    3.0
## 5589      2791 1980    2.0
## 5590      2793 1997    3.0
## 5591      2794 1985    3.0
## 5592      2795 1983    4.0
## 5593      2797 1988    5.0
## 5594      2802 1988    4.0
## 5595      2803 1993    4.0
## 5596      2804 1983    4.0
## 5597      2805 1999    4.0
## 5598      2819 1975    4.0
## 5599      2829 1999    4.0
## 5600      2841 1999    4.0
## 5601      2851 1980    2.0
## 5602      2852 1984    5.0
## 5603      2856 1965    4.0
## 5604      2858 1999    5.0
## 5605      2861 1999    4.0
## 5606      2871 1972    4.0
## 5607      2875 1993    4.0
## 5608      2881 1999    4.0
## 5609      2883 1999    4.0
## 5610      2890 1999    4.0
## 5611      2908 1999    4.0
## 5612      2912 1999    4.0
## 5613      2916 1990    4.0
## 5614      2917 1981    5.0
## 5615      2918 1986    5.0
## 5616      2929 1981    5.0
## 5617      2942 1983    3.0
## 5618      2944 1967    5.0
## 5619      2947 1964    4.0
## 5620      2950 1980    3.0
## 5621      2952 1996    5.0
## 5622      2956 1987    4.0
## 5623      2959 1999    4.0
## 5624      2966 1999    4.0
## 5625      2967 1956    4.0
## 5626      2971 1979    4.0
## 5627      2973 1989    5.0
## 5628      2976 1999    3.0
## 5629      2977 1999    2.0
## 5630      2985 1987    4.0
## 5631      2987 1988    5.0
## 5632      2989 1981    4.0
## 5633      2991 1973    4.0
## 5634      3006 1999    5.0
## 5635      3015 1978    3.0
## 5636      3019 1989    3.0
## 5637      3020 1993    4.0
## 5638      3032 1971    4.0
## 5639      3035 1955    4.0
## 5640      3038 1957    5.0
## 5641      3039 1983    4.0
## 5642      3044 1991    3.0
## 5643      3053 1999    4.0
## 5644      3063 1992    2.0
## 5645      3068 1982    5.0
## 5646      3071 1988    4.0
## 5647      3072 1987    4.0
## 5648      3074 1972    4.0
## 5649      3081 1999    3.0
## 5650      3082 1999    3.0
## 5651      3087 1988    2.0
## 5652      3095 1940    3.0
## 5653      3098 1984    4.0
## 5654      3101 1987    5.0
## 5655      3102 1985    5.0
## 5656      3104 1988    4.0
## 5657      3105 1990    4.0
## 5658      3107 1991    4.0
## 5659      3108 1991    2.0
## 5660      3111 1984    5.0
## 5661      3114 1999    5.0
## 5662      3120 1992    4.0
## 5663      3130 1990    3.0
## 5664      3138 1988    3.0
## 5665      3141 1990    4.0
## 5666      3144 1966    3.0
## 5667      3147 1999    4.0
## 5668      3152 1971    4.0
## 5669      3156 1999    4.0
## 5670      3160 1999    5.0
## 5671      3167 1971    4.0
## 5672      3169 1985    3.0
## 5673      3173 1999    3.0
## 5674      3174 1999    4.0
## 5675      3176 1999    4.0
## 5676      3185 1999    3.0
## 5677      3197 1988    4.0
## 5678      3198 1973    5.0
## 5679      3204 1978    4.0
## 5680      3206 1984    4.0
## 5681      3210 1982    4.0
## 5682      3218 1991    1.0
## 5683      3219 1990    4.0
## 5684      3244 1977    4.0
## 5685      3246 1992    5.0
## 5686      3247 1992    3.0
## 5687      3249 1992    4.0
## 5688      3252 1992    4.0
## 5689      3253 1992    4.0
## 5690      3255 1992    4.0
## 5691      3256 1992    4.0
## 5692      3257 1992    3.0
## 5693      3258 1992    3.0
## 5694      3263 1992    4.0
## 5695      3269 1992    3.0
## 5696      3274 1992    4.0
## 5697      3286 2000    2.0
## 5698      3296 1967    4.0
## 5699      3298 2000    5.0
## 5700      3308 1984    4.0
## 5701      3316 2000    2.0
## 5702      3334 1948    4.0
## 5703      3354 2000    4.0
## 5704      3358 1991    5.0
## 5705      3359 1979    4.0
## 5706      3360 1986    5.0
## 5707      3361 1988    4.0
## 5708      3362 1975    5.0
## 5709      3363 1973    4.0
## 5710      3370 1988    4.0
## 5711      3385 1985    2.0
## 5712      3386 1991    4.0
## 5713      3391 1987    3.0
## 5714      3394 1987    3.0
## 5715      3395 1987    4.0
## 5716      3418 1991    4.0
## 5717      3420 1979    4.0
## 5718      3421 1978    4.0
## 5719      3426 1991    4.0
## 5720      3428 1979    4.0
## 5721      3441 1984    2.0
## 5722      3445 1978    3.0
## 5723      3448 1987    4.0
## 5724      3451 1967    4.0
## 5725      3468 1961    5.0
## 5726      3476 1990    2.0
## 5727      3478 1987    4.0
## 5728      3483 2000    3.0
## 5729      3489 1991    4.0
## 5730      3494 1969    3.0
## 5731      3498 1978    4.0
## 5732      3499 1990    4.0
## 5733      3500 1992    4.0
## 5734      3504 1976    4.0
## 5735      3505 1987    4.0
## 5736      3506 1979    3.0
## 5737      3507 1968    4.0
## 5738      3513 2000    5.0
## 5739      3524 1981    3.0
## 5740      3526 1989    4.0
## 5741      3528 1991    2.0
## 5742      3529 1981    4.0
## 5743      3535 2000    3.0
## 5744      3536 2000    4.0
## 5745      3537 2000    4.0
## 5746      3543 1982    5.0
## 5747      3545 1972    4.0
## 5748      3546 1962    4.0
## 5749      3548 1958    4.0
## 5750      3549 1955    4.0
## 5751      3551 1976    4.0
## 5752      3556 1999    4.0
## 5753      3557 1992    4.0
## 5754      3566 2000    2.0
## 5755      3578 2000    4.0
## 5756      3608 1985    4.0
## 5757      3613 1988    4.0
## 5758      3614 1992    4.0
## 5759      3618 2000    4.0
## 5760      3638 1979    4.0
## 5761      3649 1980    4.0
## 5762      3671 1974    4.0
## 5763      3683 1984    5.0
## 5764      3684 1989    4.0
## 5765      3685 1985    4.0
## 5766      3686 1990    4.0
## 5767      3688 1982    2.0
## 5768      3701 1988    3.0
## 5769      3702 1979    4.0
## 5770      3704 1985    3.0
## 5771      3712 1991    4.0
## 5772      3713 1990    5.0
## 5773      3724 1978    4.0
## 5774      3734 1981    4.0
## 5775      3735 1973    5.0
## 5776      3751 2000    4.0
## 5777      3753 2000    5.0
## 5778      3763 1986    3.0
## 5779      3783 1998    4.0
## 5780      3791 1984    4.0
## 5781      3804 1979    2.0
## 5782      3812 1972    3.0
## 5783      3826 2000    4.0
## 5784      3834 1980    4.0
## 5785      3844 1989    4.0
## 5786      3852 2000    4.0
## 5787      3859 2000    4.0
## 5788      3873 1965    4.0
## 5789      3897 2000    4.0
## 5790      3927 1966    4.0
## 5791      3948 2000    4.0
## 5792      3952 2000    5.0
## 5793      3957 1971    2.0
## 5794      3983 2000    4.0
## 5795      3994 2000    4.0
## 5796      3996 2000    4.0
## 5797      4002 1987    4.0
## 5798      4007 1987    5.0
## 5799      4008 1989    5.0
## 5800      4009 1988    4.0
## 5801      4011 2000    4.0
## 5802      4012 1988    2.0
## 5803      4014 2000    5.0
## 5804      4018 2000    4.0
## 5805      4022 2000    4.0
## 5806      4025 2000    3.0
## 5807      4027 2000    5.0
## 5808      4029 2000    4.0
## 5809      4033 2000    5.0
## 5810      4034 2000    5.0
## 5811      4037 1987    5.0
## 5812      4039 1982    3.0
## 5813      4041 1982    4.0
## 5814      4055 2000    4.0
## 5815      4060 1992    4.0
## 5816      4062 1988    4.0
## 5817      4063 1992    3.0
## 5818      4085 1984    4.0
## 5819      4086 1987    4.0
## 5820      4088 1987    5.0
## 5821      4090 1987    3.0
## 5822      4102 1987    4.0
## 5823      4111 1987    4.0
## 5824      4122 1987    4.0
## 5825      4126 1987    4.0
## 5826      4128 1987    4.0
## 5827      4132 1987    2.0
## 5828      4146 2001    1.0
## 5829      4148 2001    5.0
## 5830      4167 2001    3.0
## 5831      4190 1960    4.0
## 5832      4211 1990    5.0
## 5833      4214 1984    3.0
## 5834      4226 2000    3.0
## 5835      4228 2001    3.0
## 5836      4239 2001    5.0
## 5837      4246 2001    4.0
## 5838      4262 1983    4.0
## 5839      4263 1962    5.0
## 5840      4276 1985    4.0
## 5841      4280 1982    4.0
## 5842      4291 1980    3.0
## 5843      4292 1979    4.0
## 5844      4306 2001    5.0
## 5845      4308 2001    5.0
## 5846      4310 2001    4.0
## 5847      4316 1978    3.0
## 5848      4318 1990    4.0
## 5849      4321 1991    4.0
## 5850      4322 1988    4.0
## 5851      4326 1988    5.0
## 5852      4333 1987    3.0
## 5853      4344 2001    4.0
## 5854      4345 2001    4.0
## 5855      4352 1989    3.0
## 5856      4354 1992    4.0
## 5857      4361 1982    4.0
## 5858      4370 2001    4.0
## 5859      4378 2000    3.0
## 5860      4396 1981    2.0
## 5861      4406 1962    5.0
## 5862      4409 1991    2.0
## 5863      4410 1986    4.0
## 5864      4447 2001    4.0
## 5865      4464 1988    4.0
## 5866      4465 1988    5.0
## 5867      4474 1988    3.0
## 5868      4482 1988    4.0
## 5869      4486 1988    4.0
## 5870      4487 1988    3.0
## 5871      4488 1988    3.0
## 5872      4489 1988    4.0
## 5873      4491 1988    2.0
## 5874      4495 1988    3.0
## 5875      4496 1988    4.0
## 5876      4498 1988    4.0
## 5877      4499 1988    4.0
## 5878      4503 1988    4.0
## 5879      4522 1988    5.0
## 5880      4524 1988    4.0
## 5881      4526 1988    3.0
## 5882      4528 1988    2.0
## 5883      4557 1988    5.0
## 5884      4564 1989    4.0
## 5885      4570 1989    4.0
## 5886      4573 1989    4.0
## 5887      4608 1989    4.0
## 5888      4615 1989    1.0
## 5889      4617 1989    5.0
## 5890      4621 1989    3.0
## 5891      4627 1989    2.0
## 5892      4628 1989    5.0
## 5893      4629 1989    2.0
## 5894      4639 2001    4.0
## 5895      4643 2001    4.0
## 5896      4661 1989    4.0
## 5897      4681 1989    3.0
## 5898      4700 2001    4.0
## 5899      4709 1969    4.0
## 5900      4710 1976    4.0
## 5901      4713 1980    3.0
## 5902      4714 1980    2.0
## 5903      4728 2001    3.0
## 5904      4733 2001    4.0
## 5905      4751 1980    4.0
## 5906      4776 2001    4.0
## 5907      4787 1991    5.0
## 5908      4803 1971    4.0
## 5909      4815 2001    4.0
## 5910      4830 1980    4.0
## 5911      4832 1980    3.0
## 5912      4835 1980    5.0
## 5913      4881 2001    4.0
## 5914      4886 2001    4.0
## 5915      4889 2001    4.0
## 5916      4890 2001    3.0
## 5917      4896 2001    4.0
## 5918      4898 2001    4.0
## 5919      4929 1982    3.0
## 5920      4932 1980    4.0
## 5921      4941 1980    2.0
## 5922      4951 1990    3.0
## 5923      4954 1960    4.0
## 5924      4960 2000    4.0
## 5925      4963 2001    5.0
## 5926      4971 1984    4.0
## 5927      4978 2001    5.0
## 5928      4979 2001    4.0
## 5929      4993 2001    3.0
## 5930      4995 2001    5.0
## 5931      5015 2001    4.0
## 5932      5027 1990    3.0
## 5933      5043 1980    3.0
## 5934      5049 1982    4.0
## 5935      5060 1970    3.0
## 5936      5061 1984    3.0
## 5937      5064 2002    5.0
## 5938      5111 1993    4.0
## 5939      5120 1972    4.0
## 5940      5122 1971    4.0
## 5941      5125 1980    2.0
## 5942      5127 2002    3.0
## 5943      5152 2002    5.0
## 5944      5161 1994    4.0
## 5945      5172 2002    4.0
## 5946      5187 1980    4.0
## 5947      5193 1980    3.0
## 5948      5198 1980    4.0
## 5949      5208 1980    4.0
## 5950      5214 1977    3.0
## 5951      5237 1981    4.0
## 5952      5247 1977    3.0
## 5953      5250 1980    4.0
## 5954      5269 2001    1.0
## 5955      5276 1984    4.0
## 5956      5277 1984    2.0
## 5957      5293 2002    5.0
## 5958      5297 2002    4.0
## 5959      5299 2002    5.0
## 5960      5303 1990    3.0
## 5961      5307 1990    3.0
## 5962      5308 1987    4.0
## 5963      5309 1990    3.0
## 5964      5334 1990    4.0
## 5965      5335 1985    2.0
## 5966      5344 1984    4.0
## 5967      5359 1991    4.0
## 5968      5364 2002    4.0
## 5969      5366 1991    1.0
## 5970      5382 1978    2.0
## 5971      5388 2002    4.0
## 5972      5391 2001    4.0
## 5973      5400 2002    4.0
## 5974      5445 2002    4.0
## 5975      5452 1993    2.0
## 5976      5464 2002    5.0
## 5977      5471 1985    3.0
## 5978      5502 2002    3.0
## 5979      5506 2002    4.0
## 5980      5534 2001    4.0
## 5981      5544 1979    4.0
## 5982      5548 1986    4.0
## 5983      5561 1991    4.0
## 5984      5564 2002    3.0
## 5985      5581 1990    3.0
## 5986      5620 2002    4.0
## 5987      5630 2002    5.0
## 5988      5655 1981    3.0
## 5989      5670 2002    4.0
## 5990      5679 2002    1.0
## 5991      5680 2002    4.0
## 5992      5689 1991    4.0
## 5993      5694 1983    2.0
## 5994      5696 1980    4.0
## 5995      5699 1980    4.0
## 5996      5703 1980    3.0
## 5997      5705 1980    4.0
## 5998      5707 1981    4.0
## 5999      5712 1981    4.0
## 6000      5723 1981    4.0
## 6001      5729 1981    3.0
## 6002      5732 1981    4.0
## 6003      5742 1981    4.0
## 6004      5745 1981    4.0
## 6005      5773 1981    3.0
## 6006      5812 2002    5.0
## 6007      5843 1991    4.0
## 6008      5846 1981    4.0
## 6009      5847 1981    5.0
## 6010      5854 1981    4.0
## 6011      5857 1981    1.0
## 6012      5859 1981    2.0
## 6013      5869 1981    4.0
## 6014      5900 2002    3.5
## 6015      5902 2002    4.0
## 6016      5923 1982    3.0
## 6017      5926 1982    3.0
## 6018      5927 1982    4.0
## 6019      5933 1982    4.0
## 6020      5938 1982    4.0
## 6021      5940 1982    3.0
## 6022      5945 2002    4.0
## 6023      5956 2002    5.0
## 6024      5959 2002    3.0
## 6025      5960 1990    5.0
## 6026      5961 1990    4.0
## 6027      5962 1993    3.0
## 6028      5968 1990    4.0
## 6029      5989 2002    5.0
## 6030      5991 2002    5.0
## 6031      6001 1983    5.0
## 6032      6027 1991    4.0
## 6033      6084 1982    3.0
## 6034      6096 1982    3.0
## 6035      6101 1982    2.0
## 6036      6103 1982    2.0
## 6037      6115 1982    3.0
## 6038      6127 1982    4.0
## 6039      6180 1990    3.0
## 6040      6186 2003    2.0
## 6041      6212 2003    3.0
## 6042      6233 1993    3.0
## 6043      6234 1977    3.0
## 6044      6237 1953    4.0
## 6045      6238 1990    4.0
## 6046      6240 1991    3.0
## 6047      6263 2003    3.0
## 6048      6281 2002    4.0
## 6049      6308 1986    4.0
## 6050      6318 1991    3.0
## 6051      6345 1985    4.0
## 6052      6413 1979    3.5
## 6053      6419 1990    5.0
## 6054      6422 1965    4.0
## 6055      6436 1993    5.0
## 6056      6440 1991    4.0
## 6057      6452 1958    5.0
## 6058      6473 1986    4.0
## 6059      6565 2003    4.5
## 6060        31 1995    4.0
## 6061        32 1995    4.5
## 6062        50 1995    3.5
## 6063       111 1976    4.5
## 6064       260 1977    4.0
## 6065       296 1994    4.5
## 6066       318 1994    4.0
## 6067       372 1994    3.5
## 6068       379 1994    4.0
## 6069       527 1993    5.0
## 6070       541 1982    4.0
## 6071       778 1996    3.5
## 6072       858 1972    4.5
## 6073       904 1954    4.0
## 6074      1089 1992    4.5
## 6075      1091 1989    3.0
## 6076      1186 1989    2.0
## 6077      1197 1987    4.5
## 6078      1206 1971    4.5
## 6079      1208 1979    4.5
## 6080      1221 1974    4.5
## 6081      1234 1973    4.5
## 6082      1299 1984    4.0
## 6083      1378 1988    4.0
## 6084      1416 1996    3.0
## 6085      1957 1981    4.5
## 6086      1967 1986    4.5
## 6087      2028 1998    4.5
## 6088      2248 1989    4.0
## 6089      2329 1998    4.5
## 6090      2502 1999    4.0
## 6091      2571 1999    4.5
## 6092      2692 1998    4.5
## 6093      2959 1999    5.0
## 6094      2997 1999    4.5
## 6095      3072 1987    3.0
## 6096      3087 1988    3.5
## 6097      3698 1987    4.5
## 6098      3755 2000    4.0
## 6099      3897 2000    4.0
## 6100      3911 2000    4.0
## 6101      4886 2001    4.0
## 6102      4979 2001    3.5
## 6103      4993 2001    4.5
## 6104      5418 2002    4.5
## 6105      5952 2002    4.5
## 6106      5995 2002    3.5
## 6107      6539 2003    3.5
## 6108      6711 2003    4.5
## 6109      7153 2003    4.5
## 6110      7361 2004    5.0
## 6111      8961 2004    4.0
## 6112     33154 2005    4.0
## 6113     33794 2005    4.5
## 6114     44191 2006    4.0
## 6115     44195 2006    4.0
## 6116     48394 2006    4.5
## 6117     50872 2007    4.5
## 6118     54503 2007    4.0
## 6119     55280 2007    4.5
## 6120     55820 2007    4.0
## 6121     58559 2008    5.0
## 6122     59315 2008    5.0
## 6123     64614 2008    4.5
## 6124     72226 2009    4.0
## 6125     72998 2009    4.0
## 6126     74789 2010    4.5
## 6127     76093 2010    3.5
## 6128     76251 2010    5.0
## 6129         2 1995    4.0
## 6130        19 1995    3.0
## 6131        31 1995    4.0
## 6132        44 1995    3.0
## 6133       110 1995    5.0
## 6134       150 1995    5.0
## 6135       153 1995    4.0
## 6136       158 1995    3.0
## 6137       165 1995    4.0
## 6138       168 1995    3.0
## 6139       173 1995    3.0
## 6140       204 1995    4.0
## 6141       208 1995    4.0
## 6142       225 1994    2.0
## 6143       231 1994    5.0
## 6144       252 1994    3.0
## 6145       261 1994    4.0
## 6146       266 1994    3.0
## 6147       292 1995    5.0
## 6148       296 1994    2.0
## 6149       300 1994    3.0
## 6150       316 1994    3.0
## 6151       317 1994    3.0
## 6152       333 1995    3.0
## 6153       337 1993    4.0
## 6154       344 1994    4.0
## 6155       349 1994    5.0
## 6156       350 1994    3.0
## 6157       356 1994    5.0
## 6158       364 1994    3.0
## 6159       367 1994    4.0
## 6160       377 1994    4.0
## 6161       380 1994    3.0
## 6162       410 1993    3.0
## 6163       420 1994    2.0
## 6164       428 1993    3.0
## 6165       432 1994    3.0
## 6166       434 1993    3.0
## 6167       440 1993    4.0
## 6168       442 1993    4.0
## 6169       457 1993    5.0
## 6170       480 1993    5.0
## 6171       553 1993    5.0
## 6172       588 1992    3.0
## 6173       589 1991    5.0
## 6174       590 1990    5.0
## 6175       592 1989    4.0
## 6176       595 1991    2.0
## 6177        19 1995    3.0
## 6178        88 1996    3.0
## 6179       157 1995    1.0
## 6180       231 1994    3.0
## 6181       344 1994    4.0
## 6182       377 1994    2.0
## 6183       532 1994    4.0
## 6184       562 1995    4.0
## 6185       832 1996    4.0
## 6186       851 1996    1.0
## 6187       908 1959    4.0
## 6188      1060 1996    4.0
## 6189      1091 1989    4.0
## 6190      1120 1996    4.0
## 6191      1186 1989    5.0
## 6192      1196 1980    2.0
## 6193      1197 1987    4.0
## 6194      1198 1981    4.0
## 6195      1230 1977    4.0
## 6196      1258 1980    5.0
## 6197      1259 1986    4.0
## 6198      1285 1989    4.0
## 6199      1291 1989    4.0
## 6200      1347 1984    2.0
## 6201      1359 1996    3.0
## 6202      1394 1987    2.0
## 6203      1407 1996    4.0
## 6204      1717 1997    3.0
## 6205      1760 1997    1.0
## 6206      1784 1997    4.0
## 6207      1967 1986    2.0
## 6208      1974 1980    3.0
## 6209      1982 1978    4.0
## 6210      1983 1981    4.0
## 6211      1984 1982    1.0
## 6212      1994 1982    5.0
## 6213      2005 1985    4.0
## 6214      2006 1998    4.0
## 6215      2060 1998    3.0
## 6216      2064 1989    5.0
## 6217      2088 1980    2.0
## 6218      2107 1998    2.0
## 6219      2145 1986    4.0
## 6220      2170 1998    2.0
## 6221      2193 1988    2.0
## 6222      2329 1998    4.0
## 6223      2371 1985    4.0
## 6224      2395 1998    3.0
## 6225      2470 1986    4.0
## 6226      2502 1999    5.0
## 6227      2507 1999    1.0
## 6228      2541 1999    4.0
## 6229      2599 1999    4.0
## 6230      2617 1999    2.0
## 6231      2689 1999    1.0
## 6232      2706 1999    3.0
## 6233      2787 1985    4.0
## 6234      2793 1997    2.0
## 6235      2795 1983    4.0
## 6236      2888 1999    2.0
## 6237      2891 1999    1.0
## 6238      2917 1981    4.0
## 6239      2918 1986    4.0
## 6240      2926 1988    3.0
## 6241      2959 1999    4.0
## 6242      2997 1999    4.0
## 6243      3007 1999    5.0
## 6244      3157 1999    2.0
## 6245      3273 2000    2.0
## 6246      3298 2000    4.0
## 6247      3317 2000    2.0
## 6248      3408 2000    3.0
## 6249      3481 2000    3.0
## 6250      3552 1980    3.0
## 6251      3566 2000    2.0
## 6252      3568 1999    3.0
## 6253      3608 1985    4.0
## 6254      3617 2000    4.0
## 6255      3747 1999    2.0
## 6256      3752 2000    2.0
## 6257      3785 2000    3.0
## 6258      3794 2000    4.0
## 6259      3852 2000    4.0
## 6260      3858 2000    3.0
## 6261      3865 2000    2.0
## 6262      3868 1988    4.0
## 6263      3893 2000    2.0
## 6264      3897 2000    3.0
## 6265      3910 2000    2.0
## 6266      3911 2000    5.0
## 6267      4016 2000    4.0
## 6268      4017 2000    4.0
## 6269      4027 2000    2.0
## 6270      4214 1984    4.0
## 6271      4247 2001    3.0
## 6272      4248 2001    1.0
## 6273      4251 2000    4.0
## 6274      4333 1987    4.0
## 6275      4340 2001    4.0
## 6276      4378 2000    3.0
## 6277      4388 2001    2.0
## 6278      4447 2001    2.0
## 6279      4450 2001    5.0
## 6280      4452 2001    2.0
## 6281      4483 1988    5.0
## 6282      4488 1988    2.0
## 6283      4502 1988    2.0
## 6284      4509 1988    4.0
## 6285      4558 1988    3.0
## 6286      4621 1989    4.0
## 6287      4622 1989    3.0
## 6288      4641 2001    3.0
## 6289      4643 2001    2.0
## 6290      4649 2001    4.0
## 6291      4652 1989    4.0
## 6292      4662 1989    4.0
## 6293      4678 1989    3.0
## 6294      4679 1989    5.0
## 6295      4718 2001    4.0
## 6296      4728 2001    3.0
## 6297      4809 1983    3.0
## 6298      4878 2001    4.0
## 6299      4890 2001    4.0
## 6300      4898 2001    4.0
## 6301      4929 1982    4.0
## 6302      4956 1980    3.0
## 6303      4963 2001    3.0
## 6304      4974 2001    3.0
## 6305      4975 2001    4.0
## 6306      4988 1987    3.0
## 6307      5015 2001    4.0
## 6308      5074 2001    4.0
## 6309      5106 2002    2.0
## 6310      5282 2002    4.0
## 6311      5339 1992    4.0
## 6312      5483 2002    4.0
## 6313      5669 2002    4.0
## 6314      5673 2002    5.0
## 6315         6 1995    3.0
## 6316        21 1995    4.0
## 6317        32 1995    5.0
## 6318        39 1995    3.0
## 6319        47 1995    5.0
## 6320        50 1995    5.0
## 6321        70 1996    4.0
## 6322       110 1995    4.0
## 6323       150 1995    4.0
## 6324       198 1995    3.0
## 6325       253 1994    4.0
## 6326       260 1977    4.0
## 6327       288 1994    4.0
## 6328       293 1994    4.0
## 6329       296 1994    5.0
## 6330       316 1994    4.0
## 6331       337 1993    5.0
## 6332       377 1994    3.0
## 6333       407 1995    3.0
## 6334       442 1993    3.0
## 6335       482 1994    5.0
## 6336       527 1993    4.0
## 6337       541 1982    4.0
## 6338       555 1993    5.0
## 6339       556 1993    4.0
## 6340       562 1995    4.0
## 6341       581 1995    4.0
## 6342       589 1991    5.0
## 6343       593 1991    4.0
## 6344       595 1991    4.0
## 6345       599 1969    3.0
## 6346       608 1996    4.0
## 6347       610 1981    4.0
## 6348       678 1993    5.0
## 6349       724 1996    4.0
## 6350       750 1964    4.0
## 6351       858 1972    4.0
## 6352       912 1942    5.0
## 6353       913 1941    5.0
## 6354       919 1939    3.0
## 6355       923 1941    5.0
## 6356       924 1968    5.0
## 6357       940 1938    5.0
## 6358       969 1951    4.0
## 6359      1036 1988    4.0
## 6360      1059 1996    5.0
## 6361      1089 1992    4.0
## 6362      1090 1986    4.0
## 6363      1092 1992    4.0
## 6364      1097 1982    3.0
## 6365      1103 1955    4.0
## 6366      1104 1951    4.0
## 6367      1120 1996    3.0
## 6368      1129 1981    4.0
## 6369      1130 1980    3.0
## 6370      1147 1996    4.0
## 6371      1178 1957    5.0
## 6372      1179 1990    1.0
## 6373      1193 1975    4.0
## 6374      1196 1980    3.0
## 6375      1198 1981    4.0
## 6376      1200 1986    4.0
## 6377      1201 1966    4.0
## 6378      1204 1962    5.0
## 6379      1206 1971    5.0
## 6380      1207 1962    5.0
## 6381      1208 1979    5.0
## 6382      1213 1990    5.0
## 6383      1214 1979    5.0
## 6384      1215 1993    3.0
## 6385      1219 1960    5.0
## 6386      1220 1980    3.0
## 6387      1221 1974    4.0
## 6388      1222 1987    5.0
## 6389      1231 1983    4.0
## 6390      1234 1973    3.0
## 6391      1240 1984    5.0
## 6392      1247 1967    5.0
## 6393      1250 1957    4.0
## 6394      1252 1974    4.0
## 6395      1253 1951    4.0
## 6396      1254 1948    5.0
## 6397      1258 1980    4.0
## 6398      1259 1986    4.0
## 6399      1262 1963    4.0
## 6400      1263 1978    4.0
## 6401      1267 1962    5.0
## 6402      1270 1985    3.0
## 6403      1272 1970    4.0
## 6404      1276 1967    5.0
## 6405      1287 1959    5.0
## 6406      1298 1982    3.0
## 6407      1299 1984    4.0
## 6408      1320 1992    3.0
## 6409      1321 1981    4.0
## 6410      1339 1992    4.0
## 6411      1340 1935    3.0
## 6412      1358 1996    5.0
## 6413      1387 1975    3.0
## 6414      1396 1992    4.0
## 6415      1407 1996    4.0
## 6416      1464 1997    1.0
## 6417      1527 1997    3.0
## 6418      1580 1997    3.0
## 6419      1589 1997    4.0
## 6420      1597 1997    3.0
## 6421      1610 1990    4.0
## 6422      1617 1997    4.0
## 6423      1645 1997    3.0
## 6424      1653 1997    4.0
## 6425      1676 1997    3.0
## 6426      1690 1997    3.0
## 6427      1754 1998    3.0
## 6428      1923 1998    4.0
## 6429      1931 1935    5.0
## 6430      1952 1969    2.0
## 6431      1954 1976    3.0
## 6432      1965 1984    3.0
## 6433      1997 1973    5.0
## 6434      2009 1973    4.0
## 6435      2028 1998    4.0
## 6436      2064 1989    5.0
## 6437      2076 1986    5.0
## 6438      2105 1982    4.0
## 6439      2288 1982    5.0
## 6440      2289 1992    5.0
## 6441      2311 1984    4.0
## 6442      2338 1998    2.0
## 6443      2353 1998    3.0
## 6444      2366 1933    4.0
## 6445      2396 1998    4.0
## 6446      2407 1985    3.0
## 6447      2527 1973    4.0
## 6448      2528 1976    3.0
## 6449      2529 1968    4.0
## 6450      2553 1960    3.0
## 6451      2571 1999    5.0
## 6452      2599 1999    4.0
## 6453      2644 1931    4.0
## 6454      2648 1931    4.0
## 6455      2657 1975    4.0
## 6456      2662 1953    4.0
## 6457      2716 1984    2.0
## 6458      2762 1999    4.0
## 6459      2793 1997    3.0
## 6460      2797 1988    3.0
## 6461      2858 1999    4.0
## 6462      2863 1964    4.0
## 6463      2871 1972    4.0
## 6464      2901 1979    4.0
## 6465      2908 1999    5.0
## 6466      2916 1990    4.0
## 6467      2921 1973    4.0
## 6468      2944 1967    3.0
## 6469      2949 1962    3.0
## 6470      2951 1964    4.0
## 6471      2971 1979    4.0
## 6472      2985 1987    3.0
## 6473      2987 1988    4.0
## 6474      3032 1971    4.0
## 6475      3035 1955    5.0
## 6476      3062 1962    4.0
## 6477      3066 1970    3.0
## 6478      3074 1972    4.0
## 6479      3168 1969    4.0
## 6480      3196 1953    5.0
## 6481      3256 1992    3.0
## 6482      3286 2000    1.0
## 6483      3361 1988    4.0
## 6484      3386 1991    4.0
## 6485      3418 1991    3.0
## 6486      3467 1963    4.0
## 6487      3468 1961    4.0
## 6488      3471 1977    4.0
## 6489      3504 1976    5.0
## 6490      3508 1976    4.0
## 6491      3527 1987    4.0
## 6492      3551 1976    4.0
## 6493      3634 1964    5.0
## 6494      3702 1979    5.0
## 6495      3703 1981    4.0
## 6496      3706 1987    4.0
## 6497      3727 1987    4.0
## 6498      3811 1980    5.0
## 6499      3917 1987    4.0
## 6500      3927 1966    4.0
## 6501      5060 1970    3.0
## 6502        24 1995    2.5
## 6503       230 1995    1.5
## 6504       247 1994    3.0
## 6505       468 1995    4.0
## 6506       724 1996    2.0
## 6507       838 1996    4.0
## 6508       914 1964    1.5
## 6509      1029 1941    1.5
## 6510      1047 1996    1.5
## 6511      1188 1992    0.5
## 6512      1231 1983    1.5
## 6513      1249 1990    2.5
## 6514      1267 1962    1.0
## 6515      2105 1982    3.5
## 6516      2278 1998    4.0
## 6517      2289 1992    3.5
## 6518      2336 1998    2.0
## 6519      2968 1981    0.5
## 6520      3072 1987    5.0
## 6521      3755 2000    2.5
## 6522         6 1995    3.0
## 6523        16 1995    3.0
## 6524        18 1995    4.0
## 6525        21 1995    3.0
## 6526        25 1995    4.0
## 6527        31 1995    3.0
## 6528        32 1995    5.0
## 6529        36 1995    4.0
## 6530        41 1995    3.0
## 6531        45 1995    4.0
## 6532        50 1995    4.0
## 6533        52 1995    3.0
## 6534        55 1995    4.0
## 6535        57 1995    4.0
## 6536        58 1994    5.0
## 6537        68 1995    4.0
## 6538       111 1976    4.0
## 6539       144 1995    4.0
## 6540       145 1995    3.0
## 6541       147 1995    3.0
## 6542       151 1995    3.0
## 6543       165 1995    3.0
## 6544       216 1995    3.0
## 6545       223 1994    5.0
## 6546       232 1994    5.0
## 6547       236 1995    3.0
## 6548       242 1994    4.0
## 6549       246 1994    4.0
## 6550       248 1994    2.0
## 6551       249 1994    4.0
## 6552       252 1994    3.0
## 6553       253 1994    4.0
## 6554       256 1994    3.0
## 6555       260 1977    5.0
## 6556       261 1994    4.0
## 6557       265 1992    5.0
## 6558       272 1994    4.0
## 6559       273 1994    3.0
## 6560       277 1994    3.0
## 6561       282 1994    3.0
## 6562       288 1994    4.0
## 6563       293 1994    5.0
## 6564       296 1994    4.0
## 6565       300 1994    4.0
## 6566       306 1994    5.0
## 6567       307 1993    5.0
## 6568       308 1994    5.0
## 6569       312 1995    3.0
## 6570       315 1994    5.0
## 6571       318 1994    4.0
## 6572       321 1993    5.0
## 6573       334 1994    4.0
## 6574       345 1994    4.0
## 6575       348 1994    3.0
## 6576       350 1994    3.0
## 6577       356 1994    3.0
## 6578       357 1994    4.0
## 6579       362 1994    4.0
## 6580       368 1994    3.0
## 6581       372 1994    3.0
## 6582       381 1994    3.0
## 6583       382 1994    3.0
## 6584       412 1993    5.0
## 6585       420 1994    3.0
## 6586       431 1993    4.0
## 6587       432 1994    3.0
## 6588       434 1993    3.0
## 6589       440 1993    3.0
## 6590       454 1993    3.0
## 6591       457 1993    3.0
## 6592       469 1993    4.0
## 6593       475 1993    4.0
## 6594       480 1993    3.0
## 6595       481 1993    4.0
## 6596       491 1993    3.0
## 6597       508 1993    4.0
## 6598       509 1993    4.0
## 6599       515 1993    3.0
## 6600       521 1993    4.0
## 6601       524 1993    3.0
## 6602       527 1993    5.0
## 6603       531 1993    4.0
## 6604       532 1994    3.0
## 6605       534 1993    4.0
## 6606       539 1993    3.0
## 6607       540 1993    3.0
## 6608       543 1993    3.0
## 6609       551 1993    3.0
## 6610       586 1990    2.0
## 6611       587 1990    3.0
## 6612       588 1992    3.0
## 6613       590 1990    3.0
## 6614       592 1989    3.0
## 6615       593 1991    4.0
## 6616       597 1990    3.0
## 6617       640 1996    3.0
## 6618       720 1996    4.0
## 6619       778 1996    5.0
## 6620       788 1996    2.0
## 6621       838 1996    4.0
## 6622      1036 1988    3.0
## 6623      1150 1982    3.0
## 6624      1356 1996    4.0
## 6625      1367 1996    3.0
## 6626         1 1995    4.0
## 6627       364 1994    5.0
## 6628       595 1991    5.0
## 6629       902 1961    2.0
## 6630       912 1942    5.0
## 6631       920 1939    5.0
## 6632       940 1938    3.0
## 6633      1193 1975    5.0
## 6634      1196 1980    3.0
## 6635      1246 1989    5.0
## 6636      1307 1989    5.0
## 6637      1907 1998    5.0
## 6638      2028 1998    4.0
## 6639      2081 1989    5.0
## 6640      2085 1961    4.0
## 6641      2273 1998    3.0
## 6642      2858 1999    4.0
## 6643      3357 1999    4.0
## 6644      3481 2000    4.0
## 6645      3538 1999    4.0
## 6646      3564 2000    4.0
## 6647      3751 2000    3.0
## 6648      3948 2000    4.0
## 6649      3977 2000    3.0
## 6650      3996 2000    5.0
## 6651      4011 2000    3.0
## 6652      4014 2000    4.0
## 6653      4015 2000    3.0
## 6654      4018 2000    5.0
## 6655      4034 2000    5.0
## 6656      4054 2001    3.0
## 6657      4069 2001    4.0
## 6658        16 1995    4.5
## 6659        47 1995    4.0
## 6660       110 1995    4.0
## 6661       293 1994    4.5
## 6662       296 1994    5.0
## 6663       306 1994    4.5
## 6664       318 1994    4.5
## 6665       356 1994    4.5
## 6666       364 1994    4.0
## 6667       365 1993    4.5
## 6668       367 1994    3.0
## 6669       527 1993    4.5
## 6670       588 1992    4.0
## 6671       590 1990    3.5
## 6672       593 1991    4.5
## 6673       778 1996    4.0
## 6674       838 1996    4.5
## 6675       858 1972    4.5
## 6676       926 1950    4.5
## 6677      1078 1971    4.5
## 6678      1080 1979    4.0
## 6679      1136 1975    4.0
## 6680      1172 1989    4.5
## 6681      1213 1990    4.0
## 6682      1221 1974    4.5
## 6683      1244 1979    4.0
## 6684      1289 1983    4.5
## 6685      1682 1998    4.0
## 6686      1704 1997    3.5
## 6687      2000 1987    3.0
## 6688      2025 1997    3.0
## 6689      2068 1982    5.0
## 6690      2075 1981    4.5
## 6691      2092 1994    3.5
## 6692      2131 1978    4.5
## 6693      2194 1987    3.0
## 6694      2324 1997    4.5
## 6695      2571 1999    4.0
## 6696      2641 1980    4.0
## 6697      2686 1998    4.0
## 6698      2750 1987    4.0
## 6699      2858 1999    4.0
## 6700      2959 1999    4.0
## 6701      3328 1999    5.0
## 6702      3578 2000    4.5
## 6703      3677 1992    5.0
## 6704      4114 1987    5.0
## 6705      4226 2000    4.5
## 6706      4422 1972    4.5
## 6707      4862 1991    3.5
## 6708      4936 1980    3.5
## 6709      4973 2001    4.0
## 6710      4993 2001    4.0
## 6711      4995 2001    4.5
## 6712      5349 2002    4.0
## 6713      5418 2002    4.5
## 6714      5952 2002    4.5
## 6715      6107 1982    5.0
## 6716      6365 2003    3.0
## 6717      6539 2003    4.0
## 6718      6870 2003    4.5
## 6719      6874 2003    4.0
## 6720      6953 2003    4.5
## 6721      7063 1972    4.5
## 6722      7089 1973    5.0
## 6723      7153 2003    4.5
## 6724      7234 1954    4.0
## 6725      7327 1966    4.5
## 6726      7396 1973    4.5
## 6727      7438 2004    3.5
## 6728      7936 1968    4.5
## 6729      7941 1955    5.0
## 6730      8154 1960    4.0
## 6731      8197 1959    4.5
## 6732      8239 1961    4.5
## 6733      8656 1988    4.5
## 6734     26587 1989    4.5
## 6735     33794 2005    4.0
## 6736     44555 2006    4.5
## 6737     48682 2006    5.0
## 6738     49530 2006    4.0
## 6739     55118 2007    4.5
## 6740     55247 2007    3.5
## 6741     58559 2008    4.5
## 6742     59447 1993    5.0
## 6743     60069 2008    4.0
## 6744     64614 2008    4.5
## 6745     69761 1994    5.0
## 6746     71180 1977    5.0
## 6747     73344 2009    4.5
## 6748     76111 2009    5.0
## 6749     79132 2010    4.0
## 6750     86781 2010    4.5
## 6751     89759 2011    5.0
## 6752     96829 2012    4.0
## 6753     97826 2012    5.0
## 6754     98587 2012    5.0
## 6755    100843 2012    4.5
## 6756    101070 2012    3.0
## 6757    102753 2013    5.0
## 6758    103980 2013    4.0
## 6759    105197 2013    4.5
## 6760    105355 2013    4.5
## 6761    105769 2013    4.5
## 6762    106487 2013    4.5
## 6763    106782 2013    4.0
## 6764    107555 2006    5.0
## 6765    109374 2014    4.0
## 6766    110102 2014    4.0
## 6767    110586 2014    4.5
## 6768    134130 2015    4.5
## 6769         6 1995    4.0
## 6770        10 1995    5.0
## 6771        16 1995    5.0
## 6772        21 1995    3.0
## 6773        22 1995    4.0
## 6774        31 1995    3.0
## 6775        47 1995    4.0
## 6776        50 1995    3.0
## 6777        69 1995    3.0
## 6778        70 1996    5.0
## 6779        73 1995    3.0
## 6780        76 1995    3.0
## 6781       110 1995    5.0
## 6782       145 1995    3.0
## 6783       150 1995    4.0
## 6784       153 1995    3.0
## 6785       160 1995    3.0
## 6786       162 1994    5.0
## 6787       165 1995    5.0
## 6788       168 1995    3.0
## 6789       170 1995    3.0
## 6790       175 1995    3.0
## 6791       177 1995    4.0
## 6792       180 1995    5.0
## 6793       188 1995    2.0
## 6794       198 1995    5.0
## 6795       220 1995    4.0
## 6796       223 1994    4.0
## 6797       231 1994    4.0
## 6798       253 1994    4.0
## 6799       273 1994    3.0
## 6800       285 1993    4.0
## 6801       288 1994    4.0
## 6802       293 1994    4.0
## 6803       296 1994    5.0
## 6804       315 1994    4.0
## 6805       316 1994    4.0
## 6806       328 1995    5.0
## 6807       330 1995    2.0
## 6808       332 1995    3.0
## 6809       333 1995    3.0
## 6810       338 1995    3.0
## 6811       344 1994    4.0
## 6812       353 1994    5.0
## 6813       366 1994    3.0
## 6814       380 1994    5.0
## 6815       426 1993    3.0
## 6816       434 1993    4.0
## 6817       457 1993    4.0
## 6818       553 1993    4.0
## 6819       555 1993    4.0
## 6820       588 1992    3.0
## 6821       590 1990    3.0
## 6822       592 1989    3.0
## 6823       593 1991    3.0
## 6824       595 1991    3.0
## 6825       606 1995    4.0
## 6826       611 1996    5.0
## 6827       648 1996    4.0
## 6828       662 1996    5.0
## 6829       663 1996    4.0
## 6830       743 1996    4.0
## 6831        50 1995    4.5
## 6832       260 1977    4.5
## 6833      1136 1975    5.0
## 6834      1196 1980    4.5
## 6835      1197 1987    5.0
## 6836      1198 1981    4.5
## 6837      2959 1999    4.0
## 6838      4226 2000    5.0
## 6839      4993 2001    4.5
## 6840      7153 2003    4.5
## 6841      7361 2004    4.5
## 6842      8874 2004    4.5
## 6843      8961 2004    4.5
## 6844     33794 2005    4.0
## 6845     38061 2005    5.0
## 6846     44191 2006    4.5
## 6847     48516 2006    5.0
## 6848     48774 2006    5.0
## 6849     48780 2006    5.0
## 6850     49272 2006    4.5
## 6851     51255 2007    5.0
## 6852     51540 2007    4.5
## 6853     55820 2007    4.5
## 6854     58559 2008    4.5
## 6855     68157 2009    4.0
## 6856     68237 2009    4.5
## 6857     68954 2009    4.5
## 6858     70286 2009    4.5
## 6859     74458 2010    3.5
## 6860     79132 2010    4.5
## 6861     79702 2010    4.5
## 6862     99114 2012    4.0
## 6863    106920 2013    5.0
## 6864    109487 2014    4.5
## 6865    112556 2014    4.0
## 6866    116797 2014    4.0
## 6867    122882 2015    4.5
## 6868    122886 2015    4.5
## 6869    122904 2016    4.5
## 6870    127202 2015    5.0
## 6871    134130 2015    4.0
## 6872    152077 2016    5.0
## 6873    152081 2016    4.0
## 6874         2 1995    3.5
## 6875        29 1995    4.0
## 6876       110 1995    4.0
## 6877       130 1995    4.5
## 6878       165 1995    4.0
## 6879       172 1995    3.5
## 6880       173 1995    4.0
## 6881       196 1995    3.0
## 6882       208 1995    4.0
## 6883       233 1994    4.0
## 6884       253 1994    4.0
## 6885       260 1977    4.0
## 6886       262 1995    4.5
## 6887       316 1994    3.5
## 6888       327 1995    4.0
## 6889       329 1994    4.0
## 6890       332 1995    4.0
## 6891       353 1994    4.0
## 6892       356 1994    3.5
## 6893       377 1994    4.5
## 6894       380 1994    4.0
## 6895       426 1993    3.0
## 6896       435 1993    4.0
## 6897       442 1993    3.5
## 6898       457 1993    4.0
## 6899       541 1982    5.0
## 6900       592 1989    4.0
## 6901       610 1981    3.0
## 6902       648 1996    4.0
## 6903       674 1968    4.0
## 6904       736 1996    4.0
## 6905       748 1996    3.5
## 6906       780 1996    4.0
## 6907       849 1996    4.0
## 6908       917 1939    4.0
## 6909       919 1939    4.0
## 6910       924 1968    5.0
## 6911       986 1996    3.5
## 6912      1037 1992    3.5
## 6913      1073 1971    4.0
## 6914      1077 1973    4.0
## 6915      1097 1982    4.0
## 6916      1127 1989    3.5
## 6917      1129 1981    4.5
## 6918      1196 1980    4.0
## 6919      1200 1986    4.0
## 6920      1206 1971    3.5
## 6921      1210 1983    4.0
## 6922      1214 1979    4.0
## 6923      1220 1980    5.0
## 6924      1222 1987    4.0
## 6925      1240 1984    4.0
## 6926      1270 1985    4.0
## 6927      1298 1982    5.0
## 6928      1302 1989    3.0
## 6929      1320 1992    4.0
## 6930      1333 1963    2.5
## 6931      1356 1996    4.0
## 6932      1371 1979    3.5
## 6933      1372 1991    4.0
## 6934      1373 1989    4.0
## 6935      1374 1982    4.5
## 6936      1375 1984    4.0
## 6937      1376 1986    4.0
## 6938      1437 1993    4.0
## 6939      1527 1997    4.0
## 6940      1545 1996    4.5
## 6941      1552 1997    3.5
## 6942      1580 1997    4.0
## 6943      1591 1997    4.0
## 6944      1676 1997    4.0
## 6945      1690 1997    4.0
## 6946      1719 1997    4.0
## 6947      1747 1997    3.0
## 6948      1748 1998    4.0
## 6949      1772 1998    4.0
## 6950      1779 1998    3.5
## 6951      1876 1998    3.5
## 6952      1880 1997    4.0
## 6953      1917 1998    4.0
## 6954      1965 1984    3.0
## 6955      1997 1973    4.0
## 6956      2001 1989    3.0
## 6957      2003 1984    2.5
## 6958      2009 1973    4.5
## 6959      2011 1989    4.0
## 6960      2012 1990    3.5
## 6961      2025 1997    5.0
## 6962      2105 1982    5.0
## 6963      2117 1984    5.0
## 6964      2174 1988    4.0
## 6965      2232 1997    3.5
## 6966      2311 1984    4.0
## 6967      2322 1998    3.5
## 6968      2454 1958    3.0
## 6969      2455 1986    3.0
## 6970      2520 1970    3.0
## 6971      2521 1974    3.5
## 6972      2522 1977    4.0
## 6973      2528 1976    4.0
## 6974      2529 1968    4.0
## 6975      2530 1970    3.0
## 6976      2531 1973    3.0
## 6977      2532 1972    3.0
## 6978      2536 1979    2.5
## 6979      2553 1960    4.0
## 6980      2571 1999    5.0
## 6981      2600 1999    3.5
## 6982      2640 1978    4.0
## 6983      2641 1980    3.5
## 6984      2642 1983    3.5
## 6985      2729 1962    3.5
## 6986      2746 1986    3.5
## 6987      2808 1992    4.0
## 6988      2858 1999    4.5
## 6989      2877 1975    4.0
## 6990      2916 1990    3.5
## 6991      2918 1986    4.0
## 6992      2950 1980    4.0
## 6993      3033 1987    4.0
## 6994      3156 1999    4.0
## 6995      3175 1999    4.0
## 6996      3253 1992    3.0
## 6997      3300 2000    4.0
## 6998      3354 2000    3.5
## 6999      3471 1977    4.0
## 7000      3479 1985    4.0
## 7001      3556 1999    4.0
## 7002      3593 2000    4.0
## 7003      3638 1979    3.5
## 7004      3698 1987    3.5
## 7005      3699 1984    3.5
## 7006      3702 1979    4.0
## 7007      3703 1981    4.0
## 7008      3704 1985    4.0
## 7009      3745 2000    3.5
## 7010      3793 2000    4.0
## 7011      3802 1992    3.5
## 7012      3863 2000    3.5
## 7013      3910 2000    4.0
## 7014      3937 1984    3.0
## 7015      3986 2000    3.5
## 7016      4039 1982    4.0
## 7017      4232 2001    4.0
## 7018      4306 2001    4.0
## 7019      4370 2001    4.0
## 7020      4443 1981    3.5
## 7021      4446 2001    4.0
## 7022      4553 1988    4.5
## 7023      4625 1989    3.5
## 7024      4678 1989    4.0
## 7025      4691 1985    2.5
## 7026      4789 1974    5.0
## 7027      4811 1979    4.0
## 7028      4874 2001    3.5
## 7029      4936 1980    4.0
## 7030      5219 2002    4.0
## 7031      5349 2002    3.5
## 7032      5445 2002    4.0
## 7033      5459 2002    3.5
## 7034      5463 2002    3.5
## 7035      5490 1976    3.5
## 7036      5518 1981    4.5
## 7037      5522 1975    4.0
## 7038      5618 2001    4.0
## 7039      5694 1983    3.5
## 7040      5705 1980    4.0
## 7041      5881 2002    3.0
## 7042      5903 2002    4.5
## 7043      5981 1962    4.0
## 7044      6116 1982    4.5
## 7045      6157 2003    4.0
## 7046      6264 2003    3.5
## 7047      6303 1971    4.0
## 7048      6316 1978    4.5
## 7049      6333 2003    4.0
## 7050      6365 2003    4.0
## 7051      6385 2002    4.5
## 7052      6502 2002    3.5
## 7053      6537 2003    3.5
## 7054      6541 2003    4.0
## 7055      6645 1971    4.0
## 7056      6678 1990    3.0
## 7057      6725 1978    5.0
## 7058      6863 2003    4.0
## 7059      6934 2003    4.0
## 7060      6951 2003    4.0
## 7061      6979 1983    4.5
## 7062      7001 1978    4.0
## 7063      7060 1973    4.5
## 7064      7164 2003    4.5
## 7065      7373 2004    4.0
## 7066      7817 1974    3.0
## 7067      7991 1975    4.0
## 7068      8371 2004    4.0
## 7069      8499 1978    4.0
## 7070      8633 1984    4.0
## 7071      8644 2004    4.5
## 7072      8861 2004    4.0
## 7073       110 1995    4.0
## 7074       165 1995    3.5
## 7075       260 1977    4.5
## 7076       296 1994    5.0
## 7077       318 1994    5.0
## 7078       349 1994    4.0
## 7079       356 1994    4.5
## 7080       380 1994    3.5
## 7081       457 1993    5.0
## 7082       480 1993    5.0
## 7083       508 1993    3.5
## 7084       527 1993    4.5
## 7085       588 1992    4.0
## 7086       589 1991    5.0
## 7087       648 1996    4.0
## 7088       733 1996    3.5
## 7089       780 1996    4.5
## 7090      1036 1988    5.0
## 7091      1097 1982    5.0
## 7092      1196 1980    5.0
## 7093      1198 1981    5.0
## 7094      1200 1986    5.0
## 7095      1210 1983    4.0
## 7096      1291 1989    4.5
## 7097      1320 1992    1.5
## 7098      1370 1990    3.5
## 7099      1527 1997    4.0
## 7100      1573 1997    3.0
## 7101      1704 1997    4.5
## 7102      1721 1997    4.0
## 7103      2028 1998    4.0
## 7104      2571 1999    3.5
## 7105      2916 1990    4.0
## 7106      2985 1987    4.0
## 7107      3793 2000    3.5
## 7108      3996 2000    2.5
## 7109      4886 2001    4.0
## 7110      4993 2001    5.0
## 7111      5349 2002    4.0
## 7112      5952 2002    4.5
## 7113      7153 2003    4.0
## 7114      7502 2001    5.0
## 7115      8636 2004    4.0
## 7116      8961 2004    4.0
## 7117     33794 2005    3.5
## 7118     40815 2005    3.5
## 7119     44191 2006    4.0
## 7120     48394 2006    4.0
## 7121     48516 2006    4.5
## 7122     58559 2008    4.5
## 7123     59315 2008    4.0
## 7124     63082 2008    3.0
## 7125     68358 2009    3.5
## 7126     69844 2009    4.5
## 7127     70286 2009    4.5
## 7128     73017 2009    4.0
## 7129     74458 2010    3.5
## 7130     76093 2010    4.5
## 7131     79132 2010    4.5
## 7132     87232 2011    4.0
## 7133     89745 2012    4.0
## 7134     91529 2012    3.5
## 7135     98809 2012    3.0
## 7136    106489 2013    2.0
## 7137    106782 2013    4.5
## 7138    109487 2014    4.0
## 7139    111759 2014    3.0
## 7140    112852 2014    3.5
## 7141    122886 2015    4.5
## 7142    134853 2015    2.0
## 7143         1 1995    4.0
## 7144        34 1995    4.0
## 7145        39 1995    4.0
## 7146        70 1996    2.0
## 7147       104 1996    2.0
## 7148       110 1995    5.0
## 7149       216 1995    1.0
## 7150       223 1994    3.0
## 7151       231 1994    3.0
## 7152       339 1995    4.0
## 7153       356 1994    5.0
## 7154       480 1993    4.0
## 7155       500 1993    3.0
## 7156       524 1993    3.0
## 7157       527 1993    5.0
## 7158       585 1995    2.0
## 7159       588 1992    3.0
## 7160       589 1991    3.0
## 7161       608 1996    5.0
## 7162       837 1996    4.0
## 7163       838 1996    4.0
## 7164      1035 1965    4.0
## 7165      1210 1983    3.0
## 7166      1380 1978    3.0
## 7167      1457 1997    3.0
## 7168      1476 1997    4.0
## 7169      1513 1997    4.0
## 7170      1517 1997    1.0
## 7171      1544 1997    2.0
## 7172      1569 1997    5.0
## 7173      1580 1997    4.0
## 7174      1612 1997    4.0
## 7175      1673 1997    3.0
## 7176      1726 1997    1.0
## 7177      1777 1998    3.0
## 7178      1806 1998    1.0
## 7179      1821 1998    3.0
## 7180      1883 1998    3.0
## 7181      1895 1998    2.0
## 7182      1907 1998    3.0
## 7183      1958 1983    4.0
## 7184      1968 1985    3.0
## 7185      1997 1973    5.0
## 7186      2000 1987    2.0
## 7187      2003 1984    2.0
## 7188      2004 1990    1.0
## 7189      2054 1989    2.0
## 7190      2081 1989    4.0
## 7191      2082 1992    2.0
## 7192      2109 1979    3.0
## 7193      2144 1984    3.0
## 7194      2150 1980    3.0
## 7195      2160 1968    1.0
## 7196      2291 1990    3.0
## 7197      2321 1998    4.0
## 7198      2355 1998    4.0
## 7199      2384 1998    4.0
## 7200      2390 1998    3.0
## 7201      2395 1998    3.0
## 7202      2396 1998    4.0
## 7203      2447 1999    3.0
## 7204      2454 1958    3.0
## 7205      2455 1986    3.0
## 7206      2496 1999    2.0
## 7207      2539 1999    2.0
## 7208      2622 1999    2.0
## 7209      2671 1999    4.0
## 7210      2683 1999    2.0
## 7211      2688 1999    3.0
## 7212      2690 1999    4.0
## 7213      2700 1999    2.0
## 7214      2706 1999    4.0
## 7215      2723 1999    3.0
## 7216      2770 1999    3.0
## 7217      2791 1980    2.0
## 7218      2804 1983    4.0
## 7219      2836 1999    3.0
## 7220      2858 1999    5.0
## 7221      2879 1991    4.0
## 7222      2978 1999    2.0
## 7223      2997 1999    4.0
## 7224      3005 1999    2.0
## 7225      3052 1999    3.0
## 7226      3114 1999    4.0
## 7227      3156 1999    2.0
## 7228      3160 1999    4.0
## 7229      3173 1999    3.0
## 7230      3189 1999    4.0
## 7231      3247 1992    3.0
## 7232      3254 1993    2.0
## 7233      3255 1992    3.0
## 7234      3286 2000    2.0
## 7235      3301 2000    2.0
## 7236      3409 2000    4.0
## 7237      3450 1993    2.0
## 7238      3481 2000    2.0
## 7239      3510 2000    4.0
## 7240      3515 2000    4.0
## 7241      3525 1984    3.0
## 7242      3535 2000    1.0
## 7243      3555 2000    2.0
## 7244      3624 2000    3.0
## 7245      3712 1991    2.0
## 7246      3753 2000    4.0
## 7247      3773 1990    2.0
## 7248      3868 1988    1.0
## 7249      3869 1991    1.0
## 7250      3917 1987    2.0
## 7251      3948 2000    2.0
## 7252      3969 2000    4.0
## 7253         1 1995    4.0
## 7254         3 1995    5.0
## 7255         5 1995    3.0
## 7256         6 1995    3.0
## 7257        17 1995    2.0
## 7258        25 1995    3.0
## 7259        32 1995    3.0
## 7260        62 1995    5.0
## 7261        95 1996    3.0
## 7262       104 1996    4.0
## 7263       135 1996    4.0
## 7264       141 1996    2.0
## 7265       260 1977    3.0
## 7266       494 1996    3.0
## 7267       628 1996    3.0
## 7268       637 1996    2.0
## 7269       648 1996    3.0
## 7270       733 1996    4.0
## 7271       736 1996    4.0
## 7272       780 1996    5.0
## 7273       786 1996    3.0
## 7274       788 1996    3.0
## 7275       802 1996    3.0
## 7276       805 1996    4.0
## 7277      1047 1996    3.0
## 7278       520 1993    3.5
## 7279       899 1952    4.0
## 7280       903 1958    5.0
## 7281      1199 1985    4.0
## 7282      1333 1963    4.5
## 7283      1639 1997    3.0
## 7284      1673 1997    4.5
## 7285      1748 1998    4.5
## 7286      2572 1999    2.5
## 7287      2692 1998    4.5
## 7288      2699 1990    2.5
## 7289      3052 1999    2.5
## 7290      3160 1999    4.5
## 7291      3307 1931    4.5
## 7292      3753 2000    0.5
## 7293      4235 2000    4.0
## 7294      4246 2001    1.0
## 7295      4995 2001    2.5
## 7296      5878 2002    4.0
## 7297      7064 1946    5.0
## 7298     26151 1966    5.0
## 7299        73 1995    5.0
## 7300       355 1994    5.0
## 7301       724 1996    5.0
## 7302      1270 1985    5.0
## 7303      1359 1996    4.5
## 7304      1515 1997    5.0
## 7305      1707 1997    5.0
## 7306      1965 1984    5.0
## 7307      2153 1998    5.0
## 7308      2379 1985    5.0
## 7309      2381 1987    5.0
## 7310      2383 1989    5.0
## 7311      2398 1947    5.0
## 7312      2539 1999    5.0
## 7313      2541 1999    5.0
## 7314      2605 1999    5.0
## 7315      2804 1983    5.0
## 7316      3157 1999    4.5
## 7317      3247 1992    4.0
## 7318      3868 1988    5.0
## 7319      4993 2001    5.0
## 7320      5952 2002    5.0
## 7321      7004 1990    5.0
## 7322      7153 2003    5.0
## 7323      8387 1994    5.0
## 7324     26614 1988    5.0
## 7325     33615 2005    5.0
## 7326     33794 2005    5.0
## 7327     49530 2006    5.0
## 7328     50872 2007    5.0
## 7329     58559 2008    5.0
## 7330     59018 2007    5.0
## 7331     79132 2010    5.0
## 7332     80463 2010    5.0
## 7333     81834 2010    5.0
## 7334     88125 2011    5.0
## 7335     89745 2012    5.0
## 7336     91529 2012    5.0
## 7337     98124 2012    5.0
## 7338         1 1995    5.0
## 7339         2 1995    5.0
## 7340        10 1995    4.0
## 7341        32 1995    4.0
## 7342        39 1995    3.0
## 7343        50 1995    4.0
## 7344        95 1996    3.0
## 7345       110 1995    5.0
## 7346       150 1995    4.0
## 7347       153 1995    4.0
## 7348       160 1995    3.0
## 7349       161 1995    5.0
## 7350       165 1995    4.0
## 7351       173 1995    5.0
## 7352       208 1995    3.0
## 7353       231 1994    3.0
## 7354       236 1995    4.0
## 7355       253 1994    3.0
## 7356       266 1994    3.0
## 7357       288 1994    4.0
## 7358       292 1995    5.0
## 7359       296 1994    4.0
## 7360       300 1994    3.0
## 7361       315 1994    4.0
## 7362       316 1994    5.0
## 7363       329 1994    4.0
## 7364       344 1994    3.0
## 7365       349 1994    4.0
## 7366       380 1994    4.0
## 7367       410 1993    3.0
## 7368       420 1994    3.0
## 7369       434 1993    4.0
## 7370       442 1993    3.0
## 7371       457 1993    5.0
## 7372       588 1992    4.0
## 7373       592 1989    3.0
## 7374       593 1991    5.0
## 7375       595 1991    3.0
## 7376         1 1995    4.0
## 7377         2 1995    3.5
## 7378        34 1995    3.0
## 7379       110 1995    4.0
## 7380       111 1976    3.0
## 7381       158 1995    3.0
## 7382       163 1995    3.5
## 7383       223 1994    2.5
## 7384       231 1994    3.5
## 7385       288 1994    3.5
## 7386       293 1994    5.0
## 7387       296 1994    4.5
## 7388       344 1994    3.5
## 7389       356 1994    4.0
## 7390       364 1994    4.0
## 7391       367 1994    3.5
## 7392       480 1993    3.5
## 7393       501 1993    3.5
## 7394       527 1993    4.5
## 7395       541 1982    4.0
## 7396       562 1995    3.5
## 7397       593 1991    3.5
## 7398       595 1991    3.5
## 7399       648 1996    3.5
## 7400       673 1996    3.0
## 7401       741 1995    4.0
## 7402       778 1996    4.5
## 7403       784 1996    2.5
## 7404       858 1972    4.0
## 7405       924 1968    4.5
## 7406      1097 1982    3.5
## 7407      1127 1989    3.5
## 7408      1148 1993    3.5
## 7409      1175 1991    4.0
## 7410      1185 1989    4.0
## 7411      1206 1971    3.5
## 7412      1214 1979    3.5
## 7413      1222 1987    3.5
## 7414      1240 1984    3.5
## 7415      1258 1980    4.0
## 7416      1270 1985    3.5
## 7417      1274 1988    3.5
## 7418      1293 1982    4.0
## 7419      1407 1996    2.5
## 7420      1485 1997    3.5
## 7421      1499 1997    2.5
## 7422      1527 1997    3.5
## 7423      1544 1997    3.5
## 7424      1580 1997    3.5
## 7425      1591 1997    3.0
## 7426      1676 1997    3.0
## 7427      1682 1998    3.5
## 7428      1721 1997    4.0
## 7429      1732 1998    3.5
## 7430      1784 1997    4.5
## 7431      1882 1998    3.0
## 7432      1884 1998    4.5
## 7433      1917 1998    3.5
## 7434      1921 1998    4.0
## 7435      1923 1998    3.5
## 7436      1997 1973    3.5
## 7437      2006 1998    3.0
## 7438      2167 1998    3.5
## 7439      2232 1997    3.5
## 7440      2288 1982    3.5
## 7441      2291 1990    4.0
## 7442      2294 1998    3.0
## 7443      2318 1998    3.5
## 7444      2324 1997    4.5
## 7445      2329 1998    4.5
## 7446      2355 1998    3.5
## 7447      2455 1986    2.5
## 7448      2542 1998    3.5
## 7449      2571 1999    4.5
## 7450      2617 1999    3.5
## 7451      2692 1998    3.0
## 7452      2700 1999    3.5
## 7453      2706 1999    3.5
## 7454      2710 1999    3.0
## 7455      2722 1999    2.5
## 7456      2762 1999    3.5
## 7457      2840 1999    3.0
## 7458      2959 1999    5.0
## 7459      2987 1988    3.5
## 7460      2997 1999    3.0
## 7461      3000 1997    5.0
## 7462      3114 1999    3.5
## 7463      3147 1999    4.0
## 7464      3527 1987    3.0
## 7465      3578 2000    5.0
## 7466      3677 1992    4.5
## 7467      3717 2000    3.0
## 7468      3745 2000    3.5
## 7469      3751 2000    3.0
## 7470      3793 2000    3.5
## 7471      3949 2000    4.5
## 7472      3968 2000    3.0
## 7473      4011 2000    4.0
## 7474      4016 2000    3.5
## 7475      4022 2000    3.5
## 7476      4226 2000    3.5
## 7477      4270 2001    3.0
## 7478      4306 2001    4.0
## 7479      4369 2001    3.5
## 7480      4446 2001    3.5
## 7481      4720 2001    3.0
## 7482      4878 2001    4.5
## 7483      4886 2001    3.5
## 7484      4902 2001    3.5
## 7485      4973 2001    5.0
## 7486      4975 2001    3.5
## 7487      4993 2001    4.5
## 7488      4995 2001    4.0
## 7489      5010 2001    4.0
## 7490      5146 2000    4.0
## 7491      5218 2002    4.0
## 7492      5225 2001    3.0
## 7493      5349 2002    3.5
## 7494      5459 2002    3.0
## 7495      5502 2002    3.5
## 7496      5570 1996    3.5
## 7497      5618 2001    4.5
## 7498      5669 2002    4.0
## 7499      5679 2002    3.5
## 7500      5690 1988    4.5
## 7501      5902 2002    4.0
## 7502      5903 2002    3.5
## 7503      5952 2002    4.0
## 7504      5971 1988    4.0
## 7505      5995 2002    4.0
## 7506      6016 2002    4.5
## 7507      6214 2002    3.5
## 7508      6223 2001    3.5
## 7509      6242 1998    3.0
## 7510      6283 2001    3.5
## 7511      6291 2002    3.0
## 7512      6350 1986    4.0
## 7513      6365 2003    3.5
## 7514      6373 2003    4.0
## 7515      6377 2003    4.0
## 7516      6539 2003    4.0
## 7517      6711 2003    3.0
## 7518      6857 1995    3.5
## 7519      6890 2003    3.0
## 7520      6934 2003    3.0
## 7521      6953 2003    3.5
## 7522      7099 1984    4.0
## 7523      7147 2003    3.5
## 7524      7153 2003    4.0
## 7525      7235 2001    3.0
## 7526      7254 2004    4.0
## 7527      7256 2003    4.5
## 7528      7360 2004    2.5
## 7529      7361 2004    4.5
## 7530      7373 2004    3.5
## 7531      7382 2003    3.0
## 7532      7982 2003    4.0
## 7533      8132 1992    5.0
## 7534      8157 1998    2.5
## 7535      8360 2004    3.0
## 7536      8376 2004    3.5
## 7537      8582 1992    4.0
## 7538      8636 2004    4.0
## 7539      8645 2004    3.0
## 7540      8784 2004    4.5
## 7541      8807 2004    4.0
## 7542      8874 2004    4.5
## 7543      8906 1980    2.5
## 7544      8907 2004    2.5
## 7545      8950 2004    4.5
## 7546      8957 2004    3.0
## 7547      8961 2004    3.5
## 7548      8965 2004    3.0
## 7549     26662 1989    4.0
## 7550     26776 1992    4.0
## 7551     27156 1997    4.0
## 7552     27523 2001    3.5
## 7553     27660 2003    3.5
## 7554     27713 2003    4.0
## 7555     27722 2003    2.5
## 7556     27731 2002    4.0
## 7557     27773 2003    3.5
## 7558     27800 2003    3.5
## 7559     27801 2003    3.0
## 7560     27838 2004    3.0
## 7561     27846 2003    4.5
## 7562     27850 2003    3.5
## 7563     27878 2004    4.0
## 7564     30793 2005    3.5
## 7565     30867 2004    4.0
## 7566     31410 2004    4.5
## 7567     31435 2004    5.0
## 7568     31658 2004    4.5
## 7569     31878 2004    3.0
## 7570     32031 2005    3.0
## 7571     32554 1995    3.0
## 7572     32562 2003    4.0
## 7573     32587 2005    4.5
## 7574     33154 2005    4.0
## 7575     33166 2004    3.5
## 7576     33615 2005    3.5
## 7577     33679 2005    3.5
## 7578     34323 2005    3.0
## 7579     34405 2005    3.5
## 7580     36276 2005    2.5
## 7581     36535 2005    3.5
## 7582     37729 2005    3.0
## 7583     37830 2004    3.5
## 7584     38038 2005    3.5
## 7585     40629 2005    4.5
## 7586     41569 2005    3.5
## 7587     41769 2005    3.0
## 7588     42723 2005    3.0
## 7589     44022 2006    3.0
## 7590     44191 2006    3.5
## 7591     44397 2006    2.5
## 7592     44555 2006    4.5
## 7593     44633 2005    4.0
## 7594     44828 2006    3.0
## 7595     44974 2005    3.5
## 7596     45431 2006    4.0
## 7597     45517 2006    4.0
## 7598     45720 2006    3.0
## 7599     45950 2006    4.0
## 7600     46578 2006    3.5
## 7601     46948 2006    3.5
## 7602     46976 2006    3.0
## 7603     47099 2006    3.5
## 7604     47124 2006    3.0
## 7605     47404 2004    4.0
## 7606     47610 2006    4.0
## 7607     47999 2006    4.0
## 7608     48043 2006    3.5
## 7609     48082 2006    4.0
## 7610     48385 2006    3.5
## 7611     48394 2006    4.0
## 7612     48414 2006    3.0
## 7613     48774 2006    3.0
## 7614     48780 2006    3.5
## 7615     48982 2006    3.5
## 7616     48997 2006    4.0
## 7617     49278 2006    3.5
## 7618     50583 2005    3.0
## 7619     50601 2007    4.0
## 7620     50872 2007    3.5
## 7621     51255 2007    3.5
## 7622     51540 2007    3.0
## 7623     51662 2007    4.0
## 7624     52281 2007    3.5
## 7625     52287 2007    3.0
## 7626     52319 1978    4.0
## 7627     52328 2007    2.5
## 7628     52458 2007    3.0
## 7629     52722 2007    3.0
## 7630     53121 2007    2.5
## 7631     53326 2006    2.0
## 7632     53460 2007    3.0
## 7633     53519 2007    3.0
## 7634     53883 2004    4.0
## 7635     53894 2007    4.0
## 7636     53996 2007    3.5
## 7637     54272 2007    2.5
## 7638     54503 2007    3.5
## 7639     54995 2007    4.0
## 7640     55247 2007    4.5
## 7641     55280 2007    4.0
## 7642     55442 2007    4.5
## 7643     55444 2007    4.5
## 7644     55768 2007    3.0
## 7645     55814 2007    4.0
## 7646     55908 2007    3.5
## 7647     55995 2007    3.0
## 7648     56069 2007    2.5
## 7649     56095 2007    3.0
## 7650     56145 2007    3.5
## 7651     56174 2007    3.0
## 7652     56339 2007    4.0
## 7653     56367 2007    3.5
## 7654     56607 2007    4.0
## 7655     56757 2007    3.0
## 7656     56782 2007    3.5
## 7657     56908 2007    4.0
## 7658     57274 2007    3.5
## 7659     57368 2008    4.5
## 7660     57453 2007    3.5
## 7661     57504 2006    4.0
## 7662     57640 2008    3.0
## 7663     57669 2008    4.0
## 7664     57980 2006    3.0
## 7665     58299 2008    3.5
## 7666     58347 2006    3.5
## 7667     58554 2007    3.5
## 7668     58559 2008    4.0
## 7669     59118 2008    4.5
## 7670     59141 2007    3.5
## 7671     59315 2008    4.0
## 7672     59387 2006    4.0
## 7673     59684 2006    5.0
## 7674     59784 2008    3.5
## 7675     60069 2008    4.0
## 7676     60126 2008    3.0
## 7677     60161 2008    3.5
## 7678     60291 2008    4.0
## 7679     60684 2009    3.5
## 7680     60763 2008    3.5
## 7681     61240 2008    4.5
## 7682     61323 2008    3.5
## 7683     62203 2008    4.5
## 7684     62250 2008    3.0
## 7685     62956 2008    3.5
## 7686     62999 2008    3.5
## 7687     63082 2008    3.5
## 7688     63131 2008    2.5
## 7689     63808 2008    3.5
## 7690     63859 2008    3.5
## 7691     64575 2008    4.0
## 7692     64716 2008    4.0
## 7693     64957 2008    3.5
## 7694     64969 2008    3.0
## 7695     64983 2008    3.5
## 7696     64993 2007    4.0
## 7697     65037 2007    5.0
## 7698     65261 2008    3.5
## 7699     65514 2008    4.0
## 7700     66097 2009    3.5
## 7701     66371 2008    3.5
## 7702     67197 2009    3.5
## 7703     67255 2009    4.0
## 7704     67408 2009    3.0
## 7705     67734 2009    3.0
## 7706     68157 2009    4.0
## 7707     68237 2009    4.0
## 7708     68358 2009    3.0
## 7709     68945 1997    3.5
## 7710     68954 2009    4.0
## 7711     69122 2009    4.5
## 7712     69526 2009    3.0
## 7713     69644 2009    3.5
## 7714     69712 2009    3.5
## 7715     69757 2009    4.5
## 7716     70159 2009    4.0
## 7717     70286 2009    4.5
## 7718     70533 2007    4.0
## 7719     70567 2009    4.0
## 7720     71033 2009    4.0
## 7721     71057 2009    3.5
## 7722     71264 2009    3.5
## 7723     71282 2008    3.0
## 7724     71379 2009    4.0
## 7725     71462 2009    4.0
## 7726     71468 2009    3.0
## 7727     71520 2009    3.5
## 7728     71535 2009    3.5
## 7729     71579 2009    3.5
## 7730     71899 2009    5.0
## 7731     72104 1989    3.0
## 7732     72209 2009    3.0
## 7733     72393 2009    3.5
## 7734     72731 2009    3.0
## 7735     72741 2009    3.5
## 7736     72998 2009    4.5
## 7737     73017 2009    4.0
## 7738     73268 2010    3.0
## 7739     73321 2010    3.0
## 7740     73392 2009    3.5
## 7741     73664 2008    3.0
## 7742     73881 2009    4.0
## 7743     74228 2009    3.5
## 7744     74677 2009    4.0
## 7745     74789 2010    3.5
## 7746     76093 2010    4.0
## 7747     76173 2009    5.0
## 7748     76251 2010    3.5
## 7749     77307 2009    4.0
## 7750     77427 2009    1.5
## 7751     77561 2010    3.5
## 7752     77837 2010    4.5
## 7753     78499 2010    4.0
## 7754     79029 2006    4.0
## 7755     79091 2010    4.0
## 7756     79132 2010    4.0
## 7757     79357 2009    3.5
## 7758     79702 2010    4.0
## 7759     79868 2009    3.5
## 7760     80463 2010    4.5
## 7761     80586 2010    3.5
## 7762     80831 2010    2.5
## 7763     80862 2010    3.5
## 7764     80906 2010    4.0
## 7765     81018 2010    3.5
## 7766     81562 2010    3.5
## 7767     81564 2010    3.5
## 7768     81591 2010    4.0
## 7769     81845 2010    3.5
## 7770     81847 2010    3.5
## 7771     82461 2010    3.5
## 7772     82667 2010    3.5
## 7773     83132 2010    3.5
## 7774     83134 2010    3.5
## 7775     83803 2010    3.0
## 7776     84152 2011    4.0
## 7777     84187 2009    4.5
## 7778     84772 2011    2.5
## 7779     84944 2011    4.0
## 7780     84952 2010    4.0
## 7781     85412 2010    3.5
## 7782     85414 2011    4.0
## 7783     85510 2011    3.0
## 7784     85736 2008    4.5
## 7785     85774 2010    4.0
## 7786     85788 2010    3.5
## 7787     85796 2011    3.0
## 7788     86298 2011    4.0
## 7789     86332 2011    3.5
## 7790     86347 2008    3.5
## 7791     86721 2008    3.0
## 7792     87222 2011    4.0
## 7793     87232 2011    4.0
## 7794     87306 2011    2.5
## 7795     87430 2011    3.0
## 7796     87520 2011    3.0
## 7797     88140 2011    2.5
## 7798     88744 2011    3.5
## 7799     89745 2012    3.0
## 7800     89837 2011    2.5
## 7801     90469 2011    3.0
## 7802     90531 2011    2.5
## 7803     90647 2011    3.5
## 7804     90746 2011    3.5
## 7805     91414 2011    3.0
## 7806     91529 2012    3.5
## 7807     91542 2011    3.5
## 7808     92058 2011    2.0
## 7809     92420 2012    2.5
## 7810     93272 2012    2.5
## 7811     93838 2011    3.0
## 7812     93840 2012    2.5
## 7813     95167 2012    5.0
## 7814     95311 2008    4.0
## 7815     95375 2003    3.0
## 7816     95510 2012    3.0
## 7817     95543 2012    3.0
## 7818     95858 2000    4.0
## 7819     95875 2012    3.0
## 7820     96281 2012    3.0
## 7821     96606 2011    3.0
## 7822     96610 2012    3.0
## 7823     96737 2012    4.0
## 7824     96821 2012    4.0
## 7825     97188 2012    2.5
## 7826     97225 2012    3.5
## 7827     97752 2012    4.5
## 7828     97913 2012    3.5
## 7829     97921 2012    3.5
## 7830     97938 2012    3.5
## 7831     97957 2012    4.0
## 7832     98056 2012    3.0
## 7833     98243 2012    2.5
## 7834     98809 2012    4.0
## 7835     99114 2012    4.0
## 7836     99145 2012    4.0
## 7837    100556 2012    4.0
## 7838    101142 2013    3.5
## 7839    102125 2013    2.5
## 7840    102445 2013    4.0
## 7841    103042 2013    3.5
## 7842    103228 2013    2.0
## 7843    103249 2013    2.5
## 7844    103253 2013    2.0
## 7845    103299 2012    3.5
## 7846    103335 2013    3.0
## 7847    103688 2013    3.0
## 7848    104841 2013    2.5
## 7849    106002 2013    2.5
## 7850    106072 2013    2.5
## 7851    106204 2013    3.0
## 7852    106489 2013    4.0
## 7853    106696 2013    3.5
## 7854    107406 2013    2.5
## 7855    107769 2014    2.5
## 7856    107953 2013    2.5
## 7857    108190 2014    3.0
## 7858    108945 2014    2.5
## 7859    109487 2014    3.5
## 7860    109578 2014    3.0
## 7861    109673 2014    2.5
## 7862    109846 2014    3.0
## 7863    109848 2013    2.5
## 7864    109850 2014    2.5
## 7865    110102 2014    3.5
## 7866    110127 2014    3.0
## 7867    110501 2014    3.0
## 7868    110553 2014    3.0
## 7869    110591 2013    2.5
## 7870    110655 2014    2.5
## 7871    110730 2014    3.5
## 7872    111362 2014    3.5
## 7873    111364 2014    2.5
## 7874    111659 2014    2.5
## 7875    111759 2014    4.0
## 7876    112175 2014    3.5
## 7877    112370 2014    2.5
## 7878    112515 2014    2.5
## 7879    112623 2014    3.5
## 7880    112852 2014    3.5
## 7881    113741 2013    3.0
## 7882    114180 2014    2.5
## 7883    114935 2014    3.0
## 7884    115149 2014    2.5
## 7885    115534 2014    2.0
## 7886    115617 2014    3.0
## 7887    115624 2010    3.0
## 7888    118696 2014    2.5
## 7889         2 1995    5.0
## 7890        60 1995    3.0
## 7891       161 1995    4.0
## 7892       173 1995    2.0
## 7893       258 1995    1.0
## 7894       303 1995    3.0
## 7895       329 1994    3.0
## 7896       356 1994    4.0
## 7897       421 1994    2.0
## 7898       466 1993    4.0
## 7899       524 1993    3.0
## 7900       590 1990    3.0
## 7901       592 1989    2.0
## 7902       653 1996    4.0
## 7903       674 1968    3.0
## 7904       688 1995    3.0
## 7905       733 1996    3.0
## 7906       736 1996    4.0
## 7907       750 1964    4.0
## 7908       780 1996    4.0
## 7909       897 1943    4.0
## 7910       912 1942    5.0
## 7911       919 1939    5.0
## 7912       920 1939    4.0
## 7913       952 1956    3.0
## 7914       969 1951    5.0
## 7915       976 1932    4.0
## 7916      1017 1960    3.0
## 7917      1073 1971    5.0
## 7918      1085 1958    5.0
## 7919      1127 1989    4.0
## 7920      1129 1981    3.0
## 7921      1196 1980    4.0
## 7922      1197 1987    4.0
## 7923      1198 1981    5.0
## 7924      1204 1962    5.0
## 7925      1208 1979    4.0
## 7926      1210 1983    3.0
## 7927      1242 1989    4.0
## 7928      1254 1948    4.0
## 7929      1262 1963    5.0
## 7930      1272 1970    5.0
## 7931      1287 1959    5.0
## 7932      1291 1989    5.0
## 7933      1374 1982    3.0
## 7934      1375 1984    4.0
## 7935      1376 1986    4.0
## 7936      1391 1996    3.0
## 7937      1580 1997    3.0
## 7938      1676 1997    2.0
## 7939      1927 1930    4.0
## 7940      2013 1972    1.0
## 7941      2054 1989    2.0
## 7942      2088 1980    2.0
## 7943      2094 1991    2.0
## 7944      2105 1982    3.0
## 7945      2115 1984    5.0
## 7946      2161 1984    4.0
## 7947      2202 1944    5.0
## 7948      2287 1954    5.0
## 7949      2366 1933    3.0
## 7950      2402 1985    2.0
## 7951      2406 1984    4.0
## 7952      2414 1985    3.0
## 7953      2430 1949    5.0
## 7954      2471 1988    4.0
## 7955      2524 1974    2.0
## 7956      2537 1979    1.0
## 7957      2662 1953    4.0
## 7958      2669 1959    3.0
## 7959      2748 1987    3.0
## 7960      2815 1986    1.0
## 7961      2816 1988    1.0
## 7962      2817 1992    1.0
## 7963      2871 1972    3.0
## 7964      2941 1958    3.0
## 7965      2944 1967    4.0
## 7966      2968 1981    4.0
## 7967      2987 1988    5.0
## 7968      3062 1962    4.0
## 7969      3066 1970    3.0
## 7970      3196 1953    4.0
## 7971      3247 1992    3.0
## 7972      3269 1992    2.0
## 7973      3406 1951    4.0
## 7974      3412 1988    3.0
## 7975      3417 1952    5.0
## 7976      3441 1984    2.0
## 7977      3461 1963    2.0
## 7978      3519 1978    2.0
## 7979      3628 1942    4.0
## 7980      3643 1944    4.0
## 7981      3755 2000    4.0
## 7982      3836 1970    3.0
## 7983      3927 1966    3.0
## 7984      3959 1960    4.0
## 7985      4042 1960    3.0
## 7986      4047 1993    5.0
## 7987      5060 1970    4.0
## 7988        10 1995    4.0
## 7989        21 1995    3.0
## 7990        39 1995    2.0
## 7991        47 1995    3.0
## 7992        95 1996    3.0
## 7993       110 1995    4.0
## 7994       150 1995    3.0
## 7995       160 1995    3.0
## 7996       161 1995    4.0
## 7997       165 1995    4.0
## 7998       185 1995    3.0
## 7999       208 1995    3.0
## 8000       231 1994    1.0
## 8001       253 1994    3.0
## 8002       282 1994    3.0
## 8003       292 1995    4.0
## 8004       296 1994    4.0
## 8005       315 1994    3.0
## 8006       316 1994    3.0
## 8007       337 1993    3.0
## 8008       339 1995    4.0
## 8009       344 1994    2.0
## 8010       349 1994    3.0
## 8011       356 1994    4.0
## 8012       357 1994    4.0
## 8013       367 1994    4.0
## 8014       368 1994    4.0
## 8015       377 1994    3.0
## 8016       380 1994    3.0
## 8017       420 1994    3.0
## 8018       434 1993    3.0
## 8019       440 1993    4.0
## 8020       442 1993    3.0
## 8021       454 1993    3.0
## 8022       457 1993    3.0
## 8023       480 1993    4.0
## 8024       509 1993    3.0
## 8025       527 1993    4.0
## 8026       539 1993    3.0
## 8027       553 1993    3.0
## 8028       587 1990    3.0
## 8029       589 1991    5.0
## 8030       590 1990    3.0
## 8031       597 1990    3.0
## 8032       780 1996    4.0
## 8033       786 1996    3.0
## 8034       913 1941    4.0
## 8035      1636 1997    1.0
## 8036      1888 1998    3.0
## 8037      1948 1963    4.0
## 8038      1959 1985    4.0
## 8039      1968 1985    4.0
## 8040      2369 1985    3.0
## 8041      2396 1998    2.0
## 8042      2605 1999    5.0
## 8043      2670 1958    5.0
## 8044      2683 1999    4.0
## 8045      2688 1999    4.0
## 8046      2699 1990    4.0
## 8047      2701 1999    2.0
## 8048      2713 1999    5.0
## 8049      2722 1999    5.0
## 8050      2724 1999    2.0
## 8051      2734 1986    3.0
## 8052      2761 1999    5.0
## 8053      2763 1999    4.0
## 8054      2826 1999    5.0
## 8055      2827 1999    4.0
## 8056      2840 1999    3.0
## 8057      2841 1999    5.0
## 8058      2881 1999    5.0
## 8059      2987 1988    5.0
## 8060      3157 1999    5.0
## 8061      3175 1999    4.0
## 8062      3219 1990    5.0
## 8063      3510 2000    5.0
## 8064      3543 1982    4.0
## 8065       357 1994    4.5
## 8066       365 1993    1.0
## 8067       461 1994    3.5
## 8068       866 1996    4.0
## 8069      1088 1987    4.0
## 8070      1295 1988    4.0
## 8071      1614 1997    4.0
## 8072      1639 1997    1.0
## 8073      1735 1998    5.0
## 8074      1969 1985    0.5
## 8075      2338 1998    1.0
## 8076      2396 1998    4.0
## 8077      2408 1988    0.5
## 8078      2806 1999    1.0
## 8079      2858 1999    4.5
## 8080      3155 1999    4.5
## 8081      3255 1992    4.0
## 8082      3793 2000    3.5
## 8083      3854 1999    5.0
## 8084      3967 2000    5.0
## 8085      3987 2000    1.0
## 8086      3996 2000    5.0
## 8087      4014 2000    5.0
## 8088      4228 2001    2.0
## 8089      4246 2001    5.0
## 8090      4896 2001    5.0
## 8091      4973 2001    5.0
## 8092      5222 2001    3.5
## 8093      5296 2002    2.0
## 8094      5380 2002    4.5
## 8095      5525 2001    4.0
## 8096      5791 2002    4.5
## 8097      5812 2002    4.5
## 8098      5816 2002    4.5
## 8099      5878 2002    4.0
## 8100      5992 2002    5.0
## 8101      6058 2003    1.0
## 8102      6218 2002    4.0
## 8103      6370 2002    4.5
## 8104      6539 2003    3.5
## 8105      6776 2001    3.5
## 8106      6807 1983    5.0
## 8107      6942 2003    4.0
## 8108      7160 2003    4.5
## 8109      7615 1985    4.0
## 8110      8368 2004    5.0
## 8111      8781 2004    3.5
## 8112      8918 2004    3.5
## 8113      8966 2004    4.0
## 8114      8983 2004    3.5
## 8115     27020 1998    5.0
## 8116     27721 2004    5.0
## 8117     30825 2004    3.5
## 8118     31408 2004    4.5
## 8119     37727 2005    2.0
## 8120     38886 2005    2.0
## 8121     39183 2005    4.5
## 8122     40815 2005    5.0
## 8123     41571 2005    3.0
## 8124     43744 2005    4.0
## 8125     44555 2006    4.5
## 8126     45447 2006    3.5
## 8127     50872 2007    3.5
## 8128     51094 2006    3.5
## 8129     52545 2006    4.0
## 8130     54001 2007    5.0
## 8131     55451 2007    4.0
## 8132     60950 2008    2.0
## 8133       111 1976    4.0
## 8134       165 1995    4.0
## 8135       238 1995    1.0
## 8136       392 1993    1.0
## 8137       420 1994    3.0
## 8138       421 1994    1.0
## 8139       484 1994    1.0
## 8140       968 1968    4.0
## 8141      1193 1975    5.0
## 8142      1370 1990    3.0
## 8143      1580 1997    3.0
## 8144      1610 1990    5.0
## 8145      1772 1998    4.0
## 8146      1911 1998    2.0
## 8147      1917 1998    5.0
## 8148      1995 1986    2.0
## 8149      2002 1992    3.0
## 8150      2093 1985    1.0
## 8151      2336 1998    4.0
## 8152      2368 1986    3.0
## 8153      2394 1998    1.0
## 8154      2396 1998    4.0
## 8155      2412 1990    1.0
## 8156      2433 1998    5.0
## 8157      2470 1986    4.0
## 8158      2690 1999    4.0
## 8159      2699 1990    4.0
## 8160      2700 1999    1.0
## 8161      2709 1999    1.0
## 8162      2710 1999    3.0
## 8163      2716 1984    3.0
## 8164      2717 1989    3.0
## 8165      2720 1999    1.0
## 8166      2761 1999    1.0
## 8167      2762 1999    5.0
## 8168      2840 1999    2.0
## 8169      2912 1999    1.0
## 8170      2986 1990    4.0
## 8171      2987 1988    1.0
## 8172      2997 1999    1.0
## 8173      3107 1991    4.0
## 8174      3114 1999    1.0
## 8175      3160 1999    2.0
## 8176      3178 1999    4.0
## 8177      3274 1992    4.0
## 8178      3434 1994    4.0
## 8179       318 1994    4.5
## 8180      1027 1991    4.0
## 8181      1088 1987    5.0
## 8182      1201 1966    4.5
## 8183      1203 1957    4.5
## 8184      1333 1963    2.0
## 8185      1680 1998    4.0
## 8186      2150 1980    4.0
## 8187      2471 1988    2.5
## 8188      2571 1999    3.5
## 8189      2991 1973    3.5
## 8190      3258 1992    4.0
## 8191      3462 1936    3.0
## 8192      3638 1979    4.0
## 8193      3906 2000    4.0
## 8194      4467 1988    0.5
## 8195      4963 2001    4.5
## 8196      5418 2002    4.5
## 8197      6378 2003    4.5
## 8198      8533 2004    4.5
## 8199      8665 2004    4.5
## 8200     26160 1967    3.5
## 8201     26294 1973    4.0
## 8202     30749 2004    3.5
## 8203     33794 2005    1.0
## 8204     44197 2006    4.5
## 8205     44199 2006    5.0
## 8206     48516 2006    4.5
## 8207     48660 2006    1.0
## 8208     48780 2006    5.0
## 8209     48997 2006    2.0
## 8210     54286 2007    4.5
## 8211     55820 2007    1.5
## 8212     56941 2007    5.0
## 8213     58803 2008    4.5
## 8214     60069 2008    5.0
## 8215     68157 2009    4.5
## 8216     69640 2009    3.5
## 8217     71899 2009    4.0
## 8218     77846 1997    5.0
## 8219     78499 2010    4.5
## 8220     79132 2010    2.5
## 8221     91355 2006    3.5
## 8222     96655 2012    5.0
## 8223         1 1995    3.0
## 8224         5 1995    3.0
## 8225         6 1995    5.0
## 8226         7 1995    2.0
## 8227         9 1995    3.0
## 8228        32 1995    4.0
## 8229        65 1996    5.0
## 8230        74 1996    3.0
## 8231        79 1996    3.0
## 8232        95 1996    3.0
## 8233       100 1996    3.0
## 8234       104 1996    5.0
## 8235       112 1995    3.0
## 8236       141 1996    4.0
## 8237       260 1977    5.0
## 8238       376 1994    4.0
## 8239       494 1996    3.0
## 8240       608 1996    3.0
## 8241       609 1996    3.0
## 8242       637 1996    4.0
## 8243       648 1996    5.0
## 8244       653 1996    4.0
## 8245       707 1996    2.0
## 8246       708 1996    3.0
## 8247       719 1996    4.0
## 8248       724 1996    4.0
## 8249       733 1996    4.0
## 8250       736 1996    3.0
## 8251       737 1996    3.0
## 8252       761 1996    2.0
## 8253       780 1996    5.0
## 8254       784 1996    3.0
## 8255       786 1996    4.0
## 8256       788 1996    5.0
## 8257       802 1996    3.0
## 8258       805 1996    5.0
## 8259       832 1996    5.0
## 8260      1073 1971    3.0
## 8261         1 1995    4.0
## 8262        10 1995    4.0
## 8263        16 1995    4.0
## 8264        21 1995    2.0
## 8265        29 1995    4.0
## 8266        39 1995    5.0
## 8267        47 1995    4.0
## 8268        50 1995    4.0
## 8269       101 1996    4.0
## 8270       104 1996    4.0
## 8271       111 1976    4.0
## 8272       147 1995    2.0
## 8273       160 1995    2.0
## 8274       176 1995    4.0
## 8275       216 1995    4.0
## 8276       223 1994    4.0
## 8277       231 1994    2.0
## 8278       246 1994    5.0
## 8279       250 1995    5.0
## 8280       260 1977    2.0
## 8281       292 1995    2.0
## 8282       293 1994    4.0
## 8283       296 1994    4.0
## 8284       318 1994    4.0
## 8285       333 1995    2.0
## 8286       337 1993    4.0
## 8287       342 1994    2.0
## 8288       356 1994    4.0
## 8289       377 1994    4.0
## 8290       441 1993    4.0
## 8291       442 1993    2.0
## 8292       456 1994    4.0
## 8293       457 1993    4.0
## 8294       480 1993    4.0
## 8295       527 1993    4.0
## 8296       529 1993    4.0
## 8297       541 1982    4.0
## 8298       586 1990    4.0
## 8299       593 1991    5.0
## 8300       673 1996    2.0
## 8301       750 1964    2.0
## 8302       778 1996    4.0
## 8303       916 1953    4.0
## 8304       919 1939    5.0
## 8305       922 1950    4.0
## 8306       923 1941    4.0
## 8307       924 1968    2.0
## 8308       926 1950    4.0
## 8309       942 1944    2.0
## 8310       951 1940    4.0
## 8311       953 1946    4.0
## 8312      1036 1988    5.0
## 8313      1060 1996    4.0
## 8314      1073 1971    4.0
## 8315      1089 1992    4.0
## 8316      1094 1992    2.0
## 8317      1095 1992    4.0
## 8318      1097 1982    4.0
## 8319      1120 1996    2.0
## 8320      1136 1975    4.0
## 8321      1172 1989    2.0
## 8322      1193 1975    4.0
## 8323      1196 1980    2.0
## 8324      1197 1987    4.0
## 8325      1198 1981    4.0
## 8326      1201 1966    4.0
## 8327      1206 1971    4.0
## 8328      1207 1962    5.0
## 8329      1208 1979    4.0
## 8330      1209 1968    5.0
## 8331      1210 1983    2.0
## 8332      1213 1990    4.0
## 8333      1222 1987    4.0
## 8334      1225 1984    5.0
## 8335      1226 1952    4.0
## 8336      1228 1980    4.0
## 8337      1230 1977    2.0
## 8338      1235 1971    5.0
## 8339      1240 1984    2.0
## 8340      1244 1979    2.0
## 8341      1247 1967    2.0
## 8342      1250 1957    4.0
## 8343      1252 1974    4.0
## 8344      1256 1933    4.0
## 8345      1258 1980    4.0
## 8346      1259 1986    4.0
## 8347      1263 1978    2.0
## 8348      1265 1993    5.0
## 8349      1266 1992    4.0
## 8350      1270 1985    4.0
## 8351      1283 1952    4.0
## 8352      1285 1989    5.0
## 8353      1288 1984    4.0
## 8354      1291 1989    4.0
## 8355      1302 1989    4.0
## 8356      1304 1969    2.0
## 8357      1307 1989    2.0
## 8358      1358 1996    4.0
## 8359      1380 1978    5.0
## 8360      1387 1975    4.0
## 8361      1393 1996    4.0
## 8362      1449 1996    5.0
## 8363      1466 1997    4.0
## 8364      1608 1997    4.0
## 8365      1617 1997    4.0
## 8366      1673 1997    4.0
## 8367      1676 1997    2.0
## 8368      1682 1998    5.0
## 8369      1704 1997    5.0
## 8370      1721 1997    4.0
## 8371      1732 1998    4.0
## 8372      1784 1997    2.0
## 8373      1907 1998    4.0
## 8374      1923 1998    4.0
## 8375      1947 1961    5.0
## 8376      1952 1969    2.0
## 8377      1953 1971    4.0
## 8378      1954 1976    4.0
## 8379      1957 1981    4.0
## 8380      1958 1983    2.0
## 8381      1961 1988    2.0
## 8382      1968 1985    5.0
## 8383      2000 1987    1.0
## 8384      2005 1985    4.0
## 8385      2006 1998    4.0
## 8386      2011 1989    2.0
## 8387      2028 1998    5.0
## 8388      2042 1994    2.0
## 8389      2052 1993    4.0
## 8390      2060 1998    4.0
## 8391      2072 1989    2.0
## 8392      2082 1992    2.0
## 8393      2115 1984    4.0
## 8394      2144 1984    4.0
## 8395      2186 1951    4.0
## 8396      2194 1987    2.0
## 8397      2248 1989    4.0
## 8398      2253 1992    1.0
## 8399      2300 1968    4.0
## 8400      2321 1998    4.0
## 8401      2324 1997    2.0
## 8402      2329 1998    4.0
## 8403      2395 1998    5.0
## 8404      2420 1984    4.0
## 8405      2502 1999    4.0
## 8406      2542 1998    4.0
## 8407      2572 1999    2.0
## 8408      2599 1999    5.0
## 8409      2617 1999    4.0
## 8410      2694 1999    4.0
## 8411      2700 1999    4.0
## 8412      2716 1984    2.0
## 8413      2746 1986    5.0
## 8414      2761 1999    4.0
## 8415      2791 1980    4.0
## 8416      2797 1988    4.0
## 8417      2804 1983    4.0
## 8418      2858 1999    5.0
## 8419      2863 1964    4.0
## 8420      2918 1986    4.0
## 8421      2925 1970    4.0
## 8422      2947 1964    2.0
## 8423      2951 1964    2.0
## 8424      2953 1992    4.0
## 8425      2959 1999    4.0
## 8426      3034 1973    4.0
## 8427      3039 1983    1.0
## 8428      3072 1987    4.0
## 8429      3079 1999    4.0
## 8430      3086 1934    4.0
## 8431      3089 1948    4.0
## 8432      3098 1984    2.0
## 8433      3104 1988    2.0
## 8434      3114 1999    4.0
## 8435      3152 1971    2.0
## 8436      3160 1999    4.0
## 8437      3210 1982    2.0
## 8438      3253 1992    4.0
## 8439      3255 1992    2.0
## 8440      3268 1992    2.0
## 8441      3360 1986    5.0
## 8442      3361 1988    2.0
## 8443      3365 1956    4.0
## 8444      3421 1978    4.0
## 8445      3424 1989    4.0
## 8446      3468 1961    2.0
## 8447      3480 1986    4.0
## 8448      3489 1991    2.0
## 8449      3504 1976    4.0
## 8450      3552 1980    2.0
## 8451      3606 1949    5.0
## 8452      3608 1985    2.0
## 8453      3653 1966    5.0
## 8454      3671 1974    4.0
## 8455      3683 1984    4.0
## 8456      3751 2000    4.0
## 8457      3783 1998    4.0
## 8458      3791 1984    4.0
## 8459      3868 1988    4.0
## 8460      3897 2000    2.0
## 8461      3916 2000    2.0
## 8462      3972 1994    2.0
## 8463      3988 2000    2.0
## 8464      4016 2000    4.0
## 8465      4022 2000    4.0
## 8466      4027 2000    4.0
## 8467      4034 2000    4.0
## 8468      4054 2001    4.0
## 8469      4085 1984    2.0
## 8470      4091 1987    4.0
## 8471      4102 1987    2.0
## 8472      4226 2000    4.0
## 8473      4262 1983    2.0
## 8474      4306 2001    4.0
## 8475      4370 2001    4.0
## 8476      4406 1962    2.0
## 8477      4447 2001    4.0
## 8478      4571 1989    4.0
## 8479      4649 2001    4.0
## 8480      4771 2001    4.0
## 8481      4776 2001    2.0
## 8482      4816 2001    2.0
## 8483      4848 2001    4.0
## 8484      4878 2001    4.0
## 8485      4881 2001    2.0
## 8486      4886 2001    4.0
## 8487      4896 2001    4.0
## 8488      4973 2001    5.0
## 8489      4993 2001    4.0
## 8490      5103 1993    4.0
## 8491      5377 2002    5.0
## 8492      5401 2002    4.0
## 8493      5418 2002    4.0
## 8494      5445 2002    4.0
## 8495      5673 2002    5.0
## 8496      5785 2002    5.0
## 8497      5816 2002    4.0
## 8498      5902 2002    4.0
## 8499      5952 2002    4.0
## 8500      5970 1991    2.0
## 8501      5995 2002    4.0
## 8502      6003 2002    2.0
## 8503      6016 2002    5.0
## 8504      6188 2003    2.0
## 8505      6373 2003    2.0
## 8506      6377 2003    4.0
## 8507      6618 2001    2.0
## 8508      6732 1969    5.0
## 8509      6796 1991    4.0
## 8510      6863 2003    5.0
## 8511      6867 2003    4.0
## 8512      6870 2003    2.0
## 8513      6873 2003    2.0
## 8514      6874 2003    4.0
## 8515      6932 2003    4.0
## 8516      6936 2003    4.0
## 8517      6942 2003    2.0
## 8518      6978 1991    2.0
## 8519      7018 1990    2.0
## 8520      7022 2000    1.0
## 8521      7036 1985    2.0
## 8522      7072 1939    4.0
## 8523      7132 1935    4.0
## 8524      7147 2003    4.0
## 8525      7153 2003    4.0
## 8526      7263 2004    4.0
## 8527      7361 2004    5.0
## 8528      7438 2004    4.0
## 8529      7451 2004    5.0
## 8530      8360 2004    4.0
## 8531      8368 2004    4.0
## 8532      8376 2004    4.0
## 8533      8528 2004    2.0
## 8534      8641 2004    4.0
## 8535      8665 2004    4.0
## 8536      8784 2004    2.0
## 8537      8807 2004    4.0
## 8538      8874 2004    5.0
## 8539      8914 2004    2.0
## 8540      8917 2004    4.0
## 8541      8961 2004    4.0
## 8542      8972 2004    2.0
## 8543     26084 1962    5.0
## 8544     26471 1983    2.0
## 8545     27253 2000    4.0
## 8546     27773 2003    5.0
## 8547     32587 2005    4.0
## 8548     32598 2005    2.0
## 8549     33166 2004    2.0
## 8550     33495 2005    4.0
## 8551     33660 2005    4.0
## 8552     33794 2005    4.0
## 8553     33880 2005    2.0
## 8554     34162 2005    4.0
## 8555     34528 2005    4.0
## 8556     35836 2005    5.0
## 8557     37733 2005    2.0
## 8558     38038 2005    4.0
## 8559     38061 2005    4.0
## 8560     38886 2005    4.0
## 8561     39292 2005    4.0
## 8562     40629 2005    5.0
## 8563     40815 2005    4.0
## 8564     41566 2005    4.0
## 8565     44191 2006    4.0
## 8566     44199 2006    2.0
## 8567     46578 2006    5.0
## 8568     46948 2006    4.0
## 8569     46970 2006    4.0
## 8570     47099 2006    2.0
## 8571     48322 2006    5.0
## 8572     48516 2006    4.0
## 8573     48698 2006    5.0
## 8574     48982 2006    4.0
## 8575     49272 2006    5.0
## 8576     50514 2006    4.0
## 8577     50872 2007    4.0
## 8578     51255 2007    5.0
## 8579     51540 2007    4.0
## 8580     51662 2007    2.0
## 8581     52245 2007    4.0
## 8582     52435 1966    4.0
## 8583     53123 2006    4.0
## 8584     53125 2007    2.0
## 8585     54001 2007    4.0
## 8586     54256 2007    5.0
## 8587     54286 2007    4.0
## 8588     54503 2007    5.0
## 8589     54881 2007    5.0
## 8590     55052 2007    2.0
## 8591     55118 2007    2.0
## 8592     55247 2007    2.0
## 8593     55765 2007    2.0
## 8594     55805 2007    4.0
## 8595     55820 2007    5.0
## 8596     56174 2007    2.0
## 8597     56333 2007    4.0
## 8598     56367 2007    5.0
## 8599     56757 2007    4.0
## 8600     56782 2007    5.0
## 8601     57532 2008    1.0
## 8602     57669 2008    5.0
## 8603     58025 2008    1.0
## 8604     58559 2008    5.0
## 8605     59118 2008    4.0
## 8606     59315 2008    2.0
## 8607     59369 2008    2.0
## 8608     60684 2009    2.0
## 8609     60756 2008    4.0
## 8610     60950 2008    4.0
## 8611     61024 2008    4.0
## 8612     61132 2008    4.0
## 8613     63082 2008    4.0
## 8614     63113 2008    2.0
## 8615     63131 2008    5.0
## 8616     64969 2008    4.0
## 8617     64983 2008    2.0
## 8618     65188 2008    5.0
## 8619     67087 2009    5.0
## 8620     67734 2009    4.0
## 8621     67997 2009    4.0
## 8622     68157 2009    4.0
## 8623     68954 2009    4.0
## 8624     69122 2009    4.0
## 8625     69306 2009    2.0
## 8626     69844 2009    4.0
## 8627     70286 2009    4.0
## 8628     70293 2009    4.0
## 8629     70728 2009    4.0
## 8630     71264 2009    5.0
## 8631     71466 2009    4.0
## 8632     71535 2009    4.0
## 8633     71579 2009    4.0
## 8634     72011 2009    4.0
## 8635     72171 2009    5.0
## 8636     72226 2009    5.0
## 8637     72720 2009    2.0
## 8638     73023 2009    4.0
## 8639     74275 2009    4.0
## 8640     74416 2009    4.0
## 8641     74754 2003    5.0
## 8642     74916 2010    4.0
## 8643     76111 2009    4.0
## 8644     76251 2010    4.0
## 8645     78499 2010    5.0
## 8646     79091 2010    4.0
## 8647     79132 2010    5.0
## 8648     79592 2010    4.0
## 8649     79677 2010    5.0
## 8650     79702 2010    5.0
## 8651     80463 2010    4.0
## 8652     80549 2010    4.0
## 8653     81156 2010    5.0
## 8654     81562 2010    4.0
## 8655     81591 2010    5.0
## 8656     81834 2010    4.0
## 8657     83086 2010    1.0
## 8658     83976 2010    4.0
## 8659     84116 2010    4.0
## 8660     85414 2011    4.0
## 8661     85438 2011    5.0
## 8662     86000 2010    5.0
## 8663     86884 2011    4.0
## 8664     86911 2011    2.0
## 8665     87232 2011    2.0
## 8666     87304 2010    4.0
## 8667     87522 2011    1.0
## 8668     87869 2011    2.0
## 8669     88125 2011    4.0
## 8670     88744 2011    4.0
## 8671     88810 2011    2.0
## 8672     88812 2011    2.0
## 8673     89492 2011    4.0
## 8674     89759 2011    4.0
## 8675     90374 2011    4.0
## 8676     90376 2011    4.0
## 8677     90600 2011    4.0
## 8678     90947 2011    4.0
## 8679     91199 2011    4.0
## 8680     91529 2012    2.0
## 8681     92420 2012    4.0
## 8682     93270 2012    1.0
## 8683     93422 2011    4.0
## 8684     93443 2011    5.0
## 8685     93510 2012    5.0
## 8686     93512 2012    4.0
## 8687     93721 2011    4.0
## 8688     94896 2011    4.0
## 8689     94959 2012    4.0
## 8690     95088 2012    4.0
## 8691     95441 2012    2.0
## 8692     95510 2012    4.0
## 8693     96079 2012    5.0
## 8694     96110 2012    1.0
## 8695     96467 2012    5.0
## 8696     96728 2012    5.0
## 8697     96829 2012    5.0
## 8698     96911 2012    4.0
## 8699     97306 2012    4.0
## 8700     97836 2012    1.0
## 8701     97866 2012    4.0
## 8702     97921 2012    2.0
## 8703     97923 2012    2.0
## 8704     97938 2012    4.0
## 8705     99114 2012    4.0
## 8706     99117 2012    2.0
## 8707     99764 2012    5.0
## 8708     99917 2013    2.0
## 8709    100272 2012    4.0
## 8710    100556 2012    5.0
## 8711    101577 2013    1.0
## 8712    102123 2013    5.0
## 8713    102800 2012    4.0
## 8714    102993 2013    4.0
## 8715    103141 2013    4.0
## 8716    103279 2012    4.0
## 8717    103624 2013    4.0
## 8718    103688 2013    2.0
## 8719    104944 2013    4.0
## 8720    105197 2013    4.0
## 8721    105429 2013    4.0
## 8722    105715 2010    2.0
## 8723    105844 2013    4.0
## 8724    106062 2013    2.0
## 8725    106100 2013    4.0
## 8726    106144 2013    4.0
## 8727    106332 2013    4.0
## 8728    106438 2013    4.0
## 8729    106916 2013    2.0
## 8730    106920 2013    5.0
## 8731    107141 2013    2.0
## 8732    107348 2013    4.0
## 8733    107978 2013    5.0
## 8734    108156 2014    2.0
## 8735    108932 2014    4.0
## 8736    110461 2013    4.0
## 8737    111362 2014    2.0
## 8738    111617 2014    1.0
## 8739    112138 2014    5.0
## 8740    112183 2014    4.0
## 8741    112421 2014    4.0
## 8742    112515 2014    5.0
## 8743    112552 2014    5.0
## 8744    112556 2014    2.0
## 8745    112852 2014    2.0
## 8746    113064 2014    4.0
## 8747    113453 2014    1.0
## 8748    113705 2014    2.0
## 8749    113829 2014    4.0
## 8750    113862 2014    4.0
## 8751    114074 2014    2.0
## 8752    114342 2014    4.0
## 8753    114635 2014    4.0
## 8754    115569 2014    4.0
## 8755    116797 2014    4.0
## 8756    122882 2015    5.0
## 8757    122886 2015    2.0
## 8758    127108 2015    5.0
## 8759    127152 2015    5.0
## 8760    127198 2015    4.0
## 8761    127206 2015    2.0
## 8762    128360 2015    4.0
## 8763    128620 2015    5.0
## 8764    131168 2014    4.0
## 8765    133771 2015    5.0
## 8766    134170 2015    2.0
## 8767    134853 2015    5.0
## 8768    136864 2016    2.0
## 8769    139116 2014    5.0
## 8770    139385 2015    4.0
## 8771    139757 2015    5.0
## 8772    140715 2015    2.0
## 8773    141890 2015    4.0
## 8774    142422 2015    4.0
## 8775    142488 2015    4.0
## 8776    146656 2015    5.0
## 8777    148626 2015    2.0
## 8778    148881 2015    5.0
## 8779    152081 2016    4.0
## 8780    155392 2016    4.0
## 8781    156609 2016    4.0
## 8782    160590 2013    5.0
## 8783        11 1995    5.0
## 8784        17 1995    5.0
## 8785        21 1995    4.0
## 8786        34 1995    5.0
## 8787       110 1995    5.0
## 8788       151 1995    5.0
## 8789       163 1995    4.0
## 8790       164 1995    3.0
## 8791       260 1977    4.0
## 8792       265 1992    5.0
## 8793       293 1994    5.0
## 8794       318 1994    5.0
## 8795       337 1993    5.0
## 8796       350 1994    2.0
## 8797       356 1994    3.0
## 8798       357 1994    5.0
## 8799       380 1994    4.0
## 8800       440 1993    4.0
## 8801       468 1995    4.0
## 8802       497 1993    5.0
## 8803       509 1993    5.0
## 8804       527 1993    5.0
## 8805       534 1993    5.0
## 8806       538 1993    5.0
## 8807       555 1993    4.0
## 8808       590 1990    5.0
## 8809       592 1989    3.0
## 8810       608 1996    5.0
## 8811       635 1996    5.0
## 8812       648 1996    3.0
## 8813       728 1995    5.0
## 8814       800 1996    5.0
## 8815       858 1972    5.0
## 8816       914 1964    5.0
## 8817       921 1982    4.0
## 8818      1007 1975    3.0
## 8819      1009 1975    4.0
## 8820      1028 1964    4.0
## 8821      1035 1965    5.0
## 8822      1036 1988    4.0
## 8823      1073 1971    4.0
## 8824      1079 1988    5.0
## 8825      1080 1979    4.0
## 8826      1081 1982    4.0
## 8827      1088 1987    4.0
## 8828      1091 1989    2.0
## 8829      1092 1992    2.0
## 8830      1094 1992    5.0
## 8831      1097 1982    5.0
## 8832      1101 1986    5.0
## 8833      1124 1981    4.0
## 8834      1125 1975    4.0
## 8835      1127 1989    5.0
## 8836      1128 1980    2.0
## 8837      1129 1981    3.0
## 8838      1130 1980    4.0
## 8839      1135 1980    4.0
## 8840      1136 1975    5.0
## 8841      1148 1993    5.0
## 8842      1185 1989    5.0
## 8843      1186 1989    4.0
## 8844      1193 1975    5.0
## 8845      1194 1978    4.0
## 8846      1196 1980    4.0
## 8847      1197 1987    5.0
## 8848      1198 1981    5.0
## 8849      1200 1986    3.0
## 8850      1208 1979    3.0
## 8851      1214 1979    3.0
## 8852      1220 1980    4.0
## 8853      1221 1974    5.0
## 8854      1222 1987    5.0
## 8855      1224 1989    5.0
## 8856      1225 1984    5.0
## 8857      1227 1984    4.0
## 8858      1234 1973    5.0
## 8859      1240 1984    3.0
## 8860      1242 1989    5.0
## 8861      1243 1990    5.0
## 8862      1246 1989    5.0
## 8863      1252 1974    5.0
## 8864      1258 1980    5.0
## 8865      1259 1986    4.0
## 8866      1263 1978    5.0
## 8867      1265 1993    4.0
## 8868      1270 1985    3.0
## 8869      1272 1970    3.0
## 8870      1275 1986    3.0
## 8871      1278 1974    5.0
## 8872      1286 1980    5.0
## 8873      1288 1984    3.0
## 8874      1291 1989    5.0
## 8875      1296 1986    5.0
## 8876      1299 1984    5.0
## 8877      1302 1989    4.0
## 8878      1307 1989    5.0
## 8879      1321 1981    5.0
## 8880      1323 1983    2.0
## 8881      1326 1982    1.0
## 8882      1327 1979    4.0
## 8883      1345 1976    5.0
## 8884      1346 1982    4.0
## 8885      1347 1984    4.0
## 8886      1350 1976    5.0
## 8887      1357 1996    5.0
## 8888      1358 1996    5.0
## 8889      1378 1988    4.0
## 8890      1380 1978    4.0
## 8891      1387 1975    5.0
## 8892      1393 1996    4.0
## 8893      1394 1987    5.0
## 8894      1408 1992    4.0
## 8895      1422 1997    3.0
## 8896      1459 1997    4.0
## 8897      1476 1997    4.0
## 8898      1587 1982    3.0
## 8899      1589 1997    5.0
## 8900      1597 1997    4.0
## 8901      1617 1997    4.0
## 8902      1625 1997    3.0
## 8903      1641 1997    5.0
## 8904      1645 1997    4.0
## 8905      1663 1981    4.0
## 8906      1674 1985    5.0
## 8907      1704 1997    5.0
## 8908      1719 1997    5.0
## 8909      1721 1997    3.0
## 8910      1732 1998    3.0
## 8911      1754 1998    3.0
## 8912      1784 1997    5.0
## 8913      1892 1998    5.0
## 8914      1909 1998    2.0
## 8915      1914 1998    5.0
## 8916      1917 1998    1.0
## 8917      1918 1998    3.0
## 8918      1923 1998    5.0
## 8919      1947 1961    5.0
## 8920      1951 1968    4.0
## 8921      1953 1971    5.0
## 8922      1954 1976    4.0
## 8923      1955 1979    4.0
## 8924      1956 1980    4.0
## 8925      1957 1981    5.0
## 8926      1958 1983    4.0
## 8927      1961 1988    5.0
## 8928      1962 1989    5.0
## 8929      1964 1971    5.0
## 8930      1967 1986    3.0
## 8931      1968 1985    4.0
## 8932      1974 1980    2.0
## 8933      1975 1981    2.0
## 8934      1977 1984    1.0
## 8935      1978 1985    1.0
## 8936      1979 1986    1.0
## 8937      1981 1989    1.0
## 8938      1982 1978    4.0
## 8939      1983 1981    3.0
## 8940      1984 1982    1.0
## 8941      1987 1980    2.0
## 8942      1994 1982    4.0
## 8943      1995 1986    3.0
## 8944      1996 1988    2.0
## 8945      1997 1973    4.0
## 8946      2000 1987    5.0
## 8947      2001 1989    4.0
## 8948      2003 1984    3.0
## 8949      2005 1985    3.0
## 8950      2006 1998    5.0
## 8951      2009 1973    3.0
## 8952      2013 1972    4.0
## 8953      2020 1988    5.0
## 8954      2027 1998    2.0
## 8955      2028 1998    5.0
## 8956      2037 1977    4.0
## 8957      2044 1981    3.0
## 8958      2054 1989    3.0
## 8959      2070 1983    4.0
## 8960      2088 1980    2.0
## 8961      2097 1983    3.0
## 8962      2100 1984    4.0
## 8963      2109 1979    4.0
## 8964      2110 1982    4.0
## 8965      2111 1983    3.0
## 8966      2114 1983    5.0
## 8967      2115 1984    4.0
## 8968      2118 1983    2.0
## 8969      2121 1983    3.0
## 8970      2122 1984    1.0
## 8971      2125 1998    4.0
## 8972      2130 1980    4.0
## 8973      2143 1985    3.0
## 8974      2144 1984    3.0
## 8975      2153 1998    1.0
## 8976      2161 1984    3.0
## 8977      2163 1978    2.0
## 8978      2174 1988    5.0
## 8979      2178 1972    4.0
## 8980      2193 1988    5.0
## 8981      2194 1987    5.0
## 8982      2240 1980    4.0
## 8983      2245 1988    4.0
## 8984      2268 1992    4.0
## 8985      2288 1982    4.0
## 8986      2291 1990    4.0
## 8987      2300 1968    3.0
## 8988      2301 1981    3.0
## 8989      2302 1992    5.0
## 8990      2313 1980    5.0
## 8991      5060 1970    4.0
## 8992        11 1995    5.0
## 8993        19 1995    1.0
## 8994       150 1995    5.0
## 8995       344 1994    1.0
## 8996       410 1993    3.0
## 8997       415 1993    2.0
## 8998       616 1970    4.0
## 8999       748 1996    4.0
## 9000       909 1960    2.0
## 9001       924 1968    5.0
## 9002       940 1938    2.0
## 9003       952 1956    2.0
## 9004       965 1935    5.0
## 9005       969 1951    5.0
## 9006       999 1996    2.0
## 9007      1007 1975    2.0
## 9008      1019 1954    4.0
## 9009      1021 1994    4.0
## 9010      1127 1989    2.0
## 9011      1200 1986    4.0
## 9012      1203 1957    5.0
## 9013      1214 1979    4.0
## 9014      1225 1984    5.0
## 9015      1230 1977    2.0
## 9016      1269 1944    5.0
## 9017      1320 1992    3.0
## 9018      1321 1981    4.0
## 9019      1367 1996    4.0
## 9020      1459 1997    4.0
## 9021      1499 1997    1.0
## 9022      1517 1997    1.0
## 9023      1608 1997    5.0
## 9024      1690 1997    4.0
## 9025      1784 1997    2.0
## 9026      1917 1998    4.0
## 9027      1927 1930    5.0
## 9028      2015 1961    3.0
## 9029      2016 1979    2.0
## 9030      2072 1989    2.0
## 9031      2085 1961    3.0
## 9032      2124 1991    3.0
## 9033      2133 1987    4.0
## 9034      2153 1998    2.0
## 9035      2163 1978    4.0
## 9036      2180 1966    4.0
## 9037      2202 1944    5.0
## 9038      2311 1984    5.0
## 9039      2475 1986    3.0
## 9040      2505 1999    4.0
## 9041      2520 1970    2.0
## 9042      2522 1977    2.0
## 9043      2551 1988    2.0
## 9044      2683 1999    1.0
## 9045      2788 1971    5.0
## 9046      2791 1980    5.0
## 9047      2792 1982    5.0
## 9048      2817 1992    2.0
## 9049      2827 1999    3.0
## 9050      2846 1986    4.0
## 9051      3070 1984    4.0
## 9052      3153 1958    2.0
## 9053      3251 1985    5.0
## 9054      3420 1979    5.0
## 9055      3421 1978    5.0
## 9056      3510 2000    5.0
## 9057      3524 1981    4.0
## 9058      3535 2000    1.0
## 9059      3555 2000    5.0
## 9060      3649 1980    3.0
## 9061      3672 1974    1.0
## 9062      3701 1988    5.0
## 9063      3706 1987    4.0
## 9064      3710 1988    3.0
## 9065        11 1995    2.5
## 9066        32 1995    4.5
## 9067        50 1995    5.0
## 9068       111 1976    2.5
## 9069       150 1995    4.0
## 9070       223 1994    3.5
## 9071       231 1994    2.0
## 9072       292 1995    1.0
## 9073       296 1994    4.0
## 9074       300 1994    4.5
## 9075       318 1994    2.5
## 9076       367 1994    1.5
## 9077       380 1994    0.5
## 9078       410 1993    1.5
## 9079       412 1993    4.0
## 9080       480 1993    4.5
## 9081       527 1993    4.5
## 9082       541 1982    5.0
## 9083       586 1990    0.5
## 9084       590 1990    3.5
## 9085       593 1991    3.5
## 9086       720 1996    4.5
## 9087       745 1995    5.0
## 9088       858 1972    5.0
## 9089       912 1942    4.0
## 9090       919 1939    1.5
## 9091      1136 1975    4.0
## 9092      1148 1993    5.0
## 9093      1193 1975    3.5
## 9094      1213 1990    3.5
## 9095      1221 1974    5.0
## 9096      1356 1996    0.5
## 9097      1673 1997    4.0
## 9098      1722 1997    1.5
## 9099      1923 1998    3.0
## 9100      1961 1988    3.5
## 9101      1968 1985    2.5
## 9102      2028 1998    1.5
## 9103      2105 1982    1.0
## 9104      2161 1984    0.5
## 9105      2167 1998    4.0
## 9106      2193 1988    0.5
## 9107      2194 1987    3.5
## 9108      2302 1992    3.5
## 9109      2329 1998    4.0
## 9110      2396 1998    3.5
## 9111      2470 1986    0.5
## 9112      2542 1998    2.0
## 9113      2617 1999    4.0
## 9114      2640 1978    1.0
## 9115      2671 1999    1.5
## 9116      2683 1999    1.5
## 9117      2692 1998    4.0
## 9118      2716 1984    2.0
## 9119      2763 1999    1.5
## 9120      2797 1988    3.0
## 9121      2858 1999    4.0
## 9122      2959 1999    4.0
## 9123      2997 1999    1.5
## 9124      3253 1992    4.0
## 9125      3578 2000    4.0
## 9126      3623 2000    1.0
## 9127      3751 2000    4.0
## 9128      3911 2000    3.5
## 9129      3948 2000    0.5
## 9130      4306 2001    1.5
## 9131      4993 2001    4.5
## 9132      5060 1970    3.5
## 9133      5349 2002    3.0
## 9134      5952 2002    5.0
## 9135      6787 1976    5.0
## 9136      7040 1985    4.0
## 9137      7153 2003    5.0
## 9138      7361 2004    4.0
## 9139      8961 2004    5.0
## 9140     26695 1990    3.5
## 9141     33794 2005    2.0
## 9142     34153 2005    4.0
## 9143        16 1995    4.5
## 9144        21 1995    3.0
## 9145       111 1976    4.5
## 9146       163 1995    4.0
## 9147       173 1995    3.5
## 9148       235 1994    5.0
## 9149       466 1993    4.0
## 9150       541 1982    5.0
## 9151       608 1996    4.0
## 9152       653 1996    2.5
## 9153       720 1996    4.0
## 9154       745 1995    3.5
## 9155       858 1972    5.0
## 9156      1080 1979    4.5
## 9157      1090 1986    4.0
## 9158      1208 1979    4.5
## 9159      1209 1968    4.0
## 9160      1219 1960    4.5
## 9161      1221 1974    5.0
## 9162      1380 1978    1.5
## 9163      1485 1997    2.5
## 9164      1653 1997    5.0
## 9165      1673 1997    4.5
## 9166      1732 1998    5.0
## 9167      2012 1990    4.0
## 9168      2115 1984    3.5
## 9169      2174 1988    4.0
## 9170      2324 1997    5.0
## 9171      2640 1978    4.0
## 9172      2710 1999    4.5
## 9173      2797 1988    4.0
## 9174      3018 1985    3.5
## 9175      3160 1999    3.5
## 9176      3608 1985    4.0
## 9177      3726 1976    3.0
## 9178      3949 2000    5.0
## 9179      4973 2001    4.5
## 9180      5060 1970    5.0
## 9181      5618 2001    4.0
## 9182      5690 1988    5.0
## 9183      5945 2002    4.0
## 9184      5952 2002    3.0
## 9185      5959 2002    4.5
## 9186      5995 2002    5.0
## 9187      6350 1986    5.0
## 9188      6502 2002    4.5
## 9189      6957 2003    3.0
## 9190      7361 2004    5.0
## 9191      7387 1978    4.5
## 9192      8638 2004    5.0
## 9193      8981 2004    5.0
## 9194     27773 2003    4.5
## 9195     27801 2003    3.0
## 9196     27803 2004    5.0
## 9197     30749 2004    5.0
## 9198         2 1995    3.5
## 9199        34 1995    2.0
## 9200        48 1995    2.5
## 9201        50 1995    5.0
## 9202       104 1996    4.0
## 9203       158 1995    1.5
## 9204       231 1994    4.0
## 9205       317 1994    3.5
## 9206       364 1994    3.5
## 9207       500 1993    4.0
## 9208       551 1993    1.5
## 9209       585 1995    3.5
## 9210       586 1990    3.0
## 9211       587 1990    5.0
## 9212       588 1992    3.0
## 9213       592 1989    5.0
## 9214       593 1991    3.0
## 9215       594 1937    3.5
## 9216       595 1991    2.5
## 9217       596 1940    2.0
## 9218       616 1970    1.5
## 9219       661 1996    2.5
## 9220       673 1996    2.0
## 9221       801 1996    2.5
## 9222       919 1939    3.0
## 9223       953 1946    3.5
## 9224      1010 1969    3.0
## 9225      1022 1950    3.0
## 9226      1028 1964    3.5
## 9227      1029 1941    2.5
## 9228      1035 1965    4.0
## 9229      1059 1996    3.0
## 9230      1073 1971    2.0
## 9231      1097 1982    3.5
## 9232      1136 1975    5.0
## 9233      1197 1987    5.0
## 9234      1207 1962    2.5
## 9235      1220 1980    3.5
## 9236      1367 1996    2.5
## 9237      1380 1978    3.5
## 9238      1500 1997    4.5
## 9239      1580 1997    3.5
## 9240      1777 1998    2.0
## 9241      1907 1998    4.0
## 9242      1954 1976    2.0
## 9243      1968 1985    5.0
## 9244      2018 1942    2.5
## 9245      2054 1989    2.5
## 9246      2078 1967    1.5
## 9247      2080 1955    2.5
## 9248      2081 1989    3.5
## 9249      2085 1961    2.5
## 9250      2087 1953    3.0
## 9251      2123 1989    2.5
## 9252      2144 1984    3.0
## 9253      2161 1984    2.0
## 9254      2174 1988    2.0
## 9255      2273 1998    3.0
## 9256      2300 1968    5.0
## 9257      2355 1998    3.5
## 9258      2384 1998    2.0
## 9259      2502 1999    5.0
## 9260      2571 1999    4.0
## 9261      2572 1999    4.0
## 9262      2716 1984    3.0
## 9263      2761 1999    3.0
## 9264      2804 1983    1.0
## 9265      2857 1968    4.0
## 9266      2918 1986    4.5
## 9267      2953 1992    3.0
## 9268      3114 1999    1.0
## 9269      3668 1968    2.5
## 9270      3751 2000    1.5
## 9271      3988 2000    3.0
## 9272      4016 2000    1.5
## 9273      4025 2000    2.5
## 9274      4232 2001    3.5
## 9275      4246 2001    3.5
## 9276      4306 2001    3.5
## 9277      4333 1987    5.0
## 9278      4701 2001    2.5
## 9279      4886 2001    3.0
## 9280      4890 2001    3.5
## 9281      4896 2001    3.0
## 9282      4993 2001    5.0
## 9283      5299 2002    3.5
## 9284      5349 2002    4.5
## 9285      5444 2002    1.0
## 9286      5449 2002    3.5
## 9287      5459 2002    3.0
## 9288      5481 2002    1.5
## 9289      5618 2001    5.0
## 9290      5693 1977    3.5
## 9291      5816 2002    3.0
## 9292      5952 2002    5.0
## 9293      5971 1988    5.0
## 9294      6218 2002    2.5
## 9295      6350 1986    5.0
## 9296      6373 2003    3.5
## 9297      6377 2003    3.0
## 9298      6539 2003    1.5
## 9299      6743 1942    2.5
## 9300      6863 2003    4.5
## 9301      6936 2003    3.0
## 9302      7004 1990    4.0
## 9303      7153 2003    5.0
## 9304      7161 2003    2.0
## 9305      7451 2004    4.0
## 9306      8360 2004    2.0
## 9307      8368 2004    2.5
## 9308      8376 2004    0.5
## 9309      8464 2004    3.0
## 9310      8544 1972    3.5
## 9311      8961 2004    4.0
## 9312      8970 2004    2.5
## 9313     26662 1989    5.0
## 9314     27706 2004    3.5
## 9315     30793 2005    1.5
## 9316     33004 2005    2.0
## 9317     33615 2005    2.5
## 9318     33660 2005    2.0
## 9319     33679 2005    4.0
## 9320     33794 2005    5.0
## 9321     34150 2005    2.5
## 9322     34162 2005    4.0
## 9323     40629 2005    3.0
## 9324     40815 2005    4.0
## 9325     41566 2005    2.5
## 9326     44191 2006    5.0
## 9327     44195 2006    4.5
## 9328     45431 2006    1.0
## 9329     45517 2006    2.5
## 9330     45720 2006    4.0
## 9331     45722 2006    3.5
## 9332     46578 2006    5.0
## 9333     46970 2006    4.0
## 9334     46972 2006    4.0
## 9335     46976 2006    3.5
## 9336     47610 2006    2.5
## 9337     48394 2006    4.5
## 9338     48780 2006    5.0
## 9339     50872 2007    4.0
## 9340     52973 2007    4.5
## 9341     53121 2007    3.0
## 9342     53125 2007    1.0
## 9343     53322 2007    4.0
## 9344     53464 2007    2.5
## 9345     53996 2007    5.0
## 9346     54001 2007    2.5
## 9347     54272 2007    2.5
## 9348     55566 2007    4.0
## 9349     55830 2008    2.5
## 9350     56030 2007    3.5
## 9351     56171 2007    4.0
## 9352     56174 2007    4.5
## 9353     56367 2007    4.5
## 9354     56757 2007    3.0
## 9355     57640 2008    2.5
## 9356     57669 2008    4.5
## 9357     58025 2008    3.0
## 9358     58559 2008    5.0
## 9359     58998 2008    5.0
## 9360     59315 2008    4.0
## 9361     60069 2008    5.0
## 9362     60074 2008    3.0
## 9363     60126 2008    4.0
## 9364       111 1976    4.0
## 9365       260 1977    4.0
## 9366       318 1994    3.5
## 9367      1196 1980    5.0
## 9368      1210 1983    4.0
## 9369      1270 1985    4.5
## 9370      2028 1998    4.5
## 9371      2918 1986    4.5
## 9372      2959 1999    5.0
## 9373      4226 2000    4.0
## 9374      5418 2002    4.0
## 9375      6016 2002    4.0
## 9376      8665 2004    4.5
## 9377     48774 2006    4.0
## 9378     49530 2006    3.5
## 9379     54286 2007    4.0
## 9380     58559 2008    5.0
## 9381     68157 2009    4.5
## 9382     68237 2009    4.5
## 9383     69481 2008    3.5
## 9384     70286 2009    4.0
## 9385     70862 2008    4.0
## 9386     79132 2010    5.0
## 9387     81591 2010    4.0
## 9388     85414 2011    4.0
## 9389     91535 2012    3.0
## 9390     92259 2011    3.0
## 9391     97304 2012    4.0
## 9392    101864 2013    3.5
## 9393    101947 2011    3.5
## 9394    103228 2013    4.0
## 9395    104374 2013    5.0
## 9396    104841 2013    4.0
## 9397    106782 2013    4.5
## 9398    106920 2013    4.0
## 9399    109487 2014    4.5
## 9400    111759 2014    4.0
## 9401    112183 2014    3.0
## 9402    112290 2014    4.0
## 9403    112552 2014    4.0
## 9404    114662 2014    3.0
## 9405    115149 2014    3.0
## 9406    115569 2014    3.5
## 9407    115713 2015    4.0
## 9408    119145 2015    4.5
## 9409    120637 2015    1.5
## 9410    122882 2015    5.0
## 9411    122900 2015    3.5
## 9412    134130 2015    5.0
## 9413    134853 2015    5.0
## 9414    139644 2015    4.5
## 9415    146656 2015    4.0
## 9416    160438 2016    4.0
## 9417         1 1995    5.0
## 9418        11 1995    3.5
## 9419        16 1995    5.0
## 9420        58 1994    0.5
## 9421       112 1995    3.0
## 9422       150 1995    4.0
## 9423       151 1995    0.5
## 9424       246 1994    0.5
## 9425       260 1977    5.0
## 9426       315 1994    1.0
## 9427       318 1994    5.0
## 9428       380 1994    3.5
## 9429       432 1994    4.0
## 9430       457 1993    3.0
## 9431       480 1993    4.5
## 9432       515 1993    1.0
## 9433       520 1993    3.0
## 9434       592 1989    5.0
## 9435       593 1991    4.5
## 9436       720 1996    4.0
## 9437       832 1996    2.5
## 9438      1015 1993    1.5
## 9439      1059 1996    4.0
## 9440      1080 1979    4.5
## 9441      1105 1996    0.5
## 9442      1193 1975    5.0
## 9443      1198 1981    5.0
## 9444      1214 1979    5.0
## 9445      1221 1974    5.0
## 9446      1230 1977    1.5
## 9447      1234 1973    1.0
## 9448      1259 1986    5.0
## 9449      1304 1969    4.0
## 9450      1307 1989    2.0
## 9451      1356 1996    5.0
## 9452      1372 1991    3.0
## 9453      1374 1982    4.0
## 9454      1376 1986    3.5
## 9455      1408 1992    4.5
## 9456      1474 1997    1.0
## 9457      1513 1997    1.0
## 9458      1517 1997    4.0
## 9459      1573 1997    4.0
## 9460      1610 1990    4.5
## 9461      1639 1997    5.0
## 9462      1641 1997    3.0
## 9463      1917 1998    4.0
## 9464      1954 1976    4.5
## 9465      1961 1988    3.5
## 9466      2004 1990    4.5
## 9467      2046 1986    4.5
## 9468      2116 1978    2.5
## 9469      2174 1988    1.0
## 9470      2268 1992    4.0
## 9471      2302 1992    2.0
## 9472      2393 1998    4.5
## 9473      2571 1999    4.5
## 9474      2628 1999    4.5
## 9475      2640 1978    4.5
## 9476      2699 1990    4.0
## 9477      2710 1999    4.0
## 9478      2762 1999    3.0
## 9479      2791 1980    4.0
## 9480      2797 1988    5.0
## 9481      2858 1999    5.0
## 9482      2918 1986    5.0
## 9483      2959 1999    4.5
## 9484      2987 1988    4.5
## 9485      2997 1999    4.0
## 9486      3114 1999    5.0
## 9487      3176 1999    5.0
## 9488      3328 1999    4.0
## 9489      3408 2000    2.0
## 9490      3471 1977    4.0
## 9491      3481 2000    5.0
## 9492      3578 2000    5.0
## 9493      3751 2000    2.0
## 9494      3793 2000    4.5
## 9495      3868 1988    4.5
## 9496      3869 1991    4.5
## 9497      3897 2000    4.0
## 9498      3996 2000    4.0
## 9499      4022 2000    2.5
## 9500      4306 2001    5.0
## 9501      4367 2001    4.0
## 9502      4369 2001    4.5
## 9503      4446 2001    4.0
## 9504      4846 1993    5.0
## 9505      4993 2001    5.0
## 9506      5349 2002    5.0
## 9507      5952 2002    5.0
## 9508      6333 2003    5.0
## 9509      6541 2003    2.5
## 9510      6711 2003    5.0
## 9511      6863 2003    4.0
## 9512      7153 2003    5.0
## 9513      7318 2004    3.5
## 9514       110 1995    4.0
## 9515       150 1995    3.0
## 9516       153 1995    5.0
## 9517       165 1995    3.0
## 9518       168 1995    3.0
## 9519       231 1994    3.0
## 9520       253 1994    5.0
## 9521       266 1994    5.0
## 9522       296 1994    5.0
## 9523       318 1994    5.0
## 9524       329 1994    4.0
## 9525       344 1994    2.0
## 9526       349 1994    4.0
## 9527       356 1994    4.0
## 9528       380 1994    4.0
## 9529       434 1993    4.0
## 9530       457 1993    4.0
## 9531       590 1990    5.0
## 9532       592 1989    4.0
## 9533       593 1991    5.0
## 9534       595 1991    3.0
## 9535       260 1977    4.0
## 9536       858 1972    5.0
## 9537       909 1960    5.0
## 9538       920 1939    2.0
## 9539       924 1968    4.0
## 9540      1077 1973    5.0
## 9541      1078 1971    5.0
## 9542      1084 1967    5.0
## 9543      1210 1983    2.0
## 9544      1221 1974    4.0
## 9545      1230 1977    5.0
## 9546      1238 1983    2.0
## 9547      1256 1933    4.0
## 9548      1270 1985    3.0
## 9549      1278 1974    5.0
## 9550      1288 1984    3.0
## 9551      1292 1979    5.0
## 9552      1299 1984    5.0
## 9553      1304 1969    4.0
## 9554      1952 1969    4.0
## 9555      1956 1980    3.0
## 9556      2064 1989    5.0
## 9557      2289 1992    4.0
## 9558      2863 1964    5.0
## 9559      2871 1972    4.0
## 9560      2971 1979    5.0
## 9561      5060 1970    5.0
## 9562        21 1995    4.0
## 9563        22 1995    2.0
## 9564       105 1995    2.0
## 9565       110 1995    4.0
## 9566       260 1977    5.0
## 9567       356 1994    4.0
## 9568       377 1994    4.0
## 9569       457 1993    4.0
## 9570       480 1993    5.0
## 9571       589 1991    5.0
## 9572       593 1991    4.0
## 9573       608 1996    4.0
## 9574       832 1996    4.0
## 9575       858 1972    5.0
## 9576       908 1959    4.0
## 9577      1036 1988    5.0
## 9578      1092 1992    4.0
## 9579      1129 1981    4.0
## 9580      1179 1990    4.0
## 9581      1196 1980    4.0
## 9582      1198 1981    5.0
## 9583      1200 1986    3.0
## 9584      1203 1957    5.0
## 9585      1240 1984    5.0
## 9586      1249 1990    4.0
## 9587      1270 1985    4.0
## 9588      1275 1986    3.0
## 9589      1573 1997    3.0
## 9590      1580 1997    3.0
## 9591      1625 1997    4.0
## 9592      1732 1998    2.0
## 9593      1954 1976    5.0
## 9594      2000 1987    5.0
## 9595      2058 1998    4.0
## 9596      2117 1984    5.0
## 9597      2194 1987    5.0
## 9598      2268 1992    4.0
## 9599      2391 1998    3.0
## 9600      2455 1986    3.0
## 9601      2456 1989    2.0
## 9602      2571 1999    3.0
## 9603      2605 1999    4.0
## 9604      2858 1999    4.0
## 9605      2947 1964    5.0
## 9606      2985 1987    4.0
## 9607      3527 1987    3.0
## 9608      3633 1969    5.0
## 9609      3763 1986    5.0
## 9610      3957 1971    3.0
## 9611         1 1995    3.0
## 9612         6 1995    5.0
## 9613        12 1995    3.0
## 9614        16 1995    4.0
## 9615        17 1995    4.0
## 9616        18 1995    4.0
## 9617        28 1995    5.0
## 9618        34 1995    5.0
## 9619        42 1995    3.0
## 9620        43 1995    4.0
## 9621        60 1995    4.0
## 9622        62 1995    3.0
## 9623        86 1996    5.0
## 9624        88 1996    3.0
## 9625        94 1996    3.0
## 9626        95 1996    1.0
## 9627       104 1996    3.0
## 9628       107 1996    3.0
## 9629       110 1995    5.0
## 9630       112 1995    3.0
## 9631       141 1996    1.0
## 9632       151 1995    5.0
## 9633       198 1995    4.0
## 9634       238 1995    3.0
## 9635       260 1977    4.0
## 9636       265 1992    5.0
## 9637       266 1994    3.0
## 9638       272 1994    5.0
## 9639       277 1994    4.0
## 9640       279 1995    5.0
## 9641       280 1995    5.0
## 9642       282 1994    5.0
## 9643       288 1994    4.0
## 9644       293 1994    4.0
## 9645       294 1995    3.0
## 9646       296 1994    5.0
## 9647       314 1994    5.0
## 9648       316 1994    3.0
## 9649       318 1994    5.0
## 9650       337 1993    4.0
## 9651       350 1994    3.0
## 9652       353 1994    5.0
## 9653       356 1994    4.0
## 9654       362 1994    1.0
## 9655       364 1994    5.0
## 9656       368 1994    3.0
## 9657       383 1994    4.0
## 9658       412 1993    5.0
## 9659       431 1993    4.0
## 9660       434 1993    2.0
## 9661       452 1994    5.0
## 9662       454 1993    2.0
## 9663       457 1993    4.0
## 9664       474 1993    3.0
## 9665       475 1993    5.0
## 9666       480 1993    5.0
## 9667       491 1993    4.0
## 9668       493 1993    4.0
## 9669       509 1993    5.0
## 9670       515 1993    5.0
## 9671       524 1993    3.0
## 9672       531 1993    5.0
## 9673       541 1982    4.0
## 9674       553 1993    4.0
## 9675       586 1990    4.0
## 9676       587 1990    3.0
## 9677       589 1991    4.0
## 9678       590 1990    5.0
## 9679       592 1989    3.0
## 9680       593 1991    5.0
## 9681       595 1991    4.0
## 9682       597 1990    5.0
## 9683       609 1996    3.0
## 9684       610 1981    4.0
## 9685       613 1996    4.0
## 9686       616 1970    4.0
## 9687       628 1996    3.0
## 9688       631 1996    3.0
## 9689       637 1996    3.0
## 9690       648 1996    3.0
## 9691       650 1996    5.0
## 9692       653 1996    3.0
## 9693       664 1996    3.0
## 9694       694 1996    3.0
## 9695       707 1996    4.0
## 9696       708 1996    3.0
## 9697       709 1988    4.0
## 9698       711 1996    3.0
## 9699       719 1996    1.0
## 9700       724 1996    3.0
## 9701       733 1996    4.0
## 9702       736 1996    4.0
## 9703       743 1996    2.0
## 9704       780 1996    4.0
## 9705       784 1996    3.0
## 9706       788 1996    3.0
## 9707       849 1996    3.0
## 9708       852 1996    3.0
## 9709      1027 1991    4.0
## 9710      1035 1965    3.0
## 9711      1073 1971    4.0
## 9712      1084 1967    4.0
## 9713      1097 1982    5.0
## 9714         1 1995    4.0
## 9715         2 1995    3.0
## 9716        11 1995    3.5
## 9717       150 1995    4.0
## 9718       260 1977    3.0
## 9719       317 1994    3.0
## 9720       318 1994    4.0
## 9721       356 1994    4.0
## 9722       367 1994    3.0
## 9723       380 1994    4.0
## 9724       454 1993    4.0
## 9725       457 1993    4.0
## 9726       468 1995    3.0
## 9727       480 1993    4.0
## 9728       500 1993    4.0
## 9729       527 1993    3.5
## 9730       539 1993    3.5
## 9731       541 1982    3.5
## 9732       586 1990    3.5
## 9733       587 1990    4.0
## 9734       590 1990    3.5
## 9735       592 1989    3.5
## 9736       597 1990    3.0
## 9737       778 1996    2.5
## 9738       780 1996    3.5
## 9739       904 1954    4.0
## 9740       908 1959    4.0
## 9741       912 1942    4.0
## 9742       914 1964    4.0
## 9743       933 1955    3.5
## 9744       934 1950    3.5
## 9745       953 1946    4.0
## 9746      1035 1965    4.0
## 9747      1073 1971    3.0
## 9748      1097 1982    4.0
## 9749      1185 1989    3.5
## 9750      1196 1980    4.5
## 9751      1197 1987    3.5
## 9752      1198 1981    4.0
## 9753      1200 1986    3.5
## 9754      1231 1983    4.0
## 9755      1265 1993    4.5
## 9756      1270 1985    4.0
## 9757      1278 1974    4.0
## 9758      1291 1989    4.5
## 9759      1292 1979    4.0
## 9760      1302 1989    4.5
## 9761      1376 1986    4.0
## 9762      1393 1996    4.0
## 9763      1409 1996    3.5
## 9764      1580 1997    4.0
## 9765      1608 1997    4.0
## 9766      1721 1997    3.0
## 9767      1923 1998    4.0
## 9768      1951 1968    4.0
## 9769      1959 1985    4.5
## 9770      2174 1988    4.0
## 9771      2384 1998    2.5
## 9772      2420 1984    3.5
## 9773      2468 1986    4.0
## 9774      2469 1986    3.5
## 9775      2716 1984    4.0
## 9776      2746 1986    3.5
## 9777      2762 1999    4.0
## 9778      2779 1978    3.5
## 9779      2791 1980    3.5
## 9780      2797 1988    3.5
## 9781      2918 1986    4.5
## 9782      2968 1981    1.0
## 9783      3072 1987    3.5
## 9784      3148 1999    1.5
## 9785      3247 1992    3.0
## 9786      3510 2000    4.5
## 9787      3578 2000    2.5
## 9788      3699 1984    4.0
## 9789      3755 2000    3.0
## 9790      4187 1963    4.0
## 9791      4306 2001    4.5
## 9792      4886 2001    3.5
## 9793      4963 2001    3.5
## 9794      4992 2001    3.5
## 9795      4993 2001    5.0
## 9796      4995 2001    4.0
## 9797      5218 2002    3.5
## 9798      5299 2002    3.5
## 9799      5349 2002    4.0
## 9800      5418 2002    3.5
## 9801      5816 2002    4.0
## 9802      5952 2002    5.0
## 9803      5989 2002    4.0
## 9804      5995 2002    1.5
## 9805      6218 2002    3.5
## 9806      6297 2003    3.5
## 9807      6373 2003    3.0
## 9808      6377 2003    3.0
## 9809      6539 2003    4.0
## 9810      6863 2003    3.5
## 9811      6874 2003    1.0
## 9812      7147 2003    3.5
## 9813      7153 2003    5.0
## 9814      7361 2004    3.0
## 9815      8360 2004    4.5
## 9816      8529 2004    3.0
## 9817      8623 1987    4.0
## 9818      8636 2004    4.0
## 9819      8865 2004    3.5
## 9820      8961 2004    4.0
## 9821      8972 2004    4.0
## 9822     26025 1957    3.5
## 9823     26562 1985    4.0
## 9824     30707 2004    2.5
## 9825     30749 2004    3.0
## 9826     30812 2004    3.0
## 9827     31374 1954    4.0
## 9828     31658 2004    3.5
## 9829     31685 2005    4.0
## 9830     33004 2005    2.5
## 9831     45431 2006    3.5
## 9832     45517 2006    3.5
## 9833     45668 2006    3.5
## 9834     46976 2006    3.5
## 9835     54259 2007    3.5
## 9836     56367 2007    4.5
## 9837         1 1995    5.0
## 9838         2 1995    3.5
## 9839         5 1995    5.0
## 9840        19 1995    4.0
## 9841        34 1995    4.0
## 9842        39 1995    4.5
## 9843        48 1995    4.5
## 9844       104 1996    4.0
## 9845       158 1995    3.0
## 9846       231 1994    4.0
## 9847       262 1995    4.0
## 9848       296 1994    3.5
## 9849       318 1994    5.0
## 9850       344 1994    4.0
## 9851       356 1994    5.0
## 9852       357 1994    5.0
## 9853       364 1994    5.0
## 9854       374 1994    3.5
## 9855       410 1993    3.5
## 9856       500 1993    3.5
## 9857       527 1993    5.0
## 9858       586 1990    4.5
## 9859       587 1990    5.0
## 9860       595 1991    4.0
## 9861       596 1940    3.0
## 9862       597 1990    4.5
## 9863       788 1996    2.0
## 9864       919 1939    4.5
## 9865       934 1950    5.0
## 9866      1020 1993    4.5
## 9867      1028 1964    3.0
## 9868      1035 1965    4.5
## 9869      1073 1971    4.5
## 9870      1193 1975    5.0
## 9871      1265 1993    4.5
## 9872      1270 1985    5.0
## 9873      1513 1997    3.5
## 9874      1682 1998    5.0
## 9875      1704 1997    5.0
## 9876      1721 1997    4.5
## 9877      1954 1976    3.5
## 9878      1968 1985    4.5
## 9879      2011 1989    4.5
## 9880      2012 1990    4.5
## 9881      2028 1998    4.5
## 9882      2054 1989    2.5
## 9883      2059 1998    3.5
## 9884      2136 1963    1.0
## 9885      2240 1980    4.5
## 9886      2302 1992    4.5
## 9887      2321 1998    4.0
## 9888      2355 1998    4.5
## 9889      2379 1985    3.5
## 9890      2706 1999    4.0
## 9891      2918 1986    5.0
## 9892      2987 1988    4.5
## 9893      3114 1999    5.0
## 9894      3253 1992    4.5
## 9895      3668 1968    2.5
## 9896      3791 1984    4.0
## 9897      3821 2000    0.5
## 9898      3948 2000    3.5
## 9899      3977 2000    3.5
## 9900      4254 2001    3.5
## 9901      4306 2001    5.0
## 9902      4878 2001    3.5
## 9903      4886 2001    5.0
## 9904      4896 2001    4.5
## 9905      4993 2001    5.0
## 9906      5308 1987    4.0
## 9907      5349 2002    3.5
## 9908      5816 2002    4.5
## 9909      5952 2002    5.0
## 9910      6377 2003    5.0
## 9911      6539 2003    4.0
## 9912      7153 2003    5.0
## 9913      7361 2004    4.5
## 9914      8961 2004    4.0
## 9915     58047 2008    3.0
## 9916     68554 2009    4.5
## 9917     69757 2009    5.0
## 9918         1 1995    5.0
## 9919         3 1995    5.0
## 9920         5 1995    5.0
## 9921         7 1995    3.0
## 9922         9 1995    3.0
## 9923        12 1995    3.0
## 9924        14 1995    3.0
## 9925        17 1995    4.0
## 9926        25 1995    5.0
## 9927        26 1995    5.0
## 9928        32 1995    4.0
## 9929        36 1995    4.0
## 9930        52 1995    4.0
## 9931        58 1994    5.0
## 9932        61 1996    4.0
## 9933        62 1995    5.0
## 9934        63 1996    4.0
## 9935        65 1996    3.0
## 9936        76 1995    4.0
## 9937        79 1996    4.0
## 9938        81 1995    4.0
## 9939        82 1995    4.0
## 9940        86 1996    4.0
## 9941        88 1996    3.0
## 9942        92 1996    5.0
## 9943        95 1996    5.0
## 9944       100 1996    4.0
## 9945       104 1996    3.0
## 9946       107 1996    5.0
## 9947       112 1995    5.0
## 9948       135 1996    4.0
## 9949       141 1996    5.0
## 9950       376 1994    4.0
## 9951       494 1996    3.0
## 9952       608 1996    5.0
## 9953       609 1996    5.0
## 9954       613 1996    5.0
## 9955       628 1996    5.0
## 9956       631 1996    5.0
## 9957       637 1996    3.0
## 9958       640 1996    3.0
## 9959       648 1996    3.0
## 9960       653 1996    5.0
## 9961       661 1996    5.0
## 9962       663 1996    3.0
## 9963       667 1996    5.0
## 9964       671 1996    3.0
## 9965       673 1996    3.0
## 9966       694 1996    5.0
## 9967       704 1996    4.0
## 9968       707 1996    5.0
## 9969       708 1996    5.0
## 9970       711 1996    4.0
## 9971       719 1996    4.0
## 9972       724 1996    3.0
## 9973       733 1996    5.0
## 9974       736 1996    4.0
## 9975       737 1996    3.0
## 9976       743 1996    3.0
## 9977       745 1995    4.0
## 9978       748 1996    3.0
## 9979       761 1996    3.0
## 9980       762 1996    4.0
## 9981       780 1996    4.0
## 9982       784 1996    3.0
## 9983       785 1996    5.0
## 9984       786 1996    5.0
## 9985       788 1996    5.0
## 9986       799 1996    4.0
## 9987       802 1996    5.0
## 9988       805 1996    5.0
## 9989       810 1996    3.0
## 9990       832 1996    5.0
## 9991       839 1996    5.0
## 9992       849 1996    5.0
## 9993       852 1996    5.0
## 9994       880 1996    4.0
## 9995       891 1995    4.0
## 9996      1059 1996    5.0
## 9997      1061 1996    5.0
## 9998      1073 1971    5.0
## 9999      1356 1996    5.0
## 10000     1367 1996    5.0
## 10001      581 1995    4.0
## 10002      589 1991    3.0
## 10003      908 1959    5.0
## 10004     1171 1992    5.0
## 10005     1259 1986    4.0
## 10006     1284 1946    5.0
## 10007     1617 1997    5.0
## 10008     1673 1997    4.0
## 10009     1957 1981    4.0
## 10010     2858 1999    5.0
## 10011     3098 1984    4.0
## 10012     3125 1999    4.0
## 10013     3160 1999    5.0
## 10014     3422 1986    3.0
## 10015     3481 2000    4.0
## 10016     3626 1999    4.0
## 10017     3920 1993    5.0
## 10018     3925 1984    5.0
## 10019     3930 1954    4.0
## 10020     3932 1933    4.0
## 10021     3963 1964    3.0
## 10022     3965 1946    4.0
## 10023     3966 1945    5.0
## 10024        1 1995    3.5
## 10025        2 1995    2.5
## 10026       47 1995    3.5
## 10027       50 1995    4.0
## 10028      110 1995    3.5
## 10029      150 1995    3.5
## 10030      260 1977    3.0
## 10031      296 1994    4.0
## 10032      318 1994    4.0
## 10033      356 1994    4.0
## 10034      480 1993    3.0
## 10035      527 1993    4.0
## 10036      541 1982    4.0
## 10037      593 1991    3.5
## 10038      608 1996    4.0
## 10039      778 1996    4.0
## 10040      858 1972    4.5
## 10041      912 1942    3.5
## 10042      924 1968    4.0
## 10043     1036 1988    3.0
## 10044     1196 1980    3.0
## 10045     1200 1986    3.0
## 10046     1206 1971    4.0
## 10047     1208 1979    4.0
## 10048     1213 1990    4.0
## 10049     1221 1974    4.0
## 10050     1222 1987    4.0
## 10051     1246 1989    3.5
## 10052     1258 1980    4.0
## 10053     1270 1985    3.0
## 10054     1682 1998    3.5
## 10055     1961 1988    3.5
## 10056     2006 1998    2.5
## 10057     2028 1998    3.5
## 10058     2324 1997    4.0
## 10059     2395 1998    3.5
## 10060     2571 1999    3.5
## 10061     2628 1999    3.0
## 10062     2692 1998    3.5
## 10063     2762 1999    4.0
## 10064     2858 1999    4.0
## 10065     2918 1986    3.0
## 10066     2959 1999    4.0
## 10067     3114 1999    3.0
## 10068     3481 2000    3.0
## 10069     3578 2000    3.0
## 10070     3717 2000    1.5
## 10071     3753 2000    2.5
## 10072     3793 2000    3.0
## 10073     3897 2000    3.0
## 10074     3949 2000    3.5
## 10075     3996 2000    3.5
## 10076     4011 2000    3.5
## 10077     4018 2000    3.0
## 10078     4022 2000    4.0
## 10079     4025 2000    1.5
## 10080     4027 2000    3.5
## 10081     4226 2000    4.0
## 10082     4246 2001    2.5
## 10083     4262 1983    4.0
## 10084     4306 2001    3.0
## 10085     4447 2001    3.0
## 10086     4720 2001    3.5
## 10087     4878 2001    4.0
## 10088     4886 2001    3.0
## 10089     4963 2001    3.0
## 10090     4973 2001    3.5
## 10091     4979 2001    3.5
## 10092     4993 2001    3.0
## 10093     4995 2001    3.5
## 10094     5218 2002    2.5
## 10095     5349 2002    3.0
## 10096     5378 2002    3.0
## 10097     5418 2002    3.0
## 10098     5445 2002    3.5
## 10099     5679 2002    3.0
## 10100     5903 2002    2.5
## 10101     5952 2002    3.0
## 10102     5989 2002    3.5
## 10103     5995 2002    3.5
## 10104     6333 2003    2.5
## 10105     6377 2003    3.0
## 10106     6502 2002    3.5
## 10107     6539 2003    3.0
## 10108     6711 2003    4.0
## 10109     6863 2003    3.0
## 10110     6874 2003    3.5
## 10111     6934 2003    2.0
## 10112     7143 2003    3.0
## 10113     7147 2003    3.5
## 10114     7153 2003    3.0
## 10115     7254 2004    3.0
## 10116     7361 2004    3.5
## 10117     7438 2004    3.0
## 10118     7458 2004    2.5
## 10119     7502 2001    3.5
## 10120     8644 2004    3.0
## 10121     8874 2004    3.0
## 10122     8950 2004    3.5
## 10123     8961 2004    2.0
## 10124    31696 2005    3.0
## 10125    33794 2005    3.0
## 10126    36529 2005    3.5
## 10127    41566 2005    3.0
## 10128    44191 2006    3.5
## 10129    44195 2006    3.5
## 10130    45447 2006    2.5
## 10131    46578 2006    3.0
## 10132    47610 2006    3.0
## 10133    48385 2006    3.0
## 10134    48394 2006    3.5
## 10135    48516 2006    3.5
## 10136    49272 2006    3.0
## 10137    50872 2007    4.0
## 10138    51255 2007    3.0
## 10139    51540 2007    3.0
## 10140    51662 2007    3.0
## 10141    52281 2007    3.5
## 10142    52722 2007    1.5
## 10143    52973 2007    2.5
## 10144    53000 2007    3.5
## 10145    53125 2007    3.0
## 10146    53322 2007    2.5
## 10147    53519 2007    3.5
## 10148    53972 2007    3.0
## 10149    53996 2007    2.0
## 10150    54001 2007    2.5
## 10151    54259 2007    3.0
## 10152    54272 2007    3.5
## 10153    54286 2007    3.0
## 10154    54503 2007    3.0
## 10155    54997 2007    3.5
## 10156    55247 2007    3.5
## 10157    55269 2007    3.5
## 10158    55765 2007    3.0
## 10159    55820 2007    5.0
## 10160    56174 2007    3.0
## 10161    56367 2007    4.0
## 10162    56757 2007    3.5
## 10163    56782 2007    4.0
## 10164    58559 2008    3.5
## 10165    59315 2008    3.0
## 10166    60069 2008    4.0
## 10167    61323 2008    3.5
## 10168    64957 2008    3.5
## 10169    68157 2009    3.5
## 10170    68319 2009    2.0
## 10171    68358 2009    3.0
## 10172    68954 2009    4.0
## 10173    69122 2009    2.0
## 10174    72998 2009    2.0
## 10175    74458 2010    3.0
## 10176    79132 2010    3.5
## 10177    79702 2010    3.0
## 10178    81562 2010    3.5
## 10179    81591 2010    3.5
## 10180    82459 2010    3.5
## 10181    86882 2011    3.5
## 10182    88140 2011    3.0
## 10183    88744 2011    3.5
## 10184    89492 2011    3.5
## 10185    89745 2012    2.5
## 10186    91529 2012    3.0
## 10187    92259 2011    4.0
## 10188    94959 2012    4.0
## 10189    97752 2012    2.5
## 10190    97938 2012    3.0
## 10191    99114 2012    3.5
## 10192   102445 2013    3.0
## 10193   103249 2013    2.5
## 10194   104374 2013    3.5
## 10195   104841 2013    3.5
## 10196   105844 2013    3.5
## 10197   106100 2013    3.5
## 10198   106920 2013    4.0
## 10199   109487 2014    3.5
## 10200   112552 2014    3.5
## 10201   112852 2014    3.0
## 10202   114662 2014    1.0
## 10203   115713 2015    3.5
## 10204   116797 2014    3.5
## 10205   117176 2014    3.5
## 10206   122882 2015    4.0
## 10207   122886 2015    3.0
## 10208   122904 2016    3.0
## 10209   122920 2016    3.0
## 10210   134130 2015    3.5
## 10211   136864 2016    1.0
## 10212   139385 2015    3.5
## 10213   142488 2015    3.0
## 10214   156607 2016    2.0
## 10215        1 1995    5.0
## 10216        2 1995    2.5
## 10217        6 1995    4.5
## 10218       10 1995    3.0
## 10219       15 1995    2.5
## 10220       16 1995    4.0
## 10221       19 1995    1.5
## 10222       21 1995    3.5
## 10223       25 1995    4.5
## 10224       31 1995    3.5
## 10225       32 1995    5.0
## 10226       34 1995    2.5
## 10227       36 1995    4.5
## 10228       39 1995    4.0
## 10229       44 1995    3.0
## 10230       47 1995    5.0
## 10231       48 1995    2.0
## 10232       50 1995    5.0
## 10233       60 1995    2.0
## 10234       63 1996    3.5
## 10235       65 1996    2.0
## 10236       69 1995    4.0
## 10237       70 1996    3.5
## 10238       98 1994    3.0
## 10239      101 1996    3.5
## 10240      104 1996    2.5
## 10241      107 1996    3.0
## 10242      110 1995    4.0
## 10243      111 1976    3.5
## 10244      112 1995    3.5
## 10245      145 1995    3.0
## 10246      147 1995    4.5
## 10247      150 1995    3.5
## 10248      153 1995    1.0
## 10249      158 1995    2.0
## 10250      160 1995    3.0
## 10251      163 1995    3.5
## 10252      165 1995    3.5
## 10253      168 1995    2.5
## 10254      169 1995    0.5
## 10255      172 1995    3.5
## 10256      173 1995    3.0
## 10257      175 1995    4.5
## 10258      177 1995    3.0
## 10259      180 1995    3.5
## 10260      185 1995    2.5
## 10261      193 1995    3.0
## 10262      198 1995    4.0
## 10263      208 1995    3.0
## 10264      215 1995    5.0
## 10265      216 1995    4.0
## 10266      223 1994    4.5
## 10267      231 1994    3.5
## 10268      233 1994    4.0
## 10269      235 1994    4.0
## 10270      239 1995    3.0
## 10271      246 1994    4.5
## 10272      247 1994    4.0
## 10273      253 1994    3.5
## 10274      256 1994    2.5
## 10275      258 1995    2.0
## 10276      260 1977    4.5
## 10277      266 1994    4.0
## 10278      267 1995    3.0
## 10279      288 1994    3.5
## 10280      292 1995    3.0
## 10281      293 1994    5.0
## 10282      296 1994    5.0
## 10283      300 1994    4.0
## 10284      316 1994    3.0
## 10285      318 1994    5.0
## 10286      319 1994    4.0
## 10287      322 1995    4.5
## 10288      327 1995    2.5
## 10289      333 1995    2.0
## 10290      337 1993    3.5
## 10291      338 1995    3.0
## 10292      344 1994    2.0
## 10293      349 1994    3.0
## 10294      352 1994    3.5
## 10295      353 1994    4.0
## 10296      356 1994    5.0
## 10297      364 1994    5.0
## 10298      367 1994    2.0
## 10299      368 1994    3.0
## 10300      374 1994    2.5
## 10301      377 1994    3.0
## 10302      380 1994    3.0
## 10303      407 1995    3.5
## 10304      409 1994    2.5
## 10305      410 1993    2.5
## 10306      413 1994    2.5
## 10307      428 1993    4.0
## 10308      431 1993    3.5
## 10309      435 1993    2.5
## 10310      441 1993    3.5
## 10311      442 1993    3.5
## 10312      456 1994    4.0
## 10313      457 1993    4.0
## 10314      466 1993    2.5
## 10315      471 1994    4.0
## 10316      474 1993    3.5
## 10317      480 1993    4.0
## 10318      481 1993    3.5
## 10319      482 1994    4.0
## 10320      485 1993    3.0
## 10321      493 1993    4.0
## 10322      497 1993    3.5
## 10323      500 1993    3.5
## 10324      502 1994    3.0
## 10325      507 1993    3.5
## 10326      508 1993    4.0
## 10327      510 1993    0.5
## 10328      514 1994    3.5
## 10329      520 1993    4.0
## 10330      522 1992    3.0
## 10331      527 1993    5.0
## 10332      541 1982    4.5
## 10333      551 1993    3.5
## 10334      553 1993    4.0
## 10335      555 1993    4.0
## 10336      575 1994    3.5
## 10337      585 1995    2.5
## 10338      586 1990    3.5
## 10339      588 1992    5.0
## 10340      589 1991    3.0
## 10341      590 1990    4.5
## 10342      592 1989    4.0
## 10343      593 1991    4.5
## 10344      594 1937    3.5
## 10345      595 1991    4.5
## 10346      596 1940    3.5
## 10347      597 1990    3.0
## 10348      608 1996    4.0
## 10349      610 1981    1.5
## 10350      628 1996    4.5
## 10351      631 1996    3.0
## 10352      648 1996    3.0
## 10353      653 1996    2.5
## 10354      673 1996    3.0
## 10355      694 1996    3.0
## 10356      704 1996    3.0
## 10357      708 1996    2.5
## 10358      719 1996    2.5
## 10359      733 1996    3.0
## 10360      735 1994    4.0
## 10361      736 1996    1.5
## 10362      737 1996    2.5
## 10363      741 1995    4.0
## 10364      742 1996    2.5
## 10365      745 1995    4.0
## 10366      748 1996    3.5
## 10367      761 1996    2.5
## 10368      778 1996    5.0
## 10369      780 1996    3.5
## 10370      784 1996    1.0
## 10371      785 1996    3.5
## 10372      786 1996    2.0
## 10373      788 1996    2.5
## 10374      799 1996    3.5
## 10375      802 1996    3.0
## 10376      832 1996    2.5
## 10377      849 1996    3.5
## 10378      858 1972    5.0
## 10379      880 1996    2.5
## 10380      904 1954    4.5
## 10381      909 1960    4.0
## 10382      919 1939    4.0
## 10383      924 1968    1.5
## 10384      940 1938    4.5
## 10385      968 1968    4.0
## 10386     1015 1993    3.5
## 10387     1020 1993    3.0
## 10388     1022 1950    3.5
## 10389     1025 1963    3.5
## 10390     1027 1991    3.5
## 10391     1029 1941    3.0
## 10392     1032 1951    3.0
## 10393     1033 1981    3.5
## 10394     1036 1988    4.5
## 10395     1049 1996    3.5
## 10396     1059 1996    3.5
## 10397     1060 1996    4.0
## 10398     1061 1996    4.0
## 10399     1080 1979    4.5
## 10400     1089 1992    3.5
## 10401     1090 1986    5.0
## 10402     1093 1991    2.0
## 10403     1094 1992    3.5
## 10404     1097 1982    4.0
## 10405     1101 1986    3.5
## 10406     1120 1996    3.5
## 10407     1127 1989    4.0
## 10408     1129 1981    4.0
## 10409     1136 1975    3.0
## 10410     1148 1993    4.0
## 10411     1185 1989    4.0
## 10412     1186 1989    3.5
## 10413     1193 1975    4.5
## 10414     1194 1978    4.0
## 10415     1196 1980    5.0
## 10416     1197 1987    5.0
## 10417     1198 1981    5.0
## 10418     1199 1985    4.5
## 10419     1200 1986    5.0
## 10420     1201 1966    5.0
## 10421     1203 1957    4.5
## 10422     1204 1962    5.0
## 10423     1206 1971    4.5
## 10424     1208 1979    5.0
## 10425     1210 1983    5.0
## 10426     1213 1990    5.0
## 10427     1214 1979    5.0
## 10428     1215 1993    4.5
## 10429     1218 1989    4.5
## 10430     1220 1980    3.5
## 10431     1221 1974    5.0
## 10432     1222 1987    4.5
## 10433     1225 1984    3.0
## 10434     1228 1980    4.5
## 10435     1240 1984    4.5
## 10436     1241 1992    4.0
## 10437     1242 1989    3.5
## 10438     1245 1990    4.0
## 10439     1246 1989    3.5
## 10440     1252 1974    4.0
## 10441     1255 1987    4.5
## 10442     1257 1985    4.0
## 10443     1258 1980    4.0
## 10444     1259 1986    3.5
## 10445     1261 1987    4.5
## 10446     1262 1963    4.0
## 10447     1263 1978    4.0
## 10448     1265 1993    4.0
## 10449     1266 1992    4.5
## 10450     1270 1985    5.0
## 10451     1274 1988    4.5
## 10452     1275 1986    4.0
## 10453     1282 1940    4.0
## 10454     1285 1989    3.5
## 10455     1288 1984    2.5
## 10456     1291 1989    5.0
## 10457     1293 1982    4.5
## 10458     1298 1982    1.5
## 10459     1299 1984    3.5
## 10460     1302 1989    2.0
## 10461     1320 1992    3.5
## 10462     1321 1981    3.0
## 10463     1339 1992    3.0
## 10464     1342 1992    3.0
## 10465     1343 1991    4.0
## 10466     1345 1976    4.0
## 10467     1347 1984    3.5
## 10468     1350 1976    3.0
## 10469     1356 1996    3.5
## 10470     1358 1996    4.0
## 10471     1359 1996    2.0
## 10472     1367 1996    2.5
## 10473     1370 1990    3.0
## 10474     1372 1991    3.5
## 10475     1374 1982    4.0
## 10476     1377 1992    3.5
## 10477     1380 1978    4.0
## 10478     1387 1975    4.0
## 10479     1391 1996    3.0
## 10480     1393 1996    4.0
## 10481     1394 1987    4.0
## 10482     1396 1992    4.0
## 10483     1405 1996    3.5
## 10484     1407 1996    4.0
## 10485     1408 1992    3.0
## 10486     1438 1997    2.5
## 10487     1456 1997    1.0
## 10488     1464 1997    3.5
## 10489     1466 1997    4.0
## 10490     1479 1997    2.5
## 10491     1485 1997    3.5
## 10492     1499 1997    2.0
## 10493     1500 1997    4.0
## 10494     1515 1997    3.0
## 10495     1517 1997    3.5
## 10496     1527 1997    3.5
## 10497     1544 1997    3.0
## 10498     1552 1997    2.5
## 10499     1562 1997    0.5
## 10500     1566 1997    4.0
## 10501     1573 1997    3.5
## 10502     1580 1997    3.0
## 10503     1584 1997    3.0
## 10504     1587 1982    4.0
## 10505     1590 1997    4.5
## 10506     1591 1997    3.0
## 10507     1595 1997    0.5
## 10508     1597 1997    3.5
## 10509     1599 1997    1.0
## 10510     1603 1997    2.5
## 10511     1608 1997    3.5
## 10512     1617 1997    4.5
## 10513     1625 1997    4.0
## 10514     1639 1997    3.5
## 10515     1644 1997    1.5
## 10516     1645 1997    3.0
## 10517     1653 1997    3.5
## 10518     1673 1997    4.0
## 10519     1674 1985    3.5
## 10520     1676 1997    3.0
## 10521     1681 1997    1.5
## 10522     1682 1998    4.5
## 10523     1690 1997    2.0
## 10524     1704 1997    4.0
## 10525     1707 1997    1.5
## 10526     1721 1997    0.5
## 10527     1729 1997    3.5
## 10528     1732 1998    4.0
## 10529     1748 1998    4.0
## 10530     1752 1998    2.0
## 10531     1753 1998    4.5
## 10532     1760 1997    0.5
## 10533     1762 1998    3.5
## 10534     1777 1998    3.0
## 10535     1779 1998    3.0
## 10536     1784 1997    4.5
## 10537     1785 1990    3.5
## 10538     1792 1998    2.5
## 10539     1826 1998    1.0
## 10540     1840 1998    3.5
## 10541     1858 1997    3.0
## 10542     1862 1998    1.0
## 10543     1876 1998    2.5
## 10544     1882 1998    1.0
## 10545     1884 1998    3.5
## 10546     1909 1998    3.5
## 10547     1911 1998    3.0
## 10548     1912 1998    4.5
## 10549     1916 1998    4.0
## 10550     1917 1998    2.0
## 10551     1920 1998    2.5
## 10552     1923 1998    3.0
## 10553     1953 1971    3.5
## 10554     1954 1976    4.5
## 10555     1961 1988    4.0
## 10556     1965 1984    3.5
## 10557     1967 1986    5.0
## 10558     1968 1985    4.5
## 10559     1974 1980    3.5
## 10560     1982 1978    4.0
## 10561     1991 1988    3.5
## 10562     1994 1982    4.0
## 10563     1997 1973    4.0
## 10564     2000 1987    4.0
## 10565     2003 1984    4.5
## 10566     2004 1990    4.0
## 10567     2005 1985    5.0
## 10568     2006 1998    3.0
## 10569     2009 1973    4.0
## 10570     2011 1989    4.0
## 10571     2012 1990    2.5
## 10572     2018 1942    4.5
## 10573     2021 1984    3.5
## 10574     2023 1990    2.5
## 10575     2028 1998    4.5
## 10576     2033 1985    3.5
## 10577     2052 1993    3.5
## 10578     2054 1989    3.5
## 10579     2058 1998    2.5
## 10580     2060 1998    2.5
## 10581     2076 1986    4.0
## 10582     2078 1967    5.0
## 10583     2080 1955    3.5
## 10584     2081 1989    3.5
## 10585     2082 1992    3.5
## 10586     2087 1953    3.5
## 10587     2089 1990    3.5
## 10588     2090 1977    3.5
## 10589     2093 1985    4.0
## 10590     2096 1959    3.0
## 10591     2105 1982    3.0
## 10592     2115 1984    5.0
## 10593     2123 1989    4.0
## 10594     2124 1991    3.5
## 10595     2134 1985    4.0
## 10596     2138 1978    4.5
## 10597     2139 1982    4.0
## 10598     2140 1982    4.0
## 10599     2142 1991    3.5
## 10600     2143 1985    3.5
## 10601     2144 1984    4.5
## 10602     2148 1986    3.5
## 10603     2150 1980    3.0
## 10604     2159 1986    3.0
## 10605     2161 1984    3.5
## 10606     2164 1987    1.0
## 10607     2167 1998    3.0
## 10608     2174 1988    4.0
## 10609     2193 1988    4.0
## 10610     2194 1987    4.0
## 10611     2195 1998    3.0
## 10612     2231 1998    4.0
## 10613     2232 1997    4.0
## 10614     2248 1989    3.5
## 10615     2252 1992    4.0
## 10616     2273 1998    3.5
## 10617     2278 1998    4.0
## 10618     2288 1982    4.0
## 10619     2289 1992    4.0
## 10620     2291 1990    3.5
## 10621     2294 1998    3.5
## 10622     2302 1992    3.0
## 10623     2305 1998    4.5
## 10624     2315 1998    2.5
## 10625     2318 1998    4.5
## 10626     2321 1998    3.0
## 10627     2324 1997    3.5
## 10628     2327 1990    3.5
## 10629     2329 1998    4.5
## 10630     2335 1998    3.0
## 10631     2340 1998    0.5
## 10632     2353 1998    2.5
## 10633     2355 1998    3.0
## 10634     2360 1998    4.0
## 10635     2378 1984    3.5
## 10636     2387 1998    3.5
## 10637     2391 1998    3.5
## 10638     2394 1998    3.5
## 10639     2395 1998    4.5
## 10640     2396 1998    4.0
## 10641     2402 1985    3.0
## 10642     2403 1982    3.5
## 10643     2404 1988    3.0
## 10644     2406 1984    3.0
## 10645     2409 1979    4.0
## 10646     2410 1982    3.0
## 10647     2411 1985    3.5
## 10648     2412 1990    2.0
## 10649     2420 1984    4.5
## 10650     2421 1986    4.0
## 10651     2422 1989    3.0
## 10652     2424 1998    1.5
## 10653     2427 1998    4.0
## 10654     2428 1998    2.0
## 10655     2429 1998    2.0
## 10656     2431 1998    4.0
## 10657     2451 1987    3.5
## 10658     2455 1986    4.0
## 10659     2459 1974    4.5
## 10660     2460 1986    3.0
## 10661     2467 1986    4.5
## 10662     2470 1986    3.0
## 10663     2490 1999    3.5
## 10664     2495 1973    3.5
## 10665     2502 1999    4.5
## 10666     2528 1976    3.5
## 10667     2529 1968    4.5
## 10668     2541 1999    2.0
## 10669     2542 1998    4.5
## 10670     2551 1988    3.0
## 10671     2555 1999    1.0
## 10672     2560 1999    4.0
## 10673     2571 1999    4.5
## 10674     2572 1999    3.5
## 10675     2580 1999    4.5
## 10676     2582 1992    3.0
## 10677     2596 1998    4.0
## 10678     2599 1999    4.5
## 10679     2605 1999    2.0
## 10680     2606 1999    3.5
## 10681     2617 1999    3.5
## 10682     2628 1999    2.5
## 10683     2657 1975    2.0
## 10684     2671 1999    3.0
## 10685     2683 1999    3.0
## 10686     2687 1999    4.0
## 10687     2692 1998    4.5
## 10688     2694 1999    3.0
## 10689     2699 1990    3.0
## 10690     2700 1999    3.5
## 10691     2701 1999    2.0
## 10692     2706 1999    3.5
## 10693     2707 1999    4.0
## 10694     2710 1999    3.5
## 10695     2712 1999    4.5
## 10696     2713 1999    1.5
## 10697     2716 1984    4.5
## 10698     2717 1989    3.0
## 10699     2720 1999    1.0
## 10700     2722 1999    2.5
## 10701     2723 1999    3.0
## 10702     2724 1999    2.5
## 10703     2728 1960    4.0
## 10704     2734 1986    3.0
## 10705     2746 1986    3.0
## 10706     2761 1999    2.5
## 10707     2762 1999    4.0
## 10708     2770 1999    3.0
## 10709     2791 1980    3.5
## 10710     2797 1988    3.5
## 10711     2798 1990    3.0
## 10712     2804 1983    4.0
## 10713     2808 1992    2.0
## 10714     2841 1999    4.0
## 10715     2858 1999    4.5
## 10716     2860 1999    3.0
## 10717     2862 1979    3.5
## 10718     2867 1985    4.0
## 10719     2871 1972    4.5
## 10720     2872 1981    3.5
## 10721     2879 1991    3.5
## 10722     2890 1999    3.5
## 10723     2900 1988    3.0
## 10724     2901 1979    3.5
## 10725     2915 1983    3.5
## 10726     2916 1990    4.0
## 10727     2918 1986    4.5
## 10728     2921 1973    4.0
## 10729     2924 1978    4.5
## 10730     2947 1964    4.0
## 10731     2948 1963    4.5
## 10732     2951 1964    4.0
## 10733     2952 1996    4.0
## 10734     2953 1992    2.5
## 10735     2959 1999    5.0
## 10736     2968 1981    3.5
## 10737     2974 1999    1.0
## 10738     2985 1987    4.0
## 10739     2987 1988    3.5
## 10740     2997 1999    4.5
## 10741     3006 1999    4.5
## 10742     3013 1990    3.5
## 10743     3016 1982    4.0
## 10744     3018 1985    3.5
## 10745     3019 1989    4.0
## 10746     3020 1993    4.0
## 10747     3033 1987    3.5
## 10748     3034 1973    4.5
## 10749     3036 1981    4.0
## 10750     3052 1999    3.0
## 10751     3070 1984    3.0
## 10752     3081 1999    2.5
## 10753     3082 1999    2.5
## 10754     3101 1987    3.5
## 10755     3104 1988    4.0
## 10756     3108 1991    4.0
## 10757     3113 1999    2.5
## 10758     3114 1999    4.0
## 10759     3146 1999    2.0
## 10760     3147 1999    3.5
## 10761     3153 1958    4.0
## 10762     3160 1999    3.5
## 10763     3173 1999    2.5
## 10764     3174 1999    4.0
## 10765     3175 1999    2.5
## 10766     3178 1999    4.0
## 10767     3210 1982    3.5
## 10768     3213 1993    4.5
## 10769     3252 1992    4.0
## 10770     3253 1992    3.5
## 10771     3254 1993    2.5
## 10772     3255 1992    2.5
## 10773     3256 1992    3.0
## 10774     3263 1992    4.0
## 10775     3265 1992    4.0
## 10776     3267 1992    3.5
## 10777     3273 2000    2.5
## 10778     3275 2000    3.5
## 10779     3298 2000    4.0
## 10780     3300 2000    3.5
## 10781     3328 1999    4.5
## 10782     3360 1986    3.5
## 10783     3361 1988    3.5
## 10784     3362 1975    4.0
## 10785     3363 1973    4.0
## 10786     3424 1989    4.0
## 10787     3426 1991    3.5
## 10788     3438 1990    3.5
## 10789     3439 1991    3.0
## 10790     3440 1993    1.5
## 10791     3448 1987    3.5
## 10792     3471 1977    3.0
## 10793     3476 1990    4.0
## 10794     3479 1985    4.0
## 10795     3481 2000    4.0
## 10796     3489 1991    3.5
## 10797     3499 1990    4.0
## 10798     3527 1987    3.5
## 10799     3535 2000    4.5
## 10800     3552 1980    4.0
## 10801     3554 2000    3.0
## 10802     3555 2000    2.0
## 10803     3573 1995    0.5
## 10804     3574 1996    0.5
## 10805     3578 2000    4.0
## 10806     3581 1999    4.0
## 10807     3593 2000    0.5
## 10808     3617 2000    2.5
## 10809     3623 2000    2.0
## 10810     3671 1974    3.0
## 10811     3681 1965    4.5
## 10812     3687 1988    3.5
## 10813     3688 1982    3.0
## 10814     3696 1986    4.0
## 10815     3698 1987    4.0
## 10816     3702 1979    2.5
## 10817     3703 1981    3.5
## 10818     3704 1985    3.5
## 10819     3706 1987    4.5
## 10820     3717 2000    3.5
## 10821     3727 1987    3.5
## 10822     3728 1992    4.0
## 10823     3735 1973    4.0
## 10824     3740 1986    3.5
## 10825     3745 2000    3.5
## 10826     3751 2000    2.0
## 10827     3752 2000    2.5
## 10828     3753 2000    3.0
## 10829     3755 2000    3.0
## 10830     3761 1993    4.0
## 10831     3785 2000    3.0
## 10832     3793 2000    2.5
## 10833     3821 2000    1.5
## 10834     3826 2000    1.5
## 10835     3843 1983    4.0
## 10836     3852 2000    3.5
## 10837     3861 2000    2.5
## 10838     3882 2000    1.5
## 10839     3897 2000    4.0
## 10840     3916 2000    3.5
## 10841     3917 1987    3.0
## 10842     3948 2000    4.0
## 10843     3949 2000    4.0
## 10844     3950 2000    3.5
## 10845     3955 2000    3.0
## 10846     3961 1985    3.0
## 10847     3962 1987    2.5
## 10848     3967 2000    3.5
## 10849     3970 1981    4.5
## 10850     3972 1994    4.0
## 10851     3977 2000    2.0
## 10852     3979 2000    0.5
## 10853     3986 2000    3.0
## 10854     3994 2000    2.5
## 10855     3996 2000    3.5
## 10856     4002 1987    3.0
## 10857     4006 1986    4.0
## 10858     4007 1987    4.0
## 10859     4011 2000    4.5
## 10860     4014 2000    4.0
## 10861     4015 2000    2.5
## 10862     4018 2000    3.0
## 10863     4019 2000    3.0
## 10864     4022 2000    3.0
## 10865     4025 2000    2.5
## 10866     4027 2000    4.5
## 10867     4034 2000    4.5
## 10868     4054 2001    2.0
## 10869     4069 2001    1.5
## 10870     4085 1984    3.5
## 10871     4103 1987    4.5
## 10872     4105 1981    4.0
## 10873     4128 1987    3.5
## 10874     4135 1987    3.5
## 10875     4148 2001    3.0
## 10876     4214 1984    3.5
## 10877     4223 2001    3.5
## 10878     4226 2000    4.5
## 10879     4232 2001    0.5
## 10880     4239 2001    4.5
## 10881     4246 2001    2.5
## 10882     4255 2001    0.5
## 10883     4262 1983    4.0
## 10884     4270 2001    2.5
## 10885     4275 1983    4.0
## 10886     4299 2001    2.5
## 10887     4306 2001    4.0
## 10888     4308 2001    2.5
## 10889     4310 2001    1.0
## 10890     4340 2001    2.0
## 10891     4343 2001    2.5
## 10892     4344 2001    3.5
## 10893     4351 1991    4.0
## 10894     4361 1982    4.0
## 10895     4367 2001    1.5
## 10896     4369 2001    5.0
## 10897     4370 2001    2.5
## 10898     4378 2000    3.5
## 10899     4388 2001    2.0
## 10900     4415 1981    3.5
## 10901     4437 1977    3.5
## 10902     4438 1972    4.0
## 10903     4441 1978    3.0
## 10904     4443 1981    4.0
## 10905     4444 1972    4.0
## 10906     4447 2001    1.5
## 10907     4448 2001    3.5
## 10908     4454 1998    3.5
## 10909     4467 1988    4.5
## 10910     4488 1988    3.5
## 10911     4519 1988    5.0
## 10912     4533 1985    3.0
## 10913     4553 1988    4.5
## 10914     4571 1989    3.5
## 10915     4577 1989    4.0
## 10916     4614 1989    3.5
## 10917     4618 1989    3.5
## 10918     4619 1989    2.5
## 10919     4621 1989    2.0
## 10920     4624 1989    4.0
## 10921     4638 2001    3.0
## 10922     4641 2001    4.0
## 10923     4642 2000    4.0
## 10924     4643 2001    2.5
## 10925     4697 1982    3.5
## 10926     4701 2001    3.0
## 10927     4713 1980    4.5
## 10928     4718 2001    3.0
## 10929     4720 2001    3.5
## 10930     4728 2001    1.5
## 10931     4734 2001    3.0
## 10932     4744 2001    1.5
## 10933     4775 2001    0.5
## 10934     4776 2001    3.5
## 10935     4800 1937    4.0
## 10936     4816 2001    2.0
## 10937     4823 2001    3.0
## 10938     4846 1993    4.0
## 10939     4848 2001    3.5
## 10940     4855 1971    4.0
## 10941     4865 2001    3.5
## 10942     4873 2001    4.0
## 10943     4874 2001    4.0
## 10944     4878 2001    4.0
## 10945     4886 2001    3.0
## 10946     4890 2001    2.5
## 10947     4896 2001    3.0
## 10948     4899 2001    2.0
## 10949     4915 1982    3.5
## 10950     4963 2001    3.5
## 10951     4974 2001    3.0
## 10952     4975 2001    3.5
## 10953     4979 2001    4.0
## 10954     4980 1991    3.5
## 10955     4987 1983    3.0
## 10956     4989 2001    3.0
## 10957     4993 2001    5.0
## 10958     4995 2001    4.5
## 10959     5010 2001    4.0
## 10960     5014 2001    4.5
## 10961     5025 2002    3.0
## 10962     5040 1984    3.5
## 10963     5055 1993    3.0
## 10964     5064 2002    4.0
## 10965     5094 2002    0.5
## 10966     5103 1993    4.0
## 10967     5110 2001    3.0
## 10968     5139 1976    3.5
## 10969     5146 2000    4.0
## 10970     5151 2002    3.0
## 10971     5152 2002    3.0
## 10972     5159 1992    4.0
## 10973     5165 1979    4.0
## 10974     5205 1980    3.5
## 10975     5210 1981    3.5
## 10976     5218 2002    3.0
## 10977     5219 2002    3.0
## 10978     5244 1980    5.0
## 10979     5266 2002    3.5
## 10980     5283 2002    3.0
## 10981     5294 2001    3.5
## 10982     5299 2002    3.0
## 10983     5313 2002    2.0
## 10984     5329 2002    4.5
## 10985     5349 2002    4.0
## 10986     5378 2002    3.0
## 10987     5388 2002    3.0
## 10988     5401 2002    3.0
## 10989     5418 2002    3.0
## 10990     5445 2002    3.0
## 10991     5449 2002    3.0
## 10992     5452 1993    1.0
## 10993     5459 2002    2.0
## 10994     5463 2002    3.0
## 10995     5464 2002    3.5
## 10996     5481 2002    2.0
## 10997     5502 2002    2.5
## 10998     5504 2002    0.5
## 10999     5507 2002    1.5
## 11000     5524 2002    2.0
## 11001     5540 1981    4.0
## 11002     5541 1991    2.5
## 11003     5572 2002    1.5
## 11004     5574 2002    2.5
## 11005     5585 1991    1.0
## 11006     5617 2002    3.5
## 11007     5618 2001    4.0
## 11008     5621 2002    2.0
## 11009     5630 2002    3.5
## 11010     5666 2002    4.0
## 11011     5669 2002    4.0
## 11012     5673 2002    4.5
## 11013     5679 2002    3.0
## 11014     5690 1988    4.0
## 11015     5691 1993    2.5
## 11016     5734 1981    2.5
## 11017     5735 1978    3.5
## 11018     5736 1985    2.5
## 11019     5737 1990    2.0
## 11020     5746 1981    4.5
## 11021     5810 2002    3.5
## 11022     5816 2002    3.0
## 11023     5882 2002    3.5
## 11024     5902 2002    4.0
## 11025     5903 2002    4.0
## 11026     5942 2002    2.0
## 11027     5943 2002    2.0
## 11028     5952 2002    5.0
## 11029     5954 2002    4.0
## 11030     5955 2002    3.5
## 11031     5956 2002    3.5
## 11032     5959 2002    4.0
## 11033     5989 2002    4.0
## 11034     5991 2002    1.5
## 11035     6016 2002    5.0
## 11036     6025 1993    4.0
## 11037     6155 2003    3.0
## 11038     6156 2003    3.5
## 11039     6157 2003    0.5
## 11040     6188 2003    3.5
## 11041     6212 2003    2.0
## 11042     6213 2003    2.5
## 11043     6218 2002    2.5
## 11044     6223 2001    4.0
## 11045     6281 2002    3.0
## 11046     6287 2003    2.5
## 11047     6298 2003    0.5
## 11048     6303 1971    3.5
## 11049     6323 2003    4.5
## 11050     6333 2003    3.5
## 11051     6338 2003    3.0
## 11052     6365 2003    2.0
## 11053     6373 2003    2.5
## 11054     6377 2003    4.0
## 11055     6378 2003    3.0
## 11056     6379 2003    2.5
## 11057     6383 2003    3.0
## 11058     6440 1991    4.0
## 11059     6502 2002    3.0
## 11060     6503 2003    1.5
## 11061     6534 2003    0.5
## 11062     6537 2003    2.0
## 11063     6539 2003    4.0
## 11064     6548 2003    2.0
## 11065     6559 1994    4.0
## 11066     6564 2003    3.0
## 11067     6565 2003    2.5
## 11068     6566 2003    0.5
## 11069     6582 1985    3.0
## 11070     6586 2003    3.0
## 11071     6593 2003    0.5
## 11072     6595 2003    1.5
## 11073     6602 1988    3.5
## 11074     6615 2003    1.5
## 11075     6659 1990    4.0
## 11076     6664 1985    3.0
## 11077     6695 2003    1.5
## 11078     6707 2002    2.5
## 11079     6708 2003    4.0
## 11080     6711 2003    4.5
## 11081     6731 1985    4.0
## 11082     6754 2003    3.5
## 11083     6755 2002    4.5
## 11084     6774 1983    3.5
## 11085     6796 1991    4.5
## 11086     6803 1985    4.0
## 11087     6807 1983    3.0
## 11088     6816 1987    4.0
## 11089     6820 2000    3.0
## 11090     6857 1995    3.5
## 11091     6863 2003    2.5
## 11092     6870 2003    4.0
## 11093     6874 2003    4.5
## 11094     6887 2003    3.5
## 11095     6888 2003    2.0
## 11096     6902 2002    3.5
## 11097     6934 2003    2.0
## 11098     6936 2003    2.0
## 11099     6947 2003    3.0
## 11100     6952 2003    3.0
## 11101     6953 2003    3.5
## 11102     6957 2003    2.0
## 11103     6977 1991    3.0
## 11104     7001 1978    4.0
## 11105     7007 1991    4.0
## 11106     7022 2000    4.5
## 11107     7036 1985    3.5
## 11108     7045 1990    3.5
## 11109     7046 1987    3.0
## 11110     7063 1972    4.0
## 11111     7090 2002    4.0
## 11112     7099 1984    4.5
## 11113     7117 1993    3.0
## 11114     7137 2003    4.0
## 11115     7143 2003    2.5
## 11116     7147 2003    2.0
## 11117     7153 2003    5.0
## 11118     7161 2003    2.0
## 11119     7235 2001    4.5
## 11120     7254 2004    3.5
## 11121     7285 2003    4.0
## 11122     7293 2004    3.5
## 11123     7308 1985    3.5
## 11124     7317 2004    4.0
## 11125     7318 2004    3.0
## 11126     7324 2004    2.5
## 11127     7325 2004    2.5
## 11128     7346 2004    3.0
## 11129     7360 2004    3.0
## 11130     7361 2004    4.5
## 11131     7367 2004    2.0
## 11132     7373 2004    3.5
## 11133     7387 1978    3.5
## 11134     7411 1987    3.0
## 11135     7419 1985    4.0
## 11136     7438 2004    4.0
## 11137     7445 2004    3.5
## 11138     7454 2004    1.5
## 11139     7458 2004    2.0
## 11140     7481 1985    4.0
## 11141     7482 1973    4.0
## 11142     7502 2001    4.0
## 11143     7701 1990    1.5
## 11144     7743 1985    3.5
## 11145     7802 1979    5.0
## 11146     7842 2000    2.5
## 11147     7844 1993    4.0
## 11148     7845 1996    3.0
## 11149     7846 2001    2.5
## 11150     7915 1998    3.5
## 11151     7976 2002    4.0
## 11152     7984 1986    3.5
## 11153     7987 1987    3.5
## 11154     8131 2001    4.0
## 11155     8340 1979    4.5
## 11156     8360 2004    3.5
## 11157     8361 2004    3.0
## 11158     8363 2004    1.5
## 11159     8368 2004    3.5
## 11160     8371 2004    3.0
## 11161     8372 2004    1.0
## 11162     8373 2004    2.5
## 11163     8376 2004    3.5
## 11164     8507 1932    3.5
## 11165     8526 2004    2.5
## 11166     8528 2004    3.0
## 11167     8529 2004    4.0
## 11168     8531 2004    2.0
## 11169     8622 2004    3.5
## 11170     8636 2004    3.5
## 11171     8638 2004    4.5
## 11172     8640 2004    2.5
## 11173     8641 2004    4.5
## 11174     8644 2004    3.0
## 11175     8665 2004    3.0
## 11176     8783 2004    2.5
## 11177     8784 2004    4.0
## 11178     8798 2004    3.0
## 11179     8807 2004    3.0
## 11180     8810 2004    2.0
## 11181     8811 2004    0.5
## 11182     8854 1988    3.5
## 11183     8859 2004    0.5
## 11184     8861 2004    2.5
## 11185     8874 2004    4.0
## 11186     8906 1980    4.0
## 11187     8910 2004    4.0
## 11188     8914 2004    3.0
## 11189     8917 2004    3.5
## 11190     8928 1967    3.5
## 11191     8947 2004    0.5
## 11192     8949 2004    3.5
## 11193     8950 2004    4.5
## 11194     8957 2004    4.0
## 11195     8961 2004    3.0
## 11196     8972 2004    3.0
## 11197     8984 2004    2.5
## 11198    25962 1950    4.0
## 11199    26258 1970    4.5
## 11200    26403 1977    3.5
## 11201    26480 1983    3.0
## 11202    26547 1985    4.5
## 11203    26585 1986    3.5
## 11204    26603 1987    3.5
## 11205    26606 1987    4.0
## 11206    26684 1990    3.5
## 11207    26704 1990    4.0
## 11208    26729 1991    3.0
## 11209    26736 1991    4.0
## 11210    26842 1993    4.0
## 11211    27002 1998    2.5
## 11212    27022 1998    4.5
## 11213    27032 1998    4.0
## 11214    27109 1973    4.5
## 11215    27317 1999    4.5
## 11216    27369 2000    3.5
## 11217    27478 2002    2.5
## 11218    27555 2002    4.0
## 11219    27604 2001    4.0
## 11220    27611 2003    2.0
## 11221    27646 2003    4.5
## 11222    27660 2003    4.5
## 11223    27704 2003    2.5
## 11224    27706 2004    3.0
## 11225    27772 2002    1.0
## 11226    27773 2003    5.0
## 11227    27778 2004    3.5
## 11228    27793 2004    2.0
## 11229    27800 2003    3.5
## 11230    27801 2003    4.0
## 11231    27808 2004    3.0
## 11232    27831 2004    4.0
## 11233    27904 2006    3.5
## 11234    30707 2004    4.5
## 11235    30749 2004    5.0
## 11236    30810 2004    4.0
## 11237    30812 2004    3.5
## 11238    30820 2004    3.5
## 11239    30825 2004    3.0
## 11240    31150 1977    4.0
## 11241    31225 2005    3.5
## 11242    31290 1991    0.5
## 11243    31422 2005    1.0
## 11244    31431 2005    1.0
## 11245    31435 2004    4.5
## 11246    31685 2005    3.0
## 11247    31696 2005    3.0
## 11248    31878 2004    3.5
## 11249    32352 1995    3.0
## 11250    32387 1966    4.0
## 11251    32587 2005    4.5
## 11252    32596 2005    2.5
## 11253    33004 2005    3.0
## 11254    33162 2005    4.0
## 11255    33164 2005    1.0
## 11256    33166 2004    5.0
## 11257    33171 2004    4.0
## 11258    33493 2005    3.0
## 11259    33679 2005    2.0
## 11260    33794 2005    4.0
## 11261    33834 2005    3.0
## 11262    34048 2005    2.5
## 11263    34150 2005    3.0
## 11264    34162 2005    3.0
## 11265    34319 2005    3.0
## 11266    34405 2005    3.5
## 11267    34437 2005    3.5
## 11268    34530 2005    2.0
## 11269    35836 2005    3.0
## 11270    36519 2005    2.5
## 11271    36529 2005    3.5
## 11272    36708 2005    3.5
## 11273    37386 2005    3.0
## 11274    37731 2005    4.5
## 11275    37733 2005    4.0
## 11276    38061 2005    1.5
## 11277    39381 2005    3.5
## 11278    39446 2005    3.5
## 11279    40278 2005    3.5
## 11280    40574 2005    3.0
## 11281    40629 2005    1.5
## 11282    40732 2005    4.0
## 11283    40815 2005    3.5
## 11284    41285 2005    3.5
## 11285    41566 2005    3.0
## 11286    41569 2005    2.5
## 11287    41997 2005    4.0
## 11288    42011 2005    3.0
## 11289    42723 2005    3.0
## 11290    42725 2006    3.5
## 11291    43838 1986    3.5
## 11292    43919 2006    1.0
## 11293    43921 2006    4.0
## 11294    43936 2006    3.0
## 11295    44191 2006    4.0
## 11296    44195 2006    3.5
## 11297    44199 2006    4.0
## 11298    44245 2000    4.0
## 11299    44397 2006    3.0
## 11300    44665 2006    4.0
## 11301    44761 2005    4.5
## 11302    44972 2006    2.0
## 11303    44974 2005    4.0
## 11304    45183 2005    3.0
## 11305    45186 2006    2.5
## 11306    45447 2006    2.5
## 11307    45506 2005    4.0
## 11308    45666 2006    0.5
## 11309    45672 2006    1.0
## 11310    45722 2006    3.5
## 11311    45726 2006    2.5
## 11312    45728 2006    3.0
## 11313    46322 2006    4.0
## 11314    46335 2006    3.0
## 11315    46337 2006    0.5
## 11316    46578 2006    3.5
## 11317    46865 2006    1.0
## 11318    46965 2006    2.5
## 11319    46970 2006    2.5
## 11320    46972 2006    3.5
## 11321    46976 2006    4.0
## 11322    47099 2006    3.5
## 11323    47200 2006    3.5
## 11324    47610 2006    4.0
## 11325    47640 2006    3.0
## 11326    47815 2006    0.5
## 11327    47997 2006    4.0
## 11328    48043 2006    3.5
## 11329    48304 2006    3.5
## 11330    48385 2006    3.5
## 11331    48394 2006    3.5
## 11332    48516 2006    4.0
## 11333    48591 2006    0.5
## 11334    48696 2006    4.0
## 11335    48744 2006    3.5
## 11336    48774 2006    4.5
## 11337    48780 2006    4.5
## 11338    48877 2006    2.5
## 11339    49272 2006    4.0
## 11340    49278 2006    3.0
## 11341    49526 2006    2.5
## 11342    49528 2006    2.5
## 11343    49530 2006    3.5
## 11344    49649 2006    2.5
## 11345    49651 2006    3.0
## 11346    49817 1982    4.0
## 11347    50641 1977    5.0
## 11348    50651 2006    3.0
## 11349    50794 2006    2.5
## 11350    50798 2007    1.0
## 11351    50806 2007    1.0
## 11352    50872 2007    3.0
## 11353    51255 2007    2.5
## 11354    51277 1978    4.5
## 11355    51540 2007    4.0
## 11356    51662 2007    3.0
## 11357    51931 2007    4.0
## 11358    51937 2007    2.5
## 11359    52245 2007    3.0
## 11360    52281 2007    3.5
## 11361    52328 2007    3.5
## 11362    52458 2007    3.0
## 11363    52462 2007    3.5
## 11364    52604 2007    4.5
## 11365    52722 2007    2.0
## 11366    52952 2006    4.0
## 11367    52973 2007    3.0
## 11368    53000 2007    3.5
## 11369    53121 2007    2.0
## 11370    53125 2007    3.0
## 11371    53318 2006    4.5
## 11372    53322 2007    2.0
## 11373    53468 2006    4.0
## 11374    53519 2007    3.5
## 11375    53550 2006    4.0
## 11376    53972 2007    3.0
## 11377    53996 2007    2.5
## 11378    54001 2007    3.5
## 11379    54190 2007    2.0
## 11380    54272 2007    3.0
## 11381    54286 2007    3.0
## 11382    54290 2007    0.5
## 11383    54331 2007    4.0
## 11384    54503 2007    4.0
## 11385    54648 2007    3.0
## 11386    54745 2007    3.5
## 11387    54995 2007    3.5
## 11388    54997 2007    4.0
## 11389    55052 2007    4.0
## 11390    55094 2007    4.0
## 11391    55207 2004    4.0
## 11392    55232 2007    2.5
## 11393    55245 2007    3.0
## 11394    55247 2007    4.0
## 11395    55269 2007    3.5
## 11396    55290 2007    4.0
## 11397    55577 2007    3.0
## 11398    55721 2007    4.5
## 11399    55765 2007    3.5
## 11400    55805 2007    2.5
## 11401    55820 2007    4.5
## 11402    55830 2008    3.5
## 11403    55995 2007    2.0
## 11404    56003 2006    2.5
## 11405    56145 2007    4.0
## 11406    56174 2007    2.5
## 11407    56251 2007    3.5
## 11408    56367 2007    3.5
## 11409    56587 2007    3.0
## 11410    56757 2007    2.5
## 11411    56775 2007    2.5
## 11412    56782 2007    4.0
## 11413    56801 2007    2.0
## 11414    57368 2008    1.5
## 11415    57528 2008    3.5
## 11416    57532 2008    1.0
## 11417    57640 2008    3.0
## 11418    57669 2008    4.0
## 11419    58025 2008    1.5
## 11420    58146 2008    0.5
## 11421    58293 2008    1.0
## 11422    58295 2008    3.0
## 11423    58301 2007    4.0
## 11424    58315 2008    1.0
## 11425    58351 2007    4.0
## 11426    58559 2008    5.0
## 11427    58627 2008    3.5
## 11428    58803 2008    3.0
## 11429    58975 2008    2.5
## 11430    58998 2008    3.5
## 11431    59014 2008    1.0
## 11432    59022 2008    2.5
## 11433    59315 2008    3.0
## 11434    59369 2008    3.0
## 11435    59387 2006    3.5
## 11436    59615 2008    1.5
## 11437    59784 2008    2.5
## 11438    59900 2008    2.0
## 11439    59995 2007    4.5
## 11440    60037 2008    2.0
## 11441    60069 2008    3.0
## 11442    60072 2008    2.5
## 11443    60074 2008    2.0
## 11444    60126 2008    2.0
## 11445    60161 2008    4.0
## 11446    60293 2008    5.0
## 11447    60487 1966    3.5
## 11448    60609 2006    4.0
## 11449    60684 2009    3.0
## 11450    60753 2008    3.0
## 11451    60756 2008    4.0
## 11452    61024 2008    3.5
## 11453    61132 2008    3.5
## 11454    61248 2008    3.0
## 11455    61323 2008    3.5
## 11456    61348 2008    0.5
## 11457    61394 2008    3.5
## 11458    62394 2008    1.0
## 11459    62434 2008    3.5
## 11460    62801 1972    4.0
## 11461    62912 2008    0.5
## 11462    62956 2008    3.5
## 11463    63072 2009    3.5
## 11464    63082 2008    5.0
## 11465    63113 2008    2.0
## 11466    63131 2008    3.0
## 11467    63540 2008    0.5
## 11468    63826 2008    3.0
## 11469    63876 2008    4.0
## 11470    63992 2008    2.0
## 11471    64197 2008    4.0
## 11472    64508 2008    1.0
## 11473    64614 2008    4.5
## 11474    64716 2008    4.0
## 11475    64839 2008    5.0
## 11476    64900 1990    4.0
## 11477    64957 2008    4.5
## 11478    64983 2008    3.5
## 11479    65126 2008    4.0
## 11480    65310 2006    3.0
## 11481    65514 2008    4.5
## 11482    65982 2008    3.5
## 11483    66066 2009    0.5
## 11484    66090 2008    4.0
## 11485    66297 2009    3.5
## 11486    66335 2009    3.5
## 11487    66934 2008    4.0
## 11488    67252 2008    3.5
## 11489    67255 2009    4.0
## 11490    67665 2008    3.0
## 11491    67695 2009    3.0
## 11492    67734 2009    3.5
## 11493    67923 2009    3.5
## 11494    68073 2009    4.0
## 11495    68157 2009    4.0
## 11496    68159 2009    4.0
## 11497    68237 2009    4.0
## 11498    68319 2009    3.0
## 11499    68358 2009    3.5
## 11500    68444 2008    3.0
## 11501    68554 2009    2.5
## 11502    68901 2007    3.5
## 11503    68952 2009    3.5
## 11504    68954 2009    4.0
## 11505    68959 2005    2.5
## 11506    68965 2009    0.5
## 11507    69122 2009    3.5
## 11508    69306 2009    3.0
## 11509    69481 2008    4.0
## 11510    69640 2009    3.5
## 11511    69685 2002    3.0
## 11512    69746 2009    2.5
## 11513    69757 2009    4.5
## 11514    69844 2009    3.5
## 11515    70286 2009    3.5
## 11516    70465 2008    4.0
## 11517    70946 1990    0.5
## 11518    71057 2009    3.0
## 11519    71106 2009    4.0
## 11520    71135 2009    4.5
## 11521    71248 2009    3.5
## 11522    71379 2009    3.5
## 11523    71429 2009    4.5
## 11524    71466 2009    4.0
## 11525    71520 2009    4.0
## 11526    71533 2009    3.0
## 11527    71535 2009    4.0
## 11528    71745 2009    3.5
## 11529    71838 2009    2.0
## 11530    72011 2009    4.0
## 11531    72171 2009    3.5
## 11532    72226 2009    4.0
## 11533    72603 2009    3.0
## 11534    72641 2009    4.0
## 11535    72733 2009    4.5
## 11536    72998 2009    4.0
## 11537    73023 2009    4.0
## 11538    73268 2010    3.0
## 11539    73321 2010    3.0
## 11540    73759 2006    4.0
## 11541    74416 2009    4.5
## 11542    74458 2010    4.5
## 11543    74545 2010    4.0
## 11544    74851 2010    3.5
## 11545    74944 2010    3.5
## 11546    74948 2009    4.0
## 11547    75813 2009    3.5
## 11548    76060 2009    2.0
## 11549    76077 2010    3.5
## 11550    76093 2010    4.0
## 11551    76251 2010    4.5
## 11552    76272 2009    3.5
## 11553    77561 2010    2.5
## 11554    77800 2010    3.5
## 11555    77837 2010    3.5
## 11556    77866 2010    2.5
## 11557    78209 2010    3.0
## 11558    78266 2009    2.5
## 11559    78349 2009    3.5
## 11560    78469 2010    3.0
## 11561    78499 2010    4.5
## 11562    78574 2010    3.5
## 11563    78772 2010    2.0
## 11564    79008 2008    4.5
## 11565    79057 2010    3.5
## 11566    79091 2010    4.0
## 11567    79132 2010    4.0
## 11568    79242 2010    3.5
## 11569    79251 2010    3.5
## 11570    79274 2010    4.0
## 11571    79357 2009    5.0
## 11572    79553 2010    3.5
## 11573    79695 2010    3.5
## 11574    79702 2010    4.0
## 11575    79720 2010    3.5
## 11576    79879 2010    2.5
## 11577    80083 1989    3.5
## 11578    80219 2010    4.0
## 11579    80463 2010    4.5
## 11580    80489 2010    4.0
## 11581    80693 2010    4.0
## 11582    80831 2010    3.0
## 11583    80846 2010    2.5
## 11584    81083 2010    3.5
## 11585    81562 2010    3.5
## 11586    81564 2010    5.0
## 11587    81591 2010    4.0
## 11588    81660 1982    2.5
## 11589    81788 2010    4.0
## 11590    81834 2010    4.0
## 11591    81932 2010    4.0
## 11592    82041 2009    3.5
## 11593    82459 2010    4.0
## 11594    82527 2010    4.0
## 11595    82667 2010    4.5
## 11596    83134 2010    4.0
## 11597    83613 2011    3.0
## 11598    84152 2011    4.0
## 11599    84772 2011    3.0
## 11600    84944 2011    4.0
## 11601    85342 2010    5.0
## 11602    85401 2010    4.5
## 11603    85414 2011    4.5
## 11604    85788 2010    4.0
## 11605    85881 2011    3.5
## 11606    86142 2010    4.0
## 11607    86644 2011    3.5
## 11608    86882 2011    4.5
## 11609    87192 2011    4.5
## 11610    87232 2011    4.0
## 11611    87234 2010    4.0
## 11612    87298 2010    3.5
## 11613    87306 2011    4.0
## 11614    87869 2011    3.5
## 11615    88118 2010    4.0
## 11616    88125 2011    4.5
## 11617    88129 2011    3.5
## 11618    88140 2011    3.5
## 11619    88163 2011    4.0
## 11620    88744 2011    3.5
## 11621    89039 2011    3.5
## 11622    89085 2011    4.5
## 11623    89343 2011    3.5
## 11624    89470 2011    3.0
## 11625    89745 2012    4.5
## 11626    89774 2011    4.5
## 11627    89864 2011    3.0
## 11628    90376 2011    3.5
## 11629    90430 2011    3.5
## 11630    90439 2011    3.5
## 11631    90531 2011    4.0
## 11632    91485 2012    3.5
## 11633    91500 2012    4.0
## 11634    91529 2012    4.0
## 11635    91630 2011    4.0
## 11636    91658 2011    4.0
## 11637    91976 2012    3.0
## 11638    92309 2011    3.0
## 11639    93320 1999    5.0
## 11640    93363 2012    3.0
## 11641    93443 2011    3.5
## 11642    93510 2012    4.0
## 11643    93831 2012    3.5
## 11644    93838 2011    4.5
## 11645    93840 2012    4.0
## 11646    93855 2011    5.0
## 11647    94018 2012    2.5
## 11648    94070 2011    4.0
## 11649    94677 2012    4.0
## 11650    94833 2012    3.5
## 11651    94864 2012    4.0
## 11652    94959 2012    4.0
## 11653    95088 2012    4.0
## 11654    95147 1987    3.5
## 11655    95165 1990    3.0
## 11656    95182 1990    3.0
## 11657    95441 2012    4.0
## 11658    95473 1992    3.5
## 11659    95475 1991    4.5
## 11660    95499 1993    4.5
## 11661    95510 2012    4.0
## 11662    95558 2012    3.5
## 11663    95780 1994    3.5
## 11664    95782 1995    3.5
## 11665    95875 2012    3.5
## 11666    95963 1995    3.5
## 11667    95965 1990    4.5
## 11668    96004 1993    4.0
## 11669    96007 1997    3.5
## 11670    96079 2012    4.5
## 11671    96110 2012    2.5
## 11672    96281 2012    3.0
## 11673    96432 2012    3.5
## 11674    96588 2012    3.5
## 11675    96610 2012    4.0
## 11676    96737 2012    3.5
## 11677    96811 2012    4.0
## 11678    96821 2012    4.5
## 11679    97306 2012    4.0
## 11680    97752 2012    4.5
## 11681    97860 2012    3.5
## 11682    97913 2012    3.5
## 11683    97921 2012    4.0
## 11684    97923 2012    3.5
## 11685    97938 2012    4.5
## 11686    98607 2009    3.5
## 11687    98809 2012    4.5
## 11688    98829 1993    4.0
## 11689    98961 2012    4.0
## 11690    99112 2012    3.5
## 11691    99114 2012    4.5
## 11692    99145 2012    4.0
## 11693    99728 2013    3.5
## 11694   100159 2012    4.0
## 11695   100383 2013    4.0
## 11696   100714 2013    4.5
## 11697   101525 2012    4.0
## 11698   101864 2013    3.5
## 11699   102033 2013    3.5
## 11700   102123 2013    4.0
## 11701   102194 2012    4.0
## 11702   102252 1982    4.5
## 11703   102407 2013    2.5
## 11704   102445 2013    4.0
## 11705   102716 2013    3.5
## 11706   102993 2013    4.0
## 11707   103042 2013    3.0
## 11708   103048 2013    4.0
## 11709   103228 2013    2.5
## 11710   103249 2013    2.5
## 11711   103253 2013    3.0
## 11712   103384 2013    2.0
## 11713   103624 2013    3.0
## 11714   103688 2013    3.5
## 11715   103772 2013    3.0
## 11716   104841 2013    4.5
## 11717   104913 2013    4.5
## 11718   104944 2013    4.5
## 11719   105213 2013    3.5
## 11720   105504 2013    4.0
## 11721   106002 2013    3.5
## 11722   106022 2013    4.0
## 11723   106100 2013    4.5
## 11724   106487 2013    0.5
## 11725   106489 2013    3.5
## 11726   106491 2013    3.0
## 11727   106782 2013    4.5
## 11728   106916 2013    4.5
## 11729   106918 2013    3.5
## 11730   106920 2013    4.0
## 11731   107069 2013    3.5
## 11732   107348 2013    3.5
## 11733   107406 2013    4.0
## 11734   107953 2013    3.5
## 11735   107999 1991    3.5
## 11736   108090 1996    3.5
## 11737   108190 2014    3.5
## 11738   108583   NA    5.0
## 11739   108932 2014    4.0
## 11740   108981 2013    3.5
## 11741   109074 2012    4.0
## 11742   109374 2014    4.5
## 11743   109487 2014    4.5
## 11744   109850 2014    3.0
## 11745   109895 2013    3.5
## 11746   110127 2014    2.0
## 11747   110348 2013    4.0
## 11748   110501 2014    4.5
## 11749   110882 2013    3.0
## 11750   111360 2014    3.0
## 11751   111362 2014    4.0
## 11752   111364 2014    2.5
## 11753   111624 2014    3.5
## 11754   111659 2014    2.5
## 11755   111759 2014    4.0
## 11756   111781 2015    3.5
## 11757   111921 2014    4.0
## 11758   112183 2014    4.5
## 11759   112290 2014    2.5
## 11760   112515 2014    3.5
## 11761   112552 2014    4.5
## 11762   112556 2014    4.0
## 11763   112623 2014    3.0
## 11764   112818 2014    3.0
## 11765   112852 2014    5.0
## 11766   113252 2014    4.0
## 11767   113348 2014    2.5
## 11768   113573 2014    3.0
## 11769   114060 2014    4.0
## 11770   114180 2014    3.5
## 11771   114662 2014    4.0
## 11772   114670 2014    3.0
## 11773   114935 2014    4.5
## 11774   115122 2014    5.0
## 11775   115149 2014    3.5
## 11776   115216 2014    4.0
## 11777   115569 2014    4.5
## 11778   115713 2015    4.0
## 11779   115877 2012    3.5
## 11780   115881 2005    3.0
## 11781   116397 2014    3.5
## 11782   116797 2014    4.0
## 11783   116823 2014    0.5
## 11784   117123 2014    3.0
## 11785   117176 2014    4.0
## 11786   117529 2015    3.0
## 11787   118082 2014    3.5
## 11788   118696 2014    3.0
## 11789   119145 2015    3.5
## 11790   120466 2015    3.5
## 11791   121231 2014    3.5
## 11792   122882 2015    5.0
## 11793   122886 2015    4.5
## 11794   122890 2016    4.0
## 11795   122900 2015    3.0
## 11796   122904 2016    4.5
## 11797   122924 2016    3.5
## 11798   126006 1948    3.5
## 11799   127198 2015    3.5
## 11800   128360 2015    4.5
## 11801   130642 2014    3.5
## 11802   130682 2015    3.5
## 11803   133771 2015    3.5
## 11804   134130 2015    4.5
## 11805   135887 2015    3.0
## 11806   137857 2016    3.5
## 11807   139130 2007    4.0
## 11808   139385 2015    4.0
## 11809   139644 2015    3.5
## 11810   140267 2015    3.0
## 11811   140715 2015    4.0
## 11812   141718 2015    3.5
## 11813   141866 2015    4.0
## 11814   146656 2015    4.0
## 11815   148626 2015    3.5
## 11816   152077 2016    3.5
## 11817   152091 2016    3.0
## 11818   152844 1971    4.0
## 11819   156726 2016    3.5
## 11820   158238 2016    4.0
## 11821   159462 1987    3.0
## 11822   159858 2016    3.5
## 11823   161594 2016    3.0
## 11824   162376   NA    4.5
## 11825       10 1995    5.0
## 11826       16 1995    3.0
## 11827       17 1995    4.0
## 11828      104 1996    4.0
## 11829      110 1995    5.0
## 11830      153 1995    4.0
## 11831      260 1977    5.0
## 11832      356 1994    4.0
## 11833      527 1993    5.0
## 11834      592 1989    5.0
## 11835      612 1996    1.0
## 11836      912 1942    5.0
## 11837     1059 1996    4.0
## 11838     1080 1979    3.0
## 11839     1097 1982    3.0
## 11840     1136 1975    5.0
## 11841     1196 1980    5.0
## 11842     1210 1983    5.0
## 11843     1272 1970    5.0
## 11844     1302 1989    4.0
## 11845     1377 1992    4.0
## 11846     1562 1997    4.0
## 11847     1584 1997    5.0
## 11848     1704 1997    4.0
## 11849     1721 1997    2.0
## 11850     1722 1997    5.0
## 11851     1876 1998    3.0
## 11852     1917 1998    4.0
## 11853     1918 1998    5.0
## 11854     1954 1976    3.0
## 11855     1961 1988    4.0
## 11856     2000 1987    4.0
## 11857     2002 1992    4.0
## 11858     2028 1998    5.0
## 11859     2106 1993    5.0
## 11860     2167 1998    4.0
## 11861     2188 1998    3.0
## 11862     2333 1998    4.0
## 11863     2396 1998    5.0
## 11864     2490 1999    5.0
## 11865     2541 1999    4.0
## 11866     2549 1999    3.0
## 11867     2571 1999    5.0
## 11868     2572 1999    4.0
## 11869     2628 1999    4.0
## 11870     2640 1978    3.0
## 11871     2700 1999    4.0
## 11872     2710 1999    4.0
## 11873     2762 1999    4.0
## 11874        1 1995    3.0
## 11875        3 1995    3.0
## 11876       32 1995    4.0
## 11877      161 1995    4.0
## 11878      253 1994    4.5
## 11879      260 1977    4.5
## 11880      316 1994    2.0
## 11881      318 1994    4.0
## 11882      350 1994    3.0
## 11883      353 1994    4.5
## 11884      356 1994    4.0
## 11885      368 1994    2.0
## 11886      377 1994    4.0
## 11887      379 1994    0.5
## 11888      442 1993    2.0
## 11889      480 1993    3.0
## 11890      509 1993    0.5
## 11891      520 1993    3.0
## 11892      527 1993    4.0
## 11893      541 1982    4.0
## 11894      589 1991    4.0
## 11895      592 1989    1.0
## 11896      708 1996    4.0
## 11897      786 1996    1.0
## 11898      800 1996    3.0
## 11899      858 1972    1.0
## 11900      880 1996    1.0
## 11901      899 1952    3.0
## 11902      904 1954    4.0
## 11903      908 1959    4.5
## 11904      923 1941    4.5
## 11905      933 1955    4.0
## 11906      953 1946    4.0
## 11907      955 1938    4.0
## 11908     1080 1979    0.5
## 11909     1127 1989    3.0
## 11910     1196 1980    4.0
## 11911     1197 1987    3.5
## 11912     1198 1981    4.0
## 11913     1201 1966    3.5
## 11914     1207 1962    3.5
## 11915     1208 1979    0.5
## 11916     1214 1979    4.0
## 11917     1219 1960    4.0
## 11918     1221 1974    0.5
## 11919     1225 1984    1.0
## 11920     1234 1973    3.0
## 11921     1240 1984    3.0
## 11922     1253 1951    4.0
## 11923     1258 1980    4.5
## 11924     1259 1986    4.0
## 11925     1265 1993    3.5
## 11926     1270 1985    4.0
## 11927     1272 1970    4.0
## 11928     1278 1974    4.0
## 11929     1288 1984    4.0
## 11930     1291 1989    4.5
## 11931     1297 1985    3.0
## 11932     1356 1996    2.0
## 11933     1358 1996    0.5
## 11934     1376 1986    0.5
## 11935     1441 1993    3.5
## 11936     1517 1997    3.0
## 11937     1580 1997    2.5
## 11938     1584 1997    4.0
## 11939     1672 1997    4.0
## 11940     1721 1997    3.0
## 11941     1917 1998    0.5
## 11942     1967 1986    3.0
## 11943     1994 1982    3.0
## 11944     2003 1984    3.0
## 11945     2005 1985    3.5
## 11946     2011 1989    4.5
## 11947     2012 1990    3.5
## 11948     2115 1984    3.0
## 11949     2134 1985    3.0
## 11950     2161 1984    4.5
## 11951     2167 1998    2.5
## 11952     2174 1988    3.5
## 11953     2176 1948    4.0
## 11954     2231 1998    3.5
## 11955     2300 1968    4.0
## 11956     2302 1992    4.0
## 11957     2311 1984    2.5
## 11958     2355 1998    2.0
## 11959     2371 1985    3.0
## 11960     2423 1989    4.5
## 11961     2424 1998    2.5
## 11962     2455 1986    4.5
## 11963     2502 1999    4.0
## 11964     2571 1999    5.0
## 11965     2600 1999    3.0
## 11966     2692 1998    5.0
## 11967     2707 1999    1.5
## 11968     2710 1999    0.5
## 11969     2797 1988    2.0
## 11970     2841 1999    4.5
## 11971     2916 1990    3.5
## 11972     2959 1999    3.5
## 11973     2991 1973    3.0
## 11974     3007 1999    4.0
## 11975     3020 1993    3.0
## 11976     3033 1987    4.0
## 11977     3087 1988    3.5
## 11978     3147 1999    2.0
## 11979     3252 1992    3.5
## 11980     3408 2000    4.0
## 11981     3510 2000    0.5
## 11982     3671 1974    4.0
## 11983     3793 2000    3.0
## 11984     3948 2000    3.5
## 11985     3959 1960    4.0
## 11986     4223 2001    3.0
## 11987     4226 2000    4.5
## 11988     4306 2001    3.5
## 11989     4571 1989    2.5
## 11990     4799 1963    4.0
## 11991     4878 2001    4.0
## 11992     4973 2001    4.0
## 11993     4975 2001    4.5
## 11994     4980 1991    2.5
## 11995     4993 2001    4.5
## 11996     5054 1983    3.5
## 11997     5171 2002    2.0
## 11998     5445 2002    4.0
## 11999     5782 1981    4.0
## 12000     5952 2002    4.5
## 12001     6323 2003    3.5
## 12002     6537 2003    3.0
## 12003     6820 2000    4.0
## 12004     7153 2003    5.0
## 12005     7254 2004    4.0
## 12006     7361 2004    4.5
## 12007     7743 1985    3.0
## 12008     8581 1999    4.0
## 12009     8638 2004    4.0
## 12010     8957 2004    4.5
## 12011     8985 2004    3.0
## 12012    27788 2005    3.0
## 12013    33166 2004    4.5
## 12014    33794 2005    4.5
## 12015    34319 2005    4.0
## 12016    39446 2005    4.0
## 12017    42002 2005    4.0
## 12018    44397 2006    0.5
## 12019       45 1995    5.0
## 12020      303 1995    3.0
## 12021      531 1993    3.0
## 12022      915 1954    4.0
## 12023      954 1939    4.0
## 12024     1096 1982    4.5
## 12025     1185 1989    3.5
## 12026     1269 1944    3.5
## 12027     1449 1996    4.0
## 12028     2020 1988    4.5
## 12029     2087 1953    3.5
## 12030     2336 1998    4.0
## 12031     2948 1963    4.0
## 12032     3671 1974    3.5
## 12033     3911 2000    4.0
## 12034     3988 2000    2.0
## 12035     4321 1991    4.5
## 12036    44694 2006    4.5
## 12037    49530 2006    3.5
## 12038    54259 2007    3.5
## 12039        1 1995    4.0
## 12040        6 1995    3.5
## 12041       10 1995    3.0
## 12042       32 1995    4.0
## 12043       34 1995    3.5
## 12044       39 1995    2.5
## 12045       47 1995    4.0
## 12046       62 1995    3.5
## 12047       70 1996    3.5
## 12048       76 1995    3.5
## 12049       95 1996    1.5
## 12050      110 1995    3.5
## 12051      111 1976    4.0
## 12052      141 1996    3.0
## 12053      161 1995    2.0
## 12054      163 1995    3.0
## 12055      165 1995    2.5
## 12056      173 1995    2.5
## 12057      185 1995    2.0
## 12058      208 1995    3.0
## 12059      223 1994    4.5
## 12060      231 1994    1.0
## 12061      253 1994    2.5
## 12062      260 1977    4.0
## 12063      288 1994    3.5
## 12064      292 1995    2.5
## 12065      293 1994    4.0
## 12066      296 1994    3.5
## 12067      316 1994    4.0
## 12068      318 1994    4.0
## 12069      329 1994    2.0
## 12070      339 1995    2.5
## 12071      344 1994    3.0
## 12072      349 1994    3.5
## 12073      353 1994    4.0
## 12074      356 1994    3.5
## 12075      364 1994    3.0
## 12076      367 1994    3.5
## 12077      377 1994    2.5
## 12078      380 1994    2.5
## 12079      413 1994    1.5
## 12080      442 1993    3.0
## 12081      457 1993    2.5
## 12082      480 1993    3.0
## 12083      500 1993    3.0
## 12084      541 1982    2.0
## 12085      551 1993    4.5
## 12086      586 1990    1.5
## 12087      587 1990    2.5
## 12088      588 1992    3.5
## 12089      589 1991    4.0
## 12090      590 1990    3.0
## 12091      592 1989    3.5
## 12092      593 1991    3.0
## 12093      595 1991    3.5
## 12094      597 1990    2.5
## 12095      608 1996    2.0
## 12096      648 1996    2.5
## 12097      720 1996    3.0
## 12098      733 1996    3.0
## 12099      736 1996    2.0
## 12100      741 1995    4.0
## 12101      745 1995    3.0
## 12102      750 1964    4.5
## 12103      780 1996    3.5
## 12104      839 1996    3.0
## 12105      849 1996    2.5
## 12106      919 1939    4.5
## 12107      924 1968    3.5
## 12108     1036 1988    3.0
## 12109     1073 1971    4.0
## 12110     1079 1988    3.5
## 12111     1080 1979    4.0
## 12112     1097 1982    3.0
## 12113     1129 1981    4.0
## 12114     1136 1975    4.5
## 12115     1148 1993    3.0
## 12116     1196 1980    4.5
## 12117     1197 1987    4.5
## 12118     1198 1981    4.0
## 12119     1199 1985    4.0
## 12120     1200 1986    4.0
## 12121     1206 1971    4.0
## 12122     1208 1979    3.5
## 12123     1210 1983    4.0
## 12124     1214 1979    3.5
## 12125     1215 1993    4.5
## 12126     1217 1985    3.5
## 12127     1220 1980    4.5
## 12128     1222 1987    3.5
## 12129     1223 1989    3.0
## 12130     1240 1984    4.5
## 12131     1258 1980    3.0
## 12132     1262 1963    4.5
## 12133     1265 1993    4.0
## 12134     1270 1985    3.5
## 12135     1274 1988    3.5
## 12136     1278 1974    3.5
## 12137     1282 1940    4.5
## 12138     1291 1989    4.0
## 12139     1321 1981    4.0
## 12140     1380 1978    3.0
## 12141     1387 1975    3.5
## 12142     1393 1996    2.0
## 12143     1517 1997    4.0
## 12144     1527 1997    4.0
## 12145     1552 1997    3.5
## 12146     1580 1997    3.5
## 12147     1584 1997    1.5
## 12148     1591 1997    2.5
## 12149     1610 1990    4.0
## 12150     1653 1997    3.5
## 12151     1676 1997    4.0
## 12152     1682 1998    3.5
## 12153     1704 1997    3.0
## 12154     1721 1997    2.0
## 12155     1732 1998    3.5
## 12156     1772 1998    2.5
## 12157     1779 1998    2.5
## 12158     1784 1997    2.5
## 12159     1917 1998    2.0
## 12160     1923 1998    2.0
## 12161     1961 1988    2.5
## 12162     1967 1986    4.5
## 12163     1968 1985    3.0
## 12164     2000 1987    3.5
## 12165     2001 1989    3.5
## 12166     2005 1985    4.0
## 12167     2011 1989    4.0
## 12168     2012 1990    3.5
## 12169     2021 1984    3.5
## 12170     2054 1989    2.5
## 12171     2081 1989    3.5
## 12172     2105 1982    4.0
## 12173     2115 1984    4.0
## 12174     2139 1982    4.0
## 12175     2140 1982    4.5
## 12176     2167 1998    4.0
## 12177     2174 1988    4.0
## 12178     2275 1998    4.5
## 12179     2291 1990    3.5
## 12180     2321 1998    4.0
## 12181     2355 1998    3.5
## 12182     2395 1998    2.0
## 12183     2450 1986    3.5
## 12184     2502 1999    4.5
## 12185     2528 1976    3.5
## 12186     2529 1968    3.5
## 12187     2541 1999    3.5
## 12188     2542 1998    4.5
## 12189     2571 1999    4.0
## 12190     2599 1999    2.5
## 12191     2600 1999    4.0
## 12192     2628 1999    1.5
## 12193     2640 1978    3.5
## 12194     2641 1980    3.0
## 12195     2671 1999    2.5
## 12196     2683 1999    4.0
## 12197     2700 1999    4.0
## 12198     2706 1999    3.5
## 12199     2709 1999    3.0
## 12200     2710 1999    1.0
## 12201     2716 1984    4.0
## 12202     2762 1999    4.0
## 12203     2788 1971    4.0
## 12204     2797 1988    3.5
## 12205     2808 1992    2.0
## 12206     2858 1999    3.0
## 12207     2916 1990    3.5
## 12208     2918 1986    4.5
## 12209     2959 1999    4.0
## 12210     2968 1981    4.0
## 12211     2985 1987    3.5
## 12212     2986 1990    2.5
## 12213     2987 1988    3.5
## 12214     3000 1997    4.0
## 12215     3033 1987    4.0
## 12216     3052 1999    4.5
## 12217     3070 1984    4.5
## 12218     3081 1999    3.0
## 12219     3114 1999    3.5
## 12220     3147 1999    4.0
## 12221     3148 1999    2.5
## 12222     3175 1999    3.5
## 12223     3196 1953    4.0
## 12224     3204 1978    4.0
## 12225     3264 1992    3.0
## 12226     3275 2000    4.5
## 12227     3396 1979    4.0
## 12228     3397 1981    3.5
## 12229     3398 1984    3.0
## 12230     3408 2000    1.5
## 12231     3418 1991    0.5
## 12232     3421 1978    4.5
## 12233     3429 1989    3.0
## 12234     3438 1990    2.5
## 12235     3439 1991    1.5
## 12236     3471 1977    4.0
## 12237     3527 1987    4.0
## 12238     3578 2000    3.0
## 12239     3623 2000    1.5
## 12240     3671 1974    4.0
## 12241     3702 1979    4.0
## 12242     3703 1981    4.0
## 12243     3704 1985    3.5
## 12244     3751 2000    3.5
## 12245     3753 2000    3.5
## 12246     3793 2000    4.0
## 12247     3882 2000    3.0
## 12248     3897 2000    3.0
## 12249     3977 2000    3.0
## 12250     3994 2000    4.5
## 12251     3996 2000    0.5
## 12252     4011 2000    4.5
## 12253     4027 2000    2.5
## 12254     4040 1991    1.0
## 12255     4092 1987    2.5
## 12256     4246 2001    2.0
## 12257     4270 2001    3.0
## 12258     4306 2001    3.5
## 12259     4446 2001    3.5
## 12260     4447 2001    3.5
## 12261     4467 1988    4.0
## 12262     4499 1988    4.5
## 12263     4533 1985    3.5
## 12264     4886 2001    4.0
## 12265     4896 2001    3.0
## 12266     4963 2001    3.0
## 12267     4979 2001    2.0
## 12268     4993 2001    3.0
## 12269     5171 2002    2.0
## 12270     5218 2002    4.0
## 12271     5254 2002    3.5
## 12272     5349 2002    4.0
## 12273     5378 2002    1.0
## 12274     5445 2002    3.0
## 12275     5502 2002    0.5
## 12276     5522 1975    4.0
## 12277     5618 2001    4.0
## 12278     5650 1983    3.5
## 12279     5669 2002    0.5
## 12280     5782 1981    4.0
## 12281     5816 2002    3.0
## 12282     5903 2002    4.0
## 12283     6093 1982    3.5
## 12284     6157 2003    3.0
## 12285     6281 2002    3.0
## 12286     6303 1971    3.5
## 12287     6305 1966    3.0
## 12288     6316 1978    3.0
## 12289     6333 2003    4.0
## 12290     6350 1986    4.0
## 12291     6365 2003    3.0
## 12292     6377 2003    0.5
## 12293     6537 2003    3.5
## 12294     6539 2003    4.0
## 12295     6541 2003    4.0
## 12296     6645 1971    3.0
## 12297     6662 1963    3.0
## 12298     6755 2002    4.5
## 12299     6807 1983    4.0
## 12300     6811 1994    4.0
## 12301     6874 2003    3.5
## 12302     6934 2003    2.5
## 12303     7099 1984    4.5
## 12304     7143 2003    2.0
## 12305     7147 2003    4.0
## 12306     7163 2003    3.5
## 12307     7236 1975    4.0
## 12308     7360 2004    4.0
## 12309     7373 2004    4.0
## 12310     7387 1978    4.5
## 12311     7438 2004    3.5
## 12312     7649 1998    4.5
## 12313     7708 1967    2.5
## 12314     7810 1999    4.0
## 12315     7811 1998    4.0
## 12316     7812 1998    4.0
## 12317     7841 2003    4.0
## 12318     7842 2000    4.0
## 12319     8157 1998    4.0
## 12320     8368 2004    3.0
## 12321     8537 2003    4.0
## 12322     8622 2004    0.5
## 12323     8636 2004    4.0
## 12324     8644 2004    2.0
## 12325     8665 2004    4.0
## 12326     8874 2004    4.5
## 12327     8958 2004    3.5
## 12328     8961 2004    4.0
## 12329    26492 1983    3.5
## 12330    26700 1990    2.0
## 12331    27685 2004    1.0
## 12332    27831 2004    4.0
## 12333    31150 1977    3.5
## 12334    31221 2005    2.5
## 12335    31658 2004    4.0
## 12336    31878 2004    3.5
## 12337    32587 2005    4.5
## 12338    33493 2005    3.0
## 12339    33794 2005    4.0
## 12340    34319 2005    2.0
## 12341    34405 2005    4.5
## 12342    36708 2005    3.5
## 12343    37729 2005    4.0
## 12344    37857 2005    4.0
## 12345    38038 2005    3.5
## 12346    40732 2005    2.5
## 12347    40819 2005    4.0
## 12348    44191 2006    4.5
## 12349    45499 2006    3.5
## 12350    45722 2006    4.0
## 12351    47423 2006    0.5
## 12352    47518 2006    4.0
## 12353    53894 2007    0.5
## 12354        2 1995    3.5
## 12355       10 1995    5.0
## 12356       16 1995    5.0
## 12357       32 1995    5.0
## 12358       34 1995    3.5
## 12359       39 1995    5.0
## 12360       47 1995    4.0
## 12361       50 1995    5.0
## 12362      110 1995    1.5
## 12363      111 1976    3.5
## 12364      141 1996    4.0
## 12365      150 1995    3.5
## 12366      172 1995    5.0
## 12367      185 1995    4.5
## 12368      193 1995    5.0
## 12369      223 1994    4.5
## 12370      253 1994    5.0
## 12371      260 1977    5.0
## 12372      296 1994    4.5
## 12373      316 1994    4.0
## 12374      318 1994    5.0
## 12375      329 1994    5.0
## 12376      345 1994    4.5
## 12377      349 1994    4.5
## 12378      356 1994    5.0
## 12379      364 1994    3.5
## 12380      377 1994    4.5
## 12381      480 1993    3.5
## 12382      500 1993    4.0
## 12383      508 1993    4.0
## 12384      540 1993    4.0
## 12385      588 1992    3.5
## 12386      589 1991    5.0
## 12387      593 1991    4.5
## 12388      648 1996    5.0
## 12389      736 1996    4.5
## 12390      778 1996    4.5
## 12391      780 1996    4.0
## 12392      788 1996    3.5
## 12393      858 1972    4.5
## 12394      919 1939    3.5
## 12395      924 1968    2.0
## 12396     1059 1996    4.5
## 12397     1089 1992    1.0
## 12398     1094 1992    4.0
## 12399     1097 1982    3.5
## 12400     1136 1975    3.0
## 12401     1196 1980    4.0
## 12402     1200 1986    4.5
## 12403     1206 1971    2.5
## 12404     1208 1979    5.0
## 12405     1210 1983    4.0
## 12406     1213 1990    4.5
## 12407     1214 1979    3.5
## 12408     1222 1987    5.0
## 12409     1240 1984    4.0
## 12410     1265 1993    2.0
## 12411     1270 1985    4.5
## 12412     1293 1982    5.0
## 12413     1320 1992    3.5
## 12414     1345 1976    4.0
## 12415     1356 1996    5.0
## 12416     1371 1979    4.0
## 12417     1374 1982    4.0
## 12418     1375 1984    5.0
## 12419     1376 1986    3.0
## 12420     1407 1996    4.5
## 12421     1513 1997    4.0
## 12422     1517 1997    3.0
## 12423     1527 1997    4.0
## 12424     1552 1997    4.0
## 12425     1580 1997    2.5
## 12426     1584 1997    5.0
## 12427     1586 1997    3.5
## 12428     1610 1990    5.0
## 12429     1625 1997    5.0
## 12430     1644 1997    4.5
## 12431     1676 1997    5.0
## 12432     1680 1998    5.0
## 12433     1682 1998    3.5
## 12434     1690 1997    4.0
## 12435     1704 1997    5.0
## 12436     1717 1997    5.0
## 12437     1721 1997    4.0
## 12438     1722 1997    4.5
## 12439     1732 1998    5.0
## 12440     1747 1997    4.0
## 12441     1805 1998    5.0
## 12442     1876 1998    5.0
## 12443     1917 1998    4.5
## 12444     1923 1998    1.5
## 12445     1968 1985    5.0
## 12446     1997 1973    4.0
## 12447     2011 1989    4.5
## 12448     2012 1990    4.0
## 12449     2028 1998    2.5
## 12450     2107 1998    3.0
## 12451     2174 1988    4.0
## 12452     2231 1998    4.5
## 12453     2297 1998    4.0
## 12454     2329 1998    5.0
## 12455     2334 1998    5.0
## 12456     2336 1998    5.0
## 12457     2353 1998    5.0
## 12458     2393 1998    4.0
## 12459     2394 1998    4.0
## 12460     2541 1999    5.0
## 12461     2542 1998    4.5
## 12462     2571 1999    5.0
## 12463     2617 1999    5.0
## 12464     2628 1999    5.0
## 12465     2657 1975    2.0
## 12466     2683 1999    3.5
## 12467     2700 1999    5.0
## 12468     2706 1999    5.0
## 12469     2710 1999    5.0
## 12470     2858 1999    4.5
## 12471     2908 1999    5.0
## 12472     2916 1990    4.0
## 12473     2947 1964    5.0
## 12474     2959 1999    5.0
## 12475     2987 1988    4.0
## 12476     2995 1999    2.5
## 12477     3052 1999    4.0
## 12478     3077 1998    5.0
## 12479     3082 1999    4.5
## 12480     3147 1999    4.5
## 12481     3256 1992    4.0
## 12482     3273 2000    5.0
## 12483     3298 2000    4.0
## 12484     3386 1991    5.0
## 12485     3418 1991    5.0
## 12486     3504 1976    3.5
## 12487     3556 1999    3.0
## 12488     3578 2000    5.0
## 12489     3617 2000    4.5
## 12490     3623 2000    5.0
## 12491     3753 2000    5.0
## 12492     3755 2000    3.0
## 12493     3785 2000    5.0
## 12494     3793 2000    4.0
## 12495     3897 2000    4.0
## 12496     3908 2000    4.5
## 12497     3949 2000    5.0
## 12498     3967 2000    3.5
## 12499     3977 2000    3.5
## 12500     3979 2000    4.0
## 12501     3986 2000    4.0
## 12502     3994 2000    3.5
## 12503     3996 2000    4.5
## 12504     4007 1987    5.0
## 12505     4011 2000    5.0
## 12506     4015 2000    3.5
## 12507     4018 2000    3.5
## 12508     4022 2000    3.5
## 12509     4025 2000    5.0
## 12510     4128 1987    5.0
## 12511     4226 2000    5.0
## 12512     4239 2001    5.0
## 12513     4270 2001    5.0
## 12514     4306 2001    1.5
## 12515     4308 2001    4.5
## 12516     4367 2001    5.0
## 12517     4369 2001    4.5
## 12518     4370 2001    4.5
## 12519     4388 2001    5.0
## 12520     4446 2001    4.5
## 12521     4641 2001    5.0
## 12522     4643 2001    5.0
## 12523     4718 2001    4.5
## 12524     4744 2001    3.5
## 12525     4878 2001    4.0
## 12526     4896 2001    2.5
## 12527     4973 2001    5.0
## 12528     4974 2001    5.0
## 12529     4993 2001    4.5
## 12530     4995 2001    4.5
## 12531     5010 2001    4.0
## 12532     5219 2002    4.5
## 12533     5378 2002    5.0
## 12534     5418 2002    5.0
## 12535     5445 2002    4.5
## 12536     5463 2002    3.5
## 12537     5502 2002    4.5
## 12538     5669 2002    5.0
## 12539     5693 1977    4.0
## 12540     5784 2002    2.5
## 12541     5872 2002    5.0
## 12542     5952 2002    5.0
## 12543     5989 2002    4.5
## 12544     5992 2002    4.0
## 12545     6016 2002    5.0
## 12546     6058 2003    4.5
## 12547     6365 2003    5.0
## 12548     6377 2003    3.0
## 12549     6502 2002    5.0
## 12550     6537 2003    3.5
## 12551     6539 2003    3.0
## 12552     6552 2002    4.0
## 12553     6564 2003    4.5
## 12554     6793 1992    4.0
## 12555     6796 1991    4.0
## 12556     6874 2003    4.0
## 12557     6888 2003    5.0
## 12558     6934 2003    5.0
## 12559     6979 1983    5.0
## 12560     7153 2003    5.0
## 12561     7254 2004    4.0
## 12562     7323 2003    4.0
## 12563     7438 2004    4.0
## 12564     7458 2004    5.0
## 12565     7566 1985    5.0
## 12566     8361 2004    4.5
## 12567     8368 2004    3.5
## 12568     8464 2004    3.5
## 12569     8533 2004    5.0
## 12570     8622 2004    5.0
## 12571     8644 2004    5.0
## 12572     8665 2004    5.0
## 12573     8861 2004    5.0
## 12574     8874 2004    4.0
## 12575     8947 2004    3.5
## 12576     8972 2004    3.5
## 12577    26614 1988    5.0
## 12578    26712 1991    5.0
## 12579    27831 2004    4.5
## 12580    33166 2004    5.0
## 12581    33493 2005    5.0
## 12582    33794 2005    4.0
## 12583    34048 2005    2.0
## 12584    36529 2005    5.0
## 12585    38499 2003    5.0
## 12586    39183 2005    5.0
## 12587    40815 2005    3.5
## 12588    43679 2006    4.5
## 12589    44191 2006    3.5
## 12590    44555 2006    4.5
## 12591    46335 2006    4.5
## 12592    46723 2006    5.0
## 12593    48774 2006    4.0
## 12594    49272 2006    3.5
## 12595    50658 2005    5.0
## 12596    50740 1964    5.0
## 12597    50742 1970    5.0
## 12598    51662 2007    5.0
## 12599    51935 2007    5.0
## 12600    52767 1977    5.0
## 12601    52952 2006    5.0
## 12602    54001 2007    4.0
## 12603    54272 2007    4.5
## 12604    54286 2007    5.0
## 12605    56174 2007    4.5
## 12606    58559 2008    5.0
## 12607    65130 2008    5.0
## 12608    68358 2009    4.0
## 12609    69757 2009    4.0
## 12610    70678 2006    4.5
## 12611    72998 2009    5.0
## 12612    79132 2010    4.5
## 12613    81834 2010    4.5
## 12614    88125 2011    4.5
## 12615    88129 2011    4.0
## 12616    97673 2012    4.5
## 12617        1 1995    2.0
## 12618        2 1995    2.5
## 12619        7 1995    0.5
## 12620      150 1995    2.5
## 12621      260 1977    3.0
## 12622      344 1994    2.0
## 12623      356 1994    4.0
## 12624      367 1994    2.5
## 12625      468 1995    0.5
## 12626      480 1993    3.0
## 12627      519 1993    2.0
## 12628      587 1990    2.5
## 12629      588 1992    2.5
## 12630      592 1989    2.5
## 12631      648 1996    2.5
## 12632      736 1996    3.0
## 12633      778 1996    3.0
## 12634      780 1996    2.5
## 12635      924 1968    2.0
## 12636     1097 1982    3.0
## 12637     1101 1986    2.5
## 12638     1196 1980    3.0
## 12639     1210 1983    3.0
## 12640     1291 1989    2.5
## 12641     1517 1997    0.5
## 12642     1580 1997    3.0
## 12643     1721 1997    2.5
## 12644     1917 1998    2.5
## 12645     2013 1972    2.5
## 12646     2150 1980    0.5
## 12647     2422 1989    2.0
## 12648     2571 1999    3.0
## 12649     2628 1999    3.0
## 12650     2640 1978    2.5
## 12651     2641 1980    2.5
## 12652     2683 1999    0.5
## 12653     2918 1986    3.5
## 12654     3478 1987    3.0
## 12655     3578 2000    3.0
## 12656     3697 1990    2.0
## 12657     3702 1979    2.5
## 12658     3793 2000    3.0
## 12659     3864 1999    2.5
## 12660     4306 2001    3.0
## 12661     4886 2001    3.0
## 12662     4993 2001    3.0
## 12663     5349 2002    3.0
## 12664     5952 2002    3.0
## 12665     6539 2003    2.5
## 12666     7153 2003    3.0
## 12667    32031 2005    3.5
## 12668    39292 2005    3.0
## 12669    42738 2006    2.5
## 12670    45081 2006    2.0
## 12671    49530 2006    3.5
## 12672        2 1995    2.0
## 12673        6 1995    4.0
## 12674        7 1995    4.0
## 12675       10 1995    3.0
## 12676       16 1995    5.0
## 12677       20 1995    1.0
## 12678       21 1995    4.0
## 12679       25 1995    4.0
## 12680       32 1995    5.0
## 12681       45 1995    4.0
## 12682       46 1995    3.0
## 12683       50 1995    3.0
## 12684       73 1995    5.0
## 12685       89 1995    3.0
## 12686       93 1995    1.0
## 12687       95 1996    2.0
## 12688      100 1996    2.0
## 12689      105 1995    3.0
## 12690      112 1995    4.0
## 12691      141 1996    3.0
## 12692      156 1995    5.0
## 12693      191 1995    2.0
## 12694      608 1996    5.0
## 12695      610 1981    3.0
## 12696      616 1970    4.0
## 12697      661 1996    4.0
## 12698      671 1996    4.0
## 12699      745 1995    5.0
## 12700      762 1996    2.0
## 12701      778 1996    5.0
## 12702      780 1996    4.0
## 12703      783 1996    5.0
## 12704      800 1996    5.0
## 12705      802 1996    3.0
## 12706      805 1996    4.0
## 12707     1084 1967    4.0
## 12708     1104 1951    4.0
## 12709      111 1976    4.0
## 12710      154 1967    4.0
## 12711      190 1995    3.0
## 12712      306 1994    4.0
## 12713      308 1994    3.5
## 12714      318 1994    3.0
## 12715      495 1976    3.5
## 12716      509 1993    3.0
## 12717      549 1993    4.5
## 12718      668 1955    5.0
## 12719      750 1964    4.0
## 12720      872 1994    5.0
## 12721      899 1952    3.5
## 12722      903 1958    4.0
## 12723      904 1954    4.0
## 12724      910 1959    5.0
## 12725      922 1950    5.0
## 12726      924 1968    4.0
## 12727     1132 1986    3.0
## 12728     1136 1975    3.5
## 12729     1173 1989    4.5
## 12730     1176 1991    4.0
## 12731     1199 1985    4.5
## 12732     1201 1966    3.5
## 12733     1206 1971    4.0
## 12734     1213 1990    3.0
## 12735     1219 1960    4.0
## 12736     1222 1987    4.0
## 12737     1230 1977    4.0
## 12738     1232 1979    4.5
## 12739     1251 1963    4.5
## 12740     1258 1980    4.0
## 12741     1295 1988    3.5
## 12742     1298 1982    4.0
## 12743     1339 1992    1.5
## 12744     1719 1997    4.5
## 12745     1913 1975    3.0
## 12746     1921 1998    4.0
## 12747     2010 1927    5.0
## 12748     2068 1982    5.0
## 12749     2131 1978    4.0
## 12750     2424 1998    2.0
## 12751     2551 1988    4.0
## 12752     2673 1998    4.5
## 12753     2712 1999    4.5
## 12754     2730 1975    4.0
## 12755     2959 1999    4.0
## 12756     2997 1999    4.0
## 12757     3000 1997    4.5
## 12758     3083 1999    4.0
## 12759     3160 1999    4.0
## 12760     3415 1975    5.0
## 12761     3578 2000    3.5
## 12762     3637 1985    4.0
## 12763     3788 1966    4.5
## 12764     3814 1975    5.0
## 12765     3910 2000    4.5
## 12766     3925 1984    4.0
## 12767     3949 2000    4.0
## 12768     3967 2000    3.0
## 12769     3993 2000    4.0
## 12770     3996 2000    4.0
## 12771     4144 2000    4.0
## 12772     4271 2000    5.0
## 12773     4312 1999    4.0
## 12774     4334 2000    4.5
## 12775     4422 1972    4.5
## 12776     4437 1977    4.0
## 12777     4470 1988    4.5
## 12778     4658 1989    5.0
## 12779     4848 2001    4.0
## 12780     4878 2001    2.0
## 12781     4928 1977    3.0
## 12782     5028 2001    5.0
## 12783     5105 1973    3.0
## 12784     5147 1957    4.0
## 12785     5269 2001    4.5
## 12786     5530 2002    2.5
## 12787     5618 2001    4.0
## 12788     5668 2002    2.5
## 12789     5686 2002    4.0
## 12790     5971 1988    4.5
## 12791     6123 1983    4.5
## 12792     6214 2002    3.5
## 12793     6301 1971    2.5
## 12794     6440 1991    4.5
## 12795     6509 1974    4.0
## 12796     6641 2000    4.5
## 12797     6643 1953    4.0
## 12798     6666 1972    4.0
## 12799     6711 2003    4.0
## 12800     6807 1983    5.0
## 12801     6993 1986    5.0
## 12802     7172 2002    4.0
## 12803     7265 2003    3.5
## 12804     7323 2003    4.0
## 12805     7327 1966    4.0
## 12806     7361 2004    4.0
## 12807     7460 2003    4.0
## 12808     7564 1964    5.0
## 12809     7574 1995    5.0
## 12810     7786 1999    3.5
## 12811     7820 1960    4.0
## 12812     7938 1963    4.0
## 12813     7979 1968    4.5
## 12814     8014 2003    3.5
## 12815     8199 1953    4.5
## 12816     8239 1961    5.0
## 12817     8327 2002    4.0
## 12818     8338 1947    4.5
## 12819     8367 2003    4.0
## 12820     8485 2001    4.0
## 12821     8533 2004    2.5
## 12822     8638 2004    5.0
## 12823     8983 2004    4.0
## 12824    26150 1969    5.0
## 12825    26228 1970    4.0
## 12826    26258 1970    5.0
## 12827    26318 1974    4.5
## 12828    26326 1973    4.5
## 12829    26578 1986    5.0
## 12830    26662 1989    4.0
## 12831    31437 2004    4.0
## 12832    31524 1972    4.0
## 12833    31930 1966    4.0
## 12834    36276 2005    4.0
## 12835    37731 2005    3.0
## 12836    40491 1990    4.5
## 12837    43899 2004    3.0
## 12838    44694 2006    3.0
## 12839    45000 1967    4.0
## 12840    47274 1971    4.0
## 12841    47610 2006    2.5
## 12842    48043 2006    3.5
## 12843    48165 1989    4.0
## 12844    52528 1970    4.0
## 12845    52617 2006    5.0
## 12846    52885 2006    4.0
## 12847    53447 2007    3.5
## 12848    56782 2007    4.0
## 12849    58425 2007    4.5
## 12850    60950 2008    3.0
## 12851    61206 2007    4.5
## 12852    64701 2008    4.0
## 12853    65130 2008    4.0
## 12854    68137 2005    2.0
## 12855    68967 2008    4.0
## 12856    69516 2009    4.0
## 12857    69757 2009    2.0
## 12858    71108 2009    4.0
## 12859    71438 2008    3.5
## 12860    72998 2009    3.0
## 12861    73344 2009    4.0
## 12862    78836 2009    4.0
## 12863    79132 2010    3.0
## 12864    80463 2010    3.0
## 12865    81054 1969    4.0
## 12866    81591 2010    2.5
## 12867    81786 2010    4.0
## 12868    82459 2010    3.5
## 12869       10 1995    3.0
## 12870       21 1995    3.0
## 12871       34 1995    5.0
## 12872       39 1995    5.0
## 12873       47 1995    5.0
## 12874       50 1995    4.0
## 12875      110 1995    5.0
## 12876      150 1995    4.0
## 12877      153 1995    3.0
## 12878      160 1995    2.0
## 12879      165 1995    3.0
## 12880      208 1995    3.0
## 12881      231 1994    4.0
## 12882      253 1994    5.0
## 12883      266 1994    4.0
## 12884      288 1994    3.0
## 12885      292 1995    3.0
## 12886      296 1994    5.0
## 12887      300 1994    4.0
## 12888      316 1994    2.0
## 12889      318 1994    5.0
## 12890      329 1994    2.0
## 12891      339 1995    4.0
## 12892      344 1994    3.0
## 12893      356 1994    5.0
## 12894      364 1994    4.0
## 12895      367 1994    3.0
## 12896      380 1994    3.0
## 12897      410 1993    3.0
## 12898      420 1994    1.0
## 12899      434 1993    3.0
## 12900      435 1993    3.0
## 12901      454 1993    3.0
## 12902      457 1993    3.0
## 12903      588 1992    4.0
## 12904      590 1990    4.0
## 12905      592 1989    3.0
## 12906      593 1991    4.0
## 12907      595 1991    5.0
## 12908        6 1995    5.0
## 12909       21 1995    1.0
## 12910       39 1995    4.0
## 12911       50 1995    5.0
## 12912       69 1995    3.5
## 12913      101 1996    3.5
## 12914      141 1996    4.0
## 12915      150 1995    5.0
## 12916      151 1995    0.5
## 12917      205 1995    4.0
## 12918      224 1995    4.0
## 12919      235 1994    4.5
## 12920      266 1994    5.0
## 12921      272 1994    4.5
## 12922      351 1994    3.5
## 12923      356 1994    4.0
## 12924      370 1994    4.0
## 12925      377 1994    2.5
## 12926      441 1993    4.0
## 12927      480 1993    3.5
## 12928      514 1994    4.0
## 12929      532 1994    3.5
## 12930      608 1996    4.5
## 12931      663 1996    5.0
## 12932      750 1964    5.0
## 12933      778 1996    4.0
## 12934      799 1996    3.5
## 12935      904 1954    4.5
## 12936      908 1959    4.5
## 12937      923 1941    4.5
## 12938     1060 1996    5.0
## 12939     1077 1973    4.5
## 12940     1078 1971    4.0
## 12941     1197 1987    5.0
## 12942     1208 1979    5.0
## 12943     1210 1983    5.0
## 12944     1230 1977    5.0
## 12945     1233 1981    5.0
## 12946     1240 1984    3.0
## 12947     1247 1967    4.5
## 12948     1257 1985    5.0
## 12949     1259 1986    4.5
## 12950     1265 1993    4.5
## 12951     1270 1985    4.0
## 12952     1276 1967    5.0
## 12953     1278 1974    5.0
## 12954     1288 1984    4.5
## 12955     1348 1922    4.0
## 12956     1358 1996    0.5
## 12957     1394 1987    5.0
## 12958     1476 1997    5.0
## 12959     1500 1997    5.0
## 12960     1590 1997    5.0
## 12961     1639 1997    4.5
## 12962     1653 1997    5.0
## 12963     1732 1998    5.0
## 12964     1747 1997    4.0
## 12965     1777 1998    4.5
## 12966     1799 1997    5.0
## 12967     1917 1998    2.0
## 12968     1920 1998    0.5
## 12969     1923 1998    2.0
## 12970     1961 1988    5.0
## 12971     2000 1987    1.5
## 12972     2109 1979    3.5
## 12973     2155 1998    4.0
## 12974     2291 1990    5.0
## 12975     2300 1968    4.0
## 12976     2302 1992    4.0
## 12977     2324 1997    4.0
## 12978     2359 1998    4.0
## 12979     2371 1985    3.5
## 12980     2395 1998    5.0
## 12981     2406 1984    4.0
## 12982     2502 1999    5.0
## 12983     2571 1999    1.0
## 12984     2599 1999    4.0
## 12985     2700 1999    4.5
## 12986     2716 1984    4.0
## 12987     2791 1980    5.0
## 12988     2795 1983    5.0
## 12989     2804 1983    4.5
## 12990     2858 1999    4.0
## 12991     2863 1964    4.0
## 12992     2918 1986    5.0
## 12993     2997 1999    5.0
## 12994     3022 1926    4.5
## 12995     3033 1987    4.0
## 12996     3037 1970    4.0
## 12997     3044 1991    4.0
## 12998     3087 1988    3.5
## 12999     3114 1999    4.0
## 13000     3160 1999    0.5
## 13001     3176 1999    4.5
## 13002     3198 1973    4.0
## 13003     3210 1982    3.5
## 13004     3252 1992    4.0
## 13005     3253 1992    3.5
## 13006     3261 1992    4.0
## 13007     3355 1999    5.0
## 13008     3359 1979    4.0
## 13009     3361 1988    4.0
## 13010     3362 1975    4.5
## 13011     3396 1979    4.0
## 13012     3398 1984    4.0
## 13013     3408 2000    4.0
## 13014     3421 1978    5.0
## 13015     3450 1993    4.0
## 13016     3481 2000    4.0
## 13017     3552 1980    4.0
## 13018     3671 1974    4.5
## 13019     3735 1973    5.0
## 13020     3751 2000    4.0
## 13021     3753 2000    1.0
## 13022     3809 1991    4.0
## 13023     3814 1975    4.5
## 13024     3868 1988    5.0
## 13025     3869 1991    3.0
## 13026     3897 2000    4.0
## 13027     3911 2000    2.0
## 13028     3950 2000    3.5
## 13029     4025 2000    3.5
## 13030     4027 2000    5.0
## 13031     4034 2000    4.5
## 13032     4066 1988    4.0
## 13033     4174 1990    4.0
## 13034     4255 2001    1.5
## 13035     4321 1991    4.5
## 13036     4322 1988    4.5
## 13037     4361 1982    4.5
## 13038     4388 2001    4.0
## 13039     4558 1988    3.5
## 13040     4571 1989    3.5
## 13041     4688 1991    4.0
## 13042     4886 2001    4.0
## 13043     4898 2001    0.5
## 13044     4963 2001    4.5
## 13045     4975 2001    0.5
## 13046     5060 1970    4.5
## 13047     5103 1993    4.0
## 13048     5135 2001    4.5
## 13049     5152 2002    5.0
## 13050     5377 2002    4.0
## 13051     5445 2002    0.5
## 13052     5602 1955    3.5
## 13053     5650 1983    3.5
## 13054     5669 2002    4.0
## 13055     5673 2002    1.0
## 13056     5902 2002    0.5
## 13057     6373 2003    3.5
## 13058     6659 1990    3.5
## 13059     6863 2003    4.5
## 13060     6947 2003    5.0
## 13061     7028 1990    4.5
## 13062     8376 2004    4.0
## 13063     8493 1990    5.0
## 13064     8528 2004    3.5
## 13065     8784 2004    4.0
## 13066     8807 2004    5.0
## 13067     8874 2004    4.5
## 13068    35836 2005    3.5
## 13069        1 1995    3.5
## 13070      110 1995    4.0
## 13071      260 1977    4.0
## 13072      296 1994    4.0
## 13073      356 1994    3.0
## 13074      589 1991    3.0
## 13075     1036 1988    4.5
## 13076     1196 1980    4.0
## 13077     1198 1981    3.5
## 13078     1210 1983    4.0
## 13079     1610 1990    3.5
## 13080     2028 1998    3.0
## 13081     2268 1992    3.5
## 13082     2329 1998    3.0
## 13083     2571 1999    5.0
## 13084     2858 1999    3.5
## 13085     2916 1990    4.0
## 13086     2959 1999    4.0
## 13087     3114 1999    3.5
## 13088     3301 2000    4.0
## 13089     3578 2000    4.0
## 13090     3623 2000    3.5
## 13091     3624 2000    4.0
## 13092     3717 2000    4.0
## 13093     3752 2000    3.5
## 13094     3753 2000    4.0
## 13095     3980 2000    4.5
## 13096     3994 2000    3.0
## 13097     4023 2000    3.0
## 13098     4148 2001    4.0
## 13099     4270 2001    3.5
## 13100     4306 2001    4.0
## 13101     4310 2001    3.5
## 13102     4701 2001    3.5
## 13103     4720 2001    4.0
## 13104     4776 2001    4.0
## 13105     4886 2001    4.0
## 13106     4896 2001    3.5
## 13107     4963 2001    4.0
## 13108     4993 2001    4.5
## 13109     4995 2001    4.5
## 13110     5010 2001    4.0
## 13111     5418 2002    3.5
## 13112     5445 2002    3.5
## 13113     5459 2002    3.5
## 13114     5481 2002    3.0
## 13115     5630 2002    3.5
## 13116     5952 2002    4.5
## 13117     5989 2002    3.5
## 13118     6016 2002    4.0
## 13119     6287 2003    3.5
## 13120     6365 2003    3.5
## 13121     6373 2003    3.5
## 13122     6377 2003    3.0
## 13123     6378 2003    3.0
## 13124     6539 2003    3.5
## 13125     6874 2003    4.0
## 13126     7153 2003    5.0
## 13127     7254 2004    3.5
## 13128     7293 2004    3.5
## 13129     7438 2004    4.0
## 13130     7458 2004    4.0
## 13131     8361 2004    3.0
## 13132     8368 2004    4.0
## 13133     8531 2004    3.5
## 13134     8644 2004    3.5
## 13135     8665 2004    3.5
## 13136     8961 2004    4.0
## 13137     8972 2004    3.5
## 13138    30825 2004    3.5
## 13139    31696 2005    4.0
## 13140    32587 2005    3.5
## 13141    33646 2005    4.0
## 13142    33794 2005    4.0
## 13143    34162 2005    3.5
## 13144    35836 2005    4.0
## 13145    36529 2005    3.5
## 13146    40815 2005    3.5
## 13147    44199 2006    3.5
## 13148    45447 2006    3.0
## 13149    45499 2006    4.0
## 13150    45722 2006    3.5
## 13151    53125 2007    3.5
## 13152    54001 2007    3.5
## 13153    54272 2007    3.0
## 13154    54286 2007    4.0
## 13155    56174 2007    3.0
## 13156    58559 2008    4.0
## 13157    58803 2008    4.0
## 13158    59315 2008    3.5
## 13159    64983 2008    4.0
## 13160    65514 2008    2.5
## 13161    68157 2009    3.5
## 13162    68358 2009    3.5
## 13163    69122 2009    4.0
## 13164    69844 2009    3.5
## 13165    72998 2009    4.0
## 13166    74458 2010    4.0
## 13167    74795 2010    4.0
## 13168    76093 2010    4.0
## 13169    81229 2010    3.5
## 13170    85342 2010    3.5
## 13171    89745 2012    4.0
## 13172    91500 2012    3.5
## 13173    91529 2012    4.0
## 13174    91658 2011    3.5
## 13175    92259 2011    4.5
## 13176    94777 2012    4.0
## 13177    96079 2012    3.0
## 13178    99114 2012    3.0
## 13179   102125 2013    3.5
## 13180   106487 2013    3.5
## 13181   106489 2013    5.0
## 13182   110102 2014    4.0
## 13183   116797 2014    4.5
## 13184   117176 2014    4.0
## 13185        2 1995    5.0
## 13186        3 1995    2.0
## 13187        5 1995    3.0
## 13188       10 1995    5.0
## 13189       19 1995    3.0
## 13190       21 1995    4.0
## 13191       23 1995    3.0
## 13192       44 1995    2.0
## 13193       58 1994    1.0
## 13194      110 1995    5.0
## 13195      153 1995    4.0
## 13196      158 1995    1.0
## 13197      160 1995    3.0
## 13198      161 1995    4.0
## 13199      165 1995    4.0
## 13200      170 1995    3.0
## 13201      172 1995    3.0
## 13202      173 1995    4.0
## 13203      177 1995    2.0
## 13204      181 1995    1.0
## 13205      185 1995    3.0
## 13206      186 1995    3.0
## 13207      188 1995    1.0
## 13208      196 1995    3.0
## 13209      203 1995    3.0
## 13210      208 1995    3.0
## 13211      216 1995    3.0
## 13212      227 1994    4.0
## 13213      230 1995    2.0
## 13214      231 1994    4.0
## 13215      234 1994    4.0
## 13216      247 1994    1.0
## 13217      253 1994    3.0
## 13218      255 1995    5.0
## 13219      256 1994    4.0
## 13220      261 1994    1.0
## 13221      275 1994    3.0
## 13222      277 1994    2.0
## 13223      282 1994    1.0
## 13224      288 1994    4.0
## 13225      291 1996    1.0
## 13226      292 1995    4.0
## 13227      293 1994    5.0
## 13228      296 1994    5.0
## 13229      315 1994    4.0
## 13230      316 1994    5.0
## 13231      317 1994    4.0
## 13232      318 1994    5.0
## 13233      327 1995    1.0
## 13234      329 1994    5.0
## 13235      333 1995    4.0
## 13236      339 1995    1.0
## 13237      344 1994    4.0
## 13238      349 1994    5.0
## 13239      350 1994    3.0
## 13240      355 1994    3.0
## 13241      356 1994    4.0
## 13242      357 1994    3.0
## 13243      364 1994    3.0
## 13244      366 1994    1.0
## 13245      367 1994    4.0
## 13246      368 1994    4.0
## 13247      370 1994    2.0
## 13248      374 1994    1.0
## 13249      377 1994    5.0
## 13250      380 1994    5.0
## 13251      405 1994    3.0
## 13252      410 1993    4.0
## 13253      415 1993    3.0
## 13254      420 1994    1.0
## 13255      432 1994    4.0
## 13256      434 1993    3.0
## 13257      437 1994    3.0
## 13258      442 1993    4.0
## 13259      454 1993    3.0
## 13260      457 1993    5.0
## 13261      466 1993    3.0
## 13262      471 1994    3.0
## 13263      480 1993    5.0
## 13264      485 1993    3.0
## 13265      500 1993    4.0
## 13266      508 1993    2.0
## 13267      519 1993    3.0
## 13268      520 1993    3.0
## 13269      527 1993    2.0
## 13270      543 1993    4.0
## 13271      546 1993    1.0
## 13272      548 1994    4.0
## 13273      551 1993    1.0
## 13274      553 1993    4.0
## 13275      555 1993    3.0
## 13276      586 1990    3.0
## 13277      587 1990    3.0
## 13278      588 1992    3.0
## 13279      589 1991    5.0
## 13280      590 1990    3.0
## 13281      592 1989    4.0
## 13282      593 1991    4.0
## 13283      594 1937    2.0
## 13284      595 1991    3.0
## 13285      597 1990    4.0
## 13286      610 1981    3.0
## 13287      616 1970    4.0
## 13288      648 1996    5.0
## 13289      688 1995    1.0
## 13290      709 1988    1.0
## 13291      733 1996    5.0
## 13292        1 1995    3.0
## 13293       11 1995    1.0
## 13294       14 1995    4.0
## 13295       17 1995    5.0
## 13296       18 1995    5.0
## 13297       19 1995    1.0
## 13298       21 1995    1.0
## 13299       25 1995    3.0
## 13300       26 1995    4.0
## 13301       28 1995    4.0
## 13302       29 1995    4.0
## 13303       30 1995    5.0
## 13304       32 1995    5.0
## 13305       34 1995    3.0
## 13306       35 1995    4.0
## 13307       36 1995    4.0
## 13308       39 1995    4.0
## 13309       41 1995    4.0
## 13310       46 1995    3.0
## 13311       47 1995    5.0
## 13312       58 1994    4.0
## 13313       62 1995    3.0
## 13314       68 1995    4.0
## 13315       72 1995    4.0
## 13316       73 1995    3.0
## 13317       81 1995    5.0
## 13318       82 1995    3.0
## 13319       85 1995    4.0
## 13320       97 1995    4.0
## 13321      105 1995    3.0
## 13322      110 1995    3.0
## 13323      116 1995    4.0
## 13324      121 1992    3.0
## 13325      124 1995    3.0
## 13326      126 1994    1.0
## 13327      141 1996    4.0
## 13328      144 1995    3.0
## 13329      147 1995    5.0
## 13330      150 1995    4.0
## 13331      151 1995    4.0
## 13332      154 1967    4.0
## 13333      159 1995    3.0
## 13334      160 1995    2.0
## 13335      162 1994    3.0
## 13336      171 1995    4.0
## 13337      172 1995    3.0
## 13338      178 1993    5.0
## 13339      180 1995    3.0
## 13340      186 1995    1.0
## 13341      194 1995    4.0
## 13342      198 1995    3.0
## 13343      203 1995    4.0
## 13344      208 1995    3.0
## 13345      213 1994    4.0
## 13346      218 1995    4.0
## 13347      223 1994    5.0
## 13348      224 1995    3.0
## 13349      229 1994    4.0
## 13350      231 1994    1.0
## 13351      232 1994    4.0
## 13352      235 1994    4.0
## 13353      242 1994    4.0
## 13354      246 1994    3.0
## 13355      247 1994    5.0
## 13356      249 1994    4.0
## 13357      252 1994    1.0
## 13358      253 1994    4.0
## 13359      254 1995    4.0
## 13360      260 1977    5.0
## 13361      261 1994    3.0
## 13362      263 1994    3.0
## 13363      265 1992    4.0
## 13364      266 1994    3.0
## 13365      269 1993    4.0
## 13366      272 1994    4.0
## 13367      273 1994    3.0
## 13368      282 1994    3.0
## 13369      287 1994    3.0
## 13370      288 1994    3.0
## 13371      290 1994    5.0
## 13372      292 1995    3.0
## 13373      296 1994    5.0
## 13374      299 1994    5.0
## 13375      300 1994    4.0
## 13376      302 1994    3.0
## 13377      305 1994    3.0
## 13378      306 1994    5.0
## 13379      307 1993    5.0
## 13380      308 1994    5.0
## 13381      314 1994    3.0
## 13382      316 1994    3.0
## 13383      318 1994    5.0
## 13384      319 1994    5.0
## 13385      321 1993    3.0
## 13386      324 1994    3.0
## 13387      329 1994    5.0
## 13388      331 1994    3.0
## 13389      332 1995    3.0
## 13390      337 1993    4.0
## 13391      342 1994    5.0
## 13392      345 1994    5.0
## 13393      348 1994    3.0
## 13394      357 1994    5.0
## 13395      362 1994    3.0
## 13396      364 1994    4.0
## 13397      365 1993    4.0
## 13398      369 1994    4.0
## 13399      372 1994    3.0
## 13400      405 1994    2.0
## 13401      419 1993    3.0
## 13402      427 1993    3.0
## 13403      435 1993    4.0
## 13404      444 1993    4.0
## 13405      446 1993    3.0
## 13406      454 1993    2.0
## 13407      461 1994    4.0
## 13408      468 1995    3.0
## 13409      469 1993    3.0
## 13410      471 1994    4.0
## 13411      475 1993    4.0
## 13412      477 1993    3.0
## 13413      480 1993    3.0
## 13414      481 1993    3.0
## 13415      482 1994    4.0
## 13416      497 1993    4.0
## 13417      500 1993    3.0
## 13418      501 1993    5.0
## 13419      508 1993    3.0
## 13420      509 1993    5.0
## 13421      515 1993    5.0
## 13422      527 1993    5.0
## 13423      531 1993    3.0
## 13424      534 1993    4.0
## 13425      535 1993    5.0
## 13426      538 1993    5.0
## 13427      539 1993    3.0
## 13428      541 1982    4.0
## 13429      550 1994    4.0
## 13430      551 1993    4.0
## 13431      555 1993    4.0
## 13432      568 1993    3.0
## 13433      585 1995    5.0
## 13434      586 1990    1.0
## 13435      587 1990    3.0
## 13436      588 1992    3.0
## 13437      589 1991    2.0
## 13438      590 1990    3.0
## 13439      592 1989    3.0
## 13440      593 1991    5.0
## 13441      594 1937    4.0
## 13442      595 1991    3.0
## 13443      596 1940    4.0
## 13444      597 1990    3.0
## 13445      608 1996    5.0
## 13446      613 1996    3.0
## 13447      616 1970    3.0
## 13448      633 1995    5.0
## 13449      640 1996    3.0
## 13450      650 1996    3.0
## 13451      661 1996    3.0
## 13452      665 1995    4.0
## 13453      671 1996    4.0
## 13454      708 1996    3.0
## 13455      720 1996    4.0
## 13456      724 1996    3.0
## 13457      728 1995    4.0
## 13458      753 1995    3.0
## 13459      756 1994    3.0
## 13460      766 1996    5.0
## 13461      778 1996    4.0
## 13462      780 1996    2.0
## 13463      783 1996    3.0
## 13464      784 1996    2.0
## 13465      828 1996    3.0
## 13466      830 1996    2.0
## 13467      844 1994    3.0
## 13468      892 1996    3.0
## 13469     1035 1965    4.0
## 13470     1036 1988    1.0
## 13471     1041 1996    5.0
## 13472     1046 1996    4.0
## 13473     1059 1996    3.0
## 13474     1073 1971    4.0
## 13475     1079 1988    4.0
## 13476     1084 1967    3.0
## 13477     1148 1993    5.0
## 13478     1161 1979    4.0
## 13479     1163 1994    3.0
## 13480     1354 1996    5.0
## 13481     1357 1996    5.0
## 13482        1 1995    3.0
## 13483        7 1995    3.0
## 13484       25 1995    4.0
## 13485       32 1995    3.0
## 13486       52 1995    4.0
## 13487       62 1995    1.0
## 13488       88 1996    3.0
## 13489       95 1996    3.0
## 13490      104 1996    4.0
## 13491      112 1995    3.0
## 13492      141 1996    4.0
## 13493      260 1977    4.0
## 13494      293 1994    5.0
## 13495      494 1996    4.0
## 13496      608 1996    5.0
## 13497      648 1996    3.0
## 13498      663 1996    3.0
## 13499      728 1995    5.0
## 13500      733 1996    3.0
## 13501      736 1996    2.0
## 13502      762 1996    3.0
## 13503      778 1996    3.0
## 13504      780 1996    3.0
## 13505      785 1996    4.0
## 13506      786 1996    3.0
## 13507      802 1996    3.0
## 13508      852 1996    1.0
## 13509     1073 1971    3.0
## 13510     1210 1983    3.0
## 13511     1357 1996    5.0
## 13512     1405 1996    2.0
## 13513        2 1995    3.5
## 13514        7 1995    4.0
## 13515       11 1995    3.5
## 13516       21 1995    3.5
## 13517       31 1995    3.0
## 13518       36 1995    4.0
## 13519       39 1995    3.0
## 13520       47 1995    4.0
## 13521       62 1995    3.5
## 13522       95 1996    2.0
## 13523      104 1996    0.5
## 13524      141 1996    4.5
## 13525      150 1995    4.0
## 13526      153 1995    2.0
## 13527      160 1995    2.0
## 13528      163 1995    3.0
## 13529      165 1995    3.0
## 13530      185 1995    3.0
## 13531      223 1994    4.5
## 13532      231 1994    0.5
## 13533      253 1994    3.0
## 13534      256 1994    0.5
## 13535      260 1977    4.0
## 13536      261 1994    3.5
## 13537      288 1994    3.0
## 13538      296 1994    3.5
## 13539      316 1994    2.5
## 13540      318 1994    4.0
## 13541      337 1993    3.5
## 13542      339 1995    4.0
## 13543      344 1994    2.0
## 13544      345 1994    3.0
## 13545      350 1994    3.0
## 13546      353 1994    4.0
## 13547      356 1994    4.0
## 13548      357 1994    5.0
## 13549      364 1994    4.0
## 13550      377 1994    3.0
## 13551      380 1994    2.0
## 13552      435 1993    1.5
## 13553      440 1993    2.5
## 13554      454 1993    2.5
## 13555      457 1993    2.5
## 13556      480 1993    3.0
## 13557      497 1993    4.0
## 13558      500 1993    2.5
## 13559      508 1993    4.0
## 13560      509 1993    5.0
## 13561      520 1993    1.5
## 13562      527 1993    4.0
## 13563      539 1993    3.5
## 13564      541 1982    4.5
## 13565      551 1993    4.5
## 13566      552 1993    2.0
## 13567      553 1993    3.0
## 13568      586 1990    2.5
## 13569      588 1992    3.0
## 13570      592 1989    3.0
## 13571      593 1991    2.0
## 13572      594 1937    4.0
## 13573      595 1991    3.5
## 13574      596 1940    4.0
## 13575      608 1996    3.5
## 13576      648 1996    3.5
## 13577      708 1996    3.5
## 13578      733 1996    3.0
## 13579      736 1996    3.5
## 13580      745 1995    3.0
## 13581      778 1996    4.5
## 13582      780 1996    3.5
## 13583      802 1996    1.0
## 13584      913 1941    4.0
## 13585      914 1964    4.0
## 13586      919 1939    4.0
## 13587      924 1968    4.0
## 13588     1028 1964    3.0
## 13589     1073 1971    3.0
## 13590     1079 1988    4.0
## 13591     1080 1979    3.5
## 13592     1097 1982    3.5
## 13593     1101 1986    4.0
## 13594     1136 1975    3.5
## 13595     1183 1996    3.0
## 13596     1193 1975    4.0
## 13597     1196 1980    3.5
## 13598     1197 1987    4.0
## 13599     1207 1962    4.0
## 13600     1225 1984    4.5
## 13601     1246 1989    5.0
## 13602     1258 1980    3.0
## 13603     1259 1986    4.5
## 13604     1265 1993    2.5
## 13605     1270 1985    3.5
## 13606     1278 1974    4.0
## 13607     1282 1940    4.0
## 13608     1291 1989    3.0
## 13609     1293 1982    4.0
## 13610     1302 1989    2.5
## 13611     1307 1989    4.0
## 13612     1380 1978    2.5
## 13613     1391 1996    3.0
## 13614     1393 1996    3.0
## 13615     1394 1987    3.5
## 13616     1407 1996    1.5
## 13617     1485 1997    0.5
## 13618     1500 1997    4.0
## 13619     1517 1997    0.5
## 13620     1527 1997    4.0
## 13621     1573 1997    3.0
## 13622     1580 1997    2.5
## 13623     1639 1997    4.5
## 13624     1641 1997    4.0
## 13625     1674 1985    3.0
## 13626     1704 1997    5.0
## 13627     1732 1998    4.0
## 13628     1777 1998    1.5
## 13629     1784 1997    3.5
## 13630     1909 1998    0.5
## 13631     1917 1998    3.0
## 13632     1961 1988    3.5
## 13633     1968 1985    3.5
## 13634     2011 1989    2.0
## 13635     2054 1989    3.0
## 13636     2100 1984    3.5
## 13637     2115 1984    2.0
## 13638     2174 1988    4.0
## 13639     2268 1992    3.0
## 13640     2291 1990    4.5
## 13641     2302 1992    3.0
## 13642     2321 1998    3.0
## 13643     2329 1998    2.5
## 13644     2353 1998    3.5
## 13645     2355 1998    3.5
## 13646     2396 1998    4.5
## 13647     2502 1999    4.0
## 13648     2571 1999    4.0
## 13649     2599 1999    4.0
## 13650     2617 1999    2.5
## 13651     2628 1999    0.5
## 13652     2640 1978    2.0
## 13653     2671 1999    4.0
## 13654     2692 1998    4.5
## 13655     2710 1999    1.0
## 13656     2712 1999    2.5
## 13657     2716 1984    3.5
## 13658     2762 1999    4.0
## 13659     2763 1999    2.5
## 13660     2791 1980    3.5
## 13661     2797 1988    4.0
## 13662     2858 1999    4.0
## 13663     2959 1999    4.0
## 13664     2962 1997    4.5
## 13665     2997 1999    4.0
## 13666     3052 1999    2.5
## 13667     3081 1999    3.0
## 13668     3147 1999    4.0
## 13669     3160 1999    4.0
## 13670     3255 1992    3.0
## 13671     3408 2000    4.5
## 13672     3418 1991    3.5
## 13673     3435 1944    3.5
## 13674     3448 1987    4.0
## 13675     3481 2000    4.5
## 13676     3578 2000    2.0
## 13677     3751 2000    3.5
## 13678     3753 2000    3.5
## 13679     3755 2000    2.5
## 13680     3793 2000    3.0
## 13681     3897 2000    4.5
## 13682     3996 2000    3.5
## 13683     4017 2000    4.0
## 13684     4022 2000    4.0
## 13685     4027 2000    4.0
## 13686     4034 2000    4.0
## 13687     4226 2000    3.0
## 13688     4246 2001    4.0
## 13689     4308 2001    3.0
## 13690     4720 2001    2.5
## 13691     4886 2001    4.0
## 13692     4896 2001    3.5
## 13693     4963 2001    4.5
## 13694     4973 2001    5.0
## 13695     4979 2001    4.0
## 13696     4993 2001    4.0
## 13697     4995 2001    3.0
## 13698     5218 2002    3.5
## 13699     5299 2002    3.5
## 13700     5349 2002    3.0
## 13701     5377 2002    4.5
## 13702     5378 2002    1.0
## 13703     5418 2002    4.0
## 13704     5445 2002    3.5
## 13705     5459 2002    2.5
## 13706     5618 2001    4.0
## 13707     5679 2002    2.0
## 13708     5952 2002    3.5
## 13709     5991 2002    3.0
## 13710     5995 2002    4.5
## 13711     6016 2002    4.0
## 13712     6373 2003    2.5
## 13713     6377 2003    4.0
## 13714     6539 2003    4.0
## 13715     6711 2003    4.5
## 13716     6807 1983    4.0
## 13717     6863 2003    3.0
## 13718     6873 2003    4.0
## 13719     6874 2003    4.0
## 13720     6881 2003    4.0
## 13721     6942 2003    4.5
## 13722     7147 2003    4.0
## 13723     7153 2003    3.5
## 13724     7285 2003    4.0
## 13725     7361 2004    4.0
## 13726     7438 2004    4.0
## 13727     8228 1931    4.5
## 13728     8368 2004    3.5
## 13729     8636 2004    3.0
## 13730     8644 2004    4.0
## 13731     8665 2004    4.0
## 13732     8784 2004    4.0
## 13733     8874 2004    3.5
## 13734    30707 2004    3.5
## 13735    30793 2005    2.5
## 13736    32587 2005    3.5
## 13737    32598 2005    3.0
## 13738    33794 2005    2.0
## 13739    34405 2005    3.0
## 13740    35836 2005    2.5
## 13741    36517 2005    4.0
## 13742    40815 2005    3.5
## 13743    40819 2005    4.5
## 13744    41566 2005    4.0
## 13745    45447 2006    3.0
## 13746    46976 2006    4.5
## 13747    50872 2007    4.0
## 13748    51705 2006    4.5
## 13749    52668 2007    4.5
## 13750    52973 2007    3.0
## 13751    54001 2007    4.0
## 13752    55269 2007    1.5
## 13753    56367 2007    5.0
## 13754    57669 2008    4.0
## 13755    59615 2008    1.0
## 13756    60684 2009    2.5
## 13757    62344 2008    4.5
## 13758    63515 2006    2.5
## 13759    63876 2008    4.5
## 13760    65261 2008    4.0
## 13761    66097 2009    4.0
## 13762    66198 2009    3.0
## 13763    67193 2009    3.0
## 13764    67799 2009    2.5
## 13765    68954 2009    4.5
## 13766    69844 2009    4.0
## 13767    70293 2009    4.5
## 13768        1 1995    5.0
## 13769      107 1996    4.0
## 13770      110 1995    5.0
## 13771      165 1995    4.0
## 13772      231 1994    5.0
## 13773      260 1977    5.0
## 13774      296 1994    5.0
## 13775      303 1995    4.0
## 13776      316 1994    4.0
## 13777      318 1994    5.0
## 13778      327 1995    2.0
## 13779      344 1994    5.0
## 13780      364 1994    5.0
## 13781      428 1993    4.0
## 13782      480 1993    5.0
## 13783      500 1993    5.0
## 13784      588 1992    4.5
## 13785      589 1991    4.0
## 13786      590 1990    5.0
## 13787      648 1996    4.0
## 13788      780 1996    4.0
## 13789     1019 1954    3.0
## 13790     1073 1971    4.5
## 13791     1214 1979    3.5
## 13792     1240 1984    4.5
## 13793     1265 1993    4.5
## 13794     1385 1992    3.0
## 13795     1617 1997    4.0
## 13796     1772 1998    5.0
## 13797     2028 1998    5.0
## 13798     2378 1984    4.0
## 13799     2571 1999    5.0
## 13800     2628 1999    5.0
## 13801     2683 1999    5.0
## 13802     2706 1999    5.0
## 13803     2762 1999    5.0
## 13804     2951 1964    5.0
## 13805     2959 1999    5.0
## 13806     2987 1988    4.0
## 13807     2991 1973    5.0
## 13808     3114 1999    4.5
## 13809     3254 1993    4.0
## 13810     3578 2000    5.0
## 13811     3638 1979    5.0
## 13812     3793 2000    5.0
## 13813     4886 2001    4.0
## 13814     4896 2001    5.0
## 13815     4963 2001    5.0
## 13816     5219 2002    4.5
## 13817     5349 2002    4.5
## 13818     5418 2002    5.0
## 13819     5952 2002    5.0
## 13820     6365 2003    5.0
## 13821     6539 2003    5.0
## 13822     6874 2003    5.0
## 13823     7153 2003    5.0
## 13824     7438 2004    5.0
## 13825     7454 2004    4.0
## 13826     8528 2004    5.0
## 13827    33794 2005    5.0
## 13828    45722 2006    5.0
## 13829    48516 2006    5.0
## 13830    49272 2006    4.0
## 13831    51662 2007    5.0
## 13832    58559 2008    5.0
## 13833    59315 2008    5.0
## 13834        1 1995    4.0
## 13835        6 1995    4.0
## 13836       25 1995    2.0
## 13837       29 1995    5.0
## 13838       32 1995    4.0
## 13839       36 1995    4.0
## 13840       79 1996    3.0
## 13841       81 1995    4.0
## 13842      141 1996    3.0
## 13843      260 1977    4.0
## 13844      608 1996    5.0
## 13845      648 1996    4.0
## 13846      661 1996    3.0
## 13847      733 1996    4.0
## 13848      736 1996    3.0
## 13849      766 1996    3.0
## 13850      778 1996    4.0
## 13851      780 1996    2.0
## 13852      783 1996    3.0
## 13853      800 1996    5.0
## 13854      802 1996    4.0
## 13855      830 1996    3.0
## 13856      832 1996    4.0
## 13857      837 1996    4.0
## 13858      866 1996    4.0
## 13859      986 1996    4.0
## 13860     1047 1996    4.0
## 13861     1061 1996    4.0
## 13862     1073 1971    3.0
## 13863     1183 1996    4.0
## 13864     1351 1996    4.0
## 13865     1356 1996    4.0
## 13866     1367 1996    4.0
## 13867     1407 1996    4.0
## 13868     1422 1997    4.0
## 13869     1438 1997    3.0
## 13870     1472 1997    4.0
## 13871     1479 1997    3.0
## 13872     1500 1997    5.0
## 13873     1513 1997    2.0
## 13874     1515 1997    3.0
## 13875     1527 1997    4.0
## 13876     1552 1997    4.0
## 13877     1554 1996    4.0
## 13878     1569 1997    4.0
## 13879     1580 1997    4.0
## 13880     1584 1997    5.0
## 13881     1590 1997    5.0
## 13882     1597 1997    4.0
## 13883     1608 1997    2.0
## 13884        1 1995    5.0
## 13885       12 1995    3.5
## 13886       19 1995    4.0
## 13887       23 1995    3.5
## 13888       34 1995    3.0
## 13889      104 1996    4.0
## 13890      110 1995    5.0
## 13891      216 1995    4.0
## 13892      231 1994    4.5
## 13893      260 1977    5.0
## 13894      267 1995    3.5
## 13895      318 1994    5.0
## 13896      356 1994    5.0
## 13897      370 1994    4.5
## 13898      380 1994    4.5
## 13899      466 1993    5.0
## 13900      527 1993    5.0
## 13901      588 1992    4.5
## 13902      589 1991    5.0
## 13903      747 1996    3.5
## 13904     1036 1988    5.0
## 13905     1047 1996    4.0
## 13906     1097 1982    5.0
## 13907     1196 1980    5.0
## 13908     1198 1981    5.0
## 13909     1200 1986    4.0
## 13910     1210 1983    5.0
## 13911     1214 1979    4.0
## 13912     1240 1984    5.0
## 13913     1265 1993    5.0
## 13914     1270 1985    5.0
## 13915     1291 1989    5.0
## 13916     1573 1997    4.0
## 13917     1682 1998    5.0
## 13918     2028 1998    5.0
## 13919     2335 1998    3.0
## 13920     2379 1985    3.0
## 13921     2380 1986    3.0
## 13922     2381 1987    3.0
## 13923     2382 1988    2.5
## 13924     2571 1999    5.0
## 13925     2706 1999    4.0
## 13926     2791 1980    5.0
## 13927     2948 1963    4.5
## 13928     3114 1999    5.0
## 13929     3146 1999    3.5
## 13930     3387 1989    3.0
## 13931     3578 2000    4.0
## 13932     3623 2000    4.0
## 13933     3821 2000    3.0
## 13934     3869 1991    4.5
## 13935     3979 2000    3.0
## 13936     3996 2000    4.0
## 13937     4015 2000    3.0
## 13938     4084 1987    3.5
## 13939     4306 2001    4.5
## 13940     4340 2001    3.0
## 13941     4718 2001    4.0
## 13942     4886 2001    5.0
## 13943     4973 2001    4.5
## 13944     4993 2001    5.0
## 13945     5218 2002    4.5
## 13946     5418 2002    5.0
## 13947     5952 2002    5.0
## 13948     6482 2003    2.0
## 13949     6550 2003    3.0
## 13950     6763 2003    3.5
## 13951     7153 2003    5.0
## 13952     7317 2004    4.0
## 13953     7346 2004    4.0
## 13954     8360 2004    4.5
## 13955     8531 2004    3.0
## 13956    30825 2004    4.0
## 13957    33679 2005    4.5
## 13958    33794 2005    5.0
## 13959    34162 2005    4.5
## 13960    35836 2005    4.0
## 13961    43836 2006    3.5
## 13962    44022 2006    4.5
## 13963    44191 2006    4.5
## 13964    44972 2006    3.0
## 13965    45186 2006    4.5
## 13966    46865 2006    2.5
## 13967    50806 2007    2.0
## 13968    52694 2007    3.5
## 13969    54272 2007    4.5
## 13970    54286 2007    5.0
## 13971    54503 2007    4.0
## 13972    54732 2007    3.0
## 13973    57532 2008    2.0
## 13974    58559 2008    5.0
## 13975    59014 2008    3.0
## 13976    59315 2008    5.0
## 13977    59369 2008    4.5
## 13978    59900 2008    3.0
## 13979    66798 2009    4.0
## 13980    68358 2009    4.5
## 13981    68954 2009    4.0
## 13982    69122 2009    4.5
## 13983    71535 2009    4.5
## 13984    73017 2009    4.5
## 13985    74851 2010    4.5
## 13986    76093 2010    5.0
## 13987    78041 2010    3.5
## 13988    78499 2010    5.0
## 13989    79132 2010    5.0
## 13990    79185 2010    4.0
## 13991    79293 2010    4.0
## 13992    79428 2010    3.0
## 13993    80549 2010    3.5
## 13994    81229 2010    5.0
## 13995    81564 2010    4.5
## 13996    82852 2010    3.5
## 13997    85414 2011    5.0
## 13998    87232 2011    5.0
## 13999    89745 2012    5.0
## 14000    91500 2012    3.5
## 14001    91542 2011    5.0
## 14002    91630 2011    4.5
## 14003    92259 2011    5.0
## 14004    92507 2012    4.5
## 14005    93326 2012    4.0
## 14006    93510 2012    4.0
## 14007    94466 2011    4.0
## 14008    96610 2012    5.0
## 14009    96616 2012    3.0
## 14010    97913 2012    4.5
## 14011    98809 2012    4.5
## 14012   103335 2013    4.5
## 14013   103341 2013    3.5
## 14014   103810 2013    5.0
## 14015   103883 2013    4.0
## 14016   104218 2013    3.5
## 14017   104374 2013    4.5
## 14018   106487 2013    3.0
## 14019   106489 2013    4.5
## 14020   106782 2013    4.5
## 14021   109374 2014    5.0
## 14022   110102 2014    5.0
## 14023   111781 2015    4.0
## 14024   112138 2014    4.0
## 14025   112175 2014    4.5
## 14026   112623 2014    4.5
## 14027   112852 2014    5.0
## 14028   115617 2014    5.0
## 14029   116977 2014    3.5
## 14030   132157 2015    2.5
## 14031   134368 2015    4.0
## 14032   134853 2015    4.0
## 14033   138036 2015    5.0
## 14034        1 1995    5.0
## 14035        2 1995    3.0
## 14036        6 1995    3.0
## 14037       10 1995    2.0
## 14038       11 1995    4.0
## 14039       19 1995    1.0
## 14040       21 1995    5.0
## 14041       32 1995    5.0
## 14042       34 1995    5.0
## 14043       39 1995    2.0
## 14044       44 1995    3.0
## 14045       45 1995    4.0
## 14046       47 1995    5.0
## 14047       50 1995    5.0
## 14048       62 1995    3.0
## 14049       76 1995    3.0
## 14050       95 1996    3.0
## 14051      110 1995    5.0
## 14052      112 1995    4.0
## 14053      141 1996    4.0
## 14054      145 1995    3.0
## 14055      150 1995    3.0
## 14056      151 1995    3.0
## 14057      153 1995    3.0
## 14058      160 1995    2.0
## 14059      161 1995    5.0
## 14060      163 1995    5.0
## 14061      165 1995    3.0
## 14062      172 1995    1.0
## 14063      173 1995    3.0
## 14064      177 1995    2.0
## 14065      181 1995    3.0
## 14066      186 1995    3.0
## 14067      188 1995    3.0
## 14068      193 1995    1.0
## 14069      196 1995    3.0
## 14070      204 1995    4.0
## 14071      208 1995    3.0
## 14072      223 1994    5.0
## 14073      224 1995    3.0
## 14074      231 1994    3.0
## 14075      235 1994    4.0
## 14076      237 1995    3.0
## 14077      247 1994    5.0
## 14078      252 1994    3.0
## 14079      253 1994    2.0
## 14080      266 1994    2.0
## 14081      273 1994    3.0
## 14082      288 1994    3.0
## 14083      292 1995    3.0
## 14084      293 1994    4.0
## 14085      296 1994    4.0
## 14086      300 1994    4.0
## 14087      315 1994    2.0
## 14088      316 1994    1.0
## 14089      317 1994    2.0
## 14090      318 1994    5.0
## 14091      319 1994    4.0
## 14092      328 1995    3.0
## 14093      329 1994    3.0
## 14094      330 1995    3.0
## 14095      332 1995    3.0
## 14096      333 1995    3.0
## 14097      339 1995    3.0
## 14098      344 1994    2.0
## 14099      349 1994    3.0
## 14100      350 1994    2.0
## 14101      353 1994    3.0
## 14102      355 1994    2.0
## 14103      356 1994    4.0
## 14104      357 1994    3.0
## 14105      362 1994    3.0
## 14106      364 1994    1.0
## 14107      366 1994    2.0
## 14108      367 1994    3.0
## 14109      368 1994    4.0
## 14110      370 1994    3.0
## 14111      377 1994    3.0
## 14112      380 1994    4.0
## 14113      413 1994    1.0
## 14114      420 1994    1.0
## 14115      426 1993    2.0
## 14116      432 1994    2.0
## 14117      434 1993    3.0
## 14118      435 1993    3.0
## 14119      440 1993    3.0
## 14120      442 1993    3.0
## 14121      454 1993    2.0
## 14122      455 1993    3.0
## 14123      457 1993    4.0
## 14124      466 1993    2.0
## 14125      471 1994    4.0
## 14126      474 1993    4.0
## 14127      480 1993    4.0
## 14128      485 1993    3.0
## 14129      497 1993    4.0
## 14130      500 1993    3.0
## 14131      508 1993    3.0
## 14132      509 1993    1.0
## 14133      520 1993    2.0
## 14134      527 1993    4.0
## 14135      529 1993    3.0
## 14136      532 1994    3.0
## 14137      539 1993    3.0
## 14138      543 1993    3.0
## 14139      551 1993    3.0
## 14140      552 1993    1.0
## 14141      553 1993    5.0
## 14142      555 1993    5.0
## 14143      587 1990    3.0
## 14144      588 1992    3.0
## 14145      589 1991    5.0
## 14146      590 1990    4.0
## 14147      592 1989    3.0
## 14148      595 1991    5.0
## 14149      597 1990    2.0
## 14150      606 1995    2.0
## 14151      608 1996    5.0
## 14152      610 1981    3.0
## 14153      648 1996    5.0
## 14154      736 1996    2.0
## 14155      778 1996    5.0
## 14156      780 1996    2.0
## 14157        1 1995    4.0
## 14158       11 1995    3.5
## 14159       17 1995    4.0
## 14160       21 1995    5.0
## 14161       25 1995    3.5
## 14162       34 1995    4.0
## 14163       39 1995    4.0
## 14164       62 1995    3.5
## 14165      150 1995    4.0
## 14166      208 1995    3.0
## 14167      260 1977    4.0
## 14168      265 1992    3.5
## 14169      266 1994    3.5
## 14170      337 1993    4.0
## 14171      339 1995    4.5
## 14172      342 1994    3.5
## 14173      357 1994    3.5
## 14174      364 1994    3.5
## 14175      368 1994    3.5
## 14176      377 1994    4.5
## 14177      457 1993    4.0
## 14178      508 1993    4.0
## 14179      515 1993    2.5
## 14180      529 1993    4.0
## 14181      539 1993    4.0
## 14182      586 1990    2.5
## 14183      587 1990    3.5
## 14184      588 1992    3.0
## 14185      590 1990    4.5
## 14186      592 1989    3.5
## 14187      595 1991    4.0
## 14188      597 1990    3.5
## 14189      648 1996    3.5
## 14190      733 1996    3.0
## 14191      858 1972    4.5
## 14192      898 1940    5.0
## 14193      902 1961    2.5
## 14194      904 1954    4.5
## 14195      908 1959    4.0
## 14196      910 1959    3.5
## 14197      912 1942    4.5
## 14198      914 1964    3.5
## 14199      919 1939    4.0
## 14200      920 1939    4.0
## 14201      923 1941    4.0
## 14202     1073 1971    3.5
## 14203     1079 1988    4.0
## 14204     1097 1982    4.0
## 14205     1193 1975    4.0
## 14206     1197 1987    4.0
## 14207     1198 1981    4.0
## 14208     1225 1984    4.0
## 14209     1234 1973    4.0
## 14210     1240 1984    3.0
## 14211     1242 1989    3.5
## 14212     1246 1989    3.5
## 14213     1247 1967    3.5
## 14214     1259 1986    4.0
## 14215     1265 1993    4.0
## 14216     1270 1985    3.5
## 14217     1278 1974    4.0
## 14218     1291 1989    3.5
## 14219     1304 1969    4.5
## 14220     1307 1989    4.0
## 14221     1380 1978    3.5
## 14222     1387 1975    3.0
## 14223     1393 1996    3.5
## 14224     1394 1987    4.0
## 14225     1580 1997    3.5
## 14226     1610 1990    4.0
## 14227     1641 1997    4.5
## 14228     1682 1998    3.5
## 14229     1704 1997    4.0
## 14230     1721 1997    4.0
## 14231     1747 1997    5.0
## 14232     1784 1997    3.5
## 14233     1912 1998    4.0
## 14234     1923 1998    3.5
## 14235     1961 1988    4.5
## 14236     1968 1985    3.5
## 14237     2011 1989    3.0
## 14238     2081 1989    2.5
## 14239     2100 1984    2.5
## 14240     2115 1984    3.5
## 14241     2194 1987    4.5
## 14242     2268 1992    4.5
## 14243     2291 1990    3.5
## 14244     2302 1992    4.0
## 14245     2321 1998    4.0
## 14246     2355 1998    3.0
## 14247     2396 1998    4.0
## 14248     2406 1984    3.5
## 14249     2470 1986    2.5
## 14250     2599 1999    4.0
## 14251     2657 1975    3.0
## 14252     2716 1984    3.5
## 14253     2797 1988    4.0
## 14254     2918 1986    4.0
## 14255     3072 1987    3.5
## 14256     3101 1987    4.0
## 14257     3114 1999    4.0
## 14258     3176 1999    3.0
## 14259     3255 1992    3.0
## 14260     3256 1992    3.5
## 14261     3317 2000    4.0
## 14262     3408 2000    3.5
## 14263     3471 1977    3.5
## 14264     3751 2000    4.0
## 14265     3897 2000    5.0
## 14266     4014 2000    3.5
## 14267     4022 2000    3.5
## 14268     4027 2000    3.5
## 14269     4029 2000    5.0
## 14270     4085 1984    3.5
## 14271     4246 2001    4.0
## 14272     4306 2001    3.0
## 14273     4361 1982    4.5
## 14274     4886 2001    3.0
## 14275     4963 2001    4.0
## 14276     4979 2001    4.5
## 14277     4993 2001    5.0
## 14278     4995 2001    4.0
## 14279     5299 2002    3.5
## 14280     5377 2002    3.5
## 14281     5952 2002    5.0
## 14282     5989 2002    4.0
## 14283     6377 2003    3.5
## 14284     6711 2003    4.0
## 14285     6863 2003    3.0
##                                                                                                                                                          title
## 1                                                                                                                                              Dangerous Minds
## 2                                                                                                                                                        Dumbo
## 3                                                                                                                                                     Sleepers
## 4                                                                                                                                         Escape from New York
## 5                                                                                                                      Cinema Paradiso (Nuovo cinema Paradiso)
## 6                                                                                                                                             Deer Hunter, The
## 7                                                                                                                                                      Ben-Hur
## 8                                                                                                                                                       Gandhi
## 9                                                                                                                              Dracula (Bram Stoker's Dracula)
## 10                                                                                                                                                   Cape Fear
## 11                                                                                                                               Star Trek: The Motion Picture
## 12                                                                                                                             Beavis and Butt-Head Do America
## 13                                                                                                                                      French Connection, The
## 14                                                                                                                                                        Tron
## 15                                                                                                                                     Gods Must Be Crazy, The
## 16                                                                                                                                                      Willow
## 17                                                                                                                                                        Antz
## 18                                                                                                                                                    Fly, The
## 19                                                                                                                                                Time Bandits
## 20                                                                                                                                             Blazing Saddles
## 21                                                                                                                                                   GoldenEye
## 22                                                                                                                                       Sense and Sensibility
## 23                                                                                                                                                    Clueless
## 24                                                                                                                                        Seven (a.k.a. Se7en)
## 25                                                                                                                                         Usual Suspects, The
## 26                                                                                                                                            Mighty Aphrodite
## 27                                                                                                                                          Mr. Holland's Opus
## 28                                                                                                                                                  Braveheart
## 29                                                                                                                                      Brothers McMullen, The
## 30                                                                                                                                                   Apollo 13
## 31                                                                                                                                              Batman Forever
## 32                                                                                                                                                Crimson Tide
## 33                                                                                                                                  Die Hard: With a Vengeance
## 34                                                                                                                                                First Knight
## 35                                                                                                                                                    Net, The
## 36                                                                                                                                                 Nine Months
## 37                                                                                                                                                  Waterworld
## 38                                                                                                                                           Circle of Friends
## 39                                                                                                                                                      Clerks
## 40                                                                                                                                                  Disclosure
## 41                                                                                                                                                     Ed Wood
## 42                                                                                                                                                  Houseguest
## 43                                                                                                          Interview with the Vampire: The Vampire Chronicles
## 44                                                                                                                                                Little Women
## 45                                                                                                         Like Water for Chocolate (Como agua para chocolate)
## 46                                                                                                                                         Legends of the Fall
## 47                                                                                                                                 Madness of King George, The
## 48                                                                                                                  Mary Shelley's Frankenstein (Frankenstein)
## 49                                                                                                                                                    Outbreak
## 50                                                                                                                                                Pulp Fiction
## 51                                                                                                                                                   Quiz Show
## 52                                                                                                                                   Secret of Roan Inish, The
## 53                                                                                                                                           Santa Clause, The
## 54                                                                                                                                               Shallow Grave
## 55                                                                                                                                     While You Were Sleeping
## 56                                                                                                                                    Clear and Present Danger
## 57                                                                                                                                                 Client, The
## 58                                                                                                                                                Forrest Gump
## 59                                                                                                                                 Four Weddings and a Funeral
## 60                                                                                                                                              Lion King, The
## 61                                                                                                                                                   Mask, The
## 62                                                                                                                          Naked Gun 33 1/3: The Final Insult
## 63                                                                                                                                                  Paper, The
## 64                                                                                                                                               Reality Bites
## 65                                                                                                                                                       Speed
## 66                                                                                                                                                        Wolf
## 67                                                                                       Highlander III: The Sorcerer (a.k.a. Highlander: The Final Dimension)
## 68                                                                                                                                        Addams Family Values
## 69                                                                                                                                                   Firm, The
## 70                                                                                                                                               Fugitive, The
## 71                                                                                                 Englishman Who Went Up a Hill But Came Down a Mountain, The
## 72                                                                                                                                         In the Line of Fire
## 73                                                                                                                                               Jurassic Park
## 74                                                                                                                                            Last Action Hero
## 75                                                                                                                                      Much Ado About Nothing
## 76                                                                                                                                              Mrs. Doubtfire
## 77                                                                                                                                                Philadelphia
## 78                                                                                                                                                  Piano, The
## 79                                                                                                                                     Remains of the Day, The
## 80                                                                                                                                            Schindler's List
## 81                                                                                                                                                      Sirens
## 82                                                                                                                                        Sleepless in Seattle
## 83                                                                                                                                                   Threesome
## 84                                                                                                                             Nightmare Before Christmas, The
## 85                                                                                                                                       Three Musketeers, The
## 86                                                                                                                                      Brady Bunch Movie, The
## 87                                                                                                                                                  Home Alone
## 88                                                                                                                                                       Ghost
## 89                                                                                                                                                     Aladdin
## 90                                                                                                                                  Terminator 2: Judgment Day
## 91                                                                                                                                          Dances with Wolves
## 92                                                                                                                                                      Batman
## 93                                                                                                                                   Silence of the Lambs, The
## 94                                                                                                                                             Aristocats, The
## 95                                                                                                                                   James and the Giant Peach
## 96                                                                                                             Wallace & Gromit: The Best of Aardman Animation
## 97                                                                                                                                 Indian in the Cupboard, The
## 98                                                                                                                                                  Braveheart
## 99                                                                                                                                          Heavenly Creatures
## 100                                                                                                                                                Major Payne
## 101                                                                                                                                               Pulp Fiction
## 102                                                                                                                                  Shawshank Redemption, The
## 103                                                                                                                                           Flintstones, The
## 104                                                                                                                                               Forrest Gump
## 105                                                                                                                                                      Speed
## 106                                                                                                                                           Schindler's List
## 107                                                                                                                                                    Aladdin
## 108                                                                                                                                                     Batman
## 109                                                                                                                                  Silence of the Lambs, The
## 110                                                                                                                                       Beauty and the Beast
## 111                                                                                                                                                    Twister
## 112                                                                                                                                              Trainspotting
## 113                                                                                                                                                      Bound
## 114                                                                                                                                        Princess Bride, The
## 115                                                                                                                 Star Wars: Episode VI - Return of the Jedi
## 116                                                                                                                                           Harold and Maude
## 117                                                                                                                                       Fried Green Tomatoes
## 118                                                                                                                                                 Young Guns
## 119                                                                                                                                  Men in Black (a.k.a. MIB)
## 120                                                                                                                                                    Titanic
## 121                                                                                                                             Fear and Loathing in Las Vegas
## 122                                                                                                                                        Saving Private Ryan
## 123                                                                                                                                                  Happiness
## 124                                                                                                                                               Pet Sematary
## 125                                                                                                                                                  Big Daddy
## 126                                                                                                                                              Summer of Sam
## 127                                                                                                                        Ghostbusters (a.k.a. Ghost Busters)
## 128                                                                                                                                           Sixth Sense, The
## 129                                                                                                                                             Stir of Echoes
## 130                                                                                                                                            American Beauty
## 131                                                                                                                                                 Fight Club
## 132                                                                                                                                                 Encino Man
## 133                                                                                                                                                  Frequency
## 134                                                                                                                                        Requiem for a Dream
## 135                                                                                                                                                 Spider-Man
## 136                                                                                                                                      Bowling for Columbine
## 137                                                                                                                                               Finding Nemo
## 138                                                                                                             Lord of the Rings: The Return of the King, The
## 139                                                                                                                      Eternal Sunshine of the Spotless Mind
## 140                                                                                                                                            Fahrenheit 9/11
## 141                                                                                                                                               Spider-Man 2
## 142                                                                                                                                     Daria: Is It Fall Yet?
## 143                                                                                                                                             V for Vendetta
## 144                                                                                                                                       Flags of Our Fathers
## 145                                                                                                                                      Letters from Iwo Jima
## 146                                                                                                                                           Dark Knight, The
## 147                                                                                                       White Stripes Under Great White Northern Lights, The
## 148                                                                                                                                                  GoldenEye
## 149                                                                                                                                                       Babe
## 150                                                                                                                        Rumble in the Bronx (Hont faan kui)
## 151                                                                                                                                              Birdcage, The
## 152                                                                                                                                             Batman Forever
## 153                                                                                                                                                Judge Dredd
## 154                                                                                                                                                   Net, The
## 155                                                                                                                         Star Wars: Episode IV - A New Hope
## 156                                                                                                                                                   Only You
## 157                                                                                                                                               Pulp Fiction
## 158                                                                                                                                     Star Trek: Generations
## 159                                                                                                                                   Clear and Present Danger
## 160                                                                                                                                               Forrest Gump
## 161                                                                                                                                Four Weddings and a Funeral
## 162                                                                                                                                             Lion King, The
## 163                                                                                                                                                  Mask, The
## 164                                                                                                                                                  True Lies
## 165                                                                                                                                       Addams Family Values
## 166                                                                                                                                              Carlito's Way
## 167                                                                                                                                                Cliffhanger
## 168                                                                                                                                                  Coneheads
## 169                                                                                                                                                       Dave
## 170                                                                                                                                             Demolition Man
## 171                                                                                                                                                Hard Target
## 172                                                                                                                                              Jurassic Park
## 173                                                                                                                                               Blade Runner
## 174                                                                                                                                                    Aladdin
## 175                                                                                                                                 Terminator 2: Judgment Day
## 176                                                                                                                                         Dances with Wolves
## 177                                                                                                                            Snow White and the Seven Dwarfs
## 178                                                                                                                                                  Pinocchio
## 179                                                                                                                                                Heavy Metal
## 180                                                                                                                                            Aristocats, The
## 181                                                                                                                                             Godfather, The
## 182                                                                                                                                                    Vertigo
## 183                                                                                                                                           Some Like It Hot
## 184                                                                                                                                        Maltese Falcon, The
## 185                                                                                                                                          Wizard of Oz, The
## 186                                                                                                                                         Herbie Rides Again
## 187                                                                                                                                            Shaggy Dog, The
## 188                                                                                                                                                 Cinderella
## 189                                                                                                                                               Mary Poppins
## 190                                                                                                                                              Pete's Dragon
## 191                                                                                                                                   Bedknobs and Broomsticks
## 192                                                                                                                                        Alice in Wonderland
## 193                                                                                                                                     Fox and the Hound, The
## 194                                                                                                                                                   Die Hard
## 195                                                                                                                        Willy Wonka & the Chocolate Factory
## 196                                                                                                                                       Fish Called Wanda, A
## 197                                                                                                                                             Reservoir Dogs
## 198                                                                                                                                 E.T. the Extra-Terrestrial
## 199                                                                                                                            Return of the Pink Panther, The
## 200                                                                                                                                                 Abyss, The
## 201                                                                                                                            Monty Python and the Holy Grail
## 202                                                                                                                             Cheech and Chong's Up in Smoke
## 203                                                                                                             Star Wars: Episode V - The Empire Strikes Back
## 204                                                                                                                                        Princess Bride, The
## 205                                                                                    Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 206                                                                                                                                                     Aliens
## 207                                                                                                                                        Clockwork Orange, A
## 208                                                                                                                                             Apocalypse Now
## 209                                                                                                                 Star Wars: Episode VI - Return of the Jedi
## 210                                                                                                                                                 Goodfellas
## 211                                                                                                                                                      Alien
## 212                                                                                                                                                     Psycho
## 213                                                                                                                                        Blues Brothers, The
## 214                                                                                                                                          Full Metal Jacket
## 215                                                                                                                                                    Amadeus
## 216                                                                                                                                                 Annie Hall
## 217                                                                                                                                            Terminator, The
## 218                                                                                                                      Rosencrantz and Guildenstern Are Dead
## 219                                                                                                                                         Better Off Dead...
## 220                                                                                                                                               Shining, The
## 221                                                                                                                                                Stand by Me
## 222                                                                                                                                              Groundhog Day
## 223                                                                                                                                         Back to the Future
## 224                                                                                                                                         Young Frankenstein
## 225                                                                                                                                                   Fantasia
## 226                                                                                                                                                   Heathers
## 227                                                                                                                                         This Is Spinal Tap
## 228                                                                                                                         Indiana Jones and the Last Crusade
## 229                                                                                                                                       Pink Floyd: The Wall
## 230                                                                                                                                    When Harry Met Sally...
## 231                                                                                                                                             Believers, The
## 232                                                                                                                                                  Blob, The
## 233                                                                                                                                                  Cape Fear
## 234                                                                                                                                   Star Trek: First Contact
## 235                                                                                                                              Star Trek: The Motion Picture
## 236                                                                                                                     Star Trek VI: The Undiscovered Country
## 237                                                                                                                            Star Trek II: The Wrath of Khan
## 238                                                                                                                              Star Trek IV: The Voyage Home
## 239                                                                                                                                             Batman Returns
## 240                                                                                                                                                     Grease
## 241                                                                                                                                                       Jaws
## 242                                                                                                                                                     Jaws 2
## 243                                                                                                                                                   Sneakers
## 244                                                                                                                             Lost World: Jurassic Park, The
## 245                                                                                                                                  Men in Black (a.k.a. MIB)
## 246                                                                                                                                                    Stripes
## 247                                                                                                                                                    Witness
## 248                                                                                                                                                Wild Things
## 249                                                                                                                              Mr. Nice Guy (Yat goh ho yan)
## 250                                                                                                                                                 Armageddon
## 251                                                                                                                                            Lethal Weapon 4
## 252                                                                                                                                     French Connection, The
## 253                                                                                                                                                      Rocky
## 254                                                                                                                                                   Rain Man
## 255                                                                                                                                                  Labyrinth
## 256                                                                                                                                        Breakfast Club, The
## 257                                                                                                                                                Poltergeist
## 258                                                                                                                                              Lethal Weapon
## 259                                                                                                                                            Lethal Weapon 3
## 260                                                                                                                                                   Gremlins
## 261                                                                                                                                               Goonies, The
## 262                                                                                                                                              Freaky Friday
## 263                                                                                                                                                      Bambi
## 264                                                                                                                                         Dangerous Liaisons
## 265                                                                                                                                                       Dune
## 266                                                                                                                                        Black Cauldron, The
## 267                                                                                                                                            Black Hole, The
## 268                                                                                                                                    Flight of the Navigator
## 269                                                                                                                                   Honey, I Shrunk the Kids
## 270                                                                                                                                                 Roger & Me
## 271                                                                                                                                           Jungle Book, The
## 272                                                                                                                                         Lady and the Tramp
## 273                                                                                                                                        Little Mermaid, The
## 274                                                                                                            101 Dalmatians (One Hundred and One Dalmatians)
## 275                                                                                                                                        One Magic Christmas
## 276                                                                                                                                                  Peter Pan
## 277                                                                                                                                 Return from Witch Mountain
## 278                                                                                                                                             Rocketeer, The
## 279                                                                                                                                            Sleeping Beauty
## 280                                                                                                                                                     Splash
## 281                                                                                                                                           Steamboat Willie
## 282                                                                                                                                                       Tron
## 283                                                                                                                                                  Jerk, The
## 284                                                                                                                                  Dead Men Don't Wear Plaid
## 285                                                                                                                                             Outsiders, The
## 286                                                                                                                       Indiana Jones and the Temple of Doom
## 287                                                                                                                                         Addams Family, The
## 288                                                                                                                                          Dark Crystal, The
## 289                                                                                                                                          American Tail, An
## 290                                                                                                                                                     Legend
## 291                                                                                                                                            Sixteen Candles
## 292                                                                                                                                     NeverEnding Story, The
## 293                                                                                                                                                Beetlejuice
## 294                                                                                                                                                     Willow
## 295                                                                                                                                          Untouchables, The
## 296                                                                                                                                            Say Anything...
## 297                                                                                                                                          Seventh Sign, The
## 298                                                                                                                                            Few Good Men, A
## 299                                                                                                                                                Player, The
## 300                                                                                                                                              Sid and Nancy
## 301                                                                                                                                                     Fletch
## 302                                                                                                                           First Blood (Rambo: First Blood)
## 303                                                                                                                                        Romancing the Stone
## 304                                                                                                                                                   Rocky II
## 305                                                                                                                                                   Fly, The
## 306                                                                                                                 Name of the Rose, The (Name der Rose, Der)
## 307                                                                                                                                               Dead Ringers
## 308                                                                                                                                                 Dick Tracy
## 309                                                                                                                  Star Wars: Episode I - The Phantom Menace
## 310                                                                                                                                                   Superman
## 311                                                                                                                                     It Came from Hollywood
## 312                                                                                                                      Austin Powers: The Spy Who Shagged Me
## 313                                                                                                                                              Arachnophobia
## 314                                                                                                                        Ghostbusters (a.k.a. Ghost Busters)
## 315                                                                                                                                                Mystery Men
## 316                                                                                                                                        Mosquito Coast, The
## 317                                                                                                                                                  Bowfinger
## 318                                                                                                  Monty Python's And Now for Something Completely Different
## 319                                                                                                                                                  Airplane!
## 320                                                                                                                                National Lampoon's Vacation
## 321                                                                                                                                                        Big
## 322                                                                                                                                         Christmas Story, A
## 323                                                                                                                                               Medicine Man
## 324                                                                                                                                               Fright Night
## 325                                                                                                                                                  Excalibur
## 326                                                                                                                                                      Tommy
## 327                                                                                                                                                  Psycho II
## 328                                                                                                                                                 Psycho III
## 329                                                                                                                                               Total Recall
## 330                                                                                                                                   Ferris Bueller's Day Off
## 331                                                                                                                                               Time Bandits
## 332                                                                                                                                                  RoboCop 2
## 333                                                                                                                                   Who Framed Roger Rabbit?
## 334                                                                                                                                           Live and Let Die
## 335                                                                                                                                                  Creepshow
## 336                                                                                                                                                 Robin Hood
## 337                                                                                                                                             Trading Places
## 338                                                                                                                                                  Meatballs
## 339                                                                                                                                           Commitments, The
## 340                                                                                                                                          Stand and Deliver
## 341                                                                                                                                           Fatal Attraction
## 342                                                                                                                                               Midnight Run
## 343                                                                                                                                           Fisher King, The
## 344                                                                                                                                 The Falcon and the Snowman
## 345                                                                                                       Loaded Weapon 1 (National Lampoon's Loaded Weapon 1)
## 346                                                                                                                               Fast Times at Ridgemont High
## 347                                                                                                                                               Agnes of God
## 348                                                                                                                                     League of Their Own, A
## 349                                                                                                                                       White Men Can't Jump
## 350                                                                                                                             Hard-Boiled (Lat sau san taam)
## 351                                                                                                                                    Transformers: The Movie
## 352                                                                                                                                           Grumpier Old Men
## 353                                                                                                                                                   Clueless
## 354                                                                                                                                              Happy Gilmore
## 355                                                                                                                                              Birdcage, The
## 356                                                                                                                                                  Apollo 13
## 357                                                                                                                            Dumb & Dumber (Dumb and Dumber)
## 358                                                                                                                                     Miracle on 34th Street
## 359                                                                                                                                 Ace Ventura: Pet Detective
## 360                                                                                                                                               Forrest Gump
## 361                                                                                                                                             Lion King, The
## 362                                                                                                                                                  Mask, The
## 363                                                                                                                                                      Speed
## 364                                                                                                                                                       Dave
## 365                                                                                                                                             Mrs. Doubtfire
## 366                                                                                                                                                 Home Alone
## 367                                                                                                                                                    Aladdin
## 368                                                                                                                                       Beauty and the Beast
## 369                                                                                                                                               Pretty Woman
## 370                                                                                                                                       Nutty Professor, The
## 371                                                                                                                                             Godfather, The
## 372                                                                                                                                                    Vertigo
## 373                                                                                                                                          Wizard of Oz, The
## 374                                                                                                                                                 Cinderella
## 375                                                                                                                                        Sound of Music, The
## 376                                                                                                                            One Flew Over the Cuckoo's Nest
## 377                                                                                                                                    Godfather: Part II, The
## 378                                                                                                                                              Graduate, The
## 379                                                                                                                                    When Harry Met Sally...
## 380                                                                                                                                                     Grease
## 381                                                                                                                                              Jerry Maguire
## 382                                                                                                                                                  Liar Liar
## 383                                                                                                                             Lost World: Jurassic Park, The
## 384                                                                                                                                           Truman Show, The
## 385                                                                                                                                                    Titanic
## 386                                                                                                                                        Wedding Singer, The
## 387                                                                                                                                         As Good as It Gets
## 388                                                                                                                               There's Something About Mary
## 389                                                                                                                                                   Rain Man
## 390                                                                                                                                        Breakfast Club, The
## 391                                                                                                                                              Exorcist, The
## 392                                                                                                                                   Godfather: Part III, The
## 393                                                                                                                                        Little Mermaid, The
## 394                                                                                                                                                  Rush Hour
## 395                                                                                                                                                       Antz
## 396                                                                                                                                              Bug's Life, A
## 397                                                                                                                                            You've Got Mail
## 398                                                                                                                                               Office Space
## 399                                                                                                                      Austin Powers: The Spy Who Shagged Me
## 400                                                                                                                                                  Big Daddy
## 401                                                                                                                                               American Pie
## 402                                                                                                                                           Sixth Sense, The
## 403                                                                                                                                                  Bowfinger
## 404                                                                                                                                   Ferris Bueller's Day Off
## 405                                                                                                                                       Being John Malkovich
## 406                                                                                                                                                Toy Story 2
## 407                                                                                                                                   Talented Mr. Ripley, The
## 408                                                                                                                                            Erin Brockovich
## 409                                                                                                                                               Patriot, The
## 410                                                                                                                                              Almost Famous
## 411                                                                                                                                           Meet the Parents
## 412                                                                                                                                                   Chocolat
## 413                                                                                                                                            What Women Want
## 414                                                                                                                                                  Cast Away
## 415                                                                                                                                          Miss Congeniality
## 416                                                                                                                                                      Shrek
## 417                                                                                                                                               Moulin Rouge
## 418                                                                                                                                             Legally Blonde
## 419                                                                                                                                             American Pie 2
## 420                                                                                                                                             Ocean's Eleven
## 421                                                                                                                                          Beautiful Mind, A
## 422                                                                                                                                                 Panic Room
## 423                                                                                                                                   My Big Fat Greek Wedding
## 424                                                                                                                                                 Spider-Man
## 425                                                                                                                                          Road to Perdition
## 426                                                                                                                                      Bowling for Columbine
## 427                                                                                                                                                  Ring, The
## 428                                                                                                                    Harry Potter and the Chamber of Secrets
## 429                                                                                                                                               Pianist, The
## 430                                                                                                                                       Bend It Like Beckham
## 431                                                                                                                                             Bruce Almighty
## 432                                                                                                                                               Finding Nemo
## 433                                                                                                                                              28 Days Later
## 434                                                                                                                                        Lost in Translation
## 435                                                                                                                                              Love Actually
## 436                                                                                                                                          Napoleon Dynamite
## 437                                                                                                                                              Super Size Me
## 438                                                                                                                                            Fahrenheit 9/11
## 439                                                                                                                                               Spider-Man 2
## 440                                                                                                                                                   I, Robot
## 441                                                                                                                                        Million Dollar Baby
## 442                                                                                                                                               Hotel Rwanda
## 443                                                                                                                          Charlie and the Chocolate Factory
## 444                                                                                                                                                      Crash
## 445                                                                                                                                           Mr. & Mrs. Smith
## 446                                                                                                                                           Wedding Crashers
## 447                                                                                                                                    40-Year-Old Virgin, The
## 448                                                                                                                                              Walk the Line
## 449                                                                                            Chronicles of Narnia: The Lion, the Witch and the Wardrobe, The
## 450                                                                                                                                                  King Kong
## 451                                                                        Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan
## 452                                                                                                                                                Taxi Driver
## 453                                                                                                                                                     Casper
## 454                                                                                                                                                Judge Dredd
## 455                                                                                                    Léon: The Professional (a.k.a. The Professional) (Léon)
## 456                                                                                                                                                  Pinocchio
## 457                                                                                                                                                    Vertigo
## 458                                                                                                                                         Lawrence of Arabia
## 459                                                                                                                              Bridge on the River Kwai, The
## 460                                                                                                                                                Stand by Me
## 461                                                                                                                                             Cool Hand Luke
## 462                                                                                                                                                   Heathers
## 463                                                                                                                                                Sling Blade
## 464                                                                                                                                                Chasing Amy
## 465                                                                                                                                                Jackal, The
## 466                                                                                                                                                Wag the Dog
## 467                                                                                                                                                Deep Impact
## 468                                                                                                                             X-Files: Fight the Future, The
## 469                                                                                                                                            Lethal Weapon 2
## 470                                                                                                                       Seven Samurai (Shichinin no samurai)
## 471                                                                                                                                                'burbs, The
## 472                                                                                                                                                Beetlejuice
## 473                                                                                                                                               Office Space
## 474                                                                                                                                                Logan's Run
## 475                                                                                                                                         Planet of the Apes
## 476                                                                                                                                                Matrix, The
## 477                                                                                                                             Rocky Horror Picture Show, The
## 478                                                                                                                                  Run Lola Run (Lola rennt)
## 479                                                                                                                                                Mystery Men
## 480                                                                                                                                            Iron Giant, The
## 481                                                                                                                                                Three Kings
## 482                                                                                                                                                      Dogma
## 483                                                                                                                                                Toy Story 2
## 484                                                                                                                                                Pitch Black
## 485                                                                                                                                                Chicken Run
## 486                                                                                                                                                Ghost World
## 487                                                                                                                                                Vanilla Sky
## 488                                                                                                                     Lord of the Rings: The Two Towers, The
## 489                                                                                                                                          Hero (Ying xiong)
## 490                                                                                                             Lord of the Rings: The Return of the King, The
## 491                                                                                                                      Eternal Sunshine of the Spotless Mind
## 492                                                                                                                   Harry Potter and the Prisoner of Azkaban
## 493                                                                                                                                               Spider-Man 2
## 494                                                                                                                                               Garden State
## 495                                                                                                                                          Shaun of the Dead
## 496                                                                                                                                                  Toy Story
## 497                                                                                                                                                  GoldenEye
## 498                                                                                                                                                 Get Shorty
## 499                                                                                                                                            Dangerous Minds
## 500                                                                                                                                                       Babe
## 501                                                                                                                                   Cry, the Beloved Country
## 502                                                                                                                                              Happy Gilmore
## 503                                                                                                                                                 Braveheart
## 504                                                                                                                        Rumble in the Bronx (Hont faan kui)
## 505                                                                                                                                              Birdcage, The
## 506                                                                                                                                                    Rob Roy
## 507                                                                                                                                               Strange Days
## 508                                                                                                                                      Walk in the Clouds, A
## 509                                                                                                                         Star Wars: Episode IV - A New Hope
## 510                                                                                                                                Madness of King George, The
## 511                                                                                                                                                   Stargate
## 512                                                                                                                                  Shawshank Redemption, The
## 513                                                                                                                                     Star Trek: Generations
## 514                                                                                                                                                  Tommy Boy
## 515                                                                                                          Adventures of Priscilla, Queen of the Desert, The
## 516                                                                                                                                           Flintstones, The
## 517                                                                                                                                               Forrest Gump
## 518                                                                                                                                Four Weddings and a Funeral
## 519                                                                                                                                             Lion King, The
## 520                                                                                                                                                  Mask, The
## 521                                                                                                                                                      Speed
## 522                                                                                                                                                  True Lies
## 523                                                                                                                                              Jurassic Park
## 524                                                                                                                                             Mrs. Doubtfire
## 525                                                                                                                                                Shadowlands
## 526                                                                                                                                       Sleepless in Seattle
## 527                                                                                                                                               Blade Runner
## 528                                                                                                                            Nightmare Before Christmas, The
## 529                                                                                                                                                    Aladdin
## 530                                                                                                                                 Terminator 2: Judgment Day
## 531                                                                                                                                         Dances with Wolves
## 532                                                                                                                                                     Batman
## 533                                                                                                                            Snow White and the Seven Dwarfs
## 534                                                                                                                                       Beauty and the Beast
## 535                                                                                                                                                Heavy Metal
## 536                                                                                                                    Mystery Science Theater 3000: The Movie
## 537                                                                                                                               Truth About Cats & Dogs, The
## 538                                                                                                            Wallace & Gromit: The Best of Aardman Animation
## 539                                                                                                                                                 Craft, The
## 540                                                                                                                                                    Twister
## 541                                                                                                                                                  Barb Wire
## 542                                                                                                                            Wallace & Gromit: A Close Shave
## 543                                                                                                                              Independence Day (a.k.a. ID4)
## 544                                                                                                                                                     Eraser
## 545                                                                                                                                      2001: A Space Odyssey
## 546                                                                                                                                                   Die Hard
## 547                                                                                                                        Willy Wonka & the Chocolate Factory
## 548                                                                                                                                       Fish Called Wanda, A
## 549                                                                                                                               Monty Python's Life of Brian
## 550                                                                                                                                 E.T. the Extra-Terrestrial
## 551                                                                                                                            Return of the Pink Panther, The
## 552                                                                                                                                       Escape from New York
## 553                                                                                                                            Monty Python and the Holy Grail
## 554                                                                                                                       Wallace & Gromit: The Wrong Trousers
## 555                                                                                                             Star Wars: Episode V - The Empire Strikes Back
## 556                                                                                                                                        Princess Bride, The
## 557                                                                                    Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 558                                                                                                                 Star Wars: Episode VI - Return of the Jedi
## 559                                                                                                                                        Blues Brothers, The
## 560                                                                                                                   Grand Day Out with Wallace and Gromit, A
## 561                                                                                                                                                    Amadeus
## 562                                                                                                                                           Right Stuff, The
## 563                                                                                                                                            Terminator, The
## 564                                                                                                                                                      Glory
## 565                                                                                                                                         Back to the Future
## 566                                                                                                                                                 Highlander
## 567                                                                                                                                         Young Frankenstein
## 568                                                                                                                                                    Ben-Hur
## 569                                                                                                                                         This Is Spinal Tap
## 570                                                                                                                         Indiana Jones and the Last Crusade
## 571                                                                                                                                       Pink Floyd: The Wall
## 572                                                                                                                                            Field of Dreams
## 573                                                                                                                                    When Harry Met Sally...
## 574                                                                                                                                  Mirror Has Two Faces, The
## 575                                                                                                                              Star Trek: The Motion Picture
## 576                                                                                                                     Star Trek VI: The Undiscovered Country
## 577                                                                                                                            Star Trek V: The Final Frontier
## 578                                                                                                                            Star Trek II: The Wrath of Khan
## 579                                                                                                                        Star Trek III: The Search for Spock
## 580                                                                                                                              Star Trek IV: The Voyage Home
## 581                                                                                                                                            Raising Arizona
## 582                                                                                                                            Beavis and Butt-Head Do America
## 583                                                                                                                                  Last of the Mohicans, The
## 584                                                                                                                         Twelve Monkeys (a.k.a. 12 Monkeys)
## 585                                                                                                                                                 To Die For
## 586                                                                                                                                       Seven (a.k.a. Se7en)
## 587                                                                                                                                        Usual Suspects, The
## 588                                                                                                                                                 Braveheart
## 589                                                                                                                         Star Wars: Episode IV - A New Hope
## 590                                                                                                                                                       Nell
## 591                                                                                                                                               Pulp Fiction
## 592                                                                                                                                  Shawshank Redemption, The
## 593                                                                                                                                               Forrest Gump
## 594                                                                                                                                              Fugitive, The
## 595                                                                                                                                  Robin Hood: Men in Tights
## 596                                                                                                                                                       Rudy
## 597                                                                                                                                           Schindler's List
## 598                                                                                                                               So I Married an Axe Murderer
## 599                                                                                                                                 Terminator 2: Judgment Day
## 600                                                                                                                                  Silence of the Lambs, The
## 601                                                                                                                                                Primal Fear
## 602                                                                                                                                            Time to Kill, A
## 603                                                                                                                                             Godfather, The
## 604                                                                                                             Star Wars: Episode V - The Empire Strikes Back
## 605                                                                                                                                        Princess Bride, The
## 606                                                                                    Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 607                                                                                                                 Star Wars: Episode VI - Return of the Jedi
## 608                                                                                                                                                     Psycho
## 609                                                                                                                                                    Amadeus
## 610                                                                                                                                               Shining, The
## 611                                                                                                                                                Stand by Me
## 612                                                                                                                                              Groundhog Day
## 613                                                                                                                                         Back to the Future
## 614                                                                                                                         Indiana Jones and the Last Crusade
## 615                                                                                                                                            Field of Dreams
## 616                                                                                                                                                Sling Blade
## 617                                                                                                                                                       Jaws
## 618                                                                                                                                              Jerry Maguire
## 619                                                                                                                                        Grosse Pointe Blank
## 620                                                                                                                                                    Con Air
## 621                                                                                                                                          L.A. Confidential
## 622                                                                                                                                                  Game, The
## 623                                                                                                                                                    Witness
## 624                                                                                                                                          Good Will Hunting
## 625                                                                                                                                                     Fallen
## 626                                                                                                                                        Wedding Singer, The
## 627                                                                                                                                                Deep Impact
## 628                                                                                                                                                   Rain Man
## 629                                                                                                                                        Saving Private Ryan
## 630                                                                                                                                                     Splash
## 631                                                                                                                                        Secret of NIMH, The
## 632                                                                                                                                          Untouchables, The
## 633                                                                                                                                            My Cousin Vinny
## 634                                                                                                                        Life Is Beautiful (La Vita è bella)
## 635                                                                                                                                         American History X
## 636                                                                                                                                         Enemy of the State
## 637                                                                                                 Christmas Vacation (National Lampoon's Christmas Vacation)
## 638                                                                                                                                               Office Space
## 639                                                                                                                                                Matrix, The
## 640                                                                                                                        Ghostbusters (a.k.a. Ghost Busters)
## 641                                                                                                                                           Sixth Sense, The
## 642                                                                                                                                                  Bowfinger
## 643                                                                                                                                                  Airplane!
## 644                                                                                                                                                        Big
## 645                                                                                                                                         Christmas Story, A
## 646                                                                                                                                             Stir of Echoes
## 647                                                                                                                                            American Beauty
## 648                                                                                                                                   Ferris Bueller's Day Off
## 649                                                                                                                                                 Fight Club
## 650                                                                                                                                            Green Mile, The
## 651                                                                                                                                                  Gladiator
## 652                                                                                                                                        Remember the Titans
## 653                                                                                                                                           Meet the Parents
## 654                                                                                                           Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 655                                                                                                                                                     Snatch
## 656                                                                                                                                          Finding Forrester
## 657                                                                                                                                                    Traffic
## 658                                                                                                                                                    Memento
## 659                                                                                                                                                   Scarface
## 660                                                                                                                                                 Score, The
## 661                                                                                                                                             Monsters, Inc.
## 662                                                                    Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 663                                                                                                                                             Ocean's Eleven
## 664                                                                                                              Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 665                                                                                                         Lord of the Rings: The Fellowship of the Ring, The
## 666                                                                                                                                          Beautiful Mind, A
## 667                                                                                                                                  The Count of Monte Cristo
## 668                                                                                                               Star Wars: Episode II - Attack of the Clones
## 669                                                                                                                                            Minority Report
## 670                                                                                                                                          Road to Perdition
## 671                                                                                                                                                 Red Dragon
## 672                                                                                                                                               Strange Brew
## 673                                                                                                                                      Bowling for Columbine
## 674                                                                                                                     Lord of the Rings: The Two Towers, The
## 675                                                                                                                                        Catch Me If You Can
## 676                                                                                                                                               Finding Nemo
## 677                                                                                                                                           Italian Job, The
## 678                                                                                                                                               Mystic River
## 679                                                                                                                                          Kill Bill: Vol. 1
## 680                                                                                                                                               Runaway Jury
## 681                                                                                                                                          Last Samurai, The
## 682                                                                                                             Lord of the Rings: The Return of the King, The
## 683                                                                                                                      Eternal Sunshine of the Spotless Mind
## 684                                                                                                                                          Kill Bill: Vol. 2
## 685                                                                                                                                              Notebook, The
## 686                                                                                                                                               Garden State
## 687                                                                                                           Motorcycle Diaries, The (Diarios de motocicleta)
## 688                                                                                                                                          Shaun of the Dead
## 689                                                                                                                                                   Sin City
## 690                                                                                                                                                      Crash
## 691                                                                                                               Star Wars: Episode III - Revenge of the Sith
## 692                                                                                                                                              Batman Begins
## 693                                                                                                                                           Wedding Crashers
## 694                                                                                                                                                    Syriana
## 695                                                                                                                                              Walk the Line
## 696                                                                                                                                            Rumor Has It...
## 697                                                                                                                                                  Annapolis
## 698                                                                                                                                                   Firewall
## 699                                                                                                                                          Failure to Launch
## 700                                                                                                                                                  Toy Story
## 701                                                                                                                                      Sense and Sensibility
## 702                                                                                                                                                    Othello
## 703                                                                                                                                           Dead Man Walking
## 704                                                                                                                                       Seven (a.k.a. Se7en)
## 705                                                                                                                                  Shawshank Redemption, The
## 706                                                                                                                                     Much Ado About Nothing
## 707                                                                                                                                    Remains of the Day, The
## 708                                                                                                                                           Schindler's List
## 709                                                                                                                                                Shadowlands
## 710                                                                                                                                  Silence of the Lambs, The
## 711                                                                                                                                                      Fargo
## 712                                                                                                                                                  Rock, The
## 713                                                                                                                       William Shakespeare's Romeo + Juliet
## 714                                                                                                                                            Enchanted April
## 715                                                                                                                                                      Shine
## 716                                                                                                                                                Sling Blade
## 717                                                                                                                                                     Hamlet
## 718                                                                                                                                           Addicted to Love
## 719                                                                                                                                                    Contact
## 720                                                                                                                                              Sliding Doors
## 721                                                                                                                                           Truman Show, The
## 722                                                                                                                                          Good Will Hunting
## 723                                                                                                                                                    Titanic
## 724                                                                                                                                         As Good as It Gets
## 725                                                                                                                                        Saving Private Ryan
## 726                                                                                                                             Ever After: A Cinderella Story
## 727                                                                                                                                          Dark Crystal, The
## 728                                                                                                                                             My Blue Heaven
## 729                                                                                                                                            Few Good Men, A
## 730                                                                                                                                                  Rush Hour
## 731                                                                                                                                                      Ronin
## 732                                                                                                                                        Edward Scissorhands
## 733                                                                                                                                                       Antz
## 734                                                                                                                                            My Cousin Vinny
## 735                                                                                                                                             Simple Plan, A
## 736                                                                                                                                        Shakespeare in Love
## 737                                                                                                                                         Thin Red Line, The
## 738                                                                                                                                                    Payback
## 739                                                                                                                                                October Sky
## 740                                                                                                                                               Analyze This
## 741                                                                                                                                                Matrix, The
## 742                                                                                                                  Star Wars: Episode I - The Phantom Menace
## 743                                                                                                                                           Sixth Sense, The
## 744                                                                                                                                           Yellow Submarine
## 745                                                                                                                                        Usual Suspects, The
## 746                                                                                                                                             Addiction, The
## 747                                                                                                                                  Shawshank Redemption, The
## 748                                                                                                                                 Ace Ventura: Pet Detective
## 749                                                                                                          Adventures of Priscilla, Queen of the Desert, The
## 750                                                                                                                                                     Batman
## 751                                                                                                                        Cemetery Man (Dellamorte Dellamore)
## 752                                                                                                                                                   Die Hard
## 753                                                                                                                                             Reservoir Dogs
## 754                                                                                                                                                    Top Gun
## 755                                                                                                                                                 Abyss, The
## 756                                                                                                             Star Wars: Episode V - The Empire Strikes Back
## 757                                                                                                                                        Princess Bride, The
## 758                                                                                    Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 759                                                                                                                                                     Aliens
## 760                                                                                                                 Star Wars: Episode VI - Return of the Jedi
## 761                                                                                                                                        Blues Brothers, The
## 762                                                                                                                                            Terminator, The
## 763                                                                                                                         Indiana Jones and the Last Crusade
## 764                                                                                                                                                Sling Blade
## 765                                                                                                                                           Hearts and Minds
## 766                                                                                                                                             Absolute Power
## 767                                                                                                                                                   Anaconda
## 768                                                                                                                                       My Own Private Idaho
## 769                                                                                                                                        Alien: Resurrection
## 770                                                                                                                                          Good Will Hunting
## 771                                                                                                                                       Sweet Hereafter, The
## 772                                                                                                                                              Almost Heroes
## 773                                                                                                                               There's Something About Mary
## 774                                                                                                                                                 L.A. Story
## 775                                                                                                                                              Runaway Train
## 776                                                                                                                                        Romancing the Stone
## 777                                                                                                                                                  Rocky III
## 778                                                                                                                                               Analyze This
## 779                                                                                                                                                Matrix, The
## 780                                                                                                                                          13th Warrior, The
## 781                                                                                                                                      Astronaut's Wife, The
## 782                                                                                                                                                   Stigmata
## 783                                                                                                                                             Stir of Echoes
## 784                                                                                                                                            Double Jeopardy
## 785                                                                                                                                                Three Kings
## 786                                                                                                                                                  Superstar
## 787                                                                                                                                                  Hairspray
## 788                                                                                                                                      House on Haunted Hill
## 789                                                                                                                                        Bone Collector, The
## 790                                                                                                                                           Drugstore Cowboy
## 791                                                                                                                                        Usual Suspects, The
## 792                                                                                                                                        From Dusk Till Dawn
## 793                                                                                                                                 NeverEnding Story III, The
## 794                                                                                                                           Free Willy 2: The Adventure Home
## 795                                                                                                                                               Pulp Fiction
## 796                                                                                                                                              Trainspotting
## 797                                                                                                                                                    Kingpin
## 798                                                                                                                                               Citizen Kane
## 799                                                                                                                              Robin Hood: Prince of Thieves
## 800                                                                                         Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il)
## 801                                                                                                                                  Last of the Mohicans, The
## 802                                                                                                                                            Lethal Weapon 4
## 803                                                                                                                                       D2: The Mighty Ducks
## 804                                                                                                                                                  SLC Punk!
## 805                                                                                                                                           Sixth Sense, The
## 806                                                                                                                                         Do the Right Thing
## 807                                                                                                                                      Bowling for Columbine
## 808                                                                                                                                           Step Into Liquid
## 809                                                                                                                                       Bourne Identity, The
## 810                                                                                                                                              Departed, The
## 811                                                                                                                                           Music and Lyrics
## 812                                                                                                                                              Bank Job, The
## 813                                                                                                                                            Informant!, The
## 814                                                                                                                                 Exit Through the Gift Shop
## 815                                                                                                                                                  Inception
## 816                                                                                                                                                  Town, The
## 817                                                                                                                                                 Inside Job
## 818                                                                                                                                                   Restrepo
## 819                                                                                                                                                  127 Hours
## 820                                                                                                                                                      Drive
## 821                                                                                                                                           The Hunger Games
## 822                                                                                                                                     Dark Knight Rises, The
## 823                                                                                                                                              Life in a Day
## 824                                                                                                                                                    Skyfall
## 825                                                                                                                                                    Taken 2
## 826                                                                                                                                                 Life of Pi
## 827                                                                                                                                                    Gravity
## 828                                                                                                                            The Hunger Games: Catching Fire
## 829                                                                                                         Interview with the Vampire: The Vampire Chronicles
## 830                                                                                                                                Searching for Bobby Fischer
## 831                                                                                                                                  Six Degrees of Separation
## 832                                                                                                                                                      Fargo
## 833                                                                                                                                                  Space Jam
## 834                                                                                                                                                    Twister
## 835                                                                                                                                                  Barb Wire
## 836                                                                                                                                               Mary Poppins
## 837                                                                                                                                        Alice in Wonderland
## 838                                                                                                                                                    Sleeper
## 839                                                                                                                                        Princess Bride, The
## 840                                                                                                                                           Army of Darkness
## 841                                                                                                                                        Blues Brothers, The
## 842                                                                                                                                                 Annie Hall
## 843                                                                                                                                           Harold and Maude
## 844                                                                                                                         Unbearable Lightness of Being, The
## 845                                                                                                                            Star Trek II: The Wrath of Khan
## 846                                                                                                                                                       Jaws
## 847                                                                                                                                                Chasing Amy
## 848                                                                                                                                          Big Lebowski, The
## 849                                                                                                                                            Blame It on Rio
## 850                                                                                                                                              Bug's Life, A
## 851                                                                                                                             Texas Chainsaw Massacre 2, The
## 852                                                                                                                                         Planet of the Apes
## 853                                                                                                                                                Swamp Thing
## 854                                                                                                                                                 Fight Club
## 855                                                                                                                                 Deuce Bigalow: Male Gigolo
## 856                                                                                                                                     Cider House Rules, The
## 857                                                                                                                                   Talented Mr. Ripley, The
## 858                                                                                                                                             Angela's Ashes
## 859                                                                                                                                                Boiler Room
## 860                                                                                                                                              Drowning Mona
## 861                                                                                                                                            Erin Brockovich
## 862                                                                                                                                                Retroactive
## 863                                                                                                                                                 Dreamscape
## 864                                                                                                                                                House Party
## 865                                                                                                                                             Rocketship X-M
## 866                                                                                                                                                  Footloose
## 867                                                                                                                                                      X-Men
## 868                                                                                                                                               Chuck & Buck
## 869                                                                                                                                          What Lies Beneath
## 870                                                                                                                                     Pokémon the Movie 2000
## 871                                                                                                                                        Anatomy of a Murder
## 872                                                                                                                                            What About Bob?
## 873                                                                                                                                                Coyote Ugly
## 874                                                                                                                                              Space Cowboys
## 875                                                                                                                                            Mad About Mambo
## 876                                                                                                                                               Saving Grace
## 877                                                                                                                                                Air America
## 878                                                                                                                                            Steel Magnolias
## 879                                                                                                                                          Replacements, The
## 880                                                                                                                                                  Cell, The
## 881                                                                                                                    Godzilla 2000 (Gojira ni-sen mireniamu)
## 882                                                                                                                              Original Kings of Comedy, The
## 883                                                                                                                    Naked Gun 2 1/2: The Smell of Fear, The
## 884                                                                                                                                                      Shane
## 885                                                                                                                                                 Cat Ballou
## 886                                                                                                                                            Art of War, The
## 887                                                                                                                                                 Love & Sex
## 888                                                                                                                                          Steal This Movie!
## 889                                                                                                                                 Man Who Fell to Earth, The
## 890                                                                                                                                                  Toy Story
## 891                                                                                                                                       Seven (a.k.a. Se7en)
## 892                                                                                                                                                 Braveheart
## 893                                                                                                                                     Miracle on 34th Street
## 894                                                                                                                                               Pulp Fiction
## 895                                                                                                                                  Shawshank Redemption, The
## 896                                                                                                                                               Forrest Gump
## 897                                                                                                                                           Jungle Book, The
## 898                                                                                                                                              Jurassic Park
## 899                                                                                                                                                       Rudy
## 900                                                                                                                                           Schindler's List
## 901                                                                                                                                         Secret Garden, The
## 902                                                                                                                                                      Ghost
## 903                                                                                                                                         Dances with Wolves
## 904                                                                                                                                               My Fair Lady
## 905                                                                                                                                          Wizard of Oz, The
## 906                                                                                                                              Robin Hood: Prince of Thieves
## 907                                                                                                                                                Stand by Me
## 908                                                                                                                                              Groundhog Day
## 909                                                                                                                                            Lethal Weapon 4
## 910                                                                                                                                                   Rain Man
## 911                                                                                                                                              Bug's Life, A
## 912                                                                                                                                                Matrix, The
## 913                                                                                                                                 10 Things I Hate About You
## 914                                                                                                                                            Iron Giant, The
## 915                                                                                                                                           Sixth Sense, The
## 916                                                                                                                                         Christmas Story, A
## 917                                                                                                                                             Boys Don't Cry
## 918                                                                                                                                   Ferris Bueller's Day Off
## 919                                                                                                                                                Toy Story 2
## 920                                                                                                                                            Green Mile, The
## 921                                                                                                                                     League of Their Own, A
## 922                                                                                                                                          Muppet Movie, The
## 923                                                                                                                                              Shanghai Noon
## 924                                                                                                                                                      Shrek
## 925                                                                                                                                               Pearl Harbor
## 926                                                                                                                                              City Slickers
## 927                                                                                                                                             American Pie 2
## 928                                                                                                                                               Donnie Darko
## 929                                                                                                                                             Monsters, Inc.
## 930                                                                                                         Lord of the Rings: The Fellowship of the Ring, The
## 931                                                                                                                                        Catch Me If You Can
## 932                                                                                                                                               Finding Nemo
## 933                                                                                                                      Eternal Sunshine of the Spotless Mind
## 934                                                                                                                                           Band of Brothers
## 935                                                                                                                                      Bourne Ultimatum, The
## 936                                                                                                                                           Dark Knight, The
## 937                                                                                                                                                Gran Torino
## 938                                                                                                                                       (500) Days of Summer
## 939                                                                                                                                                Toy Story 3
## 940                                                                                                               Harry Potter and the Deathly Hallows: Part 1
## 941                                                                                                               Harry Potter and the Deathly Hallows: Part 2
## 942                                                                                                                                                John Carter
## 943                                                                                                                            Snow White and the Seven Dwarfs
## 944                                                                                                             Star Wars: Episode V - The Empire Strikes Back
## 945                                                                                                                                                    Titanic
## 946                                                                                                                                  Cat from Outer Space, The
## 947                                                                                                                                              Bug's Life, A
## 948                                                                                                                                       Prince of Egypt, The
## 949                                                                                                                  Star Wars: Episode I - The Phantom Menace
## 950                                                                                                                      Austin Powers: The Spy Who Shagged Me
## 951                                                                                                                        Ghostbusters (a.k.a. Ghost Busters)
## 952                                                                                                                                           Inspector Gadget
## 953                                                                                                                                              Runaway Bride
## 954                                                                                                                                       For Love of the Game
## 955                                                                                                                                                Toy Story 2
## 956                                                                                                                                              Stuart Little
## 957                                                                                                                                               Galaxy Quest
## 958                                                                                                                                            Mission to Mars
## 959                                                                                                                                     Mission: Impossible II
## 960                                                                                                                                                Chicken Run
## 961                                                                                                                                               6th Day, The
## 962                                                                                                         How the Grinch Stole Christmas (a.k.a. The Grinch)
## 963                                                                                                                                                  Toy Story
## 964                                                                                                                                                    Jumanji
## 965                                                                                                                                Father of the Bride Part II
## 966                                                                                                                                                       Heat
## 967                                                                                                                                                  GoldenEye
## 968                                                                                                                                    American President, The
## 969                                                                                                                                                      Nixon
## 970                                                                                                                                                     Casino
## 971                                                                                                                                      Sense and Sensibility
## 972                                                                                                                             Ace Ventura: When Nature Calls
## 973                                                                                                                                                 Get Shorty
## 974                                                                                                                                                    Copycat
## 975                                                                                                                                          Leaving Las Vegas
## 976                                                                                                                         Twelve Monkeys (a.k.a. 12 Monkeys)
## 977                                                                                                                                                       Babe
## 978                                                                                                                                           Dead Man Walking
## 979                                                                                                                                                   Clueless
## 980                                                                                                                                              Mortal Kombat
## 981                                                                                                                                       Seven (a.k.a. Se7en)
## 982                                                                                                                                        Usual Suspects, The
## 983                                                                                                                                           Mighty Aphrodite
## 984                                                                                                                                         Mr. Holland's Opus
## 985                                                                                                                                        From Dusk Till Dawn
## 986                                                                                                                                   Antonia's Line (Antonia)
## 987                                                                                                                                            Beautiful Girls
## 988                                                                                                                                               Broken Arrow
## 989                                                                                                                                              Bottle Rocket
## 990                                                                                                                                              Happy Gilmore
## 991                                                                                                                                     Muppet Treasure Island
## 992                                                                                                                                                 Braveheart
## 993                                                                                                                                                Taxi Driver
## 994                                                                                                                        Rumble in the Bronx (Hont faan kui)
## 995                                                                                                                     Chungking Express (Chung Hing sam lam)
## 996                                                                                                                                     Flirting With Disaster
## 997                                                                                                                                                   Bad Boys
## 998                                                                                                                                                    Amateur
## 999                                                                                                                                                  Apollo 13
## 1000                                                                                                                                            Batman Forever
## 1001                                                                                                                                            Canadian Bacon
## 1002                                                                                                                                                     Congo
## 1003                                                                                                                                              Crimson Tide
## 1004                                                                                                                                                     Crumb
## 1005                                                                                                                                                 Desperado
## 1006                                                                                                                                     Devil in a Blue Dress
## 1007                                                                                                                                Die Hard: With a Vengeance
## 1008                                                                                                                                                   Hackers
## 1009                                                                                                                                           Johnny Mnemonic
## 1010                                                                                                                                                      Kids
## 1011                                                                                                                                        Living in Oblivion
## 1012                                                                                                                                                  Mallrats
## 1013                                                                                                                                                  Net, The
## 1014                                                                                                                                                 Showgirls
## 1015                                                                                                                                                   Species
## 1016                                                                                                                                              Strange Days
## 1017                                                                                                                                                Waterworld
## 1018                                                                                                                            Before the Rain (Pred dozhdot)
## 1019                                                                                                                                            Before Sunrise
## 1020                                                                                                                                             Billy Madison
## 1021                                                                                                                                                    Clerks
## 1022                                                                                                                                                Disclosure
## 1023                                                                                                                                         Dolores Claiborne
## 1024                                                                                                                           Dumb & Dumber (Dumb and Dumber)
## 1025                                                                                                                      Eat Drink Man Woman (Yin shi nan nu)
## 1026                                                                                                                                                   Exotica
## 1027                                                                                                                                                   Ed Wood
## 1028                                                                                                                                              Forget Paris
## 1029                                                                                                                                               Hoop Dreams
## 1030                                                                                                                                        Heavenly Creatures
## 1031                                                                                                                                                      I.Q.
## 1032                                                                                                        Interview with the Vampire: The Vampire Chronicles
## 1033                                                                                                                        Star Wars: Episode IV - A New Hope
## 1034                                                                                                       Like Water for Chocolate (Como agua para chocolate)
## 1035                                                                                                                                      Natural Born Killers
## 1036                                                                                                                                                  Outbreak
## 1037                                                                                                   Léon: The Professional (a.k.a. The Professional) (Léon)
## 1038                                                                                                                                              Pulp Fiction
## 1039                                                                                                                                                 Quiz Show
## 1040                                                                                                                 Three Colors: Red (Trois couleurs: Rouge)
## 1041                                                                                                                 Three Colors: Blue (Trois couleurs: Bleu)
## 1042                                                                                                                  Three Colors: White (Trzy kolory: Bialy)
## 1043                                                                                                                                                  Stargate
## 1044                                                                                                                                         Santa Clause, The
## 1045                                                                                                                                 Shawshank Redemption, The
## 1046                                                                                                                                      Swimming with Sharks
## 1047                                                                                                                                    Star Trek: Generations
## 1048                                                                                                                                                Underneath
## 1049                                                                                                                                   While You Were Sleeping
## 1050                                                                                                                                          Muriel's Wedding
## 1051                                                                                                                                Ace Ventura: Pet Detective
## 1052                                                                                                                                  Clear and Present Danger
## 1053                                                                                                                                                 Crow, The
## 1054                                                                                                                                          Flintstones, The
## 1055                                                                                                                                              Forrest Gump
## 1056                                                                                                                               Four Weddings and a Funeral
## 1057                                                                                                                                            Lion King, The
## 1058                                                                                                                                                 Mask, The
## 1059                                                                                                                        Naked Gun 33 1/3: The Final Insult
## 1060                                                                                                                                                Paper, The
## 1061                                                                                                                                             Reality Bites
## 1062                                                                                                                                             Red Rock West
## 1063                                                                                                                                                     Speed
## 1064                                                                                                                                                 True Lies
## 1065                                                                                                                                                      Wolf
## 1066                                                                                                                                                 Cabin Boy
## 1067                                                                                                                                             Carlito's Way
## 1068                                                                                                                                               Cliffhanger
## 1069                                                                                                                                                 Coneheads
## 1070                                                                                                                                                      Dave
## 1071                                                                                                                                        Dazed and Confused
## 1072                                                                                                                                            Demolition Man
## 1073                                                                                                                                                 Firm, The
## 1074                                                                                                                                             Fugitive, The
## 1075                                                                                                                                      Hot Shots! Part Deux
## 1076                                                                                                                                      Hudsucker Proxy, The
## 1077                                                                                                                                       In the Line of Fire
## 1078                                                                                                                                             Jurassic Park
## 1079                                                                                                                                                Kalifornia
## 1080                                                                                                                                          King of the Hill
## 1081                                                                                                                                          Last Action Hero
## 1082                                                                                                                                        Executive Decision
## 1083                                                                                                                                            Mrs. Doubtfire
## 1084                                                                                                                                              Philadelphia
## 1085                                                                                                                                                Piano, The
## 1086                                                                                                                                 Robin Hood: Men in Tights
## 1087                                                                                                                                                      Rudy
## 1088                                                                                                                                          Schindler's List
## 1089                                                                                                                                                Short Cuts
## 1090                                                                                                                                      Sleepless in Seattle
## 1091                                                                                                                                                    Sliver
## 1092                                                                                                                                              Blade Runner
## 1093                                                                                                                              So I Married an Axe Murderer
## 1094                                                                                                                  Thirty-Two Short Films About Glenn Gould
## 1095                                                                                                                           Nightmare Before Christmas, The
## 1096                                                                                                                                              True Romance
## 1097                                                                                                                                             War Room, The
## 1098                                                                                                                                  Welcome to the Dollhouse
## 1099                                                                                                                                       Spanking the Monkey
## 1100                                                                                                                                                Home Alone
## 1101                                                                                                                                                     Ghost
## 1102                                                                                                                                                   Aladdin
## 1103                                                                                                                                Terminator 2: Judgment Day
## 1104                                                                                                                                        Dances with Wolves
## 1105                                                                                                                                                    Batman
## 1106                                                                                                                                 Silence of the Lambs, The
## 1107                                                                                                                           Snow White and the Seven Dwarfs
## 1108                                                                                                                                              Pretty Woman
## 1109                                                                                                                                                     Fargo
## 1110                                                                                                                                               Heavy Metal
## 1111                                                                                                                                               Primal Fear
## 1112                                                                                                                                        Courage Under Fire
## 1113                                                                                                                                       Mission: Impossible
## 1114                                                                                                                             Kids in the Hall: Brain Candy
## 1115                                                                                                                                               Underground
## 1116                                                                                                                                                Barbarella
## 1117                                                                                            Alphaville (Alphaville, une étrange aventure de Lemmy Caution)
## 1118                                                                                                                              Truth About Cats & Dogs, The
## 1119                                                                                                           Wallace & Gromit: The Best of Aardman Animation
## 1120                                                                                                                                                Craft, The
## 1121                                                                                                                                                 Rock, The
## 1122                                                                                                                                                   Twister
## 1123                                                                                                                           Wallace & Gromit: A Close Shave
## 1124                                                                                                                                              Arrival, The
## 1125                                                                                      Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb
## 1126                                                                                                                                                Striptease
## 1127                                                                                                                                             Trainspotting
## 1128                                                                                                                             Independence Day (a.k.a. ID4)
## 1129                                                                                                                                            Cable Guy, The
## 1130                                                                                                                                                   Kingpin
## 1131                                                                                                                                                    Eraser
## 1132                                                                                                                                      Nutty Professor, The
## 1133                                                                                                                                          Frighteners, The
## 1134                                                                                                                                                 Lone Star
## 1135                                                                                                                                                Phenomenon
## 1136                                                                                                                                       Walking and Talking
## 1137                                                                                                                                             She's the One
## 1138                                                                                                                                                    Ransom
## 1139                                                                                                                                            Chain Reaction
## 1140                                                                                                                                                  Basquiat
## 1141                                                                                                                                            Godfather, The
## 1142                                                                                                                                                     Bound
## 1143                                                                                                                                       Singin' in the Rain
## 1144                                                                                                                                                   Vertigo
## 1145                                                                                                                                               Rear Window
## 1146                                                                                                                                        North by Northwest
## 1147                                                                                                                                            Apartment, The
## 1148                                                                                                                                          Some Like It Hot
## 1149                                                                                                                                                   Charade
## 1150                                                                                                                                                Casablanca
## 1151                                                                                                                                       Maltese Falcon, The
## 1152                                                                                                                                              My Fair Lady
## 1153                                                                                                                                             Roman Holiday
## 1154                                                                                                                                         Wizard of Oz, The
## 1155                                                                                                                                        Gone with the Wind
## 1156                                                                                                                    Sunset Blvd. (a.k.a. Sunset Boulevard)
## 1157                                                                                                                                              Citizen Kane
## 1158                                                                                                                                     2001: A Space Odyssey
## 1159                                                                                                                                             All About Eve
## 1160                                                                                                                                                Spellbound
## 1161                                                                                                                                     It's a Wonderful Life
## 1162                                                                                                                                                 Big Night
## 1163                                                                                                                                             Cool Runnings
## 1164                                                                                                                                       Sound of Music, The
## 1165                                                                                                                                                  Die Hard
## 1166                                                                                                                                            Secrets & Lies
## 1167                                                                                                                                  Long Kiss Goodnight, The
## 1168                                                                                                                      William Shakespeare's Romeo + Juliet
## 1169                                                                                                                                                  Swingers
## 1170                                                                                                                       Willy Wonka & the Chocolate Factory
## 1171                                                                                                                                      Fish Called Wanda, A
## 1172                                                                                                                                          Bonnie and Clyde
## 1173                                                                                                                                             Dirty Dancing
## 1174                                                                                                                                            Reservoir Dogs
## 1175                                                                                                                                            Basic Instinct
## 1176                                                                                                                                                Doors, The
## 1177                                                                                                                                          Crying Game, The
## 1178                                                                                                                                       Glengarry Glen Ross
## 1179                                                                                                                                E.T. the Extra-Terrestrial
## 1180                                                                                                                                           Days of Thunder
## 1181                                                                                                                                                   Top Gun
## 1182                                                                                                                               People vs. Larry Flynt, The
## 1183                                                                                                                                                Abyss, The
## 1184                                                                                                                                          Jean de Florette
## 1185                                                                                                                           Monty Python and the Holy Grail
## 1186                                                                                                                                        When We Were Kings
## 1187                                                                                                                      Wallace & Gromit: The Wrong Trousers
## 1188                                                                                                                                               Bob Roberts
## 1189                                                                                                                  Cook the Thief His Wife & Her Lover, The
## 1190                                                                                               Double Life of Veronique, The (Double Vie de Véronique, La)
## 1191                                                                                                                                            Paths of Glory
## 1192                                                                                                                                             Grifters, The
## 1193                                                                                                                                      English Patient, The
## 1194                                                                                                                                  Sex, Lies, and Videotape
## 1195                                                                                                                                       Thin Blue Line, The
## 1196                                                                                                                           One Flew Over the Cuckoo's Nest
## 1197                                                                                                            Star Wars: Episode V - The Empire Strikes Back
## 1198                                                                                                                                       Princess Bride, The
## 1199                                                                                   Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 1200                                                                                                                                                    Brazil
## 1201                                                                                                                                                    Aliens
## 1202                                                                                        Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il)
## 1203                                                                                                                                              12 Angry Men
## 1204                                                                                                                                        Lawrence of Arabia
## 1205                                                                                                                                       Clockwork Orange, A
## 1206                                                                                                                                     To Kill a Mockingbird
## 1207                                                                                                                                            Apocalypse Now
## 1208                                                                                                    Once Upon a Time in the West (C'era una volta il West)
## 1209                                                                                                                Star Wars: Episode VI - Return of the Jedi
## 1210                                                                                                                 Wings of Desire (Himmel über Berlin, Der)
## 1211                                                                                                                                            Third Man, The
## 1212                                                                                                                                                Goodfellas
## 1213                                                                                                                                                     Alien
## 1214                                                                                                                                          Army of Darkness
## 1215                                                                                                                                                       Ran
## 1216                                                                                                                        Killer, The (Die xue shuang xiong)
## 1217                                                                                                                                                    Psycho
## 1218                                                                                                                                       Blues Brothers, The
## 1219                                                                                                                                   Godfather: Part II, The
## 1220                                                                                                                                         Full Metal Jacket
## 1221                                                                                                                  Grand Day Out with Wallace and Gromit, A
## 1222                                                                                                                                                   Amadeus
## 1223                                                                                                                                               Raging Bull
## 1224                                                                                                                                                Annie Hall
## 1225                                                                                                                                          Right Stuff, The
## 1226                                                                                                                                     Boot, Das (Boat, The)
## 1227                                                                                                                                                Sting, The
## 1228                                                                                                                                          Harold and Maude
## 1229                                                                                                                                           Terminator, The
## 1230                                                                                                                     Rosencrantz and Guildenstern Are Dead
## 1231                                                                                                                                                 Manhattan
## 1232                                                                                                                                        Dead Poets Society
## 1233                                                                                                                                             Graduate, The
## 1234                                                                                                                                             Touch of Evil
## 1235                                                                                                                                 Femme Nikita, La (Nikita)
## 1236                                                                                                                             Bridge on the River Kwai, The
## 1237                                                                                                                                                8 1/2 (8½)
## 1238                                                                                                                                                 Chinatown
## 1239                                                                                                                         Treasure of the Sierra Madre, The
## 1240                                                                                                                                              Shining, The
## 1241                                                                                                                                               Stand by Me
## 1242                                                                                                                                                         M
## 1243                                                                                                                                         Great Escape, The
## 1244                                                                                                                                          Deer Hunter, The
## 1245                                                                                                                                                      Diva
## 1246                                                                                                                                             Groundhog Day
## 1247                                                                                                                                                Unforgiven
## 1248                                                                                                                                 Manchurian Candidate, The
## 1249                                                                                                                                        Back to the Future
## 1250                                                                                                                                                    Patton
## 1251                                                                                                                                            Cool Hand Luke
## 1252                                                                                                     Raise the Red Lantern (Da hong deng long gao gao gua)
## 1253                                                                                                                                       Great Dictator, The
## 1254                                                                                                                                                 High Noon
## 1255                                                                                                                                            Big Sleep, The
## 1256                                                                                                                                                   Ben-Hur
## 1257                                                                                                                                        This Is Spinal Tap
## 1258                                                                                                 Koyaanisqatsi (a.k.a. Koyaanisqatsi: Life Out of Balance)
## 1259                                                                                                                                    Some Kind of Wonderful
## 1260                                                                                                                        Indiana Jones and the Last Crusade
## 1261                                                                                                                                                    Gandhi
## 1262                                                                                                                                               Real Genius
## 1263                                                                                                                                           Field of Dreams
## 1264                                                                                                                                Man Who Would Be King, The
## 1265                                                                                                                        Butch Cassidy and the Sundance Kid
## 1266                                                                                                                                   When Harry Met Sally...
## 1267                                                                                                                                   Alien³ (a.k.a. Alien 3)
## 1268                                                                                                                                                Birds, The
## 1269                                                                                                                                                 Blob, The
## 1270                                                                                                                           Dracula (Bram Stoker's Dracula)
## 1271                                                                                                                                                  Candyman
## 1272                                                                                                                                  Star Trek: First Contact
## 1273                                                                                                                                               Sling Blade
## 1274                                                                                                      Paradise Lost: The Child Murders at Robin Hood Hills
## 1275                                                                                                                                                Die Hard 2
## 1276                                                                                                                                            Batman Returns
## 1277                                                                                                                                                    Grease
## 1278                                                                                                                                               Under Siege
## 1279                                                                                                                                                      Jaws
## 1280                                                                                                                                             Mars Attacks!
## 1281                                                                                                                                             Jerry Maguire
## 1282                                                                                                                                           Raising Arizona
## 1283                                                                                                                                                  Sneakers
## 1284                                                                                                                           Beavis and Butt-Head Do America
## 1285                                                                                                                                                    Scream
## 1286                                                                                                                                       Waiting for Guffman
## 1287                                                                                                                                              Lost Highway
## 1288                                                                                                                                             Donnie Brasco
## 1289                                                                                                                                             Private Parts
## 1290                                                                                                                                                Saint, The
## 1291                                                                                                                                                     Crash
## 1292                                                                                                                                          Daytrippers, The
## 1293                                                                                                                                                 Liar Liar
## 1294                                                                                                                                       Grosse Pointe Blank
## 1295                                                                                                                                                    Kissed
## 1296                                                                                                                                   8 Heads in a Duffel Bag
## 1297                                                                                                                    Romy and Michele's High School Reunion
## 1298                                                                                                               Austin Powers: International Man of Mystery
## 1299                                                                                                                                        Fifth Element, The
## 1300                                                                                                                                                   Nowhere
## 1301                                                                                                                            Lost World: Jurassic Park, The
## 1302                                                                                                                                               Schizopolis
## 1303                                                                                                                                                   Con Air
## 1304                                                                                                                                   Speed 2: Cruise Control
## 1305                                                                                                                                            Batman & Robin
## 1306                                                                                                                                  My Best Friend's Wedding
## 1307                                                                                                                                                  Face/Off
## 1308                                                                                                                                 Men in Black (a.k.a. MIB)
## 1309                                                                                                                                                   Contact
## 1310                                                                                                                                                  Cop Land
## 1311                                                                                                                                         Conspiracy Theory
## 1312                                                                                                                                             Air Force One
## 1313                                                                                                                                 Hunt for Red October, The
## 1314                                                                                                                                                 Edge, The
## 1315                                                                                                                                           Peacemaker, The
## 1316                                                                                                                                         L.A. Confidential
## 1317                                                                                                                                                 Game, The
## 1318                                                                                                                                            Ice Storm, The
## 1319                                                                                                                                               Chasing Amy
## 1320                                                                                                                           I Know What You Did Last Summer
## 1321                                                                                                                                      The Devil's Advocate
## 1322                                                                                                                              Fast, Cheap & Out of Control
## 1323                                                                                                                                                   Gattaca
## 1324                                                                                                                                                   Stripes
## 1325                                                                                                                                             Boogie Nights
## 1326                                                                                                                                         Starship Troopers
## 1327                                                                                                                                             Sliding Doors
## 1328                                                                                                                                          Truman Show, The
## 1329                                                                                                                              Man Who Knew Too Little, The
## 1330                                                                                                                                       Alien: Resurrection
## 1331                                                                                                                                              Apostle, The
## 1332                                                                                                                                         Good Will Hunting
## 1333                                                                                                                                                  Scream 2
## 1334                                                                                                                                      Sweet Hereafter, The
## 1335                                                                                                                                                   Titanic
## 1336                                                                                                                                       Tomorrow Never Dies
## 1337                                                                                                                                              Jackie Brown
## 1338                                                                                                                                         Big Lebowski, The
## 1339                                                                                                                                        Great Expectations
## 1340                                                                                                                                               Wag the Dog
## 1341                                                                                                                                                 Dark City
## 1342                                                                                                                                                 Hard Rain
## 1343                                                                                                                                                Half Baked
## 1344                                                                                                                                                    Fallen
## 1345                                                                                                                                       Wedding Singer, The
## 1346                                                                                                                                                    Sphere
## 1347                                                                                                                                        As Good as It Gets
## 1348                                                                                                                                             U.S. Marshals
## 1349                                                                                                                                               Wild Things
## 1350                                                                                                                                        Cool, Dry Place, A
## 1351                                                                                                                                            Primary Colors
## 1352                                                                                                                                       Two Girls and a Guy
## 1353                                                                                                                                              Big One, The
## 1354                                                                                                                                             Lost in Space
## 1355                                                                                                                                     Spanish Prisoner, The
## 1356                                                                                                                                   Last Days of Disco, The
## 1357                                                                                                                                               Zero Effect
## 1358                                                                                                                          Taste of Cherry (Ta'm e guilass)
## 1359                                                                                                                                      Character (Karakter)
## 1360                                                                                                                                                Species II
## 1361                                                                                                                                               Deep Impact
## 1362                                                                                                                                                  Godzilla
## 1363                                                                                                                                                  Bulworth
## 1364                                                                                                                                                  Insomnia
## 1365                                                                                                                                         Can't Hardly Wait
## 1366                                                                                                                                                  High Art
## 1367                                                                                                                                                Henry Fool
## 1368                                                                                                                            X-Files: Fight the Future, The
## 1369                                                                                                                                              Out of Sight
## 1370                                                                                                                                             Smoke Signals
## 1371                                                                                                                                                Armageddon
## 1372                                                                                                                                                        Pi
## 1373                                                                                                                              There's Something About Mary
## 1374                                                                                                                                         On the Waterfront
## 1375                                                                                                                                  In the Heat of the Night
## 1376                                                                                                                                           Midnight Cowboy
## 1377                                                                                                                                    French Connection, The
## 1378                                                                                                                                                     Rocky
## 1379                                                                                                                                         Kramer vs. Kramer
## 1380                                                                                                                                           Ordinary People
## 1381                                                                                                                                                  Rain Man
## 1382                                                                                                                                        Driving Miss Daisy
## 1383                                                                                                                                                     Klute
## 1384                                                                                                                                       Breakfast Club, The
## 1385                                                                                                                                               Poltergeist
## 1386                                                                                                                                             Exorcist, The
## 1387                                                                                                                                             Lethal Weapon
## 1388                                                                                                                                                  Gremlins
## 1389                                                                                                                                              Goonies, The
## 1390                                                                                                                                        Mask of Zorro, The
## 1391                                                                                                                                                Metropolis
## 1392                                                                                                                                Back to the Future Part II
## 1393                                                                                                                               Back to the Future Part III
## 1394                                                                                                                                                     Bambi
## 1395                                                                                                                      Seven Samurai (Shichinin no samurai)
## 1396                                                                                                                                        Dangerous Liaisons
## 1397                                                                                                                                                    Lolita
## 1398                                                                                                                                       Saving Private Ryan
## 1399                                                                                                                                                 Condorman
## 1400                                                                                                                                  Honey, I Shrunk the Kids
## 1401                                                                                                                                           Negotiator, The
## 1402                                                                                                                                               BASEketball
## 1403                                                                                                                                                Roger & Me
## 1404                                                                                                                                               Blue Velvet
## 1405                                                                                                                                                    Splash
## 1406                                                                                                                                                      Tron
## 1407                                                                                                                                                L.A. Story
## 1408                                                                                                                      Indiana Jones and the Temple of Doom
## 1409                                                                                                                                        Addams Family, The
## 1410                                                                                                                                                Snake Eyes
## 1411                                                                                                                                 Adventures in Babysitting
## 1412                                                                                                                                             Weird Science
## 1413                                                                                                                                         Dark Crystal, The
## 1414                                                                                                                                            Pretty in Pink
## 1415                                                                                                                                   Gods Must Be Crazy, The
## 1416                                                                                                                                           Rosemary's Baby
## 1417                                                                                                                                    NeverEnding Story, The
## 1418                                                                                                                                                     Blade
## 1419                                                                                                                                               Beetlejuice
## 1420                                                                                                                                      Strangers on a Train
## 1421                                                                                                                                         Untouchables, The
## 1422                                                                                                                                                  Rounders
## 1423                                                                                                                                                      Cube
## 1424                                                                                                                                            Broadcast News
## 1425                                                                                                                                           Say Anything...
## 1426                                                                                                                                           Few Good Men, A
## 1427                                                                                                                                         Indecent Proposal
## 1428                                                                                                                                                 Rush Hour
## 1429                                                                                                                                                     Ronin
## 1430                                                                                                                                                    Pecker
## 1431                                                                                                                                                Thing, The
## 1432                                                                                                                                               Player, The
## 1433                                                                                                                                       Edward Scissorhands
## 1434                                                                                                                                                      Antz
## 1435                                                                                                                                           My Cousin Vinny
## 1436                                                                                                                                                 Nashville
## 1437                                                                                                                            2010: The Year We Make Contact
## 1438                                                                                                                                         Elephant Man, The
## 1439                                                                                                                                                 Happiness
## 1440                                                                                                                                             Pleasantville
## 1441                                                                                                                       Life Is Beautiful (La Vita è bella)
## 1442                                                                                                                                        American History X
## 1443                                                                                                                                         Gods and Monsters
## 1444                                                                                                                                                Siege, The
## 1445                                                                                                                                                 Elizabeth
## 1446                                                                                                                                            Meet Joe Black
## 1447                                                                                                                  Nights of Cabiria (Notti di Cabiria, Le)
## 1448                                                                                                                                        Enemy of the State
## 1449                                                                                                                                             Bug's Life, A
## 1450                                                                                                                       Central Station (Central do Brasil)
## 1451                                                                                                                                 Celebration, The (Festen)
## 1452                                                                                                                                                 King Kong
## 1453                                                                                                                                 Desperately Seeking Susan
## 1454                                                                                                                                                    Fletch
## 1455                                                                                                                                            Police Academy
## 1456                                                                                                                                           Very Bad Things
## 1457                                                                                                                                            Simple Plan, A
## 1458                                                                                                                                                  Rushmore
## 1459                                                                                                                                       Shakespeare in Love
## 1460                                                                                                                                    Jewel of the Nile, The
## 1461                                                                                                                                       Romancing the Stone
## 1462                                                                                                                                                    Cocoon
## 1463                                                                                                                                                      Clue
## 1464                                                                                                                                           You've Got Mail
## 1465                                                                                                                                        Thin Red Line, The
## 1466                                                                                                                                              Faculty, The
## 1467                                                                                                                                                Affliction
## 1468                                                                                                                                             Varsity Blues
## 1469                                                                                                                                                  Fly, The
## 1470                                                                                                                Name of the Rose, The (Name der Rose, Der)
## 1471                                                                                                                                            ¡Three Amigos!
## 1472                                                                                                                                                   Payback
## 1473                                                                                                                                               October Sky
## 1474                                                                                                                                              Office Space
## 1475                                                                                                                                                       8MM
## 1476                                                                                                                                               Logan's Run
## 1477                                                                                                                                              Analyze This
## 1478                                                                                                                                          Cruel Intentions
## 1479                                                                                                                         Lock, Stock & Two Smoking Barrels
## 1480                                                                                                                                                  Ravenous
## 1481                                                                                                                                            Mod Squad, The
## 1482                                                                                                                                               Matrix, The
## 1483                                                                                                                                10 Things I Hate About You
## 1484                                                                                                                                       Out-of-Towners, The
## 1485                                                                                                        Dreamlife of Angels, The (Vie rêvée des anges, La)
## 1486                                                                                                                                                 Following
## 1487                                                                                                                                                        Go
## 1488                                                                                                                                         Never Been Kissed
## 1489                                                                                          Lovers of the Arctic Circle, The (Los Amantes del Círculo Polar)
## 1490                                                                                                                            Open Your Eyes (Abre los ojos)
## 1491                                                                                                                                               Pushing Tin
## 1492                                                                                                                                                  Election
## 1493                                                                                                                                                  eXistenZ
## 1494                                                                                                                                                Entrapment
## 1495                                                                                                                                                Mummy, The
## 1496                                                                                                                              After Life (Wandafuru raifu)
## 1497                                                                                                                 Star Wars: Episode I - The Phantom Menace
## 1498                                                                                                                                                  Superman
## 1499                                                                                                                                              Frankenstein
## 1500                                                                                                                            Rocky Horror Picture Show, The
## 1501                                                                                                                                              Notting Hill
## 1502                                                                                                                                               Desert Blue
## 1503                                                                                                                     Austin Powers: The Spy Who Shagged Me
## 1504                                                                                                                        Red Violin, The (Violon rouge, Le)
## 1505                                                                                                                                 Run Lola Run (Lola rennt)
## 1506                                                                                                                                             Arachnophobia
## 1507                                                                                                                      South Park: Bigger, Longer and Uncut
## 1508                                                                                                                                            Wild Wild West
## 1509                                                                                                                                             Summer of Sam
## 1510                                                                                                                                              American Pie
## 1511                                                                                                                                            Arlington Road
## 1512                                                                                                                                        Muppets From Space
## 1513                                                                                                                                  Blair Witch Project, The
## 1514                                                                                                                                            Eyes Wide Shut
## 1515                                                                                                                                               Lake Placid
## 1516                                                                                                                       Ghostbusters (a.k.a. Ghost Busters)
## 1517                                                                                                                                           Ghostbusters II
## 1518                                                                                                                                        Drop Dead Gorgeous
## 1519                                                                                                                                             Deep Blue Sea
## 1520                                                                                                                                               Mystery Men
## 1521                                                                                                                                              Killing, The
## 1522                                                                                                                                                    Lolita
## 1523                                                                                                                                                      Dick
## 1524                                                                                                                                           Iron Giant, The
## 1525                                                                                                                                          Sixth Sense, The
## 1526                                                                                                                                  Thomas Crown Affair, The
## 1527                                                                                                                                                Yards, The
## 1528                                                                                                                                                 Bowfinger
## 1529                                                                                                                                                 Airplane!
## 1530                                                                                                                               National Lampoon's Vacation
## 1531                                                                                                                                                       Big
## 1532                                                                                                                                        Pelican Brief, The
## 1533                                                                                                           Three Days of the Condor (3 Days of the Condor)
## 1534                                                                                                                                                  Stigmata
## 1535                                                                                                                                            Stir of Echoes
## 1536                                                                                                                                           American Beauty
## 1537                                                                                                                                               Deliverance
## 1538                                                                                                                                           Double Jeopardy
## 1539                                                                                                                                               Three Kings
## 1540                                                                                                                                 Sanjuro (Tsubaki Sanjûrô)
## 1541                                                                                                                                            Boys Don't Cry
## 1542                                                                                                                                                Limey, The
## 1543                                                                                                                                            Risky Business
## 1544                                                                                                                                              Total Recall
## 1545                                                                                                                                  Ferris Bueller's Day Off
## 1546                                                                                                                         Conformist, The (Conformista, Il)
## 1547                                                                                                                                                Goldfinger
## 1548                                                                                                                                                    Dr. No
## 1549                                                                                                                                       Sydney (Hard Eight)
## 1550                                                                                                                                                Fight Club
## 1551                                                                                                                                   Crimes and Misdemeanors
## 1552                                                                                                                                     Bringing Out the Dead
## 1553                                                                                                                                         Ipcress File, The
## 1554                                                                                                                                                   RoboCop
## 1555                                                                                                                                  Who Framed Roger Rabbit?
## 1556                                                                                                                                           Licence to Kill
## 1557                                                                                                                                               Thunderball
## 1558                                                                                                                                      Being John Malkovich
## 1559                                                                                                                         Princess Mononoke (Mononoke-hime)
## 1560                                                                                                                                             Bachelor, The
## 1561                                                                                                                                       Bone Collector, The
## 1562                                                                                                                                              Insider, The
## 1563                                                                                                                                            American Movie
## 1564                                                                                                                                                Last Night
## 1565                                                                                                                                                   Rosetta
## 1566                                                                                                                                          Drugstore Cowboy
## 1567                                                                                                                                              Falling Down
## 1568                                                                                                                                                   Yojimbo
## 1569                                                                                                                                                Spaceballs
## 1570                                                                                                                                            Trading Places
## 1571                                                                                                                                                Dead Again
## 1572                                                                                                                                                     Dogma
## 1573                                                                                                                                          Commitments, The
## 1574                                                                                                                                                     42 Up
## 1575                                                                                                                                             Sleepy Hollow
## 1576                                                                                                                                  World Is Not Enough, The
## 1577                                                                                                                 All About My Mother (Todo sobre mi madre)
## 1578                                                             Bicycle Thieves (a.k.a. The Bicycle Thief) (a.k.a. The Bicycle Thieves) (Ladri di biciclette)
## 1579                                                                                                                                          Fatal Attraction
## 1580                                                                                                                                              Midnight Run
## 1581                                                                                                                                                 Backdraft
## 1582                                                                                                                                          Fisher King, The
## 1583                                                                                                                                               End of Days
## 1584                                                                                                                                               Toy Story 2
## 1585                                                                                                                                       Map of the World, A
## 1586                                                                                                                                         Sweet and Lowdown
## 1587                                                                                                                       Grand Illusion (La grande illusion)
## 1588                                                                                                                                Deuce Bigalow: Male Gigolo
## 1589                                                                                                                                           Green Mile, The
## 1590                                                                                                                                    Cider House Rules, The
## 1591                                                                                                                                             War Zone, The
## 1592                                                                                                                                    Last Picture Show, The
## 1593                                                                                                                                             Stuart Little
## 1594                                                                                                                                                  Magnolia
## 1595                                                                                                                                                Easy Rider
## 1596                                                                                                                                          Any Given Sunday
## 1597                                                                                                                                           Man on the Moon
## 1598                                                                                                                                              Galaxy Quest
## 1599                                                                                                                                  Talented Mr. Ripley, The
## 1600                                                                                                                                                     Titus
## 1601                                                                                                     Mr. Death: The Rise and Fall of Fred A. Leuchter, Jr.
## 1602                                                                                                                                    Snow Falling on Cedars
## 1603                                                                                                                              Fast Times at Ridgemont High
## 1604                                                                                                                                           Pacific Heights
## 1605                                                                                                                                               Down to You
## 1606                                                                                                                                                 Malcolm X
## 1607                                                                                                                                                     Alive
## 1608                                                                                                                                             Wayne's World
## 1609                                                                                                                                    League of Their Own, A
## 1610                                                                                                                                             Patriot Games
## 1611                                                                                                                                                   Singles
## 1612                                                                                                                             Twin Peaks: Fire Walk with Me
## 1613                                                                                                                            Hard-Boiled (Lat sau san taam)
## 1614                                                                                                            Man Bites Dog (C'est arrivé près de chez vous)
## 1615                                                                                                                                              Mariachi, El
## 1616                                                                                                                                            Bad Lieutenant
## 1617                                                                                                                                                  Scream 3
## 1618                                                                                                                                      Boondock Saints, The
## 1619                                                                                                                                                Beach, The
## 1620                                                                                                                                                  Snow Day
## 1621                                                                                                                                               Boiler Room
## 1622                                                                                                                                               Pitch Black
## 1623                                                                                                                                     Whole Nine Yards, The
## 1624                                                                                                                                               City Lights
## 1625                                                                                                                                            Reindeer Games
## 1626                                                                                                                                               Wonder Boys
## 1627                                                                                                                                                Deterrence
## 1628                                                                                                                  Mifune's Last Song (Mifunes sidste sang)
## 1629                                                                                                                         Ghost Dog: The Way of the Samurai
## 1630                                                                                                                                       Defending Your Life
## 1631                                                                                                                                               Bull Durham
## 1632                                                                                                                                         Dog Day Afternoon
## 1633                                                                                                                                                       JFK
## 1634                                                                                                                                         Shanghai Surprise
## 1635                                                                                                                                           Erin Brockovich
## 1636                                                                                                                                         Final Destination
## 1637                                                                                                                                           Thelma & Louise
## 1638                                                                                                                                              Animal House
## 1639                                                                                                                                         Creature Comforts
## 1640                                                                                                                                          Double Indemnity
## 1641                                                                                                                                     Good Morning, Vietnam
## 1642                                                                                                                                         Lord of the Flies
## 1643                                                                                                                                              Modern Times
## 1644                                                                                                                        Close Encounters of the Third Kind
## 1645                                                                                                                                            Jacob's Ladder
## 1646                                                                                                                                            Empire Records
## 1647                                                                                                                                             High Fidelity
## 1648                                                                                                                                               Skulls, The
## 1649                                                                                                                                                      Hook
## 1650                                                                                                                                                    Misery
## 1651                                                                                                                                                   Network
## 1652                                                                                                                                                No Way Out
## 1653                                                                                                                                                 Frequency
## 1654                                                                                                                                              Return to Me
## 1655                                                                                                                                                  Predator
## 1656                                                                                                                                                   28 Days
## 1657                                                                                                                                           American Psycho
## 1658                                                                                                                                         Keeping the Faith
## 1659                                                                                                                                              East is East
## 1660                                                                                                                                                     Diner
## 1661                                                                                                                                                Caddyshack
## 1662                                                                                                                                                     U-571
## 1663                                                                                                                                      Virgin Suicides, The
## 1664                                                                                                                                           Big Kahuna, The
## 1665                                                                                                                                   Idiots, The (Idioterne)
## 1666                                                                                                                                                 Time Code
## 1667                                                                                                                                         Two Moon Junction
## 1668                                                                                                                                                 Gladiator
## 1669                                                                                                                                                    Hamlet
## 1670                                                                                                                                                 Road Trip
## 1671                                                                                                                                         Small Time Crooks
## 1672                                                                                                                                    Mission: Impossible II
## 1673                                                                                                                                             Shanghai Noon
## 1674                                                                                            8 ½ Women (a.k.a. 8 1/2 Women) (a.k.a. Eight and a Half Women)
## 1675                                                                                                                           On Her Majesty's Secret Service
## 1676                                                                                                                                         Seven Days in May
## 1677                                                                                                                                     Spy Who Loved Me, The
## 1678                                                                                                                                                 Moonraker
## 1679                                                                                                                              Man with the Golden Gun, The
## 1680                                                                                                                                           Blazing Saddles
## 1681                                                                                                                                              Blood Simple
## 1682                                                                                                                              9 1/2 Weeks (Nine 1/2 Weeks)
## 1683                                                                                                                                        Gone in 60 Seconds
## 1684                                                                                                                                            One False Move
## 1685                                                                                                                                         Conversation, The
## 1686                                                                                                                                                   Serpico
## 1687                                                                                                                                       Battleship Potemkin
## 1688                                                                                                                                                Titan A.E.
## 1689                                                                                                                                                Jesus' Son
## 1690                                                                                                                                               Chicken Run
## 1691                                                                                                                                        Me, Myself & Irene
## 1692                                                                                                                                        Perfect Storm, The
## 1693                                                                                                                                                       F/X
## 1694                                                                                                                                                  Croupier
## 1695                                                                                                                                               Scary Movie
## 1696                                                                                                                                     But I'm a Cheerleader
## 1697                                                                                                                                            Shower (Xizao)
## 1698                                                                                                                                          Blow-Up (Blowup)
## 1699                                                                                                                                                     X-Men
## 1700                                                                                                                                              Chuck & Buck
## 1701                                                                                                                                         What Lies Beneath
## 1702                                                                                                                                           Criminal Lovers
## 1703                                                                                                                                       Anatomy of a Murder
## 1704                                                                                                                                                Wonderland
## 1705                                                                                                                                               Coyote Ugly
## 1706                                                                                                                                                Hollow Man
## 1707                                                                                                                                             Space Cowboys
## 1708                                                                                                                                         Tao of Steve, The
## 1709                                                                                                                                            Aimée & Jaguar
## 1710                                                                                                                                         Replacements, The
## 1711                                                                                                                                                 Cell, The
## 1712                                                                                                           Naked Gun: From the Files of Police Squad!, The
## 1713                                                                                                                                               Bring It On
## 1714                                                                                                                                        Anatomy (Anatomie)
## 1715                                                                                                                                               Nurse Betty
## 1716                                                                                                                                       Way of the Gun, The
## 1717                                                                                                                                             Almost Famous
## 1718                                                                                                                                        Dancer in the Dark
## 1719                                                                                                                                              Best in Show
## 1720                                                                                                                                                 Girlfight
## 1721                                                                                                                                                Bamboozled
## 1722                                                                                                                                          Meet the Parents
## 1723                                                                                                                                       Requiem for a Dream
## 1724                                                                                                                                            Contender, The
## 1725                                                                                                                                                Lost Souls
## 1726                                                                                                                                              Billy Elliot
## 1727                                                                                                                                                 Bedazzled
## 1728                                                                                                                                            Pay It Forward
## 1729                                                                                                                                          Charlie's Angels
## 1730                                                                                                                                              Little Nicky
## 1731                                                                                                                                                Red Planet
## 1732                                                                                                                                       You Can Count on Me
## 1733                                                                                                                                      Diamonds Are Forever
## 1734                                                                                                                                              6th Day, The
## 1735                                                                                                                                                    Bounce
## 1736                                                                                                        How the Grinch Stole Christmas (a.k.a. The Grinch)
## 1737                                                                                                                                      One Day in September
## 1738                                                                                                                               Rugrats in Paris: The Movie
## 1739                                                                                                                                                    Quills
## 1740                                                                                                                                               Unbreakable
## 1741                                                                                                          Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 1742                                                                                                                                             Proof of Life
## 1743                                                                                                                                            Vertical Limit
## 1744                                                                                                                                     Living Daylights, The
## 1745                                                                                                                                   Transformers: The Movie
## 1746                                                                                                                                               Wall Street
## 1747                                                                                                                                       Brewster's Millions
## 1748                                                                                                                                                    Snatch
## 1749                                                                                                                                                  Chocolat
## 1750                                                                                                                                     Dude, Where's My Car?
## 1751                                                                                                                                                   Pollock
## 1752                                                                                                                                           What Women Want
## 1753                                                                                                                                         Finding Forrester
## 1754                                                                                                                                                 Gift, The
## 1755                                                                                                                                        Before Night Falls
## 1756                                                                                                                                                 Cast Away
## 1757                                                                                                                                           Family Man, The
## 1758                                                                                                                                         Miss Congeniality
## 1759                                                                                                                                O Brother, Where Art Thou?
## 1760                                                                                                                                            State and Main
## 1761                                                                                                                                              Dracula 2000
## 1762                                                                                                                                             Thirteen Days
## 1763                                                                                                                                                   Traffic
## 1764                                                                                                                                     Shadow of the Vampire
## 1765                                                                                                                                            House of Games
## 1766                                                                                                                                                 Antitrust
## 1767                                                                                                                                                     Panic
## 1768                                                                                                                                               Pledge, The
## 1769                                                                                                                                   I'm Gonna Git You Sucka
## 1770                                                                                                                                  Amazon Women on the Moon
## 1771                                                                                                                                                    Barfly
## 1772                                                                                                                                         Beverly Hills Cop
## 1773                                                                                                                                                Innerspace
## 1774                                                                                                                    In the Mood For Love (Fa yeung nin wa)
## 1775                                                                                                                                                  Hannibal
## 1776                                                                                                                             Saving Silverman (Evil Woman)
## 1777                                                                                                                                                Monkeybone
## 1778                                                                                                                                              Mexican, The
## 1779                                                                                                                                                15 Minutes
## 1780                                                                                                                                               Get Over It
## 1781                                                                                                                                                 Manhunter
## 1782                                                                                                                                        Enemy at the Gates
## 1783                                                                                                                                                 Dish, The
## 1784                                                                                                                                                   Memento
## 1785                                                                                                                                                  Spy Kids
## 1786                                                                                                                            Amores Perros (Love's a Bitch)
## 1787                                                                                                                                       Along Came a Spider
## 1788                                                                                                                                                      Blow
## 1789                                                                                                                                     Bridget Jones's Diary
## 1790                                                                                                                                                  Joe Dirt
## 1791                                                                                                                                                  Scarface
## 1792                                                                                                                                        Mummy Returns, The
## 1793                                                                                                                                           Eureka (Yurîka)
## 1794                                                                                                                                          Knight's Tale, A
## 1795                                                                                                                                        King Is Alive, The
## 1796                                                                                                                                                     Shrek
## 1797                                                                                                                                              Moulin Rouge
## 1798                                                                                                                                              Pearl Harbor
## 1799                                                                                                                                             City Slickers
## 1800                                                                                                                                             Eight Men Out
## 1801                                                                                                                                                 Evolution
## 1802                                                                                                                                                 Swordfish
## 1803                                                                                                                                               Point Break
## 1804                                                                                                                                                   Tootsie
## 1805                                                                                                                                   Lara Croft: Tomb Raider
## 1806                                                                                                                                 Fast and the Furious, The
## 1807                                                                                                                              A.I. Artificial Intelligence
## 1808                                                                                                                                           Crazy/Beautiful
## 1809                                                                                                                                                Sexy Beast
## 1810                                                                                             Princess and the Warrior, The (Krieger und die Kaiserin, Der)
## 1811                                                                                                                                 Closet, The (Placard, Le)
## 1812                                                                                                              Crimson Rivers, The (Rivières pourpres, Les)
## 1813                                                                                                                                               Cats & Dogs
## 1814                                                                                                                                             Scary Movie 2
## 1815                                                                                                                                            Something Wild
## 1816                                                                                                                         Final Fantasy: The Spirits Within
## 1817                                                                                                                                            Legally Blonde
## 1818                                                                                                                                                Score, The
## 1819                                                                                                                                                     Bully
## 1820                                                                                                                                             Jump Tomorrow
## 1821                                                                                                                                         Coming to America
## 1822                                                                                                                                Vanishing, The (Spoorloos)
## 1823                                                                                                                          Bill & Ted's Excellent Adventure
## 1824                                                                                                                                        Look Who's Talking
## 1825                                                                                                                                              Major League
## 1826                                                                                                                                         Jurassic Park III
## 1827                                                                                                                                     America's Sweethearts
## 1828                                                                                                                                               Ghost World
## 1829                                                                                                                                 Hedwig and the Angry Inch
## 1830                                                                                                                                        Planet of the Apes
## 1831                                                                                                                                                Road House
## 1832                                                                                                                                              Santa Sangre
## 1833                                                                                                                                                 Skin Deep
## 1834                                                                                                                                           Three Fugitives
## 1835                                                                                                                                                       UHF
## 1836                                                                                                                                                Uncle Buck
## 1837                                                                                                                                     Princess Diaries, The
## 1838                                                                                                                                               Rush Hour 2
## 1839                                                                                                                                            Altered States
## 1840                                                                                                                                            American Pie 2
## 1841                                                                                                                                             Osmosis Jones
## 1842                                                                                                                                               Others, The
## 1843                                                                                                                                             Deep End, The
## 1844                                                                                                                                Captain Corelli's Mandolin
## 1845                                                                                                                                                  Rat Race
## 1846                                                                                                                                                 Innocence
## 1847                                                                                                                            Jay and Silent Bob Strike Back
## 1848                                                                                                                                           Happy Accidents
## 1849                                                                                                                                          Jeepers Creepers
## 1850                                                                                                                                              Training Day
## 1851                                                                                                                                                 Zoolander
## 1852                                                                                                                                               Serendipity
## 1853                                                                                                                                                   Bandits
## 1854                                                                                                                                          Mulholland Drive
## 1855                                                                                                                                               Waking Life
## 1856                                                                                                                                              Donnie Darko
## 1857                                                                                                                                 Man Who Wasn't There, The
## 1858                                                                                                                                            Monsters, Inc.
## 1859                                                                                                                                                      Tape
## 1860                                                                                                                                               Shallow Hal
## 1861                                                                   Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 1862                                                                                                                                                  Spy Game
## 1863                                                                                                           Devil's Backbone, The (Espinazo del diablo, El)
## 1864                                                                                                                                            In the Bedroom
## 1865                                                                                                                            Breathless (À bout de souffle)
## 1866                                                                                                                                        Behind Enemy Lines
## 1867                                                                                                                                            Ocean's Eleven
## 1868                                                                                                             Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 1869                                                                                                                                    Not Another Teen Movie
## 1870                                                                                                                                               Vanilla Sky
## 1871                                                                                                                                     Royal Tenenbaums, The
## 1872                                                                                                                                            Kate & Leopold
## 1873                                                                                                        Lord of the Rings: The Fellowship of the Ring, The
## 1874                                                                                                                                         Beautiful Mind, A
## 1875                                                                                                                                               Medium Cool
## 1876                                                                                                                               Witness for the Prosecution
## 1877                                                                                                                                           Black Hawk Down
## 1878                                                                                                                                              Gosford Park
## 1879                                                                                                                                            Monster's Ball
## 1880                                                                                                             Brotherhood of the Wolf (Pacte des loups, Le)
## 1881                                                                                                                                     M*A*S*H (a.k.a. MASH)
## 1882                                                                                                                                       Walk to Remember, A
## 1883                                                                                                                                                 Maelström
## 1884                                                                                                                                              Storytelling
## 1885                                                                                                                                               Waydowntown
## 1886                                                                                                                                            Super Troopers
## 1887                                                                                                                                                    Sleuth
## 1888                                                                                                                                       Queen of the Damned
## 1889                                                                                                                                           Monsoon Wedding
## 1890                                                                                                                                   All About the Benjamins
## 1891                                                                                                                                         Time Machine, The
## 1892                                                                                                                                                   Ice Age
## 1893                                                                                                                                             Resident Evil
## 1894                                                                                                                                                  Showtime
## 1895                                                                                                                                     Kissing Jessica Stein
## 1896                                                                                                                   And Your Mother Too (Y tu mamá también)
## 1897                                                                                                                                                  Blade II
## 1898                                                                                                                                                Panic Room
## 1899                                                                                                                          Piano Teacher, The (La pianiste)
## 1900                                                                                                                                                 Impromptu
## 1901                                                                                                                             National Lampoon's Van Wilder
## 1902                                                                                                                                       Rashomon (Rashômon)
## 1903                                                                                                                                            Changing Lanes
## 1904                                                                                                                                       Sweetest Thing, The
## 1905                                                                                                                                              Human Nature
## 1906                                                                                                                                  My Big Fat Greek Wedding
## 1907                                                                                                                                      Three Men and a Baby
## 1908                                                                                                                                         The Scorpion King
## 1909                                                                                                                                Nine Queens (Nueve reinas)
## 1910                                                                                                                                        Husbands and Wives
## 1911                                                                                                                                               Wild Orchid
## 1912                                                                                                                                                Spider-Man
## 1913                                                                                                                                              New Guy, The
## 1914                                                                                                                                                Unfaithful
## 1915                                                                                                                                               About a Boy
## 1916                                                                                                              Star Wars: Episode II - Attack of the Clones
## 1917                                                                                                                                                  Insomnia
## 1918                                                                                          Thirteen Conversations About One Thing (a.k.a. 13 Conversations)
## 1919                                                                                                                                     Sum of All Fears, The
## 1920                                                                                                                                            Silent Running
## 1921                                                                                                                                                   Cherish
## 1922                                                                                                                                      Bourne Identity, The
## 1923                                                                                                                                                Scooby-Doo
## 1924                                                                                                                                             Lilo & Stitch
## 1925                                                                                                                                           Minority Report
## 1926                                                                                                                                                 Mr. Deeds
## 1927                                                                                                                                                 Like Mike
## 1928                                                                                                              Men in Black II (a.k.a. MIIB) (a.k.a. MIB 2)
## 1929                                                                                                                                             Reign of Fire
## 1930                                                                                                                                         Road to Perdition
## 1931                                                                                                                           Sex and Lucia (Lucía y el sexo)
## 1932                                                                                                                                       Eight Legged Freaks
## 1933                                                                                                                               Austin Powers in Goldmember
## 1934                                                                                                                                               Top Secret!
## 1935                                                                                                                                                     Signs
## 1936                                                                                                                     Spy Kids 2: The Island of Lost Dreams
## 1937                                                                                                                                                       xXx
## 1938                                                                                                                                      24 Hour Party People
## 1939                                                                                                  Songs From the Second Floor (Sånger från andra våningen)
## 1940                                                                                                                                                Blue Crush
## 1941                                                                                                                                            One Hour Photo
## 1942                                                                                                                                                Hot Shots!
## 1943                                                                                                                                                  Stakeout
## 1944                                                                                                                                        Johnny Dangerously
## 1945                                                                                                                                            Igby Goes Down
## 1946                                                                                                                                                 Secretary
## 1947                                                                                                             Spirited Away (Sen to Chihiro no kamikakushi)
## 1948                                                                                                                                        Sweet Home Alabama
## 1949                                                                                                                                                Red Dragon
## 1950                                                                                                                                              Strange Brew
## 1951                                                                                                                                            Wrong Guy, The
## 1952                                                                                                                                     Bowling for Columbine
## 1953                                                                                                                                          Punch-Drunk Love
## 1954                                                                                                                                                 Ring, The
## 1955                                                                                                                                                     Frida
## 1956                                                                                                                                              Roger Dodger
## 1957                                                                                                                                              Femme Fatale
## 1958                                                                                                                   Harry Potter and the Chamber of Secrets
## 1959                                                                                                                                           Die Another Day
## 1960                                                                                                                              Talk to Her (Hable con Ella)
## 1961                                                                                                                                       Last Seduction, The
## 1962                                                                                                                                                Adaptation
## 1963                                                                                                                                               Equilibrium
## 1964                                                                                                                                      Visitor Q (Bizita Q)
## 1965                                                                                                                                             About Schmidt
## 1966                                                                                                                    Lord of the Rings: The Two Towers, The
## 1967                                                                                                                                                 25th Hour
## 1968                                                                                                                                         Gangs of New York
## 1969                                                                                                                                          Two Weeks Notice
## 1970                                                                                                                                                      Narc
## 1971                                                                                                                                               Miami Blues
## 1972                                                                                                                                       Catch Me If You Can
## 1973                                                                                                                                                   Chicago
## 1974                                                                                                                                              Pianist, The
## 1975                                                                                                                           Confessions of a Dangerous Mind
## 1976                                                                                                                              City of God (Cidade de Deus)
## 1977                                                                                                                                           CB4 - The Movie
## 1978                                                                                                                                             Summer Lovers
## 1979                                                                                                                                              Recruit, The
## 1980                                                                                                                              How to Lose a Guy in 10 Days
## 1981                                                                                                                                                 Daredevil
## 1982                                                                                                                                                     Q & A
## 1983                                                                                                                                                Old School
## 1984                                                                                                                                               Life Stinks
## 1985                                                                                                                                      Bend It Like Beckham
## 1986                                                                                                                        Day for Night (La Nuit Américaine)
## 1987                                                                                                                                               Phone Booth
## 1988                                                                                                 Cowboy Bebop: The Movie (Cowboy Bebop: Tengoku no Tobira)
## 1989                                                                                                                                          Anger Management
## 1990                                                                                                                                            Mighty Wind, A
## 1991                                                                                                                   Winged Migration (Peuple migrateur, Le)
## 1992                                                                                                                                     Andromeda Strain, The
## 1993                                                                                                                             Decade Under the Influence, A
## 1994                                                                                                                                                Spellbound
## 1995                                                                                                                                          X2: X-Men United
## 1996                                                                                                                                      Matrix Reloaded, The
## 1997                                                                                                                                            Bruce Almighty
## 1998                                                                                                                                              Finding Nemo
## 1999                                                                                                                                          Italian Job, The
## 2000                                                                                                                                   Capturing the Friedmans
## 2001                                                                                                                                               Whale Rider
## 2002                                                                                                Man with the Movie Camera, The (Chelovek s kino-apparatom)
## 2003                                                                                                                                               Barton Fink
## 2004                                                                                                                                              Belle époque
## 2005                                                                                                                                               Good Burger
## 2006                                                                                                                                             28 Days Later
## 2007                                                                                                                           Charlie's Angels: Full Throttle
## 2008                                                                                                                                                      Hulk
## 2009                                                                                                                        Terminator 3: Rise of the Machines
## 2010                                                                                                    Pirates of the Caribbean: The Curse of the Black Pearl
## 2011                                                                                                                                                 Northfork
## 2012                                                                                                                                       Dirty Pretty Things
## 2013                                                                                                                         American Wedding (American Pie 3)
## 2014                                                                                                                                             Freaky Friday
## 2015                                                                                                                                         American Splendor
## 2016                                                                                            Code Unknown (Code inconnu: Récit incomplet de divers voyages)
## 2017                                                                                                                                  Kind Hearts and Coronets
## 2018                                                                                                                                            Matchstick Men
## 2019                                                                                                                                       Lost in Translation
## 2020                                                                                                                                                Underworld
## 2021                                                                                                Triplets of Belleville, The (Les triplettes de Belleville)
## 2022                                                                                                                  Rules of the Game, The (La règle du jeu)
## 2023                                                                                                                                   All the President's Men
## 2024                                                                                                                                        Three O'Clock High
## 2025                                                                                                                                              Ginger Snaps
## 2026                                                                                                                                            School of Rock
## 2027                                                                                                                                        Station Agent, The
## 2028                                                                                                                                              Mystic River
## 2029                                                                                                                                       Intolerable Cruelty
## 2030                                                                                                                                         Kill Bill: Vol. 1
## 2031                                                                                                                                                  Dopamine
## 2032                                                                                                                                              Runaway Jury
## 2033                                                                                                                                                In the Cut
## 2034                                                                                                                                           Shattered Glass
## 2035                                                                                                                                   Matrix Revolutions, The
## 2036                                                                                                                                                       Elf
## 2037                                                                                                                                             Love Actually
## 2038                                                                                                                                       Father of the Bride
## 2039                                                                                                           Master and Commander: The Far Side of the World
## 2040                                                                                                                                                  21 Grams
## 2041                                                                                                                                                 Bad Santa
## 2042                                                                                                                                           Damage (Fatale)
## 2043                                                                                                                                               Funny Games
## 2044                                                                                                                                                   Slacker
## 2045                                                                                                                                                  WarGames
## 2046                                                                                                                                                Gorky Park
## 2047                                                                                                                                                     Kafka
## 2048                                                                                                                                          Kindergarten Cop
## 2049                                                                                                               Last Tango in Paris (Ultimo tango a Parigi)
## 2050                                                                                                                                    Lover, The (Amant, L')
## 2051                                                                                                                                              Quick Change
## 2052                                                                                                                               Show Me Love (Fucking Åmål)
## 2053                                                                                                                                         Hero (Ying xiong)
## 2054                                                                                                                                               Naked Lunch
## 2055                                                                                                                                     Night at the Opera, A
## 2056                                                                                                                                         Last Samurai, The
## 2057                                                                                                                                                  Big Fish
## 2058                                                                                                            Lord of the Rings: The Return of the King, The
## 2059                                                                                       Fog of War: Eleven Lessons from the Life of Robert S. McNamara, The
## 2060                                                                                                                                             Cold Mountain
## 2061                                                                                                                                          Along Came Polly
## 2062                                                                                                                                     Melvin Goes to Dinner
## 2063                                                                                                                                      The Butterfly Effect
## 2064                                                                                                                                             Dreamers, The
## 2065                                                                                                                                            50 First Dates
## 2066                                                                                                                                                  EuroTrip
## 2067                                                                                                                                          Good bye, Lenin!
## 2068                                                                                                                                           Starsky & Hutch
## 2069                                                                                                                                                   Persona
## 2070                                                                                                                                       Girl Next Door, The
## 2071                                                                                                                                                   Spartan
## 2072                                                                                                                     Eternal Sunshine of the Spotless Mind
## 2073                                                                                                                                                  Dogville
## 2074                                                                                                                                                   Hellboy
## 2075                                                                                                                                         Kill Bill: Vol. 2
## 2076                                                                                                                                            13 Going on 30
## 2077                                                                                                                                               Man on Fire
## 2078                                                                                                                                                Mean Girls
## 2079                                                                                                                                                      Troy
## 2080                                                                                                                                             Gimme Shelter
## 2081                                                                                                                                              Henry & June
## 2082                                                                                                                                                 Fail-Safe
## 2083                                                                                                                                       You Only Live Twice
## 2084                                                                                                                                     Never Say Never Again
## 2085                                                                                                                                       China Syndrome, The
## 2086                                                                                                                                        Parallax View, The
## 2087                                                                                                       Hidden Fortress, The (Kakushi-toride no san-akunin)
## 2088                                                                                                                                  Weather Underground, The
## 2089                                                                                                                                              Grey Gardens
## 2090                                                                                                                                                   Shrek 2
## 2091                                                                                                                                   Day After Tomorrow, The
## 2092                                                                                                                                                    Saved!
## 2093                                                                                                                  Harry Potter and the Prisoner of Azkaban
## 2094                                                                                                                                         Napoleon Dynamite
## 2095                                                                                                                                             Super Size Me
## 2096                                                                                                                          Dodgeball: A True Underdog Story
## 2097                                                                                                                                             Terminal, The
## 2098                                                                                                                                              White Chicks
## 2099                                                                                                                                 Pirates of Silicon Valley
## 2100                                                                                                         Manufacturing Consent: Noam Chomsky and the Media
## 2101                                                                                                                                           Fahrenheit 9/11
## 2102                                                                                                                                                   Roxanne
## 2103                                                                                                                                              Spider-Man 2
## 2104                                                                                                                                             Before Sunset
## 2105                                                                                                                     Anchorman: The Legend of Ron Burgundy
## 2106                                                                                                                                                  I, Robot
## 2107                                                                                                         Maria Full of Grace (Maria, Llena eres de gracia)
## 2108                                                                                                                                     Bourne Supremacy, The
## 2109                                                                                                                                 Manchurian Candidate, The
## 2110                                                                                                                                              Garden State
## 2111                                                                                                                                                Collateral
## 2112                                                                                                                       Harold and Kumar Go to White Castle
## 2113                                                                                                                     Sky Captain and the World of Tomorrow
## 2114                                                                                                                                         Shaun of the Dead
## 2115                                                                                                                                         I Heart Huckabees
## 2116                                                                                                                                                    Primer
## 2117                                                                                                                                Team America: World Police
## 2118                                                                                                                 Five Obstructions, The (Fem benspænd, De)
## 2119                                                                                                                                                     Alfie
## 2120                                                                                                                                                  Sideways
## 2121                                                                                                                                             The Machinist
## 2122                                                                                                                                                       Saw
## 2123                                                                                                                                                       Ray
## 2124                                                                                                                                          Incredibles, The
## 2125                                                                                                                                         Finding Neverland
## 2126                                                                                                                                         National Treasure
## 2127                                                                                                                          SpongeBob SquarePants Movie, The
## 2128                                                                                                                                            Ocean's Twelve
## 2129                                                                                                           Battle of Algiers, The (La battaglia di Algeri)
## 2130                                                                                                                                                    Batman
## 2131                                                                                                                                  Decalogue, The (Dekalog)
## 2132                                                                                                               Hearts of Darkness: A Filmmakers Apocalypse
## 2133                                                                                                                                             Bad Boy Bubby
## 2134                                                                                                                                                       Gia
## 2135                                                                                                                                           Ali G Indahouse
## 2136                                                                                                                                            Animatrix, The
## 2137                                                                                                                                                   Old Boy
## 2138                                                                                                                                          Interpreter, The
## 2139                                                                                                                                          Corporation, The
## 2140                                                                                                                                         Scanner Darkly, A
## 2141                                                                                                                                       Million Dollar Baby
## 2142                                                                                                                                              Hotel Rwanda
## 2143                                                                                                                       Life Aquatic with Steve Zissou, The
## 2144                                                                                                                                              Aviator, The
## 2145                                                                                                                                          Meet the Fockers
## 2146                                                                                                                                                     Hitch
## 2147                                                                                                                                               Constantine
## 2148                                                                                                                                                  Sin City
## 2149                                                                                                                     Hitchhiker's Guide to the Galaxy, The
## 2150                                                                                                                      Enron: The Smartest Guys in the Room
## 2151                                                                                                                                                     Crash
## 2152                                                                                                              Star Wars: Episode III - Revenge of the Sith
## 2153                                                                                                                                          Mr. & Mrs. Smith
## 2154                                                                                                                                             Batman Begins
## 2155                                                                                                                                         War of the Worlds
## 2156                                                                                                          March of the Penguins (Marche de l'empereur, La)
## 2157                                                                                                                                            Fantastic Four
## 2158                                                                                                                                          Wedding Crashers
## 2159                                                                                                                                               Island, The
## 2160                                                                                                                                                   Stealth
## 2161                                                                                                                                                  Serenity
## 2162                                                                                                                                               Grizzly Man
## 2163                                                                                                                                   40-Year-Old Virgin, The
## 2164                                                                                                                                                   Red Eye
## 2165                                                                                                                                    Constant Gardener, The
## 2166                                                                                                                                               Lord of War
## 2167                                                                                                                                                 Aeon Flux
## 2168                                                                                                                                              Corpse Bride
## 2169                                                                                                                                                    Capote
## 2170                                                                                                                                       Kiss Kiss Bang Bang
## 2171                                                                                                                                  Squid and the Whale, The
## 2172                                                                                                                                Good Night, and Good Luck.
## 2173                                                                                                                                                   Syriana
## 2174                                                                                                                       Harry Potter and the Goblet of Fire
## 2175                                                                                                                                                    Munich
## 2176                                                                                                                                 District 13 (Banlieue 13)
## 2177                                                                                                                                         Failure to Launch
## 2178                                                                                                                                            V for Vendetta
## 2179                                                                                                                                     Thank You for Smoking
## 2180                                                                                                                                                Inside Man
## 2181                                                                                                              Lives of Others, The (Das leben der Anderen)
## 2182                                                                                                                      Youth of the Beast (Yaju no seishun)
## 2183                                                                                                                                       Lucky Number Slevin
## 2184                                                                                                                                                     Brick
## 2185                                                                                                                                This Film Is Not Yet Rated
## 2186                                                                                                                                   Mission: Impossible III
## 2187                                                                                                                                        Da Vinci Code, The
## 2188                                                                                                                                     X-Men: The Last Stand
## 2189                                                                                                                                                      Cars
## 2190                                                                                                                                               Nacho Libre
## 2191                                                                                                                                                     Click
## 2192                                                                                                                                    Devil Wears Prada, The
## 2193                                                                                                                Pirates of the Caribbean: Dead Man's Chest
## 2194                                                                                                                                                 Clerks II
## 2195                                                                                                                                    Inconvenient Truth, An
## 2196                                                                                                                                          Superman Returns
## 2197                                                                                                                                      Little Miss Sunshine
## 2198                                                                                                                                                     Babel
## 2199                                                                                                               Talladega Nights: The Ballad of Ricky Bobby
## 2200                                                                                                                                       Night at the Museum
## 2201                                                                                                                                     Stranger than Fiction
## 2202                                                                                                                                          Illusionist, The
## 2203                                                                                                                                                Jesus Camp
## 2204                                                                                                                                             Fountain, The
## 2205                                                                                                              Science of Sleep, The (La science des rêves)
## 2206                                                                       Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan
## 2207                                                                                                                 Pan's Labyrinth (Laberinto del fauno, El)
## 2208                                                                                                                                             Departed, The
## 2209                                                                                                                                           Children of Men
## 2210                                                                                                                                             Prestige, The
## 2211                                                                                                                                             Casino Royale
## 2212                                                                                                                                         Déjà Vu (Deja Vu)
## 2213                                                                                                                                              Holiday, The
## 2214                                                                                                                                           Cocaine Cowboys
## 2215                                                                                                                                               Ratatouille
## 2216                                                                                                                                                    Breach
## 2217                                                                                                                                                  Hot Fuzz
## 2218                                                                                                                                                    Zodiac
## 2219                                                                                                                                                       300
## 2220                                                                                                                                           Blades of Glory
## 2221                                                                                                                                                  Sunshine
## 2222                                                                                                                                                  Fracture
## 2223                                                                                                                                              Spider-Man 3
## 2224                                                                                                                                                Knocked Up
## 2225                                                                                                                                          Ocean's Thirteen
## 2226                                                                                                                 Fantastic Four: Rise of the Silver Surfer
## 2227                                                                                                                                                     Sicko
## 2228                                                                                                                                     Live Free or Die Hard
## 2229                                                                                                                                              Transformers
## 2230                                                                                                                 Harry Potter and the Order of the Phoenix
## 2231                                                                                                                                       Simpsons Movie, The
## 2232                                                                                                                                     Bourne Ultimatum, The
## 2233                                                                                                                        Tell No One (Ne le dis à personne)
## 2234                                                                                                                                                  Superbad
## 2235                                                                                                                                         King of Kong, The
## 2236                                                                                                                                             Into the Wild
## 2237                                                                                                                                   Darjeeling Limited, The
## 2238                                                                                                                                           Michael Clayton
## 2239                                                                                                                                                Persepolis
## 2240                                                                                                                                         American Gangster
## 2241                                                                                                                                    No Country for Old Men
## 2242                                                                                                                                            Be Kind Rewind
## 2243                                                                                                                                               I Am Legend
## 2244                                                                                                                                                      Juno
## 2245                                                                                                                                                 Helvetica
## 2246                                                                                                                        National Treasure: Book of Secrets
## 2247                                                                                                                                       There Will Be Blood
## 2248                                                                                                                                               Cloverfield
## 2249                                                                                                                               Hellboy II: The Golden Army
## 2250                                                                                                                                                 In Bruges
## 2251                                                                                                                                                    Jumper
## 2252                                                                                                                                             Bank Job, The
## 2253                                                                                                                                          Dark Knight, The
## 2254                                                                                                                                 Forgetting Sarah Marshall
## 2255                                                                                                                                                Religulous
## 2256                                                                                                                                                  Iron Man
## 2257                                                                                                                                                     Taken
## 2258                                                                                                                                                   Reprise
## 2259                                                                                                        Indiana Jones and the Kingdom of the Crystal Skull
## 2260                                                                                                                                             Kung Fu Panda
## 2261                                                                                                                             You Don't Mess with the Zohan
## 2262                                                                                                                                            Happening, The
## 2263                                                                                                                                      Incredible Hulk, The
## 2264                                                                                                                                                    WALL·E
## 2265                                                                                                                                                    Wanted
## 2266                                                                                                                                                   Hancock
## 2267                                                                                                                                                 Get Smart
## 2268                                                                                                                                            Up the Yangtze
## 2269                                                                                                                                                  Watchmen
## 2270                                                                                                                                               Man on Wire
## 2271                                                                                                                                         Pineapple Express
## 2272                                                                                                                                            Tropic Thunder
## 2273                                                                                                                                        Burn After Reading
## 2274                                                                                                                                          Onion Movie, The
## 2275                                                                                                                                              Body of Lies
## 2276                                                                                                                                Zack and Miri Make a Porno
## 2277                                                                                                                                      Synecdoche, New York
## 2278                                                                                                                                       Slumdog Millionaire
## 2279                                                                                                                                         Quantum of Solace
## 2280                                                                                                                                               Role Models
## 2281                                                                                                                                                      Bolt
## 2282                                                                                                                                               Frost/Nixon
## 2283                                                                                                                                             Wrestler, The
## 2284                                                                                                                      Curious Case of Benjamin Button, The
## 2285                                                                                                                           Timecrimes (Cronocrímenes, Los)
## 2286                                                                                                                                      Paul Blart: Mall Cop
## 2287                                                                                                                                                  Coraline
## 2288                                                                                                                                                 Chocolate
## 2289                                                                                                                               He's Just Not That Into You
## 2290                                                                                                                                              Mystery Team
## 2291                                                                                                                                                Away We Go
## 2292                                                                                                                            Dr. Horrible's Sing-Along Blog
## 2293                                                                                                                                           I Love You, Man
## 2294                                                                                                                                                 Duplicity
## 2295                                                                                                                                 Anvil! The Story of Anvil
## 2296                                                                                                                                             Adventureland
## 2297                                                                                                                                               In the Loop
## 2298                                                                                                                                      Inglourious Basterds
## 2299                                                                                                                                             State of Play
## 2300                                                                                                                                                      Moon
## 2301                                                                                                                                  X-Men Origins: Wolverine
## 2302                                                                                                                                Girlfriend Experience, The
## 2303                                                                                                                                                 Star Trek
## 2304                                                                                                                                      Terminator Salvation
## 2305                                                                                                            Night at the Museum: Battle of the Smithsonian
## 2306                                                                                                                                                        Up
## 2307                                                                                                                                             Hangover, The
## 2308                                                                                                                               Taking of Pelham 1 2 3, The
## 2309                                                                                                                                             Proposal, The
## 2310                                                                                                                                                  Year One
## 2311                                                                                                                                          Hurt Locker, The
## 2312                                                                                                                   Raiders of the Lost Ark: The Adaptation
## 2313                                                                                                                       Transformers: Revenge of the Fallen
## 2314                                                                                                                                                District 9
## 2315                                                                                                                                             Julie & Julia
## 2316                                                                                                                               G.I. Joe: The Rise of Cobra
## 2317                                                                                                                                                   G-Force
## 2318                                                                                                                                         It Might Get Loud
## 2319                                                                                                                                           Informant!, The
## 2320                                                                                                                         Cloudy with a Chance of Meatballs
## 2321                                                                                                                                                Food, Inc.
## 2322                                                                                                                                                 Cove, The
## 2323                                                                                                                                            Serious Man, A
## 2324                                                                                                                                                Zombieland
## 2325                                                                                                                                       Law Abiding Citizen
## 2326                                                                                                                                             Up in the Air
## 2327                                                                                                                                         Fantastic Mr. Fox
## 2328                                                                                                                                                      2012
## 2329                                                                                                                                                    Avatar
## 2330                                                                                                                                           Sherlock Holmes
## 2331                                                                                                                                  Prophet, A (Un Prophète)
## 2332                                                                                                                                            Shutter Island
## 2333                                                                                                                                             Shades of Ray
## 2334                                                                                                                                                Green Zone
## 2335                                                                                                                                      From Paris with Love
## 2336                                                                                                                                      Hot Tub Time Machine
## 2337                                                                                                                                  How to Train Your Dragon
## 2338                                                                                                                                                  Kick-Ass
## 2339                                                                                                                                                Date Night
## 2340                                                                                                                             Steam of Life (Miesten vuoro)
## 2341                                                                                                                                               Losers, The
## 2342                                                                                                                                Exit Through the Gift Shop
## 2343                                                                                                                                                Iron Man 2
## 2344                                                                                                                                      Get Him to the Greek
## 2345                                                                                                                                               A-Team, The
## 2346                                                                                                                                               Toy Story 3
## 2347                                                                                                                                             Winter's Bone
## 2348                                                                                                                                                 Predators
## 2349                                                                                                                                                 Inception
## 2350                                                                                                                                            Knight and Day
## 2351                                                                                                                                   Kids Are All Right, The
## 2352                                                                                                                                                      Salt
## 2353                                                                                                                                       Dinner for Schmucks
## 2354                                                                                                                                          Expendables, The
## 2355                                                                                                                               Scott Pilgrim vs. the World
## 2356                                                                                                                                             American, The
## 2357                                                                                                                                                   GasLand
## 2358                                                                                                                                       Social Network, The
## 2359                                                                                                                                                 Town, The
## 2360                                                                                                                                                   Catfish
## 2361                                                                                                                                                Inside Job
## 2362                                                                                                                                                  Restrepo
## 2363                                                                                                                                    Waiting for 'Superman'
## 2364                                                                                                                                                       Red
## 2365                                                                                                                                                Black Swan
## 2366                                                                                                                                               Unstoppable
## 2367                                                                                                              Harry Potter and the Deathly Hallows: Part 1
## 2368                                                                                                                                        King's Speech, The
## 2369                                                                                                                                                   Tangled
## 2370                                                                                                                                              Fighter, The
## 2371                                                                                                                                              Tron: Legacy
## 2372                                                                                                                                        Gulliver's Travels
## 2373                                                                                                                                          Made in Dagenham
## 2374                                                                                                                                                Waste Land
## 2375                                                                                                                                         Green Hornet, The
## 2376                                                                                                                                          Cowboys & Aliens
## 2377                                                                                                                                                 Marwencol
## 2378                                                                                                                                                 Limitless
## 2379                                                                                                                                       No Strings Attached
## 2380                                                                                                                                       Lincoln Lawyer, The
## 2381                                                                                                                                    Adjustment Bureau, The
## 2382                                                                                                                                               Source Code
## 2383                                                                                                                                                     Senna
## 2384                                                                                                                                                     Hanna
## 2385                                                                                                                                                      Thor
## 2386                                                                                                                   Fast Five (Fast and the Furious 5, The)
## 2387                                                                                                                                                 Incendies
## 2388                                                                                                                                               Bridesmaids
## 2389                                                                                                                                         Midnight in Paris
## 2390                                                                                                                                         Tree of Life, The
## 2391                                                                                                                                     Hangover Part II, The
## 2392                                                                                                                                           Kung Fu Panda 2
## 2393                                                                                                                                        X-Men: First Class
## 2394                                                                                                                                                 Beginners
## 2395                                                                                                                                                   Super 8
## 2396                                                                                                                                             Green Lantern
## 2397                                                                                                                                               Bad Teacher
## 2398                                                                                                                            Transformers: Dark of the Moon
## 2399                                                                                                                                           Horrible Bosses
## 2400                                                                                                                       Page One: Inside the New York Times
## 2401                                                                                                              Harry Potter and the Deathly Hallows: Part 2
## 2402                                                                                                                                                     Drive
## 2403                                                                                                                        Captain America: The First Avenger
## 2404                                                                                                                                      Crazy, Stupid, Love.
## 2405                                                                                                                                               Smurfs, The
## 2406                                                                                                                            Rise of the Planet of the Apes
## 2407                                                                                                                                          Conspirator, The
## 2408                                                                                                                                  Bill Cunningham New York
## 2409                                                                                                                                         Interrupters, The
## 2410                                                                                                                                                 Contagion
## 2411                                                                                                                                                 Moneyball
## 2412                                                                                                                                             Avengers, The
## 2413                                                                                                                                              Killer Elite
## 2414                                                                                                                                                Real Steel
## 2415                                                                                                                                                      Buck
## 2416                                                                                                                                                  Margaret
## 2417                                                                                                                                               Margin Call
## 2418                                                                                                                                                     Shame
## 2419                                                                                                                                 Headhunters (Hodejegerne)
## 2420                                                                                                                                          Batman: Year One
## 2421                                                                                                                                             Puss in Boots
## 2422                                                                                                                                 Adventures of Tintin, The
## 2423                                                                                                                                                      Hugo
## 2424                                                                                                                                                  Trespass
## 2425                                                                                                                                          The Hunger Games
## 2426                                                                                                                                              Clone (Womb)
## 2427                                                                                                                                    Dark Knight Rises, The
## 2428                                                                                                                                        Bourne Legacy, The
## 2429                                                                                                                        Sherlock Holmes: A Game of Shadows
## 2430                                                                                                                      Mission: Impossible - Ghost Protocol
## 2431                                                                                                                                           We Bought a Zoo
## 2432                                                                                                                          Girl with the Dragon Tattoo, The
## 2433                                                                                                                                                Contraband
## 2434                                                                                                                         Being Elmo: A Puppeteer's Journey
## 2435                                                                                                                                                 Chronicle
## 2436                                                                                                                                                Safe House
## 2437                                                                                                                                            This Means War
## 2438                                                                                                                                               John Carter
## 2439                                                                                                                                            21 Jump Street
## 2440                                                                                                                                      Jiro Dreams of Sushi
## 2441                                                                                                                         American Reunion (American Pie 4)
## 2442                                                                                                                                   Cabin in the Woods, The
## 2443                                                                                                                                             Mirror Mirror
## 2444                                                                                                                                                Battleship
## 2445                                                                                                                                              Dark Shadows
## 2446                                                                                                                                             Dictator, The
## 2447                                                                                                                     Men in Black III (M.III.B.) (M.I.B.³)
## 2448                                                                                                                               Snow White and the Huntsman
## 2449                                                                                                                             Pirates! Band of Misfits, The
## 2450                                                                                                                                                Prometheus
## 2451                                                                                                                                          Moonrise Kingdom
## 2452                                                                                                                        Madagascar 3: Europe's Most Wanted
## 2453                                                                                                                                                     Brave
## 2454                                                                                                                      What to Expect When You're Expecting
## 2455                                                                                                                                                    Presto
## 2456                                                                                                                                 Giant Mechanical Man, The
## 2457                                                                                                                                   Amazing Spider-Man, The
## 2458                                                                                                                               Beasts of the Southern Wild
## 2459                                                                                                                                              Total Recall
## 2460                                                                                                                                                   Skyfall
## 2461                                                                                                                                  Queen of Versailles, The
## 2462                                                                                                                                   Searching for Sugar Man
## 2463                                                                                                                                                    Looper
## 2464                                                                                                                                    Ai Weiwei: Never Sorry
## 2465                                                                                                                                                     Dredd
## 2466                                                                                                                                                      Argo
## 2467                                                                                                                                      House I Live In, The
## 2468                                                                                                                                             Imposter, The
## 2469                                                                                                                                            Wreck-It Ralph
## 2470                                                                                                                                                    Flight
## 2471                                                                                                                                                Life of Pi
## 2472                                                                                                                                     Indie Game: The Movie
## 2473                                                                                                                                                   Lincoln
## 2474                                                                                                                        Hobbit: An Unexpected Journey, The
## 2475                                                                                                                                          Zero Dark Thirty
## 2476                                                                                                                                               Warm Bodies
## 2477                                                                                                                                              Jack Reacher
## 2478                                                                                                                                          Django Unchained
## 2479                                                                                                                                           Misérables, Les
## 2480                                                                                                                                    Central Park Five, The
## 2481                                                                                                                                       Beware of Mr. Baker
## 2482                                                                                                                                    Beauty Is Embarrassing
## 2483                                                                                                                                                  Movie 43
## 2484                                                                                                                                             Call Me Kuchu
## 2485                                                                                                                                              Side Effects
## 2486                                                                                                                                     World Before Her, The
## 2487                                                                                                                                       Act of Killing, The
## 2488                                                                                                                                                  Room 237
## 2489                                                                                                                                           Before Midnight
## 2490                                                                                                                TPB AFK: The Pirate Bay Away from Keyboard
## 2491                                                                                                                                     G.I. Joe: Retaliation
## 2492                                                                                                                                 Oz the Great and Powerful
## 2493                                                                                                                                        Olympus Has Fallen
## 2494                                                                                                                                                  Oblivion
## 2495                                                                                                                                                        42
## 2496                                                                                                                                           This Is the End
## 2497                                                                                                                                                Iron Man 3
## 2498                                                                                                                                   Star Trek Into Darkness
## 2499                                                                                                                                                Frances Ha
## 2500                                                                                                                                               After Earth
## 2501                                                                                                                                            Now You See Me
## 2502                                                                                                                                              Man of Steel
## 2503                                                                                                                                               Pacific Rim
## 2504                                                                                                                                               World War Z
## 2505                                                                                                                                                   Elysium
## 2506                                                                                                                                                 Heat, The
## 2507                                                                                                                                                     Red 2
## 2508                                                                                                                                         We're the Millers
## 2509                                                                                                                                                Kick-Ass 2
## 2510                                                                                                                                                 Blackfish
## 2511                                                                                                                                                      Koch
## 2512                                                                                                                                                   Gravity
## 2513                                                                                                                                                 Prisoners
## 2514                                                                                                                                          Captain Phillips
## 2515                                                                                                                                      Thor: The Dark World
## 2516                                                                                                                                   Marc Maron: Thinky Pain
## 2517                                                                                                                                             Muscle Shoals
## 2518                                                                                                                      Hobbit: The Desolation of Smaug, The
## 2519                                                                                                                                  Wolf of Wall Street, The
## 2520                                                                                                                                           American Hustle
## 2521                                                                                                                                                       Her
## 2522                                                                                                                         Anchorman 2: The Legend Continues
## 2523                                                                                                                                               Snowpiercer
## 2524                                                                                                                                         I Know That Voice
## 2525                                                                                                                                 Jack Ryan: Shadow Recruit
## 2526                                                                                                                                                 Divergent
## 2527                                                                                                                                           I, Frankenstein
## 2528                                                                                                                                                     Enemy
## 2529                                                                                                                                            The Lego Movie
## 2530                                                                                                                                                   RoboCop
## 2531                                                                                                                                         Zero Theorem, The
## 2532                                                                                                                                 Grand Budapest Hotel, The
## 2533                                                                                                                                              Interstellar
## 2534                                                                                                                                    300: Rise of an Empire
## 2535                                                                                                                                            Particle Fever
## 2536                                                                                                                                            Under the Skin
## 2537                                                                                                                       Captain America: The Winter Soldier
## 2538                                                                                                                                                      Noah
## 2539                                                                                                                                  The Amazing Spider-Man 2
## 2540                                                                                                                                             Transcendence
## 2541                                                                                                                                          Other Woman, The
## 2542                                                                               Fragile Trust: Plagiarism, Power, and Jayson Blair at the New York Times, A
## 2543                                                                                                                                                      Lucy
## 2544                                                                                                                                X-Men: Days of Future Past
## 2545                                                                                                                                                  Godzilla
## 2546                                                                                                                                                      Chef
## 2547                                                                                                                                               Begin Again
## 2548                                                                                                                                          Edge of Tomorrow
## 2549                                                                                                                        Mission: Impossible - Rogue Nation
## 2550                                                                                                                                            22 Jump Street
## 2551                                                                                                                                            Equalizer, The
## 2552                                                                                                          Birdman: Or (The Unexpected Virtue of Ignorance)
## 2553                                                                                                                           Transformers: Age of Extinction
## 2554                                                                                                                                                  Whiplash
## 2555                                                                                                                                                 Gone Girl
## 2556                                                                                                                            Dawn of the Planet of the Apes
## 2557                                                                                                                                                  Sex Tape
## 2558                                                                                                                                   Guardians of the Galaxy
## 2559                                                                                                                                         A Most Wanted Man
## 2560                                                                                                                                         Jupiter Ascending
## 2561                                                                                                                              Teenage Mutant Ninja Turtles
## 2562                                                                                                                                                Giver, The
## 2563                                                                                                                                                 Coherence
## 2564                                                                                                                                          Maze Runner, The
## 2565                                                                                                                                      Look of Silence, The
## 2566                                                                                                                                                 John Wick
## 2567                                                                                                                                              Rewrite, The
## 2568                                                                                                                                              Nightcrawler
## 2569                                                                                                                                                Big Hero 6
## 2570                                                                                                                                                Ex Machina
## 2571                                                                                                                                                Foxcatcher
## 2572                                                                                                                                        The Imitation Game
## 2573                                                                                                                                             Inherent Vice
## 2574                                                                                                                     The Hunger Games: Mockingjay - Part 1
## 2575                                                                                                                                                Wild Tales
## 2576                                                                                                                                  The Theory of Everything
## 2577                                                                                                                                            Jurassic World
## 2578                                                                                                                                               Citizenfour
## 2579                                                                                                                 The Hobbit: The Battle of the Five Armies
## 2580                                                                                                                                             The Interview
## 2581                                                                                                                              Kingsman: The Secret Service
## 2582                                                                                                                                                   Chappie
## 2583                                                                                                                                        Terminator Genisys
## 2584                                                                                                                                                  Red Army
## 2585                                                                                                                                                It Follows
## 2586                                                                                                                                        Mad Max: Fury Road
## 2587                                                                                                                Star Wars: Episode VII - The Force Awakens
## 2588                                                                                                                                                  Warcraft
## 2589                                                                                                                                   Avengers: Age of Ultron
## 2590                                                                                                                                                   Ant-Man
## 2591                                                                                                                                            Fantastic Four
## 2592                                                                                                                                                  Deadpool
## 2593                                                                                                                                Captain America: Civil War
## 2594                                                                                                                                         X-Men: Apocalypse
## 2595                                                                                                                                                True Story
## 2596                                                                                                                                         The Hateful Eight
## 2597                                                                                                                                             Run All Night
## 2598                                                                                                                                         While We're Young
## 2599                                                                                                                                                 Insurgent
## 2600                                                                                                                                          Midnight Special
## 2601                                                                                                                                                 Furious 7
## 2602                                                                                                                                                  Get Hard
## 2603                                                                                                                                              Tomorrowland
## 2604                                                                                                                                        The Age of Adaline
## 2605                                                                                                                                               San Andreas
## 2606                                                                                                                                Far from the Madding Crowd
## 2607                                                                                                                                               The Martian
## 2608                                                                                                                                                       Spy
## 2609                                                                                                                                                Trainwreck
## 2610                                                                                                                                                Inside Out
## 2611                                                                                                                     The Hunger Games: Mockingjay - Part 2
## 2612                                                                                                                                   The Secret Life of Pets
## 2613                                                                                                                              Independence Day: Resurgence
## 2614                                                                                                                                               Star Trek 3
## 2615                                                                                                                                                   Spectre
## 2616                                                                                                                                                Steve Jobs
## 2617                                                                                                                        Batman v Superman: Dawn of Justice
## 2618                                                                                                                                                       Amy
## 2619                                                                                                                                           The Jungle Book
## 2620                                                                                                                                   The Man from U.N.C.L.E.
## 2621                                                                                                                                              The Revenant
## 2622                                                                                                                                                   Sicario
## 2623                                                                                                                                           Best of Enemies
## 2624                                                                                                                                                 Anomalisa
## 2625                                                                                                                                                The Intern
## 2626                                                                                                                                                      Room
## 2627                                                                                                                                                 The Witch
## 2628                                                                                                                                            American Ultra
## 2629                                                                                                                                                       Joy
## 2630                                                                                                                                                 Spotlight
## 2631                                                                                                                                            Pawn Sacrifice
## 2632                                                                                                                                           Bridge of Spies
## 2633                                                                                                                                                Concussion
## 2634                                                                                                                                        Peanuts Movie, The
## 2635                                                                                                                                                     Creed
## 2636                                                                                                                                            Big Short, The
## 2637                                                                                                                                              Daddy's Home
## 2638                                                                                                                                                   Sisters
## 2639                                                                                                                                           Kung Fu Panda 3
## 2640                                                                                                                                               Miles Ahead
## 2641                                                                                                                                       10 Cloverfield Lane
## 2642                                                                                                                                         London Has Fallen
## 2643                                                                                                                                                  Zootopia
## 2644                                                                                                                                                     Keanu
## 2645                                                                                                                                 The Huntsman Winter's War
## 2646                                                                                                                              Neighbors 2: Sorority Rising
## 2647                                                                                                                                             Money Monster
## 2648                                                                                                                                              Finding Dory
## 2649                                                                                                                                              Mother's Day
## 2650                                                                                                                                             The Nice Guys
## 2651                                                                                                                                              The Shallows
## 2652                                                                                                                                          Now You See Me 2
## 2653                                                                                                          Teenage Mutant Ninja Turtles: Out of the Shadows
## 2654                                                                                                                        Popstar: Never Stop Never Stopping
## 2655                                                                                                                                           The Conjuring 2
## 2656                                                                                                                                   Approaching the Unknown
## 2657                                                                                                                                              Ghostbusters
## 2658                                                                                                                                      Central Intelligence
## 2659                                                                                                                                      The Legend of Tarzan
## 2660                                                                                                                                  The Purge: Election Year
## 2661                                                                                                                            Mike & Dave Need Wedding Dates
## 2662                                                                                                                                                 Sunspring
## 2663                                                                                                                                       Usual Suspects, The
## 2664                                                                                                                                 Shawshank Redemption, The
## 2665                                                                                                                               What's Eating Gilbert Grape
## 2666                                                                                                                                          Schindler's List
## 2667                                                                                      Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb
## 2668                                                                                                                                                   Gattaca
## 2669                                                                                                                                         Good Will Hunting
## 2670                                                                                                                                                  Rain Man
## 2671                                                                                                                               Back to the Future Part III
## 2672                                                                                                                                                     Ronin
## 2673                                                                                                                                              Analyze This
## 2674                                                                                                                                              American Pie
## 2675                                                                                                                                                       Big
## 2676                                                                                                                                           American Beauty
## 2677                                                                                                                                    Mission: Impossible II
## 2678                                                                                                                                                  Chocolat
## 2679                                                                                                                                          Someone Like You
## 2680                                                                                                                                     Bridget Jones's Diary
## 2681                                                                                                                                            American Pie 2
## 2682                                                                                                                                           Happy Accidents
## 2683                                                                                                                                               Dinner Rush
## 2684                                                                                                                                               Serendipity
## 2685                                                                                                                                         Beautiful Mind, A
## 2686                                                                                                                                                Spider-Man
## 2687                                                                                                                                           Minority Report
## 2688                                                                                                                              City of God (Cidade de Deus)
## 2689                                                                                                                                       Lost in Translation
## 2690                                                                                                                                         Kill Bill: Vol. 1
## 2691                                                                                                                                       Girl Next Door, The
## 2692                                                                                                                                                      Heat
## 2693                                                                                                                                         Leaving Las Vegas
## 2694                                                                                                  City of Lost Children, The (Cité des enfants perdus, La)
## 2695                                                                                                                        Twelve Monkeys (a.k.a. 12 Monkeys)
## 2696                                                                                                                                          Dead Man Walking
## 2697                                                                                                                                      Seven (a.k.a. Se7en)
## 2698                                                                                                                                       Usual Suspects, The
## 2699                                                                                                                                               Taxi Driver
## 2700                                                                                                                                                   Hackers
## 2701                                                                                                                                           Johnny Mnemonic
## 2702                                                                                                                                                  Net, The
## 2703                                                                                                                                                     Smoke
## 2704                                                                                                                                              Strange Days
## 2705                                                                                                                                                    Clerks
## 2706                                                                                                                                                   Ed Wood
## 2707                                                                                                                                        Heavenly Creatures
## 2708                                                                                                                        Star Wars: Episode IV - A New Hope
## 2709                                                                                                                                      Natural Born Killers
## 2710                                                                                                   Léon: The Professional (a.k.a. The Professional) (Léon)
## 2711                                                                                                                                              Pulp Fiction
## 2712                                                                                                                 Three Colors: Blue (Trois couleurs: Bleu)
## 2713                                                                                                                                 Shawshank Redemption, The
## 2714                                                                                                                                     Bullets Over Broadway
## 2715                                                                                                                                              Forrest Gump
## 2716                                                                                                                                                     Speed
## 2717                                                                                                                                             Carlito's Way
## 2718                                                                                                                                             Jurassic Park
## 2719                                                                                                                                               Killing Zoe
## 2720                                                                                                                                  Manhattan Murder Mystery
## 2721                                                                                                                                          Schindler's List
## 2722                                                                                                                                              Blade Runner
## 2723                                                                                                                                              True Romance
## 2724                                                                                                                                        Dances with Wolves
## 2725                                                                                                                                 Silence of the Lambs, The
## 2726                                                                                                                                                     Fargo
## 2727                                                                                            Alphaville (Alphaville, une étrange aventure de Lemmy Caution)
## 2728                                                                                                                                                  Dead Man
## 2729                                                                                                                                                   Twister
## 2730                                                                                                                                             Trainspotting
## 2731                                                                                                                                            Godfather, The
## 2732                                                                                                                                                     Bound
## 2733                                                                                                                                                   Vertigo
## 2734                                                                                                                                               Rear Window
## 2735                                                                                                                                        North by Northwest
## 2736                                                                                                                                          Some Like It Hot
## 2737                                                                                                                                                Casablanca
## 2738                                                                                                                                       Maltese Falcon, The
## 2739                                                                                                                    Sunset Blvd. (a.k.a. Sunset Boulevard)
## 2740                                                                                                                                              Citizen Kane
## 2741                                                                                                                                     2001: A Space Odyssey
## 2742                                                                                                                                                   Rebecca
## 2743                                                                                                                                                 Notorious
## 2744                                                                                                                                                Spellbound
## 2745                                                                                                                                                     Laura
## 2746                                                                                                                                             39 Steps, The
## 2747                                                                                                                                                  Die Hard
## 2748                                                                                                                                                   Sleeper
## 2749                                                                                                                                      Fish Called Wanda, A
## 2750                                                                                                                                            Reservoir Dogs
## 2751                                                                                                                                            Basic Instinct
## 2752                                                                                                                                       Glengarry Glen Ross
## 2753                                                                                                                                 Streetcar Named Desire, A
## 2754                                                                                                                           Monty Python and the Holy Grail
## 2755                                                                                                                  Cook the Thief His Wife & Her Lover, The
## 2756                                                                                                                                              Delicatessen
## 2757                                                                                                                           One Flew Over the Cuckoo's Nest
## 2758                                                                                                                                                    Brazil
## 2759                                                                                                                                       Clockwork Orange, A
## 2760                                                                                                                Star Wars: Episode VI - Return of the Jedi
## 2761                                                                                                                                            Third Man, The
## 2762                                                                                                                                                Goodfellas
## 2763                                                                                                                        Killer, The (Die xue shuang xiong)
## 2764                                                                                                                                       Blues Brothers, The
## 2765                                                                                                                                   Godfather: Part II, The
## 2766                                                                                                                                                Annie Hall
## 2767                                                                                                                                                   Stalker
## 2768                                                                                                                                          Harold and Maude
## 2769                                                                                                                  Seventh Seal, The (Sjunde inseglet, Det)
## 2770                                                                                                                                           Terminator, The
## 2771                                                                                                                                    Dead Alive (Braindead)
## 2772                                                                                                                                                 Manhattan
## 2773                                                                                                                                         Miller's Crossing
## 2774                                                                                                                                        Dead Poets Society
## 2775                                                                                                                                             Touch of Evil
## 2776                                                                                                                                 Femme Nikita, La (Nikita)
## 2777                                                                                                                                                8 1/2 (8½)
## 2778                                                                                                                                                 Chinatown
## 2779                                                                                                                                                 Bad Taste
## 2780                                                                                                                                              Shining, The
## 2781                                                                                                                                          Deer Hunter, The
## 2782                                                                                                                                             Groundhog Day
## 2783                                                                                                                                 Manchurian Candidate, The
## 2784                                                                                                                                        Back to the Future
## 2785                                                                                                                                      Pink Floyd: The Wall
## 2786                                                                                                                                                Birds, The
## 2787                                                                                                         Nosferatu (Nosferatu, eine Symphonie des Grauens)
## 2788                                                                                                                                                  Sneakers
## 2789                                                                                                                                                    Hamlet
## 2790                                                                                                                                              Lost Highway
## 2791                                                                                                                                             Donnie Brasco
## 2792                                                                                                               Austin Powers: International Man of Mystery
## 2793                                                                                                                                    Tetsuo II: Body Hammer
## 2794                                                                                                                                 Men in Black (a.k.a. MIB)
## 2795                                                                                                                                         Conspiracy Theory
## 2796                                                                                                                                         L.A. Confidential
## 2797                                                                                                                                                 Game, The
## 2798                                                                                                                                                    U Turn
## 2799                                                                                                                                      The Devil's Advocate
## 2800                                                                                                                                                   Gattaca
## 2801                                                                                                                                             Boogie Nights
## 2802                                                                                                                                                   Witness
## 2803                                                                                                                                         Good Will Hunting
## 2804                                                                                                                                                   Titanic
## 2805                                                                                                                                              Jackie Brown
## 2806                                                                                                                                         Big Lebowski, The
## 2807                                                                                                                                                 Dark City
## 2808                                                                                                                                       Fireworks (Hana-bi)
## 2809                                                                                                                                     Spanish Prisoner, The
## 2810                                                                                                                            Fear and Loathing in Las Vegas
## 2811                                                                                                                                                        Pi
## 2812                                                                                                                              There's Something About Mary
## 2813                                                                                                                                             Exorcist, The
## 2814                                                                                                                                                Metropolis
## 2815                                                                                                                                Back to the Future Part II
## 2816                                                                                                                               Back to the Future Part III
## 2817                                                                                                                                                      Dune
## 2818                                                                                                                                  Godfather: Part III, The
## 2819                                                                                                                                       Saving Private Ryan
## 2820                                                                                                                                           Out of the Past
## 2821                                                                                                                                            Doctor Zhivago
## 2822                                                                                                                                               Blue Velvet
## 2823                                                                                                                                 Dead Men Don't Wear Plaid
## 2824                                                                                                                               1984 (Nineteen Eighty-Four)
## 2825                                                                                                                                            Dead Zone, The
## 2826                                                                                                                        Henry: Portrait of a Serial Killer
## 2827                                                                                                                                           Rosemary's Baby
## 2828                                                                                                                                                     Blade
## 2829                                                                                                                                                  Saboteur
## 2830                                                                                                                                                      Cube
## 2831                                                                                                                                                     Ronin
## 2832                                                                                                                       Life Is Beautiful (La Vita è bella)
## 2833                                                                                                                                        American History X
## 2834                                                                                                                                        Enemy of the State
## 2835                                                                                                                                       Shakespeare in Love
## 2836                                                                                                                                                  Fly, The
## 2837                                                                                                                Name of the Rose, The (Name der Rose, Der)
## 2838                                                                                                                                                   Payback
## 2839                                                                                                                                              Office Space
## 2840                                                                                                                                              Analyze This
## 2841                                                                                                                                              Dead Ringers
## 2842                                                                                                                                               Matrix, The
## 2843                                                                                                                                                 Following
## 2844                                                                                                                            Open Your Eyes (Abre los ojos)
## 2845                                                                                                                                                  eXistenZ
## 2846                                                                                                                                                Idle Hands
## 2847                                                                                                                            Rocky Horror Picture Show, The
## 2848                                                                                                                                     Thirteenth Floor, The
## 2849                                                                                                                                   Buena Vista Social Club
## 2850                                                                                                                     Austin Powers: The Spy Who Shagged Me
## 2851                                                                                                                                 Run Lola Run (Lola rennt)
## 2852                                                                                                                                            Arlington Road
## 2853                                                                                                                                  Blair Witch Project, The
## 2854                                                                                                                                            Eyes Wide Shut
## 2855                                                                                                                                              Killing, The
## 2856                                                                                                                                          Sixth Sense, The
## 2857                                                                                                                                                 Airplane!
## 2858                                                                                                                                           American Beauty
## 2859                                                                                                                                            New Rose Hotel
## 2860                                                                                                                                              Total Recall
## 2861                                                                                                                                  Ferris Bueller's Day Off
## 2862                                                                                                                                       Sydney (Hard Eight)
## 2863                                                                                                                                                Fight Club
## 2864                                                                                                                                   Crimes and Misdemeanors
## 2865                                                                                                                                      Being John Malkovich
## 2866                                                                                                                                               Re-Animator
## 2867                                                                                                                       Grand Illusion (La grande illusion)
## 2868                                                                                                                                           Green Mile, The
## 2869                                                                                                                                                  Magnolia
## 2870                                                                                                                                             Wayne's World
## 2871                                                                                                                             Twin Peaks: Fire Walk with Me
## 2872                                                                                                                                              Mariachi, El
## 2873                                                                                                                         Ghost Dog: The Way of the Samurai
## 2874                                                                                                                                                       JFK
## 2875                                                                                                                                           Erin Brockovich
## 2876                                                                                                                                          Double Indemnity
## 2877                                                                                                                                            Jacob's Ladder
## 2878                                                                                                                                        Solaris (Solyaris)
## 2879                                                                                                                                                   Network
## 2880                                                                                                                                           American Psycho
## 2881                                                                                                                                                 Gladiator
## 2882                                                                                                                                                    Hamlet
## 2883                                                                                                                                                Eraserhead
## 2884                                                                                                                                         Conversation, The
## 2885                                                                                                                                                   Serpico
## 2886                                                                                                                                       Battleship Potemkin
## 2887                                                                                                                                               Scary Movie
## 2888                                                                                                                                          Blow-Up (Blowup)
## 2889                                                                                                                                                 Cell, The
## 2890                                                                                                                                       Requiem for a Dream
## 2891                                                                                                                                          Charlie's Angels
## 2892                                                                                                                                               Unbreakable
## 2893                                                                                                          Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 2894                                                                                                                                O Brother, Where Art Thou?
## 2895                                                                                                                                                   Traffic
## 2896                                                                                                                                            House of Games
## 2897                                                                                                                                                 Manhunter
## 2898                                                                                                                                                   Memento
## 2899                                                                                                                                                      Blow
## 2900                                                                                                                                     Bridget Jones's Diary
## 2901                                                                                                                                                  Scarface
## 2902                                                                                                                                                     Shrek
## 2903                                                                                                                                                     Faust
## 2904                                                                                                                                                  Suspiria
## 2905                                                                                                                                Vanishing, The (Spoorloos)
## 2906                                                                                                                              Tetsuo, the Ironman (Tetsuo)
## 2907                                                                                                                                                      Cure
## 2908                                                                                                                                                 Session 9
## 2909                                                                                                                                          Mulholland Drive
## 2910                                                                                                                                              Donnie Darko
## 2911                                                                                                                                            Monsters, Inc.
## 2912                                                                   Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 2913                                                                                                                            Breathless (À bout de souffle)
## 2914                                                                                                                                            Ocean's Eleven
## 2915                                                                                                             Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 2916                                                                                                                                               Vanilla Sky
## 2917                                                                                                        Lord of the Rings: The Fellowship of the Ring, The
## 2918                                                                                                                                         Beautiful Mind, A
## 2919                                                                                                                                            Monster's Ball
## 2920                                                                                                                                             Big Heat, The
## 2921                                                                                                                                                Brainstorm
## 2922                                                                                                                                     M*A*S*H (a.k.a. MASH)
## 2923                                                                                                                                                   Seconds
## 2924                                                                                                                                                Metropolis
## 2925                                                                                                                                            Don't Look Now
## 2926                                                                                                                                                   Scratch
## 2927                                                                                                                                                  Blade II
## 2928                                                                                                                                                Panic Room
## 2929                                                                                                                                  My Big Fat Greek Wedding
## 2930                                                                                                                                                    Enigma
## 2931                                                                                                                                                Spider-Man
## 2932                                                                                                                                                  Insomnia
## 2933                                                                                                                                      Bourne Identity, The
## 2934                                                                                                                                           Minority Report
## 2935                                                                                                                                         Road to Perdition
## 2936                                                                                                                                                     Signs
## 2937                                                                                                                                          Transporter, The
## 2938                                                                                                                          Das Experiment (Experiment, The)
## 2939                                                                                                                                                Red Dragon
## 2940                                                                                                                                     Bowling for Columbine
## 2941                                                                                                                                                 Ring, The
## 2942                                                                                                                             Russian Ark (Russkiy Kovcheg)
## 2943                                                                                                                      Professional, The (Le professionnel)
## 2944                                                                                                                                              Femme Fatale
## 2945                                                                                                                                                  Scanners
## 2946                                                                                                                                                     Thief
## 2947                                                                                                                                                   Solaris
## 2948                                                                                                                                       Last Seduction, The
## 2949                                                                                                                                               Equilibrium
## 2950                                                                                                                                          Intact (Intacto)
## 2951                                                                                                                    Lord of the Rings: The Two Towers, The
## 2952                                                                                                                              City of God (Cidade de Deus)
## 2953                                                                                                                                              Recruit, The
## 2954                                                                                                                                                   Tenebre
## 2955                                                                                                                                                    Spider
## 2956                                                                                                                               Irreversible (Irréversible)
## 2957                                                                                                                                              Ringu (Ring)
## 2958                                                                                                                                               Phone Booth
## 2959                                                                                                                                          Anger Management
## 2960                                                                                                                                          Bulletproof Monk
## 2961                                                                                                                                                Confidence
## 2962                                                                                                                                                  Identity
## 2963                                                                                                                                      Matrix Reloaded, The
## 2964                                                                                                                                          Italian Job, The
## 2965                                                                                                            2 Fast 2 Furious (Fast and the Furious 2, The)
## 2966                                                                                                                                               Whale Rider
## 2967                                                                                                                                             28 Days Later
## 2968                                                                                                                           Charlie's Angels: Full Throttle
## 2969                                                                                                                               Tenant, The (Locataire, Le)
## 2970                                                                                                                                             Swimming Pool
## 2971                                                                                                                                    What's Up, Tiger Lily?
## 2972                                                                                                                            Tokyo Story (Tôkyô monogatari)
## 2973                                                                             Discreet Charm of the Bourgeoisie, The (Charme discret de la bourgeoisie, Le)
## 2974                                                                                                                                            Matchstick Men
## 2975                                                                                                                                       Lost in Translation
## 2976                                                                                                                                                Demonlover
## 2977                                                                                                                                                Videodrome
## 2978                                                                                                                                     Judgment at Nuremberg
## 2979                                                                                                                                                    Avalon
## 2980                                                                                                                         Knife in the Water (Nóz w wodzie)
## 2981                                                                                                                                         Kill Bill: Vol. 1
## 2982                                                                                                                                         Europa (Zentropa)
## 2983                                                                                                                                               Funny Games
## 2984                                                                                                                                                  WarGames
## 2985                                                                                             Cabinet of Dr. Caligari, The (Cabinet des Dr. Caligari., Das)
## 2986                                                                                                                                    Hannah and Her Sisters
## 2987                                                                                                                                                     Kafka
## 2988                                                                                                                                  Night of the Hunter, The
## 2989                                                                                                                           Battle Royale (Batoru rowaiaru)
## 2990                                                                                                                                             Wild at Heart
## 2991                                                                                                     Last Year at Marienbad (L'Année dernière à Marienbad)
## 2992                                                                                                                  Macbeth (a.k.a. Tragedy of Macbeth, The)
## 2993                                                                                                                                        Play It Again, Sam
## 2994                                                                                                                                         Hero (Ying xiong)
## 2995                                                                                                                                 Deep Red (Profondo rosso)
## 2996                                                                                                                              Diabolique (Les diaboliques)
## 2997                                                                                                                                               Naked Lunch
## 2998                                                                                                            Shoot the Piano Player (Tirez sur le pianiste)
## 2999                                                                                                            Lord of the Rings: The Return of the King, The
## 3000                                                                                                                                                  Paycheck
## 3001                                                                                                                                                    D.O.A.
## 3002                                                                                                                                      The Butterfly Effect
## 3003                                                                                                                     Eternal Sunshine of the Spotless Mind
## 3004                                                                                                                                                  Dogville
## 3005                                                                                                                                         Kill Bill: Vol. 2
## 3006                                                                                                                                               Man on Fire
## 3007                                                                                                                                Samouraï, Le (Godson, The)
## 3008                                                                                                               Wages of Fear, The (Salaire de la peur, Le)
## 3009                                                                                                                           Postman Always Rings Twice, The
## 3010                                                                                                                           Zorba the Greek (Alexis Zorbas)
## 3011                                                                                                                                        Parallax View, The
## 3012                                                                                                                                                    Cypher
## 3013                                                                                                                           Infernal Affairs (Mou gaan dou)
## 3014                                                                                                               Tale of Two Sisters, A (Janghwa, Hongryeon)
## 3015                                                                                                                                           Death Race 2000
## 3016                                                                                                                            Avventura, L' (Adventure, The)
## 3017                                                                                                             Maltese Falcon, The (a.k.a. Dangerous Female)
## 3018                                                                                                                                                   Shrek 2
## 3019                                                                                                                 Blind Swordsman: Zatoichi, The (Zatôichi)
## 3020                                                                                                                                                 Jetée, La
## 3021                                                                                                                                   Angels with Dirty Faces
## 3022                                                                                                         Exterminating Angel, The (Ángel exterminador, El)
## 3023                                                                                                                                           Fahrenheit 9/11
## 3024                                                                                                                                                  I, Robot
## 3025                                                                                                                                     Bourne Supremacy, The
## 3026                                                                                                                                       Slaughterhouse-Five
## 3027                                                                                                                                 Manchurian Candidate, The
## 3028                                                                                                                                              Village, The
## 3029                                                                                                                                                Collateral
## 3030                                                                                                                     Sky Captain and the World of Tomorrow
## 3031                                                                                                                                         Shaun of the Dead
## 3032                                                                                                                                                    Primer
## 3033                                                                                                                             Fearless Vampire Killers, The
## 3034                                                                                                                                             The Machinist
## 3035                                                                                                                                                       Saw
## 3036                                                                                                                                                       Ray
## 3037                                                                                                                         Bad Education (La mala educación)
## 3038                                                                                                                 House of Flying Daggers (Shi mian mai fu)
## 3039                                                                                                                                                      2046
## 3040                                                                                                                                        Audition (Ôdishon)
## 3041                                                                                                                            Suicide Club (Jisatsu saakuru)
## 3042                                                                                                 Very Long Engagement, A (Un long dimanche de fiançailles)
## 3043                                                                                                                                                   Old Boy
## 3044                                                                                                                                               Jacket, The
## 3045                                                                                                                             Return, The (Vozvrashcheniye)
## 3046                                                                                                                                 Downfall (Untergang, Der)
## 3047                                                                                                                                  Kung Fu Hustle (Gong fu)
## 3048                                                                                                                                        Control (Kontroll)
## 3049                                                                                                                                                  Sin City
## 3050                                                                                                                     Hitchhiker's Guide to the Galaxy, The
## 3051                                                                                                                                                Madagascar
## 3052                                                                                                        High Tension (Haute tension) (Switchblade Romance)
## 3053                                                                                                                                         War of the Worlds
## 3054                                                                                                                                            Broken Flowers
## 3055                                                                                                                               Father of the Bride Part II
## 3056                                                                                                                                                      Heat
## 3057                                                                                                                                                   Sabrina
## 3058                                                                                                                                              Sudden Death
## 3059                                                                                                                                                     Nixon
## 3060                                                                                                                                     Sense and Sensibility
## 3061                                                                                                                                                Four Rooms
## 3062                                                                                                                                         Leaving Las Vegas
## 3063                                                                                                                        Twelve Monkeys (a.k.a. 12 Monkeys)
## 3064                                                                                                                                          Dead Man Walking
## 3065                                                                                                                                          Mighty Aphrodite
## 3066                                                                                                                                        Mr. Holland's Opus
## 3067                                                                                                                                              Bed of Roses
## 3068                                                                                                                                                 Screamers
## 3069                                                                                                                                                Juror, The
## 3070                                                                                                                   Things to Do in Denver When You're Dead
## 3071                                                                                                                                        Angels and Insects
## 3072                                                                                                                                              White Squall
## 3073                                                                                                                                               Mary Reilly
## 3074                                                                                                                                              Broken Arrow
## 3075                                                                                                                                                 City Hall
## 3076                                                                                                                                     Up Close and Personal
## 3077                                                                                                                                             Birdcage, The
## 3078                                                                                                                        Star Wars: Episode IV - A New Hope
## 3079                                                                                                                                           River Wild, The
## 3080                                                                                                                                        Executive Decision
## 3081                                                                                                                                                     Fargo
## 3082                                                                                                                                               Primal Fear
## 3083                                                                                                                                                Diabolique
## 3084                                                                                                                                       Mission: Impossible
## 3085                                                                                                                                               Dragonheart
## 3086                                                                                                                                          Mulholland Falls
## 3087                                                                                                                              Truth About Cats & Dogs, The
## 3088                                                                                                                                              Multiplicity
## 3089                                                                                                                                                 Rock, The
## 3090                                                                                                                                                   Twister
## 3091                                                                                                                                                  Spy Hard
## 3092                                                                                                                                              Arrival, The
## 3093                                                                                                                                                Striptease
## 3094                                                                                                                                                      Jack
## 3095                                                                                                                             Independence Day (a.k.a. ID4)
## 3096                                                                                                                                                   Kingpin
## 3097                                                                                                                                                    Eraser
## 3098                                                                                                                                      Nutty Professor, The
## 3099                                                                                                                                                Phenomenon
## 3100                                                                                                                                           Time to Kill, A
## 3101                                                                                                                                      Very Brady Sequel, A
## 3102                                                                                                                                                    Ransom
## 3103                                                                                                                                          Escape from L.A.
## 3104                                                                                                                                                   Tin Cup
## 3105                                                                                                                                 Island of Dr. Moreau, The
## 3106                                                                                                                                                 Toy Story
## 3107                                                                                                                                                   Jumanji
## 3108                                                                                                                                          Grumpier Old Men
## 3109                                                                                                                                         Waiting to Exhale
## 3110                                                                                                                                                      Heat
## 3111                                                                                                                                                   Sabrina
## 3112                                                                                                                                              Sudden Death
## 3113                                                                                                                                                 GoldenEye
## 3114                                                                                                                                   American President, The
## 3115                                                                                                                                                     Nixon
## 3116                                                                                                                                                    Casino
## 3117                                                                                                                                                Get Shorty
## 3118                                                                                                                                                   Copycat
## 3119                                                                                                                                                 Assassins
## 3120                                                                                                                                         Leaving Las Vegas
## 3121                                                                                                  City of Lost Children, The (Cité des enfants perdus, La)
## 3122                                                                                                                        Twelve Monkeys (a.k.a. 12 Monkeys)
## 3123                                                                                                                                                      Babe
## 3124                                                                                                                                                Carrington
## 3125                                                                                                                                          Dead Man Walking
## 3126                                                                                                                                                  Clueless
## 3127                                                                                                                                           Dead Presidents
## 3128                                                                                                                                                To Die For
## 3129                                                                                                                                      Seven (a.k.a. Se7en)
## 3130                                                                                                                                                Pocahontas
## 3131                                                                                                                                       Usual Suspects, The
## 3132                                                                                                                                          Mighty Aphrodite
## 3133                                                                                                                                     Home for the Holidays
## 3134                                                                                                                                Postman, The (Postino, Il)
## 3135                                                                                  Don't Be a Menace to South Central While Drinking Your Juice in the Hood
## 3136                                                                                                                                             Two if by Sea
## 3137                                                                                                                                       From Dusk Till Dawn
## 3138                                                                                                                                              Bed of Roses
## 3139                                                                                                                                              Nick of Time
## 3140                                                                                                                                           Beautiful Girls
## 3141                                                                                                                                              Broken Arrow
## 3142                                                                                                                                          Hate (Haine, La)
## 3143                                                                                                                                             Bottle Rocket
## 3144                                                                                                                            Bridges of Madison County, The
## 3145                                                                                                                                                Braveheart
## 3146                                                                                                                                               Taxi Driver
## 3147                                                                                                                       Rumble in the Bronx (Hont faan kui)
## 3148                                                                                                                                                 Boomerang
## 3149                                                                                                                                    Flirting With Disaster
## 3150                                                                                                                                             Birdcage, The
## 3151                                                                                                                                                  Bad Boys
## 3152                                                                                                                                                 Apollo 13
## 3153                                                                                                                                            Batman Forever
## 3154                                                                                                                         Beauty of the Day (Belle de jour)
## 3155                                                                                                                                                  Clockers
## 3156                                                                                                                                                     Congo
## 3157                                                                                                                                                     Crumb
## 3158                                                                                                                                Die Hard: With a Vengeance
## 3159                                                                                                                                      Doom Generation, The
## 3160                                                                                                                                           Johnny Mnemonic
## 3161                                                                                                                                        Living in Oblivion
## 3162                                                                                                                                         Lord of Illusions
## 3163                                                                                                                                                  Mad Love
## 3164                                                                                                                                                  Mallrats
## 3165                                                                                                                                                     Smoke
## 3166                                                                                                                                                   Species
## 3167                                                                                                                                              Strange Days
## 3168                                                                                                                                             Total Eclipse
## 3169                                                                                                                                                  Unzipped
## 3170                                                                                                                                                Waterworld
## 3171                                                                                                                                        White Man's Burden
## 3172                                                                                                                                            Before Sunrise
## 3173                                                                                                                                                    Clerks
## 3174                                                                                                                                      Death and the Maiden
## 3175                                                                                                                                         Dolores Claiborne
## 3176                                                                                                                           Dumb & Dumber (Dumb and Dumber)
## 3177                                                                                                                                                   Ed Wood
## 3178                                                                                                                                               Hoop Dreams
## 3179                                                                                                                                        Heavenly Creatures
## 3180                                                                                                                                          Immortal Beloved
## 3181                                                                                                        Interview with the Vampire: The Vampire Chronicles
## 3182                                                                                                                        Star Wars: Episode IV - A New Hope
## 3183                                                                                                                                              Little Women
## 3184                                                                                                                                        Little Princess, A
## 3185                                                                                                                                       Legends of the Fall
## 3186                                                                                                                              My Crazy Life (Mi vida loca)
## 3187                                                                                                                                                Milk Money
## 3188                                                                                                                                             Nobody's Fool
## 3189                                                                                                                                          New Jersey Drive
## 3190                                                                                                                                      Natural Born Killers
## 3191                                                                                                                                                  Outbreak
## 3192                                                                                                   Léon: The Professional (a.k.a. The Professional) (Léon)
## 3193                                                                                                                                              Pulp Fiction
## 3194                                                                                                                                                 Quiz Show
## 3195                                                                                                                 Three Colors: Red (Trois couleurs: Rouge)
## 3196                                                                                                                 Three Colors: Blue (Trois couleurs: Bleu)
## 3197                                                                                                                  Three Colors: White (Trzy kolory: Bialy)
## 3198                                                                                                                                                  Stargate
## 3199                                                                                                                                 Shawshank Redemption, The
## 3200                                                                                                                                          To Live (Huozhe)
## 3201                                                                                                               Tales from the Crypt Presents: Demon Knight
## 3202                                                                                                                                    Star Trek: Generations
## 3203                                                                                                                                     Village of the Damned
## 3204                                                                                                                                                 Tommy Boy
## 3205                                                                                                                                      Vanya on 42nd Street
## 3206                                                                                                                               What's Eating Gilbert Grape
## 3207                                                                                                                                   While You Were Sleeping
## 3208                                                                                                                                                  War, The
## 3209                                                                                                                                Ace Ventura: Pet Detective
## 3210                                                                                                         Adventures of Priscilla, Queen of the Desert, The
## 3211                                                                                                                                                  Backbeat
## 3212                                                                                                                                     Bullets Over Broadway
## 3213                                                                                                                                  Clear and Present Danger
## 3214                                                                                                                                               Client, The
## 3215                                                                                                                                                 Crow, The
## 3216                                                                                                                                                      Cobb
## 3217                                                                                                                                              Forrest Gump
## 3218                                                                                                                               Four Weddings and a Funeral
## 3219                                                                                                                                    It Could Happen to You
## 3220                                                                                                                                            Lion King, The
## 3221                                                                                                                                             Little Buddha
## 3222                                                                           Wes Craven's New Nightmare (Nightmare on Elm Street Part 7: Freddy's Finale, A)
## 3223                                                                                                                                                 Mask, The
## 3224                                                                                                                        Mrs. Parker and the Vicious Circle
## 3225                                                                                                                                                Paper, The
## 3226                                                                                                                                             Reality Bites
## 3227                                                                                                                                             Red Rock West
## 3228                                                                                                                                           River Wild, The
## 3229                                                                                                                                                     Speed
## 3230                                                                                                                                                   Timecop
## 3231                                                                                                                                                 True Lies
## 3232                                                                                                                                                      Wolf
## 3233                                                                                                                                                Wyatt Earp
## 3234                                                                                                                                   In the Mouth of Madness
## 3235                                                                                                                                     Age of Innocence, The
## 3236                                                                                                                                                Blown Away
## 3237                                                                                                                                             Bronx Tale, A
## 3238                                                                                                                                                 Cabin Boy
## 3239                                                                                                                                             Carlito's Way
## 3240                                                                                                                                               Cliffhanger
## 3241                                                                                                                                                      Dave
## 3242                                                                                                                                        Dazed and Confused
## 3243                                                                                                                                            Fatal Instinct
## 3244                                                                                                                                                  Fearless
## 3245                                                                                                                                               With Honors
## 3246                                                                                                                                            Flesh and Bone
## 3247                                                                                                                                                 Firm, The
## 3248                                                                                                                                                     Fresh
## 3249                                                                                                                                             Fugitive, The
## 3250                                                                                                                                               Hard Target
## 3251                                                                                                                                            Heaven & Earth
## 3252                                                                                               Englishman Who Went Up a Hill But Came Down a Mountain, The
## 3253                                                                                                                                      Hudsucker Proxy, The
## 3254                                                                                                                                       In the Line of Fire
## 3255                                                                                                                                 In the Name of the Father
## 3256                                                                                                                                            Judgment Night
## 3257                                                                                                                                             Jurassic Park
## 3258                                                                                                                                                Kalifornia
## 3259                                                                                                                                               Killing Zoe
## 3260                                                                                                                                          Last Action Hero
## 3261                                                                                                                                   Man Without a Face, The
## 3262                                                                                                                                         Menace II Society
## 3263                                                                                                                                        Executive Decision
## 3264                                                                                                                                            Mrs. Doubtfire
## 3265                                                                                                                                                     Naked
## 3266                                                                                                                                                 No Escape
## 3267                                                                                                                                          Perfect World, A
## 3268                                                                                                                                              Philadelphia
## 3269                                                                                                                                                Piano, The
## 3270                                                                                                                                         Radioland Murders
## 3271                                                                                                                                   Remains of the Day, The
## 3272                                                                                                                                                Rising Sun
## 3273                                                                                                                                                 RoboCop 3
## 3274                                                                                                                                 Robin Hood: Men in Tights
## 3275                                                                                                                                            Romper Stomper
## 3276                                                                                                                                          Schindler's List
## 3277                                                                                                                               Searching for Bobby Fischer
## 3278                                                                                                                                        Secret Garden, The
## 3279                                                                                                                                               Shadowlands
## 3280                                                                                                                                                Short Cuts
## 3281                                                                                                                                                    Sirens
## 3282                                                                                                                                              Blade Runner
## 3283                                                                                                                                        Surviving the Game
## 3284                                                                                                                                                 Threesome
## 3285                                                                                                                           Nightmare Before Christmas, The
## 3286                                                                                                                                              True Romance
## 3287                                                                                                                                  Welcome to the Dollhouse
## 3288                                                                                                                                          Princess Caraboo
## 3289                                                                                                                                                Home Alone
## 3290                                                                                                                                                   Aladdin
## 3291                                                                                                                                Terminator 2: Judgment Day
## 3292                                                                                                                                        Dances with Wolves
## 3293                                                                                                                                                    Batman
## 3294                                                                                                                                 Silence of the Lambs, The
## 3295                                                                                                                           Snow White and the Seven Dwarfs
## 3296                                                                                                                                      Beauty and the Beast
## 3297                                                                                                                                                 Pinocchio
## 3298                                                                                                                                              Pretty Woman
## 3299                                                                                                                                           Wild Bunch, The
## 3300                                                                                                                                                     Fargo
## 3301                                                                                                                                               Heavy Metal
## 3302                                                                                                                                           Pallbearer, The
## 3303                                                                                                                                               Primal Fear
## 3304                                                                                                                                       Mission: Impossible
## 3305                                                                                                                                               Dragonheart
## 3306                                                                                                                                 James and the Giant Peach
## 3307                                                                                                                                                      Fear
## 3308                                                                                                                             Kids in the Hall: Brain Candy
## 3309                                                                                                                                                Barbarella
## 3310                                                                                                                                                      Boys
## 3311                                                                                                                                                Craft, The
## 3312                                                                                                                                                 Rock, The
## 3313                                                                                                                                                   Twister
## 3314                                                                                                                                              Arrival, The
## 3315                                                                                      Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb
## 3316                                                                                                                             Independence Day (a.k.a. ID4)
## 3317                                                                                                                                            Cable Guy, The
## 3318                                                                                                                                                   Kingpin
## 3319                                                                                                                                                    Eraser
## 3320                                                                                                                                      Nutty Professor, The
## 3321                                                                                                                                          Frighteners, The
## 3322                                                                                                                                                 Lone Star
## 3323                                                                                                                                                Phenomenon
## 3324                                                                                                                                           Time to Kill, A
## 3325                                                                                                                                            Godfather, The
## 3326                                                                                                                                 Island of Dr. Moreau, The
## 3327                                                                           Halloween: The Curse of Michael Myers (Halloween 6: The Curse of Michael Myers)
## 3328                                                                                                                                   Philadelphia Story, The
## 3329                                                                                                                                    Breakfast at Tiffany's
## 3330                                                                                                                                                   Vertigo
## 3331                                                                                                                                               Rear Window
## 3332                                                                                                                                        North by Northwest
## 3333                                                                                                                                                   Charade
## 3334                                                                                                                                                Casablanca
## 3335                                                                                                                                       Maltese Falcon, The
## 3336                                                                                                                                              My Fair Lady
## 3337                                                                                                                                                   Sabrina
## 3338                                                                                                                                             Roman Holiday
## 3339                                                                                                                                      Little Princess, The
## 3340                                                                                                                                        Gone with the Wind
## 3341                                                                                                                                              Citizen Kane
## 3342                                                                                                                                     2001: A Space Odyssey
## 3343                                                                                                                                                   Rebecca
## 3344                                                                                                                                     Foreign Correspondent
## 3345                                                                                                                                                 Notorious
## 3346                                                                                                                                                Spellbound
## 3347                                                                                                                                          To Catch a Thief
## 3348                                                                                                                             Adventures of Robin Hood, The
## 3349                                                                                                                                             Thin Man, The
## 3350                                                                                                                                           His Girl Friday
## 3351                                                                                                                                     It's a Wonderful Life
## 3352                                                                                                                              Mr. Smith Goes to Washington
## 3353                                                                                                                                          Bringing Up Baby
## 3354                                                                                                                                             39 Steps, The
## 3355                                                                                                                                         A Walk in the Sun
## 3356                                                                                                                                  Night of the Living Dead
## 3357                                                                                                                                        African Queen, The
## 3358                                                                                                                                                    Picnic
## 3359                                                                                                                                          Parent Trap, The
## 3360                                                                                                                              20,000 Leagues Under the Sea
## 3361                                                                                                                                                Cinderella
## 3362                                                                                                                      Winnie the Pooh and the Blustery Day
## 3363                                                                                                                                              Mary Poppins
## 3364                                                                                                                                                     Dumbo
## 3365                                                                                                                                       Sound of Music, The
## 3366                                                                                                                                                  Die Hard
## 3367                                                                                                                                            Secrets & Lies
## 3368                                                                                                                                        That Thing You Do!
## 3369                                                                                                                                                  Swingers
## 3370                                                                                                                                                  Sleepers
## 3371                                                                                                                       Willy Wonka & the Chocolate Factory
## 3372                                                                                                                                                   Sleeper
## 3373                                                                                                                                      Fish Called Wanda, A
## 3374                                                                                                                              Monty Python's Life of Brian
## 3375                                                                                                                                            Candidate, The
## 3376                                                                                                                                          Bonnie and Clyde
## 3377                                                                                                                                         Dial M for Murder
## 3378                                                                                                                                             Dirty Dancing
## 3379                                                                                                                                            Reservoir Dogs
## 3380                                                                                                                                                   Platoon
## 3381                                                                                                                                       Weekend at Bernie's
## 3382                                                                                                                                            Basic Instinct
## 3383                                                                                                                                                Doors, The
## 3384                                                                                                                                          Crying Game, The
## 3385                                                                                                                                       Glengarry Glen Ross
## 3386                                                                                                                                E.T. the Extra-Terrestrial
## 3387                                                                                                                                                   Top Gun
## 3388                                                                                                                                     Rebel Without a Cause
## 3389                                                                                                                                 Streetcar Named Desire, A
## 3390                                                                                                                                            On Golden Pond
## 3391                                                                                                                                            Drop Dead Fred
## 3392                                                                                                                                                Abyss, The
## 3393                                                                                                                                                  Fog, The
## 3394                                                                                                                                      Escape from New York
## 3395                                                                                                                                              Howling, The
## 3396                                                                                                                           Monty Python and the Holy Grail
## 3397                                                                                                                      Wallace & Gromit: The Wrong Trousers
## 3398                                                                                                                         Tin Drum, The (Blechtrommel, Die)
## 3399                                                                                                                                               Bob Roberts
## 3400                                                                                                                                              Delicatessen
## 3401                                                                                               Double Life of Veronique, The (Double Vie de Véronique, La)
## 3402                                                                                                                                            Paths of Glory
## 3403                                                                                                                                             Grifters, The
## 3404                                                                                                                                      English Patient, The
## 3405                                                                                                                                              My Left Foot
## 3406                                                                                                                           One Flew Over the Cuckoo's Nest
## 3407                                                                                                            Star Wars: Episode V - The Empire Strikes Back
## 3408                                                                                                                                       Princess Bride, The
## 3409                                                                                   Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 3410                                                                                                                                                    Brazil
## 3411                                                                                                                                                    Aliens
## 3412                                                                                        Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il)
## 3413                                                                                                                                              12 Angry Men
## 3414                                                                                                                                        Lawrence of Arabia
## 3415                                                                                                                                       Clockwork Orange, A
## 3416                                                                                                                                     To Kill a Mockingbird
## 3417                                                                                                                                            Apocalypse Now
## 3418                                                                                                                Star Wars: Episode VI - Return of the Jedi
## 3419                                                                                                                 Wings of Desire (Himmel über Berlin, Der)
## 3420                                                                                                                                            Third Man, The
## 3421                                                                                                                                                Goodfellas
## 3422                                                                                                                                                     Alien
## 3423                                                                                                                                          Army of Darkness
## 3424                                                                                                                            Big Blue, The (Grand bleu, Le)
## 3425                                                                                                                                                       Ran
## 3426                                                                                                                        Killer, The (Die xue shuang xiong)
## 3427                                                                                                                                                    Psycho
## 3428                                                                                                                                       Blues Brothers, The
## 3429                                                                                                                                   Godfather: Part II, The
## 3430                                                                                                                                         Full Metal Jacket
## 3431                                                                                                                                                   Amadeus
## 3432                                                                                                                               Once Upon a Time in America
## 3433                                                                                                                                               Raging Bull
## 3434                                                                                                                                                Annie Hall
## 3435                                                                                                                                          Right Stuff, The
## 3436                                                                                                                                     Boot, Das (Boat, The)
## 3437                                                                                                                  Seventh Seal, The (Sjunde inseglet, Det)
## 3438                                                                                                                                                Local Hero
## 3439                                                                                                                                           Terminator, The
## 3440                                                                                                                                                     Glory
## 3441                                                                                                                                                 Manhattan
## 3442                                                                                                                                        Dead Poets Society
## 3443                                                                                                                                             Graduate, The
## 3444                                                                                                                                             Touch of Evil
## 3445                                                                                                                                 Femme Nikita, La (Nikita)
## 3446                                                                                                                             Bridge on the River Kwai, The
## 3447                                                                                                                                                 Chinatown
## 3448                                                                                                                            Day the Earth Stood Still, The
## 3449                                                                                                                         Treasure of the Sierra Madre, The
## 3450                                                                                                                                        Better Off Dead...
## 3451                                                                                                                                              Shining, The
## 3452                                                                                                                                               Stand by Me
## 3453                                                                                                                                                         M
## 3454                                                                                                                               Evil Dead II (Dead by Dawn)
## 3455                                                                                                                                         Great Escape, The
## 3456                                                                                                                                          Deer Hunter, The
## 3457                                                                                                                                             Groundhog Day
## 3458                                                                                                                                                Unforgiven
## 3459                                                                                                                                 Manchurian Candidate, The
## 3460                                                                                                                                        Pump Up the Volume
## 3461                                                                                                                                      Arsenic and Old Lace
## 3462                                                                                                                                        Back to the Future
## 3463                                                                                                                                      Fried Green Tomatoes
## 3464                                                                                                                                                    Patton
## 3465                                                                                                                                                     Akira
## 3466                                                                                                                                                Highlander
## 3467                                                                                                                                            Cool Hand Luke
## 3468                                                                                                                                        Young Frankenstein
## 3469                                                                                                                                                  Fantasia
## 3470                                                                                                                                                 High Noon
## 3471                                                                                                                                            Big Sleep, The
## 3472                                                                                                                                                  Heathers
## 3473                                                                                                                                         Somewhere in Time
## 3474                                                                                                                                                   Ben-Hur
## 3475                                                                                                                                        This Is Spinal Tap
## 3476                                                                                                                                    Some Kind of Wonderful
## 3477                                                                                                                        Indiana Jones and the Last Crusade
## 3478                                                                                                                                               Being There
## 3479                                                                                                                                               Real Genius
## 3480                                                                                                                                      Pink Floyd: The Wall
## 3481                                                                                                                                       Killing Fields, The
## 3482                                                                                                                                           Field of Dreams
## 3483                                                                                                                        Butch Cassidy and the Sundance Kid
## 3484                                                                                                        Until the End of the World (Bis ans Ende der Welt)
## 3485                                                                                                                                   When Harry Met Sally...
## 3486                                                                                                                                   Alien³ (a.k.a. Alien 3)
## 3487                                                                                                                           American Werewolf in London, An
## 3488                                                                                                                                    Amityville Horror, The
## 3489                                                                                                                                            Believers, The
## 3490                                                                                                                                                Birds, The
## 3491                                                                                                                                                 Blob, The
## 3492                                                                                                                                                Body Parts
## 3493                                                                                                                           Dracula (Bram Stoker's Dracula)
## 3494                                                                                                                                                  Candyman
## 3495                                                                                                                                                 Cape Fear
## 3496                                                                                                                                                 Cape Fear
## 3497                                                                                                                                                    Carrie
## 3498                                                                                                                                Nightmare on Elm Street, A
## 3499                                                                                                         Nosferatu (Nosferatu, eine Symphonie des Grauens)
## 3500                                                                                                                                                 Omen, The
## 3501                                                                                                                                        Breaking the Waves
## 3502                                                                                                                                  Star Trek: First Contact
## 3503                                                                                                                                                     Shine
## 3504                                                                                                                                                Die Hard 2
## 3505                                                                                                                             Star Trek: The Motion Picture
## 3506                                                                                                                    Star Trek VI: The Undiscovered Country
## 3507                                                                                                                           Star Trek V: The Final Frontier
## 3508                                                                                                                           Star Trek II: The Wrath of Khan
## 3509                                                                                                                       Star Trek III: The Search for Spock
## 3510                                                                                                                             Star Trek IV: The Voyage Home
## 3511                                                                                                                                            Batman Returns
## 3512                                                                                                                                                Young Guns
## 3513                                                                                                                                                    Grease
## 3514                                                                                                                                                  Grease 2
## 3515                                                                                                                                          Marked for Death
## 3516                                                                                                                                               Under Siege
## 3517                                                                                                                                                      Jaws
## 3518                                                                                                                                                    Jaws 2
## 3519                                                                                                                                                  Jaws 3-D
## 3520                                                                                                                                             Mars Attacks!
## 3521                                                                                                                                             Jerry Maguire
## 3522                                                                                                                                           Raising Arizona
## 3523                                                                                                                                                  Sneakers
## 3524                                                                                                                           Beavis and Butt-Head Do America
## 3525                                                                                                                                 Last of the Mohicans, The
## 3526                                                                                                                                              Benny & Joon
## 3527                                                                                                                      Seven Samurai (Shichinin no samurai)
## 3528                                                                                                                        Blue Angel, The (Blaue Engel, Der)
## 3529                                                                                                                                                 Toy Story
## 3530                                                                                                                        Twelve Monkeys (a.k.a. 12 Monkeys)
## 3531                                                                                                                                                      Babe
## 3532                                                                                                                                    Muppet Treasure Island
## 3533                                                                                                                                                Braveheart
## 3534                                                                                                                                                 Apollo 13
## 3535                                                                                                                                            Batman Forever
## 3536                                                                                                                                     Walk in the Clouds, A
## 3537                                                                                                                           Dumb & Dumber (Dumb and Dumber)
## 3538                                                                                                                        Star Wars: Episode IV - A New Hope
## 3539                                                                                                                                              Pulp Fiction
## 3540                                                                                                                                                  Stargate
## 3541                                                                                                                                 Shawshank Redemption, The
## 3542                                                                                                                                Ace Ventura: Pet Detective
## 3543                                                                                                                                              Forrest Gump
## 3544                                                                                                                                            Lion King, The
## 3545                                                                                                                                                 Mask, The
## 3546                                                                                                                                                 True Lies
## 3547                                                                                                                                             Fugitive, The
## 3548                                                                                                                                             Jurassic Park
## 3549                                                                                                                                    Much Ado About Nothing
## 3550                                                                                                                                            Mrs. Doubtfire
## 3551                                                                                                                                          Schindler's List
## 3552                                                                                                                                                   Aladdin
## 3553                                                                                                                                        Dances with Wolves
## 3554                                                                                                                                                    Batman
## 3555                                                                                                                                 Silence of the Lambs, The
## 3556                                                                                                                                      Beauty and the Beast
## 3557                                                                                                                                              Pretty Woman
## 3558                                                                                                                                                     Fargo
## 3559                                                                                                                   Mystery Science Theater 3000: The Movie
## 3560                                                                                                           Wallace & Gromit: The Best of Aardman Animation
## 3561                                                                                                                                                   Twister
## 3562                                                                                                                           Wallace & Gromit: A Close Shave
## 3563                                                                                      Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb
## 3564                                                                                                                             Independence Day (a.k.a. ID4)
## 3565                                                                                                                                            Godfather, The
## 3566                                                                                                                                               Rear Window
## 3567                                                                                                                                     It Happened One Night
## 3568                                                                                                                                                Casablanca
## 3569                                                                                                                              20,000 Leagues Under the Sea
## 3570                                                                                                                                E.T. the Extra-Terrestrial
## 3571                                                                                                                                     Rebel Without a Cause
## 3572                                                                                                                           Monty Python and the Holy Grail
## 3573                                                                                                                      Wallace & Gromit: The Wrong Trousers
## 3574                                                                                                            Star Wars: Episode V - The Empire Strikes Back
## 3575                                                                                   Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 3576                                                                                                                                        Lawrence of Arabia
## 3577                                                                                                                                     To Kill a Mockingbird
## 3578                                                                                                                Star Wars: Episode VI - Return of the Jedi
## 3579                                                                                                                                             Graduate, The
## 3580                                                                                                                                      Arsenic and Old Lace
## 3581                                                                                                                                        Back to the Future
## 3582                                                                                                                                                    Gandhi
## 3583                                                                                                                                                Young Guns
## 3584                                                                                                                                              Benny & Joon
## 3585                                                                                                                                 Men in Black (a.k.a. MIB)
## 3586                                                                                                                                             Sliding Doors
## 3587                                                                                                                                                     Mulan
## 3588                                                                                                                                         Last Emperor, The
## 3589                                                                                                                                   Poseidon Adventure, The
## 3590                                                                                                                                    Jewel of the Nile, The
## 3591                                                                                                                                               Matrix, The
## 3592                                                                                                                                         Ideal Husband, An
## 3593                                                                                                                                          Sixth Sense, The
## 3594                                                                                                                                            Boys Don't Cry
## 3595                                                                                                                                                Fight Club
## 3596                                                                                                                                    Cider House Rules, The
## 3597                                                                                                                                                 Stalag 17
## 3598                                                                                                                           Captain Horatio Hornblower R.N.
## 3599                                                                                                                                                     U-571
## 3600                                                                                                                                           What About Bob?
## 3601                                                                                                        Lord of the Rings: The Fellowship of the Ring, The
## 3602                                                                                                                          Importance of Being Earnest, The
## 3603                                                                                                             Spirited Away (Sen to Chihiro no kamikakushi)
## 3604                                                                                                                                                 Gallipoli
## 3605                                                                                                                                                 Lady Jane
## 3606                                                                                                                                               Whale Rider
## 3607                                                                                                                                                 Anastasia
## 3608                                                                                                                                          Secondhand Lions
## 3609                                                                                                            Lord of the Rings: The Return of the King, The
## 3610                                                                                                                                    I Was a Male War Bride
## 3611                                                                                                                                          Children of Dune
## 3612                                                                                                                                 Anne of the Thousand Days
## 3613                                                                                                                                             Memphis Belle
## 3614                                                                                                                                    Farmer's Daughter, The
## 3615                                                                                                                                         Finding Neverland
## 3616                                                                                                                                                    Becket
## 3617                                                                                                                                             Sergeant York
## 3618                                                                                                                                           We're No Angels
## 3619                                                                                                          Wallace & Gromit in The Curse of the Were-Rabbit
## 3620                                                                                                                       Red Balloon, The (Ballon rouge, Le)
## 3621                                                                                                                                             Amazing Grace
## 3622                                                                                                                                                  Stardust
## 3623                                                                                                                                         Definitely, Maybe
## 3624                                                                                                                                       Horton Hears a Who!
## 3625                                                                                                                                             Kung Fu Panda
## 3626                                                                                                        Wallace and Gromit in 'A Matter of Loaf and Death'
## 3627                                                                                                                                                 GoldenEye
## 3628                                                                                                                                                Get Shorty
## 3629                                                                                                                        Twelve Monkeys (a.k.a. 12 Monkeys)
## 3630                                                                                                                                                      Babe
## 3631                                                                                                                                          Dead Man Walking
## 3632                                                                                                                                             Mortal Kombat
## 3633                                                                                                                                      Seven (a.k.a. Se7en)
## 3634                                                                                                                                              Broken Arrow
## 3635                                                                                                                       Rumble in the Bronx (Hont faan kui)
## 3636                                                                                                                                                   Rob Roy
## 3637                                                                                                                   Mighty Morphin Power Rangers: The Movie
## 3638                                                                                                                                                   Species
## 3639                                                                                                                                                Waterworld
## 3640                                                                                                                        Star Wars: Episode IV - A New Hope
## 3641                                                                                                                                       Legends of the Fall
## 3642                                                                                                                Mary Shelley's Frankenstein (Frankenstein)
## 3643                                                                                                                                      Natural Born Killers
## 3644                                                                                                                                              Pulp Fiction
## 3645                                                                                                                                                  Stargate
## 3646                                                                                                                                    Star Trek: Generations
## 3647                                                                                                                                                 Tommy Boy
## 3648                                                                                                                                Ace Ventura: Pet Detective
## 3649                                                                                                                                              Forrest Gump
## 3650                                                                                                                                                     Speed
## 3651                                                                                                                                                   Timecop
## 3652                                                                                                                                                 True Lies
## 3653                                                                                                                                            Street Fighter
## 3654                                                                                                                                            Demolition Man
## 3655                                                                                                                                             Fugitive, The
## 3656                                                                                                                                      Hot Shots! Part Deux
## 3657                                                                                                                                             Jurassic Park
## 3658                                                                                                                                          Last Action Hero
## 3659                                                                                                                                                Piano, The
## 3660                                                                                                                                          Schindler's List
## 3661                                                                                                                                              Blade Runner
## 3662                                                                                                                              So I Married an Axe Murderer
## 3663                                                                                                                           Nightmare Before Christmas, The
## 3664                                                                                                                                                 Tombstone
## 3665                                                                                                                                                Home Alone
## 3666                                                                                                                                Terminator 2: Judgment Day
## 3667                                                                                                                                        Dances with Wolves
## 3668                                                                                                                                                    Batman
## 3669                                                                                                                                 Silence of the Lambs, The
## 3670                                                                                                                           Snow White and the Seven Dwarfs
## 3671                                                                                                                                      Beauty and the Beast
## 3672                                                                                                                                              Pretty Woman
## 3673                                                                                                                                               Heavy Metal
## 3674                                                                                                                                       Mission: Impossible
## 3675                                                                                                                                                 Rock, The
## 3676                                                                                      Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb
## 3677                                                                                                                             Independence Day (a.k.a. ID4)
## 3678                                                                                                                                          Escape from L.A.
## 3679                                                                                                                                            Godfather, The
## 3680                                                                                                                                       Singin' in the Rain
## 3681                                                                                                                                        North by Northwest
## 3682                                                                                                                                          Some Like It Hot
## 3683                                                                                                                                                Casablanca
## 3684                                                                                                                                       Maltese Falcon, The
## 3685                                                                                                                                              My Fair Lady
## 3686                                                                                                                                      Meet Me in St. Louis
## 3687                                                                                                                                         Wizard of Oz, The
## 3688                                                                                                                                        Gone with the Wind
## 3689                                                                                                                                          My Favorite Year
## 3690                                                                                                                                              Citizen Kane
## 3691                                                                                                                                     2001: A Space Odyssey
## 3692                                                                                                                                                   Top Hat
## 3693                                                                                                                                                     Giant
## 3694                                                                                                                               Around the World in 80 Days
## 3695                                                                                                                                     It's a Wonderful Life
## 3696                                                                                                                              Mr. Smith Goes to Washington
## 3697                                                                                                                                        African Queen, The
## 3698                                                                                                                                                Old Yeller
## 3699                                                                                                                              20,000 Leagues Under the Sea
## 3700                                                                                                                                                Cinderella
## 3701                                                                                                                                              Mary Poppins
## 3702                                                                                                                                  Bedknobs and Broomsticks
## 3703                                                                                                                                       Alice in Wonderland
## 3704                                                                                                                                       Sound of Music, The
## 3705                                                                                                                                                  Die Hard
## 3706                                                                                                                                      Fish Called Wanda, A
## 3707                                                                                                                              Monty Python's Life of Brian
## 3708                                                                                                                                             Dirty Dancing
## 3709                                                                                                                                            Reservoir Dogs
## 3710                                                                                                                                                   Platoon
## 3711                                                                                                                                       Weekend at Bernie's
## 3712                                                                                                                                E.T. the Extra-Terrestrial
## 3713                                                                                                                                     Rebel Without a Cause
## 3714                                                                                                                                            On Golden Pond
## 3715                                                                                                                           Return of the Pink Panther, The
## 3716                                                                                                                                                Abyss, The
## 3717                                                                                                                                      Escape from New York
## 3718                                                                                                                                          Private Benjamin
## 3719                                                                                                                           Monty Python and the Holy Grail
## 3720                                                                                                                      Wallace & Gromit: The Wrong Trousers
## 3721                                                                                                                  Cook the Thief His Wife & Her Lover, The
## 3722                                                                                                                                              Delicatessen
## 3723                                                                                                                           One Flew Over the Cuckoo's Nest
## 3724                                                                                                            Star Wars: Episode V - The Empire Strikes Back
## 3725                                                                                   Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 3726                                                                                                                                                    Brazil
## 3727                                                                                                                                                    Aliens
## 3728                                                                                                                                              12 Angry Men
## 3729                                                                                                                                       Clockwork Orange, A
## 3730                                                                                                                                            Apocalypse Now
## 3731                                                                                                                Star Wars: Episode VI - Return of the Jedi
## 3732                                                                                                                                                     Alien
## 3733                                                                                                                                                       Ran
## 3734                                                                                                                                   Godfather: Part II, The
## 3735                                                                                                                                         Full Metal Jacket
## 3736                                                                                                                                                   Henry V
## 3737                                                                                                                                                   Amadeus
## 3738                                                                                                                                               Raging Bull
## 3739                                                                                                                                          Right Stuff, The
## 3740                                                                                                                                                Sting, The
## 3741                                                                                                                                           Terminator, The
## 3742                                                                                                                                        Dead Poets Society
## 3743                                                                                                                             Bridge on the River Kwai, The
## 3744                                                                                                                                                 Chinatown
## 3745                                                                                                                            Day the Earth Stood Still, The
## 3746                                                                                                                         Treasure of the Sierra Madre, The
## 3747                                                                                                                                                 Duck Soup
## 3748                                                                                                                                               Stand by Me
## 3749                                                                                                                                          Deer Hunter, The
## 3750                                                                                                                                             Groundhog Day
## 3751                                                                                                                                                Unforgiven
## 3752                                                                                                                                        Back to the Future
## 3753                                                                                                                                                Highlander
## 3754                                                                                                                                       Great Dictator, The
## 3755                                                                                                                                                  Fantasia
## 3756                                                                                                                                                 High Noon
## 3757                                                                                                                                                   Ben-Hur
## 3758                                                                                                                                        This Is Spinal Tap
## 3759                                                                                                                        Indiana Jones and the Last Crusade
## 3760                                                                                                                                               Being There
## 3761                                                                                                                        Unbearable Lightness of Being, The
## 3762                                                                                                                                       Room with a View, A
## 3763                                                                                                                                               Real Genius
## 3764                                                                                                                                      Pink Floyd: The Wall
## 3765                                                                                                                                          Forbidden Planet
## 3766                                                                                                                                           Field of Dreams
## 3767                                                                                                                                Man Who Would Be King, The
## 3768                                                                                                                                   Alien³ (a.k.a. Alien 3)
## 3769                                                                                                                           American Werewolf in London, An
## 3770                                                                                                                                    Amityville Horror, The
## 3771                                                                                                                                                 Blob, The
## 3772                                                                                                                                                    Carrie
## 3773                                                                                                                                                Cat People
## 3774                                                                                                                                                 Omen, The
## 3775                                                                                                                                                Die Hard 2
## 3776                                                                                                                             Star Trek: The Motion Picture
## 3777                                                                                                                    Star Trek VI: The Undiscovered Country
## 3778                                                                                                                           Star Trek V: The Final Frontier
## 3779                                                                                                                           Star Trek II: The Wrath of Khan
## 3780                                                                                                                       Star Trek III: The Search for Spock
## 3781                                                                                                                             Star Trek IV: The Voyage Home
## 3782                                                                                                                                                    Grease
## 3783                                                                                                                                                      Jaws
## 3784                                                                                                                                                    Jaws 2
## 3785                                                                                                                                           Raising Arizona
## 3786                                                                                                                                                   Tin Men
## 3787                                                                                                                                                Turbulence
## 3788                                                                                                                                     M*A*S*H (a.k.a. MASH)
## 3789                                                                                                                        Twelve Monkeys (a.k.a. 12 Monkeys)
## 3790                                                                                                                                             Mortal Kombat
## 3791                                                                                                                                      Seven (a.k.a. Se7en)
## 3792                                                                                                                                                Pocahontas
## 3793                                                                                                                                       From Dusk Till Dawn
## 3794                                                                                                                                            Batman Forever
## 3795                                                                                                                                                    Casper
## 3796                                                                                                                                                 Desperado
## 3797                                                                                                                                               Judge Dredd
## 3798                                                                                                                                                Waterworld
## 3799                                                                                                                           Dumb & Dumber (Dumb and Dumber)
## 3800                                                                                                                                                   Ed Wood
## 3801                                                                                                        Interview with the Vampire: The Vampire Chronicles
## 3802                                                                                                                        Star Wars: Episode IV - A New Hope
## 3803                                                                                                                                               Major Payne
## 3804                                                                                                                                              Pulp Fiction
## 3805                                                                                                                                           Specialist, The
## 3806                                                                                                                                          Flintstones, The
## 3807                                                                                                                                              Forrest Gump
## 3808                                                                                                                                            Demolition Man
## 3809                                                                                                                                             Fugitive, The
## 3810                                                                                                                                             Jurassic Park
## 3811                                                                                                                                          Last Action Hero
## 3812                                                                                                                                              Blade Runner
## 3813                                                                                                                           Nightmare Before Christmas, The
## 3814                                                                                                                                     Three Musketeers, The
## 3815                                                                                                                                              True Romance
## 3816                                                                                                                                                Home Alone
## 3817                                                                                                                                                   Aladdin
## 3818                                                                                                                                Terminator 2: Judgment Day
## 3819                                                                                                                                                    Batman
## 3820                                                                                                                                 Silence of the Lambs, The
## 3821                                                                                                                                       Mission: Impossible
## 3822                                                                                                                                            Cable Guy, The
## 3823                                                                                                                                                   Kingpin
## 3824                                                                                                                                            Godfather, The
## 3825                                                                                                                              Monty Python's Life of Brian
## 3826                                                                                                                                            Reservoir Dogs
## 3827                                                                                                                                E.T. the Extra-Terrestrial
## 3828                                                                                                                                                   Top Gun
## 3829                                                                                                                      Wallace & Gromit: The Wrong Trousers
## 3830                                                                                                            Star Wars: Episode V - The Empire Strikes Back
## 3831                                                                                   Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 3832                                                                                                                                                    Aliens
## 3833                                                                                        Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il)
## 3834                                                                                                                                            Apocalypse Now
## 3835                                                                                                                Star Wars: Episode VI - Return of the Jedi
## 3836                                                                                                                                                     Alien
## 3837                                                                                                                                          Army of Darkness
## 3838                                                                                                                                           Terminator, The
## 3839                                                                                                                                                 Bad Taste
## 3840                                                                                                                                          Deer Hunter, The
## 3841                                                                                                                                        Back to the Future
## 3842                                                                                                                        Indiana Jones and the Last Crusade
## 3843                                                                                                                                   Alien³ (a.k.a. Alien 3)
## 3844                                                                                                                           Dracula (Bram Stoker's Dracula)
## 3845                                                                                                                                  Star Trek: First Contact
## 3846                                                                                                                             Star Trek: The Motion Picture
## 3847                                                                                                                    Star Trek VI: The Undiscovered Country
## 3848                                                                                                                           Star Trek II: The Wrath of Khan
## 3849                                                                                                                       Star Trek III: The Search for Spock
## 3850                                                                                                                             Star Trek IV: The Voyage Home
## 3851                                                                                                                                            Batman Returns
## 3852                                                                                                                                                      Jaws
## 3853                                                                                                                                             Mars Attacks!
## 3854                                                                                                                                        Fifth Element, The
## 3855                                                                                                                            Lost World: Jurassic Park, The
## 3856                                                                                                                                 Men in Black (a.k.a. MIB)
## 3857                                                                                                                                             Air Force One
## 3858                                                                                                                                                 Game, The
## 3859                                                                                                                                           Full Monty, The
## 3860                                                                                                                                      The Devil's Advocate
## 3861                                                                                                                                          Truman Show, The
## 3862                                                                                                                                                   Amistad
## 3863                                                                                                                                                   Titanic
## 3864                                                                                                                                       Tomorrow Never Dies
## 3865                                                                                                                                  Replacement Killers, The
## 3866                                                                                                                                             Suicide Kings
## 3867                                                                                                                                               Deep Impact
## 3868                                                                                                                            Fear and Loathing in Las Vegas
## 3869                                                                                                                            X-Files: Fight the Future, The
## 3870                                                                                                                                                Armageddon
## 3871                                                                                                                              There's Something About Mary
## 3872                                                                                                                                             Exorcist, The
## 3873                                                                                                                                        Mask of Zorro, The
## 3874                                                                                                                                Back to the Future Part II
## 3875                                                                                                                                  Godfather: Part III, The
## 3876                                                                                                                                       Little Mermaid, The
## 3877                                                                                                                      Indiana Jones and the Temple of Doom
## 3878                                                                                                                                               Beetlejuice
## 3879                                                                                                                                                      Cube
## 3880                                                                                                                                                Thing, The
## 3881                                                                                                                                       Edward Scissorhands
## 3882                                                                                                                              History of the World: Part I
## 3883                                                                                                                                            Meet Joe Black
## 3884                                                                                                                                Rambo: First Blood Part II
## 3885                                                                                                                                               Patch Adams
## 3886                                                                                                                              Texas Chainsaw Massacre, The
## 3887                                                                                                                                              Office Space
## 3888                                                                                                                         Lock, Stock & Two Smoking Barrels
## 3889                                                                                                                                               Matrix, The
## 3890                                                                                                                                                Entrapment
## 3891                                                                                                                                                Dick Tracy
## 3892                                                                                                                                                Mummy, The
## 3893                                                                                                                            Rocky Horror Picture Show, The
## 3894                                                                                                                                     Thirteenth Floor, The
## 3895                                                                                                                     Austin Powers: The Spy Who Shagged Me
## 3896                                                                                                                      South Park: Bigger, Longer and Uncut
## 3897                                                                                                                                            Wild Wild West
## 3898                                                                                                                                  Blair Witch Project, The
## 3899                                                                                                                                            Eyes Wide Shut
## 3900                                                                                                                       Ghostbusters (a.k.a. Ghost Busters)
## 3901                                                                                                                                           Ghostbusters II
## 3902                                                                                                                                               Mystery Men
## 3903                                                                                                                                          Sixth Sense, The
## 3904                                                                                                                                  Thomas Crown Affair, The
## 3905                                                                                                                                           American Beauty
## 3906                                                                                                                                           Double Jeopardy
## 3907                                                                                                                            Home Alone 2: Lost in New York
## 3908                                                                                                                                                Fight Club
## 3909                                                                                                                                                   RoboCop
## 3910                                                                                                                                  Who Framed Roger Rabbit?
## 3911                                                                                                                                           Licence to Kill
## 3912                                                                                                                                                Spaceballs
## 3913                                                                                                                                                     Dogma
## 3914                                                                                                                                             Sleepy Hollow
## 3915                                                                                                                                  World Is Not Enough, The
## 3916                                                                                                                                           Green Mile, The
## 3917                                                                                                                                  Talented Mr. Ripley, The
## 3918                                                                                                                              Batman: Mask of the Phantasm
## 3919                                                                                                                                             Wayne's World
## 3920                                                                                                                                                Beach, The
## 3921                                                                                                                                               Pitch Black
## 3922                                                                                                                                           Mission to Mars
## 3923                                                                                                                                           Ninth Gate, The
## 3924                                                                                                                                           Erin Brockovich
## 3925                                                                                                                              Teenage Mutant Ninja Turtles
## 3926                                                                                                                                                  Predator
## 3927                                                                                                                                           American Psycho
## 3928                                                                                                                                                 Gladiator
## 3929                                                                                                                                    Mission: Impossible II
## 3930                                                                                                                                                Predator 2
## 3931                                                                                                                                               Chicken Run
## 3932                                                                                                                                                     X-Men
## 3933                                                                                                                                           What About Bob?
## 3934                                                                                                                                                Hollow Man
## 3935                                                                                                           Naked Gun: From the Files of Police Squad!, The
## 3936                                                                                                                                          Charlie's Angels
## 3937                                                                                                                                               Unbreakable
## 3938                                                                                                          Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 3939                                                                                                                                            Vertical Limit
## 3940                                                                                                                                                    Snatch
## 3941                                                                                                                                     Dude, Where's My Car?
## 3942                                                                                                                                O Brother, Where Art Thou?
## 3943                                                                                                                                            Evil Dead, The
## 3944                                                                                                                                                   Memento
## 3945                                                                                                                                                      Blow
## 3946                                                                                                                                                  Scarface
## 3947                                                                                                                                                     Shrek
## 3948                                                                                                                              A.I. Artificial Intelligence
## 3949                                                                                                              Crimson Rivers, The (Rivières pourpres, Les)
## 3950                                                                                                                                        Planet of the Apes
## 3951                                                                                                                                               Rush Hour 2
## 3952                                                                                                                                               Others, The
## 3953                                                                                                                                              Training Day
## 3954                                                                                                                                            Monsters, Inc.
## 3955                                                                   Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 3956                                                                                                                                            Ocean's Eleven
## 3957                                                                                                                                               Vanilla Sky
## 3958                                                                                                        Lord of the Rings: The Fellowship of the Ring, The
## 3959                                                                                                                                           Black Hawk Down
## 3960                                                                                                             Brotherhood of the Wolf (Pacte des loups, Le)
## 3961                                                                                                                                             Resident Evil
## 3962                                                                                                                                                Panic Room
## 3963                                                                                                                                                Spider-Man
## 3964                                                                                                                                     Sum of All Fears, The
## 3965                                                                                                                                           Minority Report
## 3966                                                                                                              Men in Black II (a.k.a. MIIB) (a.k.a. MIB 2)
## 3967                                                                                                                                         Road to Perdition
## 3968                                                                                                                                                Red Dragon
## 3969                                                                                                                                                 Ring, The
## 3970                                                                                                                   Harry Potter and the Chamber of Secrets
## 3971                                                                                                                                           Die Another Day
## 3972                                                                                                                                               Equilibrium
## 3973                                                                                                                    Lord of the Rings: The Two Towers, The
## 3974                                                                                                                                       Catch Me If You Can
## 3975                                                                                                        Man Without a Past, The (Mies vailla menneisyyttä)
## 3976                                                                                                                                          X2: X-Men United
## 3977                                                                                                                                      Matrix Reloaded, The
## 3978                                                                                                                                            Bruce Almighty
## 3979                                                                                                                                             28 Days Later
## 3980                                                                                                    Pirates of the Caribbean: The Curse of the Black Pearl
## 3981                                                                                                       League of Extraordinary Gentlemen, The (a.k.a. LXG)
## 3982                                                                                                                                                Underworld
## 3983                                                                                                                                         Kill Bill: Vol. 1
## 3984                                                                                                                                          Italian Job, The
## 3985                                                                                                                                   Matrix Revolutions, The
## 3986                                                                                                                                         Last Samurai, The
## 3987                                                                                                                                                  Big Fish
## 3988                                                                                                            Lord of the Rings: The Return of the King, The
## 3989                                                                                                                                          Dawn of the Dead
## 3990                                                                                                                                                   Hellboy
## 3991                                                                                                                                         Kill Bill: Vol. 2
## 3992                                                                                                                                               Van Helsing
## 3993                                                                                                                                          Enter the Dragon
## 3994                                                                                                                                                   Shrek 2
## 3995                                                                                                                  Harry Potter and the Prisoner of Azkaban
## 3996                                                                                                                                              Spider-Man 2
## 3997                                                                                                                                                Collateral
## 3998                                                                                                                                               Grudge, The
## 3999                                                                                                                                             The Machinist
## 4000                                                                                                                                                       Saw
## 4001                                                                                                                                          Incredibles, The
## 4002                                                                                                                         Charlie and the Chocolate Factory
## 4003                                                                                                                                   Appleseed (Appurushîdo)
## 4004                                                                                                                                               Constantine
## 4005                                                                                                                                                  Sin City
## 4006                                                                                                              Star Wars: Episode III - Revenge of the Sith
## 4007                                                                                                                                             Batman Begins
## 4008                                                                                                                                              Corpse Bride
## 4009                                                                                                                                                 Toy Story
## 4010                                                                                                                                                      Heat
## 4011                                                                                                                                   American President, The
## 4012                                                                                                                                                    Casino
## 4013                                                                                                                            Ace Ventura: When Nature Calls
## 4014                                                                                                                                               Money Train
## 4015                                                                                                                                                    Powder
## 4016                                                                                                                        Twelve Monkeys (a.k.a. 12 Monkeys)
## 4017                                                                                                                                                      Babe
## 4018                                                                                                                                      Seven (a.k.a. Se7en)
## 4019                                                                                                                                       Usual Suspects, The
## 4020                                                                                                                                Postman, The (Postino, Il)
## 4021                                                                                                                                        Mr. Holland's Opus
## 4022                                                                                                                                              Nick of Time
## 4023                                                                                                                                             Happy Gilmore
## 4024                                                                                                                                                Braveheart
## 4025                                                                                                                                               Taxi Driver
## 4026                                                                                                                                                 Apollo 13
## 4027                                                                                                                                            Batman Forever
## 4028                                                                                                                         Beauty of the Day (Belle de jour)
## 4029                                                                                                                                           Johnny Mnemonic
## 4030                                                                                                                                                  Net, The
## 4031                                                                                                                                          Don Juan DeMarco
## 4032                                                                                                                                                   Ed Wood
## 4033                                                                                                                                               French Kiss
## 4034                                                                                                                                               Hoop Dreams
## 4035                                                                                                                                        Heavenly Creatures
## 4036                                                                                                                                                      I.Q.
## 4037                                                                                                        Interview with the Vampire: The Vampire Chronicles
## 4038                                                                                                                        Star Wars: Episode IV - A New Hope
## 4039                                                                                                                                        Little Princess, A
## 4040                                                                                                       Like Water for Chocolate (Como agua para chocolate)
## 4041                                                                                                                                                  Outbreak
## 4042                                                                                                   Léon: The Professional (a.k.a. The Professional) (Léon)
## 4043                                                                                                                                              Pulp Fiction
## 4044                                                                                                                                                 Quiz Show
## 4045                                                                                                                 Three Colors: Red (Trois couleurs: Rouge)
## 4046                                                                                                                 Three Colors: Blue (Trois couleurs: Bleu)
## 4047                                                                                                                                                  Stargate
## 4048                                                                                                                                 Shawshank Redemption, The
## 4049                                                                                                                                             Shallow Grave
## 4050                                                                                                                               What's Eating Gilbert Grape
## 4051                                                                                                                                Ace Ventura: Pet Detective
## 4052                                                                                                         Adventures of Priscilla, Queen of the Desert, The
## 4053                                                                                                                                              Forrest Gump
## 4054                                                                                                                                                 True Lies
## 4055                                                                                                                                                  Blue Sky
## 4056                                                                                                                                             Carlito's Way
## 4057                                                                                                                                            Demolition Man
## 4058                                                                                                                                             Fugitive, The
## 4059                                                                                                                                            Heaven & Earth
## 4060                                                                                                                                      Hudsucker Proxy, The
## 4061                                                                                                                                             Jurassic Park
## 4062                                                                                                                                          Last Action Hero
## 4063                                                                                                                                  Manhattan Murder Mystery
## 4064                                                                                                                                    Much Ado About Nothing
## 4065                                                                                                                                              Philadelphia
## 4066                                                                                                                                                Piano, The
## 4067                                                                                                                                          Schindler's List
## 4068                                                                                                                                                Serial Mom
## 4069                                                                                                                                                Short Cuts
## 4070                                                                                                                                      Sleepless in Seattle
## 4071                                                                                                                                              Blade Runner
## 4072                                                                                                                                                Home Alone
## 4073                                                                                                                                                   Aladdin
## 4074                                                                                                                                Terminator 2: Judgment Day
## 4075                                                                                                                                        Dances with Wolves
## 4076                                                                                                                                                    Batman
## 4077                                                                                                                                 Silence of the Lambs, The
## 4078                                                                                                                                      Beauty and the Beast
## 4079                                                                                                                                              Pretty Woman
## 4080                                                                                                                                              One Fine Day
## 4081                                                                                                                                                     Fargo
## 4082                                                                                                                                       Mission: Impossible
## 4083                                                                                                                                               Dragonheart
## 4084                                                                                                                 Song of the Little Road (Pather Panchali)
## 4085                                                                                                                           World of Apu, The (Apur Sansar)
## 4086                                                                                                                           Wallace & Gromit: A Close Shave
## 4087                                                                                      Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb
## 4088                                                                                                                                             Trainspotting
## 4089                                                                                                                             Independence Day (a.k.a. ID4)
## 4090                                                                                                                                      Nutty Professor, The
## 4091                                                                                                                                                Phenomenon
## 4092                                                                                                                                           Time to Kill, A
## 4093                                                                                                               Eyes Without a Face (Yeux sans visage, Les)
## 4094                                                                                                                                            Godfather, The
## 4095                                                                                                                                   Philadelphia Story, The
## 4096                                                                                                                                       Singin' in the Rain
## 4097                                                                                                                                     American in Paris, An
## 4098                                                                                                                                                   Vertigo
## 4099                                                                                                                                               Rear Window
## 4100                                                                                                                                     It Happened One Night
## 4101                                                                                                                                        North by Northwest
## 4102                                                                                                                                            Apartment, The
## 4103                                                                                                                                          Some Like It Hot
## 4104                                                                                                                                                   Charade
## 4105                                                                                                                                                Casablanca
## 4106                                                                                                                                       Maltese Falcon, The
## 4107                                                                                                                                              My Fair Lady
## 4108                                                                                                                                        Gone with the Wind
## 4109                                                                                                                    Sunset Blvd. (a.k.a. Sunset Boulevard)
## 4110                                                                                                                                              Citizen Kane
## 4111                                                                                                                                     2001: A Space Odyssey
## 4112                                                                                                                                             All About Eve
## 4113                                                                                                                                                   Rebecca
## 4114                                                                                                                                                 Notorious
## 4115                                                                                                                                                Spellbound
## 4116                                                                                                                                          To Catch a Thief
## 4117                                                                                                                                                     Laura
## 4118                                                                                                                                                     Giant
## 4119                                                                                                                                              East of Eden
## 4120                                                                                                                               Around the World in 80 Days
## 4121                                                                                                                                     It's a Wonderful Life
## 4122                                                                                                                              Mr. Smith Goes to Washington
## 4123                                                                                                                                          Bringing Up Baby
## 4124                                                                                                                                             39 Steps, The
## 4125                                                                                                                                        African Queen, The
## 4126                                                                                                                                     Cat on a Hot Tin Roof
## 4127                                                                                                                                       Sound of Music, The
## 4128                                                                                                                                                  Die Hard
## 4129                                                                                                                                            Secrets & Lies
## 4130                                                                                                                      William Shakespeare's Romeo + Juliet
## 4131                                                                                                                                                  Sleepers
## 4132                                                                                                                                                   Sleeper
## 4133                                                                                                                                                   Bananas
## 4134                                                                                                                              Monty Python's Life of Brian
## 4135                                                                                                                                          Bonnie and Clyde
## 4136                                                                                                                                            Reservoir Dogs
## 4137                                                                                                                                                   Platoon
## 4138                                                                                                                                           Sophie's Choice
## 4139                                                                                                                                E.T. the Extra-Terrestrial
## 4140                                                                                                                                                   Top Gun
## 4141                                                                                                                                     Rebel Without a Cause
## 4142                                                                                                                                 Streetcar Named Desire, A
## 4143                                                                                                                           Monty Python and the Holy Grail
## 4144                                                                                                                   Cinema Paradiso (Nuovo cinema Paradiso)
## 4145                                                                                                                                              Delicatessen
## 4146                                                                                               Double Life of Veronique, The (Double Vie de Véronique, La)
## 4147                                                                                                                                            Paths of Glory
## 4148                                                                                                                                      English Patient, The
## 4149                                                                                                                                              My Left Foot
## 4150                                                                                                                                         Strictly Ballroom
## 4151                                                                                                                           One Flew Over the Cuckoo's Nest
## 4152                                                                                                            Star Wars: Episode V - The Empire Strikes Back
## 4153                                                                                                                                       Princess Bride, The
## 4154                                                                                   Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 4155                                                                                                                                                    Brazil
## 4156                                                                                        Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il)
## 4157                                                                                                                                              Withnail & I
## 4158                                                                                                                                              12 Angry Men
## 4159                                                                                                                                        Lawrence of Arabia
## 4160                                                                                                                                       Clockwork Orange, A
## 4161                                                                                                                                     To Kill a Mockingbird
## 4162                                                                                                                                            Apocalypse Now
## 4163                                                                                                                Star Wars: Episode VI - Return of the Jedi
## 4164                                                                                                                 Wings of Desire (Himmel über Berlin, Der)
## 4165                                                                                                                                            Third Man, The
## 4166                                                                                                                                                Goodfellas
## 4167                                                                                                                                                       Ran
## 4168                                                                                                                        Killer, The (Die xue shuang xiong)
## 4169                                                                                                                                                    Psycho
## 4170                                                                                                                                   Godfather: Part II, The
## 4171                                                                                                                                         Full Metal Jacket
## 4172                                                                                                                                                   Amadeus
## 4173                                                                                                                               Once Upon a Time in America
## 4174                                                                                                                                               Raging Bull
## 4175                                                                                                                                                Annie Hall
## 4176                                                                                                                                          Right Stuff, The
## 4177                                                                                                                                                   Stalker
## 4178                                                                                                                                     Boot, Das (Boat, The)
## 4179                                                                                                                                                Sting, The
## 4180                                                                                                                                          Harold and Maude
## 4181                                                                                                                  Seventh Seal, The (Sjunde inseglet, Det)
## 4182                                                                                                                                           Terminator, The
## 4183                                                                                                                                    Dead Alive (Braindead)
## 4184                                                                                                                     Rosencrantz and Guildenstern Are Dead
## 4185                                                                                                                                                 Manhattan
## 4186                                                                                                                                        Dead Poets Society
## 4187                                                                                                                                             Graduate, The
## 4188                                                                                                                                             Touch of Evil
## 4189                                                                                                                             Bridge on the River Kwai, The
## 4190                                                                                                                                                8 1/2 (8½)
## 4191                                                                                                                                                 Chinatown
## 4192                                                                                                                         Treasure of the Sierra Madre, The
## 4193                                                                                                                                                 Duck Soup
## 4194                                                                                                                                              Shining, The
## 4195                                                                                                                                                         M
## 4196                                                                                                                                         Great Escape, The
## 4197                                                                                                                                          Deer Hunter, The
## 4198                                                                                                                                             Groundhog Day
## 4199                                                                                                                                                Unforgiven
## 4200                                                                                                                                 Manchurian Candidate, The
## 4201                                                                                                                                      Arsenic and Old Lace
## 4202                                                                                                                                        Back to the Future
## 4203                                                                                                                                                    Patton
## 4204                                                                                                                                        Cyrano de Bergerac
## 4205                                                                                                     Raise the Red Lantern (Da hong deng long gao gao gua)
## 4206                                                                                                                                       Great Dictator, The
## 4207                                                                                                                                            Big Sleep, The
## 4208                                                                                                                                                   Ben-Hur
## 4209                                                                                                                                        This Is Spinal Tap
## 4210                                                                                                                        Indiana Jones and the Last Crusade
## 4211                                                                                                                                                    Gandhi
## 4212                                                                                                                        Butch Cassidy and the Sundance Kid
## 4213                                                                                                                                              Paris, Texas
## 4214                                                                                                                                   When Harry Met Sally...
## 4215                                                                                                                                                Birds, The
## 4216                                                                                                                                                 Cape Fear
## 4217                                                                                                         Nosferatu (Nosferatu, eine Symphonie des Grauens)
## 4218                                                                                                                                        Breaking the Waves
## 4219                                                                                                                                  Star Trek: First Contact
## 4220                                                                                                                                            Batman Returns
## 4221                                                                                                                                                    Grease
## 4222                                                                                                                                                      Jaws
## 4223                                                                                                                                             Mars Attacks!
## 4224                                                                                                                                             Jerry Maguire
## 4225                                                                                                                                           Raising Arizona
## 4226                                                                                                                                 Last of the Mohicans, The
## 4227                                                                                                                                                    Hamlet
## 4228                                                                                                                                              Dante's Peak
## 4229                                                                                                                                              Lost Highway
## 4230                                                                                                                                                  Anaconda
## 4231                                                                                                                                       Grosse Pointe Blank
## 4232                                                                                                                                                   Volcano
## 4233                                                                                                                                        Fifth Element, The
## 4234                                                                                                                            Lost World: Jurassic Park, The
## 4235                                                                                                                                                   Con Air
## 4236                                                                                                                                   Speed 2: Cruise Control
## 4237                                                                                                                                            Batman & Robin
## 4238                                                                                                                                 Men in Black (a.k.a. MIB)
## 4239                                                                                                                                                   Contact
## 4240                                                                                                                                             Air Force One
## 4241                                                                                                                                         L.A. Confidential
## 4242                                                                                                                                                 Game, The
## 4243                                                                                                                                             Boogie Nights
## 4244                                                                                                                                          Truman Show, The
## 4245                                                                                                                                                   Amistad
## 4246                                                                                                                                         Good Will Hunting
## 4247                                                                                                                                                   Titanic
## 4248                                                                                                                                       Tomorrow Never Dies
## 4249                                                                                                                                         Big Lebowski, The
## 4250                                                                                                                                        Great Expectations
## 4251                                                                                                                                                 Dark City
## 4252                                                                                                                                             U.S. Marshals
## 4253                                                                                                                                                   Everest
## 4254                                                                                                                                            City of Angels
## 4255                                                                                                                                      Character (Karakter)
## 4256                                                                                                                                           Misérables, Les
## 4257                                                                                                                                               Deep Impact
## 4258                                                                                                               Children of Heaven, The (Bacheha-Ye Aseman)
## 4259                                                                                                                                                     Mulan
## 4260                                                                                                                                                Armageddon
## 4261                                                                                                                            All Quiet on the Western Front
## 4262                                                                                                                                      Mutiny on the Bounty
## 4263                                                                                                                                       Great Ziegfeld, The
## 4264                                                                                                                                   How Green Was My Valley
## 4265                                                                                                                                                    Hamlet
## 4266                                                                                                                                     From Here to Eternity
## 4267                                                                                                                                         On the Waterfront
## 4268                                                                                                                                                     Marty
## 4269                                                                                                                                           West Side Story
## 4270                                                                                                                                    Man for All Seasons, A
## 4271                                                                                                                                  In the Heat of the Night
## 4272                                                                                                                                                   Oliver!
## 4273                                                                                                                                           Midnight Cowboy
## 4274                                                                                                                                    French Connection, The
## 4275                                                                                                                                                     Rocky
## 4276                                                                                                                                         Kramer vs. Kramer
## 4277                                                                                                                                           Ordinary People
## 4278                                                                                                                                          Chariots of Fire
## 4279                                                                                                                                       Terms of Endearment
## 4280                                                                                                                                             Out of Africa
## 4281                                                                                                                                         Last Emperor, The
## 4282                                                                                                                                                  Rain Man
## 4283                                                                                                                                        Driving Miss Daisy
## 4284                                                                                                                                             Exorcist, The
## 4285                                                                                                                                           Lethal Weapon 3
## 4286                                                                                                                                                Metropolis
## 4287                                                                                                                                Back to the Future Part II
## 4288                                                                                                                               Back to the Future Part III
## 4289                                                                                                                      Seven Samurai (Shichinin no samurai)
## 4290                                                                                                                            Last Temptation of Christ, The
## 4291                                                                                                                                  Godfather: Part III, The
## 4292                                                                                                                                      Jane Austen's Mafia!
## 4293                                                                                                                                       Saving Private Ryan
## 4294                                                                                                                                            Doctor Zhivago
## 4295                                                                                                                 Fanny and Alexander (Fanny och Alexander)
## 4296                                                                                                                      Indiana Jones and the Temple of Doom
## 4297                                                                                                                                                Snake Eyes
## 4298                                                                                                                           Who's Afraid of Virginia Woolf?
## 4299                                                                                                                                                    Legend
## 4300                                                                                                                                               Beetlejuice
## 4301                                                                                                                                                      Rope
## 4302                                                                                                                                                    Frenzy
## 4303                                                                                                                                                    Marnie
## 4304                                                                                                                                Man Who Knew Too Much, The
## 4305                                                                                                                                      Strangers on a Train
## 4306                                                                                                                                         Untouchables, The
## 4307                                                                                                                                         Shadow of a Doubt
## 4308                                                                                                                                          Mr. & Mrs. Smith
## 4309                                                                                                                                                  Rounders
## 4310                                                                                                                                           Say Anything...
## 4311                                                                                                                                                 Rush Hour
## 4312                                                                                                                                                     Ronin
## 4313                                                                                                                                               Player, The
## 4314                                                                                                                                       Edward Scissorhands
## 4315                                                                                                                                         Elephant Man, The
## 4316                                                                                                                                             Pleasantville
## 4317                                                                                                                       Life Is Beautiful (La Vita è bella)
## 4318                                                                                                                                        American History X
## 4319                                                                                                                                         Gods and Monsters
## 4320                                                                                                                                                Siege, The
## 4321                                                                                                                                                 Elizabeth
## 4322                                                                                                                  Nights of Cabiria (Notti di Cabiria, Le)
## 4323                                                                                                                                        Enemy of the State
## 4324                                                                                                                       Central Station (Central do Brasil)
## 4325                                                                                                                                 Celebration, The (Festen)
## 4326                                                                                                                                            Pink Flamingos
## 4327                                                                                                                                      Prince of Egypt, The
## 4328                                                                                                                                       Shakespeare in Love
## 4329                                                                                                                                       Romancing the Stone
## 4330                                                                                                                                           You've Got Mail
## 4331                                                                                                                Name of the Rose, The (Name der Rose, Der)
## 4332                                                                                                                                       Color of Money, The
## 4333                                                                                                                                               October Sky
## 4334                                                                                                                                              Office Space
## 4335                                                                                                                                              Analyze This
## 4336                                                                                                                         Lock, Stock & Two Smoking Barrels
## 4337                                                                                                                                               Matrix, The
## 4338                                                                                                        Dreamlife of Angels, The (Vie rêvée des anges, La)
## 4339                                                                                                                                                        Go
## 4340                                                                                                                                                  Election
## 4341                                                                                                                                                  eXistenZ
## 4342                                                                                                                                                Mummy, The
## 4343                                                                                                                 Star Wars: Episode I - The Phantom Menace
## 4344                                                                                                                                                  Superman
## 4345                                                                                                                                                   Dracula
## 4346                                                                                                                                              Frankenstein
## 4347                                                                                                                            Rocky Horror Picture Show, The
## 4348                                                                                                                                 Run Lola Run (Lola rennt)
## 4349                                                                                                                                             Arachnophobia
## 4350                                                                                                                                             Summer of Sam
## 4351                                                                                                                                            Eyes Wide Shut
## 4352                                                                                                                       Ghostbusters (a.k.a. Ghost Busters)
## 4353                                                                                                                                                     Trick
## 4354                                                                                                                                             Runaway Bride
## 4355                                                                                                                                              Killing, The
## 4356                                                                                                                                                 Spartacus
## 4357                                                                                                                                                    Lolita
## 4358                                                                                                                                              Barry Lyndon
## 4359                                                                                                                   400 Blows, The (Les quatre cents coups)
## 4360                                                                                                                                         Color Purple, The
## 4361                                                                                                                                    Little Shop of Horrors
## 4362                                                                                                                                          Sixth Sense, The
## 4363                                                                                                                                          Mickey Blue Eyes
## 4364                                                                                                                                           American Beauty
## 4365                                                                                                                                               Deliverance
## 4366                                                                                                                                               Three Kings
## 4367                                                                                                                                 Sanjuro (Tsubaki Sanjûrô)
## 4368                                                                                                                                            Boys Don't Cry
## 4369                                                                                                                                  Ferris Bueller's Day Off
## 4370                                                                                                                                            Days of Heaven
## 4371                                                                                                                                                Goldfinger
## 4372                                                                                                                                       Sydney (Hard Eight)
## 4373                                                                                                                            Home Alone 2: Lost in New York
## 4374                                                                                                                                                Fight Club
## 4375                                                                                                                                              Fitzcarraldo
## 4376                                                                                                                                     Bringing Out the Dead
## 4377                                                                                                                                  Who Framed Roger Rabbit?
## 4378                                                                                                                                      Being John Malkovich
## 4379                                                                                                                                              Insider, The
## 4380                                                                                                                                          Drugstore Cowboy
## 4381                                                                                                                                              Falling Down
## 4382                                                                                                                                                     Dogma
## 4383                                                                                                                  Messenger: The Story of Joan of Arc, The
## 4384                                                                      Women on the Verge of a Nervous Breakdown (Mujeres al borde de un ataque de nervios)
## 4385                                                                                                                                             Sleepy Hollow
## 4386                                                                                                                                  World Is Not Enough, The
## 4387                                                                                                                 All About My Mother (Todo sobre mi madre)
## 4388                                                                                                                                                    Harvey
## 4389                                                             Bicycle Thieves (a.k.a. The Bicycle Thief) (a.k.a. The Bicycle Thieves) (Ladri di biciclette)
## 4390                                                                                                                                      Grapes of Wrath, The
## 4391                                                                                                                                  River Runs Through It, A
## 4392                                                                                                                                               Toy Story 2
## 4393                                                                                                                                           Green Mile, The
## 4394                                                                                                                                    Last Picture Show, The
## 4395                                                                                                                                         Anna and the King
## 4396                                                                                                                                             Fantasia 2000
## 4397                                                                                                                                                  Magnolia
## 4398                                                                                                                                                Easy Rider
## 4399                                                                                                                                  Talented Mr. Ripley, The
## 4400                                                                                                                                          Five Easy Pieces
## 4401                                                                                                                              I Am Cuba (Soy Cuba/Ya Kuba)
## 4402                                                                                                                                                 Malcolm X
## 4403                                                                                                                           Sister Act 2: Back in the Habit
## 4404                                                                                                                                          Scent of a Woman
## 4405                                                                                                                                              Mariachi, El
## 4406                                                                                                                                               City Lights
## 4407                                                                                                                                                  Kid, The
## 4408                                                                                                                                               Wonder Boys
## 4409                                                                                                                                            Searchers, The
## 4410                                                                                                                                           Bound for Glory
## 4411                                                                                                                                                       JFK
## 4412                                                                                                                                      Night to Remember, A
## 4413                                                                                                                                           Erin Brockovich
## 4414                                                                                                                                     Mirror, The (Zerkalo)
## 4415                                                                                                                                        Do the Right Thing
## 4416                                                                                                                                          Double Indemnity
## 4417                                                                                                                                     Good Morning, Vietnam
## 4418                                                                                                                                              Modern Times
## 4419                                                                                                                                              Hustler, The
## 4420                                                                                                                        Close Encounters of the Third Kind
## 4421                                                                                                                                       Place in the Sun, A
## 4422                                                                                                                                             High Fidelity
## 4423                                                                                                                                                      Hook
## 4424                                                                                                                                          Midnight Express
## 4425                                                                                                                                        Solaris (Solyaris)
## 4426                                                                                                                                                   Network
## 4427                                                                                                                                                 Frequency
## 4428                                                                                                                                           American Psycho
## 4429                                                                                                                          What Ever Happened to Baby Jane?
## 4430                                                                                                                                                 Limelight
## 4431                                                                                                                                   Idiots, The (Idioterne)
## 4432                                                                                                                                                 Gladiator
## 4433                                                                                                                                         Small Time Crooks
## 4434                                                                                                                                    Mission: Impossible II
## 4435                                                                                                                                            Gold Rush, The
## 4436                                                                                                                                          Romeo and Juliet
## 4437                                                                                                                                           Blazing Saddles
## 4438                                                                                                       For a Few Dollars More (Per qualche dollaro in più)
## 4439                                                                                                                                         Conversation, The
## 4440                                                                                                                       Ace in the Hole (Big Carnival, The)
## 4441                                                                                                                                                  Badlands
## 4442                                                                                                                                               Chicken Run
## 4443                                                                                                                                              Patriot, The
## 4444                                                                                                                                          Blow-Up (Blowup)
## 4445                                                                                                                                       Anatomy of a Murder
## 4446                                                                                                                                           Steel Magnolias
## 4447                                                                                                                                                     Shane
## 4448                                                                                                                                             Almost Famous
## 4449                                                                                                                                        Dancer in the Dark
## 4450                                                                                                                                       Requiem for a Dream
## 4451                                                                                                                                       You Can Count on Me
## 4452                                                                                                                                      One Day in September
## 4453                                                                                                                                                    Malèna
## 4454                                                                                                                                               Unbreakable
## 4455                                                                                                          Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 4456                                                                                                                                               Wall Street
## 4457                                                                                                                                Born on the Fourth of July
## 4458                                                                                                                                                    Snatch
## 4459                                                                                                                                                  Chocolat
## 4460                                                                                                                                                 Cast Away
## 4461                                                                                                                                O Brother, Where Art Thou?
## 4462                                                                                                                                                   Traffic
## 4463                                                                                                                                            House of Games
## 4464                                                                                                                                         Empire of the Sun
## 4465                                                                                                                                                  Hannibal
## 4466                                                                                                                                                15 Minutes
## 4467                                                                                                                                        Enemy at the Gates
## 4468                                                                                                                                                 Dish, The
## 4469                                                                                                                                                   Memento
## 4470                                                                                                                            Amores Perros (Love's a Bitch)
## 4471                                                                                                                                     One Night at McCool's
## 4472                                                                                                                 Triumph of the Will (Triumph des Willens)
## 4473                                                                                                                                         Fellini Satyricon
## 4474                                                                                                                     Pelle the Conqueror (Pelle erobreren)
## 4475                                                                                                                                              Moulin Rouge
## 4476                                                                                                                                              Pearl Harbor
## 4477                                                                                                                 Himalaya (Himalaya - l'enfance d'un chef)
## 4478                                                                                                                                                 Evolution
## 4479                                                                                                                                                 Swordfish
## 4480                                                                                                                                      Seven Year Itch, The
## 4481                                                                                                                              A.I. Artificial Intelligence
## 4482                                                                                                                                                Sexy Beast
## 4483                                                                                                                                    Sweet Smell of Success
## 4484                                                                                                                                            Legally Blonde
## 4485                                                                                                                                     Africa: The Serengeti
## 4486                                                                                                                                                    Always
## 4487                                                                                                                          Bill & Ted's Excellent Adventure
## 4488                                                                                                                                               Ghost World
## 4489                                                                                                                                               Others, The
## 4490                                                                                                                                                 Zoolander
## 4491                                                                                                                                               Serendipity
## 4492                                                                                                                                          Mulholland Drive
## 4493                                                                                                                                       Fiddler on the Roof
## 4494                                                                                                                                                 From Hell
## 4495                                                                                                                                              Donnie Darko
## 4496                                                                                                                                 Man Who Wasn't There, The
## 4497                                                                                                                                            Monsters, Inc.
## 4498                                                                   Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 4499                                                                                                                                                  Spy Game
## 4500                                                                                                                            Breathless (À bout de souffle)
## 4501                                                                                                                                            Ocean's Eleven
## 4502                                                                                                                                             No Man's Land
## 4503                                                                                                             Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 4504                                                                                                                                               Vanilla Sky
## 4505                                                                                                                                                      Iris
## 4506                                                                                                                                                   Lantana
## 4507                                                                                                                                     Royal Tenenbaums, The
## 4508                                                                                                        Lord of the Rings: The Fellowship of the Ring, The
## 4509                                                                                                                                         Beautiful Mind, A
## 4510                                                                                                                                              Gosford Park
## 4511                                                                                                                                                  I Am Sam
## 4512                                                                                                                                            Monster's Ball
## 4513                                                                                                                                     M*A*S*H (a.k.a. MASH)
## 4514                                                                                                                   Son's Room, The (Stanza del figlio, La)
## 4515                                                                                                                                            Baby's Day Out
## 4516                                                                                                                                Bad and the Beautiful, The
## 4517                                                                                                                                           Monsoon Wedding
## 4518                                                                                                                       Wild Strawberries (Smultronstället)
## 4519                                                                                                                                Magnificent Ambersons, The
## 4520                                                                                                                                     Kissing Jessica Stein
## 4521                                                                                                                   And Your Mother Too (Y tu mamá también)
## 4522                                                                                                                                                Panic Room
## 4523                                                                                                                                       Rashomon (Rashômon)
## 4524                                                                                                                                  My Big Fat Greek Wedding
## 4525                                                                                                   Rome, Open City (a.k.a. Open City) (Roma, città aperta)
## 4526                                                                                                                                          Hollywood Ending
## 4527                                                                                                                                                Spider-Man
## 4528                                                                                                                                   My Beautiful Laundrette
## 4529                                                                                                                  Cranes Are Flying, The (Letyat zhuravli)
## 4530                                                                                                                                               About a Boy
## 4531                                                                                                              Star Wars: Episode II - Attack of the Clones
## 4532                                                                                                                                           Last Waltz, The
## 4533                                                                                                                                                  Insomnia
## 4534                                                                                                                                           Minority Report
## 4535                                                                                                                                        Rabbit-Proof Fence
## 4536                                                                                                                                             Reign of Fire
## 4537                                                                                                                                         Road to Perdition
## 4538                                                                                                                           The Importance of Being Earnest
## 4539                                                                                                      Nosferatu the Vampyre (Nosferatu: Phantom der Nacht)
## 4540                                                                                                                                                     Signs
## 4541                                                                                                                           Tabu: A Story of the South Seas
## 4542                                                                                                             Spirited Away (Sen to Chihiro no kamikakushi)
## 4543                                                                                                                                                    Heaven
## 4544                                                                                                                                     Bowling for Columbine
## 4545                                                                                                                                          Punch-Drunk Love
## 4546                                                                                                                                                 Ring, The
## 4547                                                                                                                                            Grey Zone, The
## 4548                                                                                                                                                    8 Mile
## 4549                                                                                                                   Harry Potter and the Chamber of Secrets
## 4550                                                                                                                              Talk to Her (Hable con Ella)
## 4551                                                                                                                                                   Solaris
## 4552                                                                                                                                           Treasure Planet
## 4553                                                                                                                                                Adaptation
## 4554                                                                                                                                              Eating Raoul
## 4555                                                                                                                                          Intact (Intacto)
## 4556                                                                                                                    Lord of the Rings: The Two Towers, The
## 4557                                                                                                                                                 25th Hour
## 4558                                                                                                                                         Gangs of New York
## 4559                                                                                                                     My Neighbor Totoro (Tonari no Totoro)
## 4560                                                                                                                                       Catch Me If You Can
## 4561                                                                                                                                                   Chicago
## 4562                                                                                                                                                Hours, The
## 4563                                                                                                                                              Pianist, The
## 4564                                                                                                                                       King of Comedy, The
## 4565                                                                                                                                        Son, The (Le fils)
## 4566                                                                                                                              City of God (Cidade de Deus)
## 4567                                                                                                                                                     Gerry
## 4568                                                                                                                                                    Spider
## 4569                                                                                                                               Irreversible (Irréversible)
## 4570                                                                                                                                      Bend It Like Beckham
## 4571                                                                                                                       Europa Europa (Hitlerjunge Salomon)
## 4572                                                                                                                                               Phone Booth
## 4573                                                                                                                                                  Identity
## 4574                                                                                                                                          X2: X-Men United
## 4575                                                                                                                                      Matrix Reloaded, The
## 4576                                                                                                                                              Finding Nemo
## 4577                                                                                                                     White Sheik, The (Sceicco bianco, Lo)
## 4578                                                                                                                                                Intervista
## 4579                                                                                                                                               Barton Fink
## 4580                                                                                                                        Terminator 3: Rise of the Machines
## 4581                                                                                                    Pirates of the Caribbean: The Curse of the Black Pearl
## 4582                                                                                                                                       Dirty Pretty Things
## 4583                                                                                                                                    Magdalene Sisters, The
## 4584                                                                                                                                                 Accattone
## 4585                                                                                                                                                Umberto D.
## 4586                                                                                                                                         American Splendor
## 4587                                                                                            Code Unknown (Code inconnu: Récit incomplet de divers voyages)
## 4588                                                                                                                            Tokyo Story (Tôkyô monogatari)
## 4589                                                                             Discreet Charm of the Bourgeoisie, The (Charme discret de la bourgeoisie, Le)
## 4590                                                                                                                                                     Ikiru
## 4591                                                                                                                                            Matchstick Men
## 4592                                                                                                                                Once Upon a Time in Mexico
## 4593                                                                                                                                       Lost in Translation
## 4594                                                                                                                  Rules of the Game, The (La règle du jeu)
## 4595                                                                                                                                   All the President's Men
## 4596                                                                                                                                           Boyz N the Hood
## 4597                                                                                                                        Monty Python's The Meaning of Life
## 4598                                                                                                                                        Station Agent, The
## 4599                                                                                                                                              Mystic River
## 4600                                                                                                                                       Intolerable Cruelty
## 4601                                                                                                                                         Kill Bill: Vol. 1
## 4602                                                                                                                                           Pieces of April
## 4603                                                                                                                                                  Elephant
## 4604                                                                                                                             Unvanquished, The (Aparajito)
## 4605                                                                                                                                           Shattered Glass
## 4606                                                                                                                                   Matrix Revolutions, The
## 4607                                                                                                                                       Father of the Bride
## 4608                                                                                                           Master and Commander: The Far Side of the World
## 4609                                                                                                                                                  21 Grams
## 4610                                                                                                         Barbarian Invasions, The (Les invasions barbares)
## 4611                                                                                                                                               Funny Games
## 4612                                                                                                                                         Ordet (Word, The)
## 4613                                                                                                                          Forbidden Games (Jeux interdits)
## 4614                                                                                                 Passion of Joan of Arc, The (Passion de Jeanne d'Arc, La)
## 4615                                                                                             Cabinet of Dr. Caligari, The (Cabinet des Dr. Caligari., Das)
## 4616                                                                                                                                    Hannah and Her Sisters
## 4617                                                                                                                                          Kindergarten Cop
## 4618                                                                                                               Last Tango in Paris (Ultimo tango a Parigi)
## 4619                                                                                                                                  Night of the Hunter, The
## 4620                                                                                                                Things You Can Tell Just by Looking at Her
## 4621                                                                                                                                Betty Blue (37°2 le matin)
## 4622                                                                                                      Aguirre: The Wrath of God (Aguirre, der Zorn Gottes)
## 4623                                                                                                                                                 Red River
## 4624                                                                                                                                                Stagecoach
## 4625                                                                                                                               Black Orpheus (Orfeu Negro)
## 4626                                                                                                                                         Hero (Ying xiong)
## 4627                                                                                                                                                      1941
## 4628                                                                                                                                     Night at the Opera, A
## 4629                                                                                                                             Stolen Kisses (Baisers volés)
## 4630                                                                                                                                                In America
## 4631                                                                                                                                                  Big Fish
## 4632                                                                                                            Lord of the Rings: The Return of the King, The
## 4633                                                                                                                                                   Monster
## 4634                                                                                                                                      Cheaper by the Dozen
## 4635                                                                                                                                             Cold Mountain
## 4636                                                                                                                                                Strada, La
## 4637                                                                                                                                             Dreamers, The
## 4638                                                                                                                                          Good bye, Lenin!
## 4639                                                                                                                                             Secret Window
## 4640                                                                                                                     Eternal Sunshine of the Spotless Mind
## 4641                                                                                                                                                  Dogville
## 4642                                                                                                                                               After Hours
## 4643                                                                                                                                         Kill Bill: Vol. 2
## 4644                                                                                                                                                      Troy
## 4645                                                                                                                                       You Only Live Twice
## 4646                                                                                                                                Samouraï, Le (Godson, The)
## 4647                                                                                                                                                Cat People
## 4648                                                                                                                                            Pierrot le fou
## 4649                                                                                                                                                Nostalghia
## 4650                                                                                                                             Throne of Blood (Kumonosu jô)
## 4651                                                                                                                           Zorba the Greek (Alexis Zorbas)
## 4652                                                                                                                  Summer with Monika (Sommaren med Monika)
## 4653                                                                                                                  Dark Water (Honogurai mizu no soko kara)
## 4654                                                                                                                                              Mean Streets
## 4655                                                                                                                             Sunrise: A Song of Two Humans
## 4656                                                                                                                                            Dolce Vita, La
## 4657                                                                                                                            Avventura, L' (Adventure, The)
## 4658                                                                                                                                                 Viridiana
## 4659                                                                                                                                           Black Narcissus
## 4660                                                                                                                  Harry Potter and the Prisoner of Azkaban
## 4661                                                                                                                                         Napoleon Dynamite
## 4662                                                                                                                                             Super Size Me
## 4663                                                                                                                                                    Freaks
## 4664                                                                                                                                             Terminal, The
## 4665                                                                                                                                              Spider-Man 2
## 4666                                                                                                     Short Film About Killing, A (Krótki film o zabijaniu)
## 4667                                                                                                          Motorcycle Diaries, The (Diarios de motocicleta)
## 4668                                                                                                                                         I Heart Huckabees
## 4669                                                                                                                                                  Sideways
## 4670                                                                                                                                                  Undertow
## 4671                                                                                                                                                       Ray
## 4672                                                                                                                                                    Kinsey
## 4673                                                                                                                                         Finding Neverland
## 4674                                                                                                                         Bad Education (La mala educación)
## 4675                                                                                                                                            Ocean's Twelve
## 4676                                                                                                                                                     Greed
## 4677                                                                                                                                       Steamboat Bill, Jr.
## 4678                                                                                                                                              Atalante, L'
## 4679                                                                                                                                                Pickpocket
## 4680                                                                                                           Battle of Algiers, The (La battaglia di Algeri)
## 4681                                                                                                                                                      Duel
## 4682                                                                                                               Hearts of Darkness: A Filmmakers Apocalypse
## 4683                                                                                                                                                      2046
## 4684                                                                                                                                        Audition (Ôdishon)
## 4685                                                                                                 Very Long Engagement, A (Un long dimanche de fiançailles)
## 4686                                                                                                                             Sea Inside, The (Mar adentro)
## 4687                                                                                                                                       Million Dollar Baby
## 4688                                                                                                                                              Hotel Rwanda
## 4689                                                                                                                         Charlie and the Chocolate Factory
## 4690                                                                                                                                              Aviator, The
## 4691                                                                                                                                             Woodsman, The
## 4692                                                                                                                                                   Stander
## 4693                                                                                                               Howl's Moving Castle (Hauru no ugoku shiro)
## 4694                                                                                                                                                  Sin City
## 4695                                                                                               Ivan's Childhood (a.k.a. My Name is Ivan) (Ivanovo detstvo)
## 4696                                                                                                                                         Kingdom of Heaven
## 4697                                                                                                                                                     Crash
## 4698                                                                                                              Star Wars: Episode III - Revenge of the Sith
## 4699                                                                                                                                             Batman Begins
## 4700                                                                                                             Edukators, The (Die Fetten Jahre sind vorbei)
## 4701                                                                                                                                         War of the Worlds
## 4702                                                                                                                                                Dark Water
## 4703                                                                                                                                                 Last Days
## 4704                                                                                                                                            Broken Flowers
## 4705                                                                                                                                    Constant Gardener, The
## 4706                                                                                                                                               Lord of War
## 4707                                                                                                                                 Everything Is Illuminated
## 4708                                                                                                                                    History of Violence, A
## 4709                                                                                                                                              Oliver Twist
## 4710                                                                                                                                                    Capote
## 4711                                                                                                          Wallace & Gromit in The Curse of the Were-Rabbit
## 4712                                                                                                                                        Brokeback Mountain
## 4713                                                                                                                                             Elizabethtown
## 4714                                                                                                                                Good Night, and Good Luck.
## 4715                                                                                                                                                 Manderlay
## 4716                                                                                                                                                   Jarhead
## 4717                                                                                                                                                   Syriana
## 4718                                                                                                                                         Pride & Prejudice
## 4719                                                                                                                       Harry Potter and the Goblet of Fire
## 4720                                                                                                                                             Walk the Line
## 4721                                                                                                                                               Match Point
## 4722                                                                                                                                                 King Kong
## 4723                                                                                                                                       Memoirs of a Geisha
## 4724                                                                                                                  Three Burials of Melquiades Estrada, The
## 4725                                                                                                                                                    Munich
## 4726                                                                                                                                              Transamerica
## 4727                                                                                                                                            New World, The
## 4728                                                                                                                                               Hoodwinked!
## 4729                                                                                                                                            V for Vendetta
## 4730                                                                                                                                                    Tsotsi
## 4731                                                                                                                                   Mission: Impossible III
## 4732                                                                                                                                        Da Vinci Code, The
## 4733                                                                                                                Pirates of the Caribbean: Dead Man's Chest
## 4734                                                                       Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan
## 4735                                                                                                                                                      Heat
## 4736                                                                                                                                          Dead Man Walking
## 4737                                                                                                                   Things to Do in Denver When You're Dead
## 4738                                                                                                                                              Broken Arrow
## 4739                                                                                                                                                 Apollo 13
## 4740                                                                                                                                Die Hard: With a Vengeance
## 4741                                                                                                                                              Pulp Fiction
## 4742                                                                                                                                                  Stargate
## 4743                                                                                                                                              Forrest Gump
## 4744                                                                                                                                                 True Lies
## 4745                                                                                                                                             Fugitive, The
## 4746                                                                                                                                                   Aladdin
## 4747                                                                                                                                        Dances with Wolves
## 4748                                                                                                                                                    Batman
## 4749                                                                                                                                               Heavy Metal
## 4750                                                                                                                                       Mission: Impossible
## 4751                                                                                                                                                   Twister
## 4752                                                                                                                             Independence Day (a.k.a. ID4)
## 4753                                                                                                                                                    Eraser
## 4754                                                                                                                                                   Freeway
## 4755                                                                                                                         Tin Drum, The (Blechtrommel, Die)
## 4756                                                                                                                                          Grumpier Old Men
## 4757                                                                                                                        Twelve Monkeys (a.k.a. 12 Monkeys)
## 4758                                                                                                                                       Crossing Guard, The
## 4759                                                                                                                                             Happy Gilmore
## 4760                                                                                                                        Star Wars: Episode IV - A New Hope
## 4761                                                                                                                                        Executive Decision
## 4762                                                                                                                                                     Fargo
## 4763                                                                                                                                               Dragonheart
## 4764                                                                                                                             Kids in the Hall: Brain Candy
## 4765                                                                                                                                          Mulholland Falls
## 4766                                                                                                                                             Trainspotting
## 4767                                                                                                                             Independence Day (a.k.a. ID4)
## 4768                                                                                                                                            Cable Guy, The
## 4769                                                                                                                                                    Eraser
## 4770                                                                                                                                      Nutty Professor, The
## 4771                                                                                                                                                Phenomenon
## 4772                                                                                                                                                    Ransom
## 4773                                                                                                          Tales from the Crypt Presents: Bordello of Blood
## 4774                                                                                                                       Willy Wonka & the Chocolate Factory
## 4775                                                                                                                                        Breaking the Waves
## 4776                                                                                                                                  Star Trek: First Contact
## 4777                                                                                                                                               Sling Blade
## 4778                                                                                                                                             Mars Attacks!
## 4779                                                                                                                           Beavis and Butt-Head Do America
## 4780                                                                                                                                                   Michael
## 4781                                                                                                                                                     Crash
## 4782                                                                                                                                                 Toy Story
## 4783                                                                                                                        Twelve Monkeys (a.k.a. 12 Monkeys)
## 4784                                                                                                                                      Seven (a.k.a. Se7en)
## 4785                                                                                                                                       Usual Suspects, The
## 4786                                                                                  Don't Be a Menace to South Central While Drinking Your Juice in the Hood
## 4787                                                                                                                                                    Friday
## 4788                                                                                                                                            Batman Forever
## 4789                                                                                                                                Die Hard: With a Vengeance
## 4790                                                                                                                        Star Wars: Episode IV - A New Hope
## 4791                                                                                                                                              Pulp Fiction
## 4792                                                                                                                                                  Stargate
## 4793                                                                                                                                 Shawshank Redemption, The
## 4794                                                                                                                                Ace Ventura: Pet Detective
## 4795                                                                                                                                              Forrest Gump
## 4796                                                                                                                                                 Mask, The
## 4797                                                                                                                                                     Speed
## 4798                                                                                                                                                 True Lies
## 4799                                                                                                                                             Fugitive, The
## 4800                                                                                                                                             Jurassic Park
## 4801                                                                                                                                            Mrs. Doubtfire
## 4802                                                                                                                                              True Romance
## 4803                                                                                                                                Terminator 2: Judgment Day
## 4804                                                                                                                                 Silence of the Lambs, The
## 4805                                                                                                                                                     Fargo
## 4806                                                                                                                                       Mission: Impossible
## 4807                                                                                                           Wallace & Gromit: The Best of Aardman Animation
## 4808                                                                                                                                                 Rock, The
## 4809                                                                                                                                             Trainspotting
## 4810                                                                                                                             Independence Day (a.k.a. ID4)
## 4811                                                                                                                                            Godfather, The
## 4812                                                                                                                                                  Die Hard
## 4813                                                                                                                                            Reservoir Dogs
## 4814                                                                                                            Star Wars: Episode V - The Empire Strikes Back
## 4815                                                                                   Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 4816                                                                                                                Star Wars: Episode VI - Return of the Jedi
## 4817                                                                                                                           Beavis and Butt-Head Do America
## 4818                                                                                                                                        Fifth Element, The
## 4819                                                                                                                                 Men in Black (a.k.a. MIB)
## 4820                                                                                                                                                   Gattaca
## 4821                                                                                                                                               Jackal, The
## 4822                                                                                                                                         Big Lebowski, The
## 4823                                                                                                                                                Half Baked
## 4824                                                                                                                                             Lost in Space
## 4825                                                                                                                            Fear and Loathing in Las Vegas
## 4826                                                                                                                                       Saving Private Ryan
## 4827                                                                                                                                        American History X
## 4828                                                                                                                                             Bug's Life, A
## 4829                                                                                                                         Lock, Stock & Two Smoking Barrels
## 4830                                                                                                                                               Matrix, The
## 4831                                                                                                                                 Run Lola Run (Lola rennt)
## 4832                                                                                                                                           American Beauty
## 4833                                                                                                                                                Fight Club
## 4834                                                                                                                                          Fisher King, The
## 4835                                                                                                                                               Toy Story 2
## 4836                                                                                                                                           Green Mile, The
## 4837                                                                                                                                      Boondock Saints, The
## 4838                                                                                                                                             High Fidelity
## 4839                                                                                                                                                 Gladiator
## 4840                                                                                                                                                     Shaft
## 4841                                                                                                                                                    Snatch
## 4842                                                                                                                                         Finding Forrester
## 4843                                                                                                                                O Brother, Where Art Thou?
## 4844                                                                                                                                              Mexican, The
## 4845                                                                                                                                                   Memento
## 4846                                                                                                                                                  Scarface
## 4847                                                                                                                                                     Shrek
## 4848                                                                                                                                              Training Day
## 4849                                                                                                                                                   Bandits
## 4850                                                                                                                                                 From Hell
## 4851                                                                                                                                            Ocean's Eleven
## 4852                                                                                                             Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 4853                                                                                                                                     Royal Tenenbaums, The
## 4854                                                                                                                                         Beautiful Mind, A
## 4855                                                                                                                                           Black Hawk Down
## 4856                                                                                                                                            Super Troopers
## 4857                                                                                                                                                   Ice Age
## 4858                                                                                                                                      Bourne Identity, The
## 4859                                                                                                                          Das Experiment (Experiment, The)
## 4860                                                                                                                                                 Secretary
## 4861                                                                                                                                               Equilibrium
## 4862                                                                                                                    Lord of the Rings: The Two Towers, The
## 4863                                                                                                                                                 25th Hour
## 4864                                                                                                                                       Catch Me If You Can
## 4865                                                                                                                              City of God (Cidade de Deus)
## 4866                                                                                                                                          X2: X-Men United
## 4867                                                                                                    Pirates of the Caribbean: The Curse of the Black Pearl
## 4868                                                                                                                                            Matchstick Men
## 4869                                                                                                                                        Station Agent, The
## 4870                                                                                                                                              Mystic River
## 4871                                                                                                                                         Kill Bill: Vol. 1
## 4872                                                                                                                                          Good bye, Lenin!
## 4873                                                                                                                     Eternal Sunshine of the Spotless Mind
## 4874                                                                                                                                         Kill Bill: Vol. 2
## 4875                                                                                                                                               Man on Fire
## 4876                                                                                                                  Harry Potter and the Prisoner of Azkaban
## 4877                                                                                                                                     Bourne Supremacy, The
## 4878                                                                                                                                              Garden State
## 4879                                                                                                                                                Collateral
## 4880                                                                                                                                         Shaun of the Dead
## 4881                                                                                                                                          Incredibles, The
## 4882                                                                                                                                 Tunnel, The (Tunnel, Der)
## 4883                                                                                                                                                Layer Cake
## 4884                                                                                                                       Life Aquatic with Steve Zissou, The
## 4885                                                                                                                                 Downfall (Untergang, Der)
## 4886                                                                                                                                  Kung Fu Hustle (Gong fu)
## 4887                                                                                                                                                  Sin City
## 4888                                                                                                                                             Batman Begins
## 4889                                                                                                                                            Broken Flowers
## 4890                                                                                                                                               Lord of War
## 4891                                                                                                                 Green Street Hooligans (a.k.a. Hooligans)
## 4892                                                                                                                                                    Capote
## 4893                                                                                                          Wallace & Gromit in The Curse of the Were-Rabbit
## 4894                                                                                                                                       Kiss Kiss Bang Bang
## 4895                                                                                                                                                    Munich
## 4896                                                                                                                                            V for Vendetta
## 4897                                                                                                                                     Thank You for Smoking
## 4898                                                                                                                                                Inside Man
## 4899                                                                                                                                       Lucky Number Slevin
## 4900                                                                                                                                     Stranger than Fiction
## 4901                                                                                                                                          Illusionist, The
## 4902                                                                                                                                             Departed, The
## 4903                                                                                                                                           Children of Men
## 4904                                                                                                                                             Prestige, The
## 4905                                                                                                                                             Casino Royale
## 4906                                                                                                                                         Déjà Vu (Deja Vu)
## 4907                                                                                                                                             Blood Diamond
## 4908                                                                                                                                           Cocaine Cowboys
## 4909                                                                                                                                               Ratatouille
## 4910                                                                                                                                                  Hot Fuzz
## 4911                                                                                                                                                       300
## 4912                                                                                                                                                  Fracture
## 4913                                                                                                                                           This Is England
## 4914                                                                                                                                                Mr. Brooks
## 4915                                                                                                                                     Live Free or Die Hard
## 4916                                                                                                                                     Bourne Ultimatum, The
## 4917                                                                                                                                                  Superbad
## 4918                                                                                                                                          Eastern Promises
## 4919                                                                                                                         Tekkonkinkreet (Tekkon kinkurîto)
## 4920                                                                                                                                             Into the Wild
## 4921                                                                                                                                           Michael Clayton
## 4922                                                                                                                                    Lars and the Real Girl
## 4923                                                                                                                                         American Gangster
## 4924                                                                                                                                    No Country for Old Men
## 4925                                                                                                                                       There Will Be Blood
## 4926                                                                                                                                                 In Bruges
## 4927                                                                                                                                          Dark Knight, The
## 4928                                                                                                                                                  Iron Man
## 4929                                                                                                                                                     Taken
## 4930                                                                                                                                                 Fall, The
## 4931                                                                                                                                             Kung Fu Panda
## 4932                                                                                                                                                    WALL·E
## 4933                                                                                                                                                  Watchmen
## 4934                                                                                                                                         Pineapple Express
## 4935                                                                                                                                        Burn After Reading
## 4936                                                                                                                                                RocknRolla
## 4937                                                                                                                                       Slumdog Millionaire
## 4938                                                                                                                                                    Ip Man
## 4939                                                                                                                                               In the Loop
## 4940                                                                                                                                      Inglourious Basterds
## 4941                                                                                                                                                 Star Trek
## 4942                                                                                                                                                        Up
## 4943                                                                                                                                             Hangover, The
## 4944                                                                                       Evangelion: 1.0 You Are (Not) Alone (Evangerion shin gekijôban: Jo)
## 4945                                                                                                                                            Serious Man, A
## 4946                                                                                                                                                    Avatar
## 4947                                                                                                                                           Sherlock Holmes
## 4948                                                                                                                                              Soul Kitchen
## 4949                                                                                                                                                 Inception
## 4950                                                                                                                                                 Town, The
## 4951                                                                                                                                                 True Grit
## 4952                                                                                                                        Sherlock Holmes: A Game of Shadows
## 4953                                                                                                                                              Intouchables
## 4954                                                                                                                                       Usual Suspects, The
## 4955                                                                                                                                           Misérables, Les
## 4956                                                                                                                                               Taxi Driver
## 4957                                                                                                                                              Pulp Fiction
## 4958                                                                                                                                          Schindler's List
## 4959                                                                                                                                 Silence of the Lambs, The
## 4960                                                                                                                                                Goodfellas
## 4961                                                                                                                                                 Cape Fear
## 4962                                                                                                                                                   Contact
## 4963                                                                                                                                 Hunt for Red October, The
## 4964                                                                                                                                               Chasing Amy
## 4965                                                                                                                                         Good Will Hunting
## 4966                                                                                                                                                   Titanic
## 4967                                                                                                                                         Perfect Murder, A
## 4968                                                                                                                                                 Celebrity
## 4969                                                                                                                                            Simple Plan, A
## 4970                                                                                                                                       Shakespeare in Love
## 4971                                                                                                                                               October Sky
## 4972                                                                                                                                              Office Space
## 4973                                                                                                                                  Blair Witch Project, The
## 4974                                                                                                                                            Eyes Wide Shut
## 4975                                                                                                                                          Sixth Sense, The
## 4976                                                                                                                                           American Beauty
## 4977                                                                                                                                                Get Shorty
## 4978                                                                                                                                Postman, The (Postino, Il)
## 4979                                                                                                                                                Braveheart
## 4980                                                                                                         Adventures of Priscilla, Queen of the Desert, The
## 4981                                                                                                                                   Philadelphia Story, The
## 4982                                                                                                                                       Singin' in the Rain
## 4983                                                                                                                                    Breakfast at Tiffany's
## 4984                                                                                                                                                   Vertigo
## 4985                                                                                                                                               Rear Window
## 4986                                                                                                                                        North by Northwest
## 4987                                                                                                                                            Apartment, The
## 4988                                                                                                                                       Maltese Falcon, The
## 4989                                                                                                                                        Gone with the Wind
## 4990                                                                                                                                     2001: A Space Odyssey
## 4991                                                                                                                                             All About Eve
## 4992                                                                                                                                          To Catch a Thief
## 4993                                                                                                                                     It's a Wonderful Life
## 4994                                                                                                                      William Shakespeare's Romeo + Juliet
## 4995                                                                                                                                      Fish Called Wanda, A
## 4996                                                                                                                                          Crying Game, The
## 4997                                                                                                                                              12 Angry Men
## 4998                                                                                                                                       Clockwork Orange, A
## 4999                                                                                                                                                    Psycho
## 5000                                                                                                                                                   Amadeus
## 5001                                                                                                                             Bridge on the River Kwai, The
## 5002                                                                                                                                                 Chinatown
## 5003                                                                                                                                 Manchurian Candidate, The
## 5004                                                                                                                                       Room with a View, A
## 5005                                                                                                                      My Life as a Dog (Mitt liv som hund)
## 5006                                                                                                                                             Crucible, The
## 5007                                                                                                                                 Hunt for Red October, The
## 5008                                                                                                                                         L.A. Confidential
## 5009                                                                                                                                                   Witness
## 5010                                                                                                                                             Lost in Space
## 5011                                                                                                                                                  Bulworth
## 5012                                                                                                                                         On the Waterfront
## 5013                                                                                                                                           Ordinary People
## 5014                                                                                                                                        Driving Miss Daisy
## 5015                                                                                                                      Seven Samurai (Shichinin no samurai)
## 5016                                                                                                                                       Saving Private Ryan
## 5017                                                                                                                                                 Jerk, The
## 5018                                                                                                                                                  Lifeboat
## 5019                                                                                                                                       Edward Scissorhands
## 5020                                                                                                                                            Producers, The
## 5021                                                                                                                       Life Is Beautiful (La Vita è bella)
## 5022                                                                                                                                       Romancing the Stone
## 5023                                                                                                                                          Crocodile Dundee
## 5024                                                                                                                                               Matrix, The
## 5025                                                                                                                                          Cookie's Fortune
## 5026                                                                                                                                    War of the Worlds, The
## 5027                                                                                                                                             Trainspotting
## 5028                                                                                                                                  My Best Friend's Wedding
## 5029                                                                                                                               Mortal Kombat: Annihilation
## 5030                                                                                                                                                  Scream 2
## 5031                                                                                                                                 Purple Rose of Cairo, The
## 5032                                                                                                                                                 King Kong
## 5033                                                                                                                                     Babe: Pig in the City
## 5034                                                                                                                              Texas Chainsaw Massacre, The
## 5035                                                                                                                                              Pet Sematary
## 5036                                                                                                                                               Matrix, The
## 5037                                                                                                                                               Lake Placid
## 5038                                                                                                                                           Ghostbusters II
## 5039                                                                                                                                                Flashdance
## 5040                                                                                                                                                  Sunshine
## 5041                                                                                                                                   Mothman Prophecies, The
## 5042                                                                                                                                      Matrix Reloaded, The
## 5043                                                                                                                                             28 Days Later
## 5044                                                                                                                                   Matrix Revolutions, The
## 5045                                                                                                                                                Open Water
## 5046                                                                                                                                                       300
## 5047                                                                                                                                          Dark Knight, The
## 5048                                                                                                                                               Daybreakers
## 5049                                                                                                                                                 Toy Story
## 5050                                                                                                                                                   Jumanji
## 5051                                                                                                                                                      Heat
## 5052                                                                                                                                              Tom and Huck
## 5053                                                                                                                                   American President, The
## 5054                                                                                                                                                     Nixon
## 5055                                                                                                                                                    Casino
## 5056                                                                                                                                                Four Rooms
## 5057                                                                                                                                                Get Shorty
## 5058                                                                                                                                                 Assassins
## 5059                                                                                                                                         Leaving Las Vegas
## 5060                                                                                                                        Twelve Monkeys (a.k.a. 12 Monkeys)
## 5061                                                                                                                                                      Babe
## 5062                                                                                                                                           Dead Presidents
## 5063                                                                                                                                                To Die For
## 5064                                                                                                                                      Seven (a.k.a. Se7en)
## 5065                                                                                                                                       Usual Suspects, The
## 5066                                                                                                                                          Mighty Aphrodite
## 5067                                                                                                                               Indian in the Cupboard, The
## 5068                                                                                                                                       From Dusk Till Dawn
## 5069                                                                                                                                       Crossing Guard, The
## 5070                                                                                                                                                 City Hall
## 5071                                                                                                                                                Braveheart
## 5072                                                                                                                                               Taxi Driver
## 5073                                                                                                                                              If Lucy Fell
## 5074                                                                                                                                             Birdcage, The
## 5075                                                                                                                                                 Apollo 13
## 5076                                                                                                                                                    Casper
## 5077                                                                                                                                              Crimson Tide
## 5078                                                                                                                                                     Crumb
## 5079                                                                                                                                Die Hard: With a Vengeance
## 5080                                                                                                                                                   Hackers
## 5081                                                                                                                                                   Species
## 5082                                                                                                          To Wong Foo, Thanks for Everything! Julie Newmar
## 5083                                                                                                                                                Waterworld
## 5084                                                                                                                                        White Man's Burden
## 5085                                                                                                                                          Don Juan DeMarco
## 5086                                                                                                                                                 Drop Zone
## 5087                                                                                                                                Destiny Turns on the Radio
## 5088                                                                                                                                                   Ed Wood
## 5089                                                                                                        Interview with the Vampire: The Vampire Chronicles
## 5090                                                                                                                                        Jefferson in Paris
## 5091                                                                                                                        Star Wars: Episode IV - A New Hope
## 5092                                                                                                                                              Little Women
## 5093                                                                                                                               Madness of King George, The
## 5094                                                                                                                                             Nobody's Fool
## 5095                                                                                                                                                      Nell
## 5096                                                                                                                                      Natural Born Killers
## 5097                                                                                                                                              Pulp Fiction
## 5098                                                                                                                                                 Quiz Show
## 5099                                                                                                                                         Santa Clause, The
## 5100                                                                                                                                 Shawshank Redemption, The
## 5101                                                                                                                               What's Eating Gilbert Grape
## 5102                                                                                                                                Ace Ventura: Pet Detective
## 5103                                                                                                                                     Bullets Over Broadway
## 5104                                                                                                                                  Clear and Present Danger
## 5105                                                                                                                                               Client, The
## 5106                                                                                                                                              Forrest Gump
## 5107                                                                                                                               Four Weddings and a Funeral
## 5108                                                                                                                                            Lion King, The
## 5109                                                                                                                                                  Maverick
## 5110                                                                                                                        Mrs. Parker and the Vicious Circle
## 5111                                                                                                                                                Paper, The
## 5112                                                                                                                                                     Speed
## 5113                                                                                                                                                 True Lies
## 5114                                                                                                                                                      Wolf
## 5115                                                                                                                                      Addams Family Values
## 5116                                                                                                                                     Age of Innocence, The
## 5117                                                                                                                                                  Airheads
## 5118                                                                                                                                  Beverly Hillbillies, The
## 5119                                                                                                                                                Blue Chips
## 5120                                                                                                                                                  Blue Sky
## 5121                                                                                                                                            Body Snatchers
## 5122                                                                                                                                             Bronx Tale, A
## 5123                                                                                                              City Slickers II: The Legend of Curly's Gold
## 5124                                                                                                                                               Cliffhanger
## 5125                                                                                                                                                      Dave
## 5126                                                                                                                                            Fatal Instinct
## 5127                                                                                                                                            Flesh and Bone
## 5128                                                                                                                                                 Firm, The
## 5129                                                                                                                                             Fugitive, The
## 5130                                                                                                                                              Getaway, The
## 5131                                                                                                                                             Guilty as Sin
## 5132                                                                                                                                      Hudsucker Proxy, The
## 5133                                                                                                                                          I'll Do Anything
## 5134                                                                                                                                       In the Line of Fire
## 5135                                                                                                                            What's Love Got to Do with It?
## 5136                                                                                                                                             Jurassic Park
## 5137                                                                                                                                          Last Action Hero
## 5138                                                                                                                                  Manhattan Murder Mystery
## 5139                                                                                                                                            Mrs. Doubtfire
## 5140                                                                                                                                          Perfect World, A
## 5141                                                                                                                                              Philadelphia
## 5142                                                                                                                                                Piano, The
## 5143                                                                                                                                   Remains of the Day, The
## 5144                                                                                                                                                Rising Sun
## 5145                                                                                                                                    Road to Wellville, The
## 5146                                                                                                                                          Ruby in Paradise
## 5147                                                                                                                                          Schindler's List
## 5148                                                                                                                                        Secret Garden, The
## 5149                                                                                                                                                Serial Mom
## 5150                                                                                                                                               Shadowlands
## 5151                                                                                                                                                Short Cuts
## 5152                                                                                                                                 Six Degrees of Separation
## 5153                                                                                                                                      Sleepless in Seattle
## 5154                                                                                                                                                    Sliver
## 5155                                                                                                                                              Blade Runner
## 5156                                                                                                                                                 Tombstone
## 5157                                                                                                                                              True Romance
## 5158                                                                                                                                             War Room, The
## 5159                                                                                                                                     Celluloid Closet, The
## 5160                                                                                                                                                Home Alone
## 5161                                                                                                                                                     Ghost
## 5162                                                                                                                                                   Aladdin
## 5163                                                                                                                                Terminator 2: Judgment Day
## 5164                                                                                                                                        Dances with Wolves
## 5165                                                                                                                                                    Batman
## 5166                                                                                                                                 Silence of the Lambs, The
## 5167                                                                                                                           Snow White and the Seven Dwarfs
## 5168                                                                                                                                      Beauty and the Beast
## 5169                                                                                                                                                 Pinocchio
## 5170                                                                                                                                              Pretty Woman
## 5171                                                                                                                                                     Fargo
## 5172                                                                                                                                               Primal Fear
## 5173                                                                                                                                                Diabolique
## 5174                                                                                                                                        Courage Under Fire
## 5175                                                                                                                                 James and the Giant Peach
## 5176                                                                                                                                          Mulholland Falls
## 5177                                                                                                                                                 Rock, The
## 5178                                                                                                                                                   Twister
## 5179                                                                                      Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb
## 5180                                                                                                                                                Striptease
## 5181                                                                                                                                                      Jack
## 5182                                                                                                                                           Grass Harp, The
## 5183                                                                                                                             Independence Day (a.k.a. ID4)
## 5184                                                                                                                                                  Fan, The
## 5185                                                                                                                                                 Lone Star
## 5186                                                                                                                                           Time to Kill, A
## 5187                                                                                                                                          American Buffalo
## 5188                                                                                                                                                    Ransom
## 5189                                                                                                                                            Godfather, The
## 5190                                                                                                                                               Kansas City
## 5191                                                                                                                                   Philadelphia Story, The
## 5192                                                                                                                                       Singin' in the Rain
## 5193                                                                                                                                                   Vertigo
## 5194                                                                                                                                               Rear Window
## 5195                                                                                                                                        North by Northwest
## 5196                                                                                                                                                Casablanca
## 5197                                                                                                                                       Maltese Falcon, The
## 5198                                                                                                                                              My Fair Lady
## 5199                                                                                                                                         Wizard of Oz, The
## 5200                                                                                                                                        Gone with the Wind
## 5201                                                                                                                                          My Favorite Year
## 5202                                                                                                                    Sunset Blvd. (a.k.a. Sunset Boulevard)
## 5203                                                                                                                                              Citizen Kane
## 5204                                                                                                                                     2001: A Space Odyssey
## 5205                                                                                                                                                   Rebecca
## 5206                                                                                                                                            My Man Godfrey
## 5207                                                                                                                                             Thin Man, The
## 5208                                                                                                                                     It's a Wonderful Life
## 5209                                                                                                                              Mr. Smith Goes to Washington
## 5210                                                                                                                                        African Queen, The
## 5211                                                                                                                                     Cat on a Hot Tin Roof
## 5212                                                                                                                                         Last Man Standing
## 5213                                                                                                                                              Chamber, The
## 5214                                                                                                                                             Love Bug, The
## 5215                                                                                                                                                Old Yeller
## 5216                                                                                                                                          Parent Trap, The
## 5217                                                                                                                                     Swiss Family Robinson
## 5218                                                                                                                                            That Darn Cat!
## 5219                                                                                                                                   Sword in the Stone, The
## 5220                                                                                                                             Robin Hood: Prince of Thieves
## 5221                                                                                                                                              Mary Poppins
## 5222                                                                                                                                       Sound of Music, The
## 5223                                                                                                                                                  Die Hard
## 5224                                                                                                                                        That Thing You Do!
## 5225                                                                                                                                                  Sleepers
## 5226                                                                                                                       Willy Wonka & the Chocolate Factory
## 5227                                                                                                                                                   Bananas
## 5228                                                                                                                                      Fish Called Wanda, A
## 5229                                                                                                                                           Victor/Victoria
## 5230                                                                                                                                            Candidate, The
## 5231                                                                                                                                          Bonnie and Clyde
## 5232                                                                                                                                         Dial M for Murder
## 5233                                                                                                                                             Dirty Dancing
## 5234                                                                                                                                            Reservoir Dogs
## 5235                                                                                                                                                   Platoon
## 5236                                                                                                                                       Weekend at Bernie's
## 5237                                                                                                                                            Basic Instinct
## 5238                                                                                                                                                Doors, The
## 5239                                                                                                                                          Crying Game, The
## 5240                                                                                                                                       Glengarry Glen Ross
## 5241                                                                                                                                           Sophie's Choice
## 5242                                                                                                                                E.T. the Extra-Terrestrial
## 5243                                                                                                                                                   Top Gun
## 5244                                                                                                                                 Streetcar Named Desire, A
## 5245                                                                                                                                              Funeral, The
## 5246                                                                                                                               People vs. Larry Flynt, The
## 5247                                                                                                                                            On Golden Pond
## 5248                                                                                                                                            Drop Dead Fred
## 5249                                                                                                                                      Escape from New York
## 5250                                                                                                                                          Private Benjamin
## 5251                                                                                                                                               Bob Roberts
## 5252                                                                                                                                             Grifters, The
## 5253                                                                                                                                              Shooter, The
## 5254                                                                                                                                  Sex, Lies, and Videotape
## 5255                                                                                                                                       Thin Blue Line, The
## 5256                                                                                                                           One Flew Over the Cuckoo's Nest
## 5257                                                                                                            Star Wars: Episode V - The Empire Strikes Back
## 5258                                                                                                                                       Princess Bride, The
## 5259                                                                                   Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 5260                                                                                                                                                    Aliens
## 5261                                                                                                                                       Clockwork Orange, A
## 5262                                                                                                                                     To Kill a Mockingbird
## 5263                                                                                                                                            Apocalypse Now
## 5264                                                                                                                Star Wars: Episode VI - Return of the Jedi
## 5265                                                                                                                                            Third Man, The
## 5266                                                                                                                                                Goodfellas
## 5267                                                                                                                                                     Alien
## 5268                                                                                                                                                    Psycho
## 5269                                                                                                                                       Blues Brothers, The
## 5270                                                                                                                                   Godfather: Part II, The
## 5271                                                                                                                                         Full Metal Jacket
## 5272                                                                                                                                                   Amadeus
## 5273                                                                                                                                            Quiet Man, The
## 5274                                                                                                                               Once Upon a Time in America
## 5275                                                                                                                                               Raging Bull
## 5276                                                                                                                                          Right Stuff, The
## 5277                                                                                                                                                Sting, The
## 5278                                                                                                                                          Harold and Maude
## 5279                                                                                                                                           Terminator, The
## 5280                                                                                                                                                     Glory
## 5281                                                                                                                                                 Manhattan
## 5282                                                                                                                                         Miller's Crossing
## 5283                                                                                                                                        Dead Poets Society
## 5284                                                                                                                                             Graduate, The
## 5285                                                                                                                             Bridge on the River Kwai, The
## 5286                                                                                                                                                 Chinatown
## 5287                                                                                                                                              Shining, The
## 5288                                                                                                                                               Stand by Me
## 5289                                                                                                                                          Deer Hunter, The
## 5290                                                                                                                                             Groundhog Day
## 5291                                                                                                                                                Unforgiven
## 5292                                                                                                                                 Manchurian Candidate, The
## 5293                                                                                                                                        Back to the Future
## 5294                                                                                                                                      Fried Green Tomatoes
## 5295                                                                                                                                                    Patton
## 5296                                                                                                                                            Cool Hand Luke
## 5297                                                                                                                                        Cyrano de Bergerac
## 5298                                                                                                                                        Young Frankenstein
## 5299                                                                                                                                                 High Noon
## 5300                                                                                                                                                  Heathers
## 5301                                                                                                                                         Somewhere in Time
## 5302                                                                                                                        Indiana Jones and the Last Crusade
## 5303                                                                                                                                               Being There
## 5304                                                                                                                                           Field of Dreams
## 5305                                                                                                                                Man Who Would Be King, The
## 5306                                                                                                                        Butch Cassidy and the Sundance Kid
## 5307                                                                                                                                   When Harry Met Sally...
## 5308                                                                                                                                   Alien³ (a.k.a. Alien 3)
## 5309                                                                                                                           American Werewolf in London, An
## 5310                                                                                                                                    Amityville Horror, The
## 5311                                                                                                                                            Believers, The
## 5312                                                                                                                                                Birds, The
## 5313                                                                                                                                                 Blob, The
## 5314                                                                                                                           Dracula (Bram Stoker's Dracula)
## 5315                                                                                                                                                 Cape Fear
## 5316                                                                                                                                                    Carrie
## 5317                                                                                                                                                Cat People
## 5318                                                                                                                                                 Omen, The
## 5319                                                                                                                                          Albino Alligator
## 5320                                                                                                                                               Sling Blade
## 5321                                                                                                                                             Crucible, The
## 5322                                                                                                                                                Die Hard 2
## 5323                                                                                                                                            Batman Returns
## 5324                                                                                                                                                Young Guns
## 5325                                                                                                                                                    Grease
## 5326                                                                                                                                               Under Siege
## 5327                                                                                                                                                      Jaws
## 5328                                                                                                                                                    Jaws 2
## 5329                                                                                                                                       My Fellow Americans
## 5330                                                                                                                                             Jerry Maguire
## 5331                                                                                                                                           Raising Arizona
## 5332                                                                                                                                                   Tin Men
## 5333                                                                                                                                                  Sneakers
## 5334                                                                                                                                             Marvin's Room
## 5335                                                                                                                                            Murder at 1600
## 5336                                                                                                                                              Dante's Peak
## 5337                                                                                                                                             Amos & Andrew
## 5338                                                                                                                                            Absolute Power
## 5339                                                                                                    Vegas Vacation (National Lampoon's Las Vegas Vacation)
## 5340                                                                                                                                             Donnie Brasco
## 5341                                                                                                                                                 Liar Liar
## 5342                                                                                                                                          Devil's Own, The
## 5343                                                                                                                                                 Traveller
## 5344                                                                                                               Austin Powers: International Man of Mystery
## 5345                                                                                                                               Truth or Consequences, N.M.
## 5346                                                                                                                                                   Con Air
## 5347                                                                                                                                            Batman & Robin
## 5348                                                                                                                                                  Hercules
## 5349                                                                                                                                 Men in Black (a.k.a. MIB)
## 5350                                                                                                                                                   Contact
## 5351                                                                                                                                      George of the Jungle
## 5352                                                                                                                                                  Cop Land
## 5353                                                                                                                                        Desperate Measures
## 5354                                                                                                                                             Air Force One
## 5355                                                                                                                                 Hunt for Red October, The
## 5356                                                                                                                                      My Own Private Idaho
## 5357                                                                                                                                                  In & Out
## 5358                                                                                                                                         L.A. Confidential
## 5359                                                                                                                                            Kiss the Girls
## 5360                                                                                                                                         Thousand Acres, A
## 5361                                                                                                                                                 Game, The
## 5362                                                                                                                                      The Devil's Advocate
## 5363                                                                                                                                            Rainmaker, The
## 5364                                                                                                                                             Boogie Nights
## 5365                                                                                                                                                   Witness
## 5366                                                                                                                                          Truman Show, The
## 5367                                                                                                                                                Red Corner
## 5368                                                                                                                                       Alien: Resurrection
## 5369                                                                                                                                              Apostle, The
## 5370                                                                                                                                      Deconstructing Harry
## 5371                                                                                                                                         Good Will Hunting
## 5372                                                                                                                   Midnight in the Garden of Good and Evil
## 5373                                                                                                                                                   Titanic
## 5374                                                                                                                                              Postman, The
## 5375                                                                                                                                              Jackie Brown
## 5376                                                                                                                                         Big Lebowski, The
## 5377                                                                                                                                               Wag the Dog
## 5378                                                                                                                                                  Palmetto
## 5379                                                                                                                                        As Good as It Gets
## 5380                                                                                                                                          King of New York
## 5381                                                                                                                                                  Twilight
## 5382                                                                                                                                                      Hush
## 5383                                                                                                                                               Wild Things
## 5384                                                                                                                                            Primary Colors
## 5385                                                                                                                                     Spanish Prisoner, The
## 5386                                                                                                                                               Sour Grapes
## 5387                                                                                                                                           Misérables, Les
## 5388                                                                                                                                               Deep Impact
## 5389                                                                                                                                                  Godzilla
## 5390                                                                                                                            Fear and Loathing in Las Vegas
## 5391                                                                                                                                         Perfect Murder, A
## 5392                                                                                                                                              Out of Sight
## 5393                                                                                                                                                Armageddon
## 5394                                                                                                                              There's Something About Mary
## 5395                                                                                                                               Greatest Show on Earth, The
## 5396                                                                                                                                         On the Waterfront
## 5397                                                                                                                                           West Side Story
## 5398                                                                                                                                                   Oliver!
## 5399                                                                                                                                           Midnight Cowboy
## 5400                                                                                                                                    French Connection, The
## 5401                                                                                                                                                     Rocky
## 5402                                                                                                                                         Kramer vs. Kramer
## 5403                                                                                                                                           Ordinary People
## 5404                                                                                                                                          Chariots of Fire
## 5405                                                                                                                                       Terms of Endearment
## 5406                                                                                                                                         Last Emperor, The
## 5407                                                                                                                                                  Rain Man
## 5408                                                                                                                                        Driving Miss Daisy
## 5409                                                                                                                                                  Repo Man
## 5410                                                                                                                                       Breakfast Club, The
## 5411                                                                                                                                                 Halloween
## 5412                                                                                                                                               Poltergeist
## 5413                                                                                                                                             Exorcist, The
## 5414                                                                                                                                             Lethal Weapon
## 5415                                                                                                                                           Lethal Weapon 2
## 5416                                                                                                                                           Lethal Weapon 3
## 5417                                                                                                                                                  Gremlins
## 5418                                                                                                                                             Soylent Green
## 5419                                                                                                                                Back to the Future Part II
## 5420                                                                                                                               Back to the Future Part III
## 5421                                                                                                                                   Poseidon Adventure, The
## 5422                                                                                                                              Absent-Minded Professor, The
## 5423                                                                                                                                  Godfather: Part III, The
## 5424                                                                                                                                              Rapture, The
## 5425                                                                                                                                                    Lolita
## 5426                                                                                                                                       Saving Private Ryan
## 5427                                                                                                                                  Honey, I Shrunk the Kids
## 5428                                                                                                                                                Roger & Me
## 5429                                                                                                                                 Purple Rose of Cairo, The
## 5430                                                                                                                                            Tender Mercies
## 5431                                                                                                                                               Blue Velvet
## 5432                                                                                                                                          Jungle Book, The
## 5433                                                                                                                                       Little Mermaid, The
## 5434                                                                                                                                         Mighty Ducks, The
## 5435                                                                                                                               Muppet Christmas Carol, The
## 5436                                                                                                                                                    Popeye
## 5437                                                                                                                                            Rocketeer, The
## 5438                                                                                                                                                      Tron
## 5439                                                                                                                                                L.A. Story
## 5440                                                                                                                                                 Jerk, The
## 5441                                                                                                                                              Grand Canyon
## 5442                                                                                                                                            Outsiders, The
## 5443                                                                                                                      Indiana Jones and the Temple of Doom
## 5444                                                                                                                                    Lord of the Rings, The
## 5445                                                                                                                               1984 (Nineteen Eighty-Four)
## 5446                                                                                                                                            Dead Zone, The
## 5447                                                                                                                                            Needful Things
## 5448                                                                                                                                                      Cujo
## 5449                                                                                                                                      Children of the Corn
## 5450                                                                                                                                        Addams Family, The
## 5451                                                                                                                                                Snake Eyes
## 5452                                                                                                                                      Nutty Professor, The
## 5453                                                                                                                                           Sixteen Candles
## 5454                                                                                                                                            Pretty in Pink
## 5455                                                                                                                                           St. Elmo's Fire
## 5456                                                                                                                                                     House
## 5457                                                                                                                        Henry: Portrait of a Serial Killer
## 5458                                                                                                                                           Rosemary's Baby
## 5459                                                                                                                                        Return to Paradise
## 5460                                                                                                                                               Beetlejuice
## 5461                                                                                                                                Man Who Knew Too Much, The
## 5462                                                                                                                                   Trouble with Harry, The
## 5463                                                                                                                                                        54
## 5464                                                                                                                                                    Willow
## 5465                                                                                                                                         Untouchables, The
## 5466                                                                                                                                                  Rounders
## 5467                                                                                                                                               Simon Birch
## 5468                                                                                                                                              My Bodyguard
## 5469                                                                                                                                            Broadcast News
## 5470                                                                                                                                              Working Girl
## 5471                                                                                                                                        Married to the Mob
## 5472                                                                                                                                            My Blue Heaven
## 5473                                                                                                                                                      Hero
## 5474                                                                                                                                                      Toys
## 5475                                                                                                                                     Young Doctors in Love
## 5476                                                                                                                                           Blame It on Rio
## 5477                                                                                                                                         Seventh Sign, The
## 5478                                                                                                                                           We're No Angels
## 5479                                                                                                                                           Mortal Thoughts
## 5480                                                                                                                                           Few Good Men, A
## 5481                                                                                                                                         Indecent Proposal
## 5482                                                                                                                                                     Ronin
## 5483                                                                                                                       Fiendish Plot of Dr. Fu Manchu, The
## 5484                                                                                                                                               Player, The
## 5485                                                                                                                                       Edward Scissorhands
## 5486                                                                                                                                   Night at the Roxbury, A
## 5487                                                                                                                                            Producers, The
## 5488                                                                                                                              History of the World: Part I
## 5489                                                                                                                                           My Cousin Vinny
## 5490                                                                                                                                             One Tough Cop
## 5491                                                                                                                            2010: The Year We Make Contact
## 5492                                                                                                                                         Elephant Man, The
## 5493                                                                                                                                                 Apt Pupil
## 5494                                                                                                                                             Pleasantville
## 5495                                                                                                                                        American History X
## 5496                                                                                                                                                Siege, The
## 5497                                                                                                                                                 Elizabeth
## 5498                                                                                                                                       Stepford Wives, The
## 5499                                                                                                                            Pope of Greenwich Village, The
## 5500                                                                                                                                            Big Chill, The
## 5501                                                                                                                                        Enemy of the State
## 5502                                                                                                                                             Bug's Life, A
## 5503                                                                                                                                                 King Kong
## 5504                                                                                                                                 Desperately Seeking Susan
## 5505                                                                                                                                                    Fletch
## 5506                                                                                                                                                   Gung Ho
## 5507                                                                                                                                         View to a Kill, A
## 5508                                                                                                                                                    Psycho
## 5509                                                                                                                                            Simple Plan, A
## 5510                                                                                                                                       Shakespeare in Love
## 5511                                                                                                                                    Miracle on 34th Street
## 5512                                                                                                                                Rambo: First Blood Part II
## 5513                                                                                                                          First Blood (Rambo: First Blood)
## 5514                                                                                                                                                    Cocoon
## 5515                                                                                                                                                  Rocky II
## 5516                                                                                                                                                 Rocky III
## 5517                                                                                                                                                  Rocky IV
## 5518                                                                                                                                                   Rocky V
## 5519                                                                                                                                                 Heartburn
## 5520                                                                                                                                         Nothing in Common
## 5521                                                                                                                                           Karate Kid, The
## 5522                                                                                                                                           You've Got Mail
## 5523                                                                                                                                        Thin Red Line, The
## 5524                                                                                                                                                   Stepmom
## 5525                                                                                                                                           Civil Action, A
## 5526                                                                                                                                                Hurlyburly
## 5527                                                                                                                                                  Fly, The
## 5528                                                                                                                                            Running Scared
## 5529                                                                                                                                           Ruthless People
## 5530                                                                                                                                        Jumpin' Jack Flash
## 5531                                                                                                                                          Crocodile Dundee
## 5532                                                                                                                                       Color of Money, The
## 5533                                                                                                                                                   Payback
## 5534                                                                                                                                                       8MM
## 5535                                                                                                                                              Pet Sematary
## 5536                                                                                                                                                 Christine
## 5537                                                                                                                                               Night Shift
## 5538                                                                                                                                                   Airport
## 5539                                                                                                                                              Airport 1975
## 5540                                                                                                                                             Rollercoaster
## 5541                                                                                                                                     Towering Inferno, The
## 5542                                                                                                                                               Logan's Run
## 5543                                                                                                                                        Planet of the Apes
## 5544                                                                                                                            Beneath the Planet of the Apes
## 5545                                                                                                                         Battle for the Planet of the Apes
## 5546                                                                                                                        Conquest of the Planet of the Apes
## 5547                                                                                                                        Escape from the Planet of the Apes
## 5548                                                                                                                                                Earthquake
## 5549                                                                                                                                              Analyze This
## 5550                                                                                                                                              Dead Ringers
## 5551                                                                                                                                                True Crime
## 5552                                                                                                                                               Matrix, The
## 5553                                                                                                                                       Out-of-Towners, The
## 5554                                                                                                                                                 Metroland
## 5555                                                                                                                                               Pushing Tin
## 5556                                                                                                                                                  Election
## 5557                                                                                                                                                Entrapment
## 5558                                                                                                                                          Winslow Boy, The
## 5559                                                                                                                                                Dick Tracy
## 5560                                                                                                                                                Mummy, The
## 5561                                                                                                                                            Mommie Dearest
## 5562                                                                                                                                                  Superman
## 5563                                                                                                                                               Superman II
## 5564                                                                                                                                              Superman III
## 5565                                                                                                                            Invasion of the Body Snatchers
## 5566                                                                                                                                              Notting Hill
## 5567                                                                                                                                                    Tarzan
## 5568                                                                                                                                   General's Daughter, The
## 5569                                                                                                                                            Wild Wild West
## 5570                                                                                                                                             Summer of Sam
## 5571                                                                                                                                            Arlington Road
## 5572                                                                                                                                            Eyes Wide Shut
## 5573                                                                                                                       Ghostbusters (a.k.a. Ghost Busters)
## 5574                                                                                                                                                    Lolita
## 5575                                                                                                                                              Barry Lyndon
## 5576                                                                                                                                       Crimes of the Heart
## 5577                                                                                                                                         Color Purple, The
## 5578                                                                                                                                                  No Mercy
## 5579                                                                                                                                    Little Shop of Horrors
## 5580                                                                                                                                        Morning After, The
## 5581                                                                                                                                                Radio Days
## 5582                                                                                                                                                   Frances
## 5583                                                                                                                                          Sixth Sense, The
## 5584                                                                                                                                  Thomas Crown Affair, The
## 5585                                                                                                                                                 Bowfinger
## 5586                                                                                                                                      Pit and the Pendulum
## 5587                                                                                                                                                 Cat's Eye
## 5588                                                                                                 Final Conflict, The (a.k.a. Omen III: The Final Conflict)
## 5589                                                                                                                                                 Airplane!
## 5590                                                                                                                            American Werewolf in Paris, An
## 5591                                                                                              European Vacation (aka National Lampoon's European Vacation)
## 5592                                                                                                                               National Lampoon's Vacation
## 5593                                                                                                                                                       Big
## 5594                                                                                                                                           Tequila Sunrise
## 5595                                                                                                                                        Pelican Brief, The
## 5596                                                                                                                                        Christmas Story, A
## 5597                                                                                                                                          Mickey Blue Eyes
## 5598                                                                                                           Three Days of the Condor (3 Days of the Condor)
## 5599                                                                                                                                                 Muse, The
## 5600                                                                                                                                            Stir of Echoes
## 5601                                                                                                                                                  Saturn 3
## 5602                                                                                                                                        Soldier's Story, A
## 5603                                                                                                                                        I Saw What You Did
## 5604                                                                                                                                           American Beauty
## 5605                                                                                                                                      For Love of the Game
## 5606                                                                                                                                               Deliverance
## 5607                                                                                                                                                 Sommersby
## 5608                                                                                                                                           Double Jeopardy
## 5609                                                                                                                                                   Mumford
## 5610                                                                                                                                               Three Kings
## 5611                                                                                                                                            Boys Don't Cry
## 5612                                                                                                                                                Limey, The
## 5613                                                                                                                                              Total Recall
## 5614                                                                                                                                                 Body Heat
## 5615                                                                                                                                  Ferris Bueller's Day Off
## 5616                                                                                                                                                      Reds
## 5617                                                                                                                                                Flashdance
## 5618                                                                                                                                          Dirty Dozen, The
## 5619                                                                                                                                                Goldfinger
## 5620                                                                                                                                          Blue Lagoon, The
## 5621                                                                                                                                       Sydney (Hard Eight)
## 5622                                                                                                                                  Someone to Watch Over Me
## 5623                                                                                                                                                Fight Club
## 5624                                                                                                                                       Straight Story, The
## 5625                                                                                                                                             Bad Seed, The
## 5626                                                                                                                                             All That Jazz
## 5627                                                                                                                                   Crimes and Misdemeanors
## 5628                                                                                                                                     Bringing Out the Dead
## 5629                                                                                                                                          Crazy in Alabama
## 5630                                                                                                                                                   RoboCop
## 5631                                                                                                                                  Who Framed Roger Rabbit?
## 5632                                                                                                                                        For Your Eyes Only
## 5633                                                                                                                                          Live and Let Die
## 5634                                                                                                                                              Insider, The
## 5635                                                                                                                                                      Coma
## 5636                                                                                                                                          Drugstore Cowboy
## 5637                                                                                                                                              Falling Down
## 5638                                                                                                                                            Omega Man, The
## 5639                                                                                                                                            Mister Roberts
## 5640                                                                                                                                      Face in the Crowd, A
## 5641                                                                                                                                            Trading Places
## 5642                                                                                                                                                Dead Again
## 5643                                                                                                                  Messenger: The Story of Joan of Arc, The
## 5644                                                                                                                                                Poison Ivy
## 5645                                                                                                                                              Verdict, The
## 5646                                                                                                                                         Stand and Deliver
## 5647                                                                                                                                                Moonstruck
## 5648                                                                                                                                          Jeremiah Johnson
## 5649                                                                                                                                             Sleepy Hollow
## 5650                                                                                                                                  World Is Not Enough, The
## 5651                                                                                                                                                  Scrooged
## 5652                                                                                                                                      Grapes of Wrath, The
## 5653                                                                                                                                              Natural, The
## 5654                                                                                                                                          Fatal Attraction
## 5655                                                                                                                                               Jagged Edge
## 5656                                                                                                                                              Midnight Run
## 5657                                                                                                                                                Awakenings
## 5658                                                                                                                                                 Backdraft
## 5659                                                                                                                                          Fisher King, The
## 5660                                                                                                                                       Places in the Heart
## 5661                                                                                                                                               Toy Story 2
## 5662                                                                                                                              Distinguished Gentleman, The
## 5663                                                                                                                                   Bonfire of the Vanities
## 5664                                                                                                                                             Stealing Home
## 5665                                                                                                                                            Two Jakes, The
## 5666                                                                                                                                    Glass Bottom Boat, The
## 5667                                                                                                                                           Green Mile, The
## 5668                                                                                                                                    Last Picture Show, The
## 5669                                                                                                                                          Bicentennial Man
## 5670                                                                                                                                                  Magnolia
## 5671                                                                                                                                          Carnal Knowledge
## 5672                                                                                                                                The Falcon and the Snowman
## 5673                                                                                                                                          Any Given Sunday
## 5674                                                                                                                                           Man on the Moon
## 5675                                                                                                                                  Talented Mr. Ripley, The
## 5676                                                                                                                                    Snow Falling on Cedars
## 5677                                                                                                                                             Presidio, The
## 5678                                                                                                                                                  Papillon
## 5679                                                                                                                                     Boys from Brazil, The
## 5680                                                                                                                                          Against All Odds
## 5681                                                                                                                              Fast Times at Ridgemont High
## 5682                                                                                                                                                    Poison
## 5683                                                                                                                                           Pacific Heights
## 5684                                                                                                                                         Goodbye Girl, The
## 5685                                                                                                                                                 Malcolm X
## 5686                                                                                                                                                Sister Act
## 5687                                                                                                                           Hand That Rocks the Cradle, The
## 5688                                                                                                                                          Scent of a Woman
## 5689                                                                                                                                             Wayne's World
## 5690                                                                                                                                    League of Their Own, A
## 5691                                                                                                                                             Patriot Games
## 5692                                                                                                                                            Bodyguard, The
## 5693                                                                                                                                         Death Becomes Her
## 5694                                                                                                                                      White Men Can't Jump
## 5695                                                                                                                                             Forever Young
## 5696                                                                                                                                       Single White Female
## 5697                                                                                                                                                  Snow Day
## 5698                                                                                                                                          To Sir with Love
## 5699                                                                                                                                               Boiler Room
## 5700                                                                                                                                         Flamingo Kid, The
## 5701                                                                                                                                            Reindeer Games
## 5702                                                                                                                                                 Key Largo
## 5703                                                                                                                                           Mission to Mars
## 5704                                                                                                                                       Defending Your Life
## 5705                                                                                                                                             Breaking Away
## 5706                                                                                                                               Hoosiers (a.k.a. Best Shot)
## 5707                                                                                                                                               Bull Durham
## 5708                                                                                                                                         Dog Day Afternoon
## 5709                                                                                                                                         American Graffiti
## 5710                                                                                                                                                  Betrayed
## 5711                                                                                                                                                Volunteers
## 5712                                                                                                                                                       JFK
## 5713                                                                                                                                          Who's That Girl?
## 5714                                                                                                                                                Blind Date
## 5715                                                                                                                                                    Nadine
## 5716                                                                                                                                           Thelma & Louise
## 5717                                                                                                                                    ...And Justice for All
## 5718                                                                                                                                              Animal House
## 5719                                                                                                                                              Jungle Fever
## 5720                                                                                                                                                Champ, The
## 5721                                                                                                                                                  Red Dawn
## 5722                                                                                                                                        Eyes of Laura Mars
## 5723                                                                                                                                     Good Morning, Vietnam
## 5724                                                                                                                              Guess Who's Coming to Dinner
## 5725                                                                                                                                              Hustler, The
## 5726                                                                                                                                            Jacob's Ladder
## 5727                                                                                                                                                 Bamba, La
## 5728                                                                                                                                    Road to El Dorado, The
## 5729                                                                                                                                                      Hook
## 5730                                                                                                                                                 True Grit
## 5731                                                                                                                                          Midnight Express
## 5732                                                                                                                                                    Misery
## 5733                                                                                                                                        Mr. Saturday Night
## 5734                                                                                                                                                   Network
## 5735                                                                                                                                                No Way Out
## 5736                                                                                                                                        North Dallas Forty
## 5737                                                                                                                                           Odd Couple, The
## 5738                                                                                                                                       Rules of Engagement
## 5739                                                                                                                                                    Arthur
## 5740                                                                                                                                                Parenthood
## 5741                                                                                                                                      Prince of Tides, The
## 5742                                                                                                                           Postman Always Rings Twice, The
## 5743                                                                                                                                           American Psycho
## 5744                                                                                                                                         Keeping the Faith
## 5745                                                                                                                                        Where the Money Is
## 5746                                                                                                                                                     Diner
## 5747                                                                                                                                                   Cabaret
## 5748                                                                                                                          What Ever Happened to Baby Jane?
## 5749                                                                                                                                               Auntie Mame
## 5750                                                                                                                                            Guys and Dolls
## 5751                                                                                                                                              Marathon Man
## 5752                                                                                                                                      Virgin Suicides, The
## 5753                                                                                                                                                Jennifer 8
## 5754                                                                                                                                           Big Kahuna, The
## 5755                                                                                                                                                 Gladiator
## 5756                                                                                                                                   Pee-wee's Big Adventure
## 5757                                                                                                                                             Things Change
## 5758                                                                                                                                        Honeymoon in Vegas
## 5759                                                                                                                                         Small Time Crooks
## 5760                                                                                                                                                 Moonraker
## 5761                                                                                                                                           American Gigolo
## 5762                                                                                                                                           Blazing Saddles
## 5763                                                                                                                                              Blood Simple
## 5764                                                                                                                                  Fabulous Baker Boys, The
## 5765                                                                                                                                            Prizzi's Honor
## 5766                                                                                                                                                Flatliners
## 5767                                                                                                                                                   Porky's
## 5768                                                                                                                                              Alien Nation
## 5769                                                                                                                                                   Mad Max
## 5770                                                                                                                                Mad Max Beyond Thunderdome
## 5771                                                                                                                                                  Soapdish
## 5772                                                                                                                                       Long Walk Home, The
## 5773                                                                                                                                               Coming Home
## 5774                                                                                                                                        Prince of the City
## 5775                                                                                                                                                   Serpico
## 5776                                                                                                                                               Chicken Run
## 5777                                                                                                                                              Patriot, The
## 5778                                                                                                                                                       F/X
## 5779                                                                                                                                                  Croupier
## 5780                                                                                                                                                 Footloose
## 5781                                                                                                                                                  H.O.T.S.
## 5782                                                                                   Everything You Always Wanted to Know About Sex * But Were Afraid to Ask
## 5783                                                                                                                                                Hollow Man
## 5784                                                                                                                                              Bronco Billy
## 5785                                                                                                                                           Steel Magnolias
## 5786                                                                                                                                         Tao of Steve, The
## 5787                                                                                                                                   Eyes of Tammy Faye, The
## 5788                                                                                                                                                Cat Ballou
## 5789                                                                                                                                             Almost Famous
## 5790                                                                                                                                          Fantastic Voyage
## 5791                                                                                                                                          Meet the Parents
## 5792                                                                                                                                            Contender, The
## 5793                                                                                                                                                Billy Jack
## 5794                                                                                                                                       You Can Count on Me
## 5795                                                                                                                                               Unbreakable
## 5796                                                                                                          Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 5797                                                                                                                              Planes, Trains & Automobiles
## 5798                                                                                                                                               Wall Street
## 5799                                                                                                                                Born on the Fourth of July
## 5800                                                                                                                                                Talk Radio
## 5801                                                                                                                                                    Snatch
## 5802                                                                                                                                                 Punchline
## 5803                                                                                                                                                  Chocolat
## 5804                                                                                                                                           What Women Want
## 5805                                                                                                                                                 Cast Away
## 5806                                                                                                                                         Miss Congeniality
## 5807                                                                                                                                O Brother, Where Art Thou?
## 5808                                                                                                                                            State and Main
## 5809                                                                                                                                             Thirteen Days
## 5810                                                                                                                                                   Traffic
## 5811                                                                                                                                            House of Games
## 5812                                                                                                                                                     Annie
## 5813                                                                                                                               Officer and a Gentleman, An
## 5814                                                                                                                                                     Panic
## 5815                                                                                                                                                Love Field
## 5816                                                                                                                                              Mystic Pizza
## 5817                                                                                                                                         Prelude to a Kiss
## 5818                                                                                                                                         Beverly Hills Cop
## 5819                                                                                                                                             Big Easy, The
## 5820                                                                                                                                             Big Town, The
## 5821                                                                                                                                 Brave Little Toaster, The
## 5822                                                                                                                                          Eddie Murphy Raw
## 5823                                                                                                                                          Gardens of Stone
## 5824                                                                                                                                                  Ironweed
## 5825                                                                                                                                            Less Than Zero
## 5826                                                                                                                                            Lost Boys, The
## 5827                                                                                                                                                 Mannequin
## 5828                                                                                                                                 Million Dollar Hotel, The
## 5829                                                                                                                                                  Hannibal
## 5830                                                                                                                                                15 Minutes
## 5831                                                                                                                                              Elmer Gantry
## 5832                                                                                                                                       Reversal of Fortune
## 5833                                                                                                                                      Revenge of the Nerds
## 5834                                                                                                                                                   Memento
## 5835                                                                                                                                             Heartbreakers
## 5836                                                                                                                                                      Blow
## 5837                                                                                                                                     Bridget Jones's Diary
## 5838                                                                                                                                                  Scarface
## 5839                                                                                                                                    Days of Wine and Roses
## 5840                                                                                                                                           Lost in America
## 5841                                                                                                                              World According to Garp, The
## 5842                                                                                                                              Nine to Five (a.k.a. 9 to 5)
## 5843                                                                                                                                                 Norma Rae
## 5844                                                                                                                                                     Shrek
## 5845                                                                                                                                              Moulin Rouge
## 5846                                                                                                                                              Pearl Harbor
## 5847                                                                                                                                               Ice Castles
## 5848                                                                                                                                   Postcards From the Edge
## 5849                                                                                                                                             City Slickers
## 5850                                                                                                                                             Eight Men Out
## 5851                                                                                                                                       Mississippi Burning
## 5852                                                                                                                                Throw Momma from the Train
## 5853                                                                                                                                                 Swordfish
## 5854                                                                                                                                    Anniversary Party, The
## 5855                                                                                                                                                      Shag
## 5856                                                                                                                                            Unlawful Entry
## 5857                                                                                                                                                   Tootsie
## 5858                                                                                                                              A.I. Artificial Intelligence
## 5859                                                                                                                                                Sexy Beast
## 5860                                                                                                                                       Cannonball Run, The
## 5861                                                                                                                         Man Who Shot Liberty Valance, The
## 5862                                                                                                                                           Shadows and Fog
## 5863                                                                                                                                            Something Wild
## 5864                                                                                                                                            Legally Blonde
## 5865                                                                                                                                   Accidental Tourist, The
## 5866                                                                                                                                              Accused, The
## 5867                                                                                                                                                   Beaches
## 5868                                                                                                                                   Bright Lights, Big City
## 5869                                                                                                                                           Clean and Sober
## 5870                                                                                                                                                  Cocktail
## 5871                                                                                                                                                    Colors
## 5872                                                                                                                                         Coming to America
## 5873                                                                                                                                              Criminal Law
## 5874                                                                                                                                         Crossing Delancey
## 5875                                                                                                                                                    D.O.A.
## 5876                                                                                                                                            Dead Pool, The
## 5877                                                                                                                                   Dirty Rotten Scoundrels
## 5878                                                                                                                                  Everybody's All-American
## 5879                                                                                                                                                Masquerade
## 5880                                                                                                                                         Moon Over Parador
## 5881                                                                                                                                 My Stepmother Is an Alien
## 5882                                                                                                                                                Off Limits
## 5883                                                                                                                             Tucker: The Man and His Dream
## 5884                                                                                                                                                    Always
## 5885                                                                                                                                          Big Picture, The
## 5886                                                                                                                                                     Blaze
## 5887                                                                                                                                          Innocent Man, An
## 5888                                                                                                                                     Last Exit to Brooklyn
## 5889                                                                                                                                               Let It Ride
## 5890                                                                                                                                        Look Who's Talking
## 5891                                                                                                                                          Miss Firecracker
## 5892                                                                                                                                          New York Stories
## 5893                                                                                                                                               Next of Kin
## 5894                                                                                                                                     America's Sweethearts
## 5895                                                                                                                                        Planet of the Apes
## 5896                                                                                                                                               Sea of Love
## 5897                                                                                                                                     War of the Roses, The
## 5898                                                                                                                                     Princess Diaries, The
## 5899                                                                                                                                          Paint Your Wagon
## 5900                                                                                                                                             Shootist, The
## 5901                                                                                                                                            Altered States
## 5902                                                                                                                                     Any Which Way You Can
## 5903                                                                                                                                                  Rat Race
## 5904                                                                                                                           Curse of the Jade Scorpion, The
## 5905                                                                                                                                               Hunter, The
## 5906                                                                                                                                              Training Day
## 5907                                                                                                                                           Little Man Tate
## 5908                                                                                                                                         Play Misty for Me
## 5909                                                                                                                                        Hearts in Atlantis
## 5910                                                                                                                                                  Brubaker
## 5911                                                                                                                                                     Carny
## 5912                                                                                                                                     Coal Miner's Daughter
## 5913                                                                                                                                 Man Who Wasn't There, The
## 5914                                                                                                                                            Monsters, Inc.
## 5915                                                                                                                                                     Heist
## 5916                                                                                                                                               Shallow Hal
## 5917                                                                   Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 5918                                                                                                                                                 Novocaine
## 5919                                                                                                                                                  Toy, The
## 5920                                                                                                                                           Dressed to Kill
## 5921                                                                                                                                              Flash Gordon
## 5922                                                                                                                                         Lord of the Flies
## 5923                                                                                                                        Ocean's Eleven (a.k.a. Ocean's 11)
## 5924                                                                                                                                          Independent, The
## 5925                                                                                                                                            Ocean's Eleven
## 5926                                                                                                                                      Moscow on the Hudson
## 5927                                                                                                                                                   Lantana
## 5928                                                                                                                                     Royal Tenenbaums, The
## 5929                                                                                                        Lord of the Rings: The Fellowship of the Ring, The
## 5930                                                                                                                                         Beautiful Mind, A
## 5931                                                                                                                                            Monster's Ball
## 5932                                                                                                                                           Another 48 Hrs.
## 5933                                                                                                                                              Formula, The
## 5934                                                                                                                                                   48 Hrs.
## 5935                                                                                                                                     M*A*S*H (a.k.a. MASH)
## 5936                                                                                                                                               Mrs. Soffel
## 5937                                                                                                                                 The Count of Monte Cristo
## 5938                                                                                                                                             Good Son, The
## 5939                                                                                                                                                    Sleuth
## 5940                                                                                                                                             Summer of '42
## 5941                                                                                                                                                 Used Cars
## 5942                                                                                                                                                 Dragonfly
## 5943                                                                                                                                          We Were Soldiers
## 5944                                                                                                                                              Intersection
## 5945                                                                                                                                              Full Frontal
## 5946                                                                                                                                                 Hopscotch
## 5947                                                                                                                                          Jazz Singer, The
## 5948                                                                                                                                     Long Good Friday, The
## 5949                                                                                           Ninth Configuration, The (a.k.a. Twinkle, Twinkle, Killer Kane)
## 5950                                                                                                                                                  Oh, God!
## 5951                                                                                                                                                      Taps
## 5952                                                                                                                                     Smokey and the Bandit
## 5953                                                                                                                                                Stir Crazy
## 5954                                                                                                                          Piano Teacher, The (La pianiste)
## 5955                                                                                                                                         Crimes of Passion
## 5956                                                                                                                                     Evil That Men Do, The
## 5957                                                                                                                                            Changing Lanes
## 5958                                                                                                                                           Cat's Meow, The
## 5959                                                                                                                                  My Big Fat Greek Wedding
## 5960                                                                                                                                    Joe Versus the Volcano
## 5961                                                                                                                                   Taking Care of Business
## 5962                                                                                                                                      Three Men and a Baby
## 5963                                                                                                                               Three Men and a Little Lady
## 5964                                                                                                                                              Cadillac Man
## 5965                                                                                                                                        Coca-Cola Kid, The
## 5966                                                                                                                                           Thief of Hearts
## 5967                                                                                                                                             Rambling Rose
## 5968                                                                                                                                                Unfaithful
## 5969                                                                                                                                                     Whore
## 5970                                                                                                                                 Every Which Way But Loose
## 5971                                                                                                                                                  Insomnia
## 5972                                                                                          Thirteen Conversations About One Thing (a.k.a. 13 Conversations)
## 5973                                                                                                                                     Sum of All Fears, The
## 5974                                                                                                                                           Minority Report
## 5975                                                                                                                                    Look Who's Talking Now
## 5976                                                                                                                                         Road to Perdition
## 5977                                                                                                                                                   Perfect
## 5978                                                                                                                                                     Signs
## 5979                                                                                                                                                Blood Work
## 5980                                                                                                                                                     Hush!
## 5981                                                                                                                                           Time After Time
## 5982                                                                                                                             Down and Out in Beverly Hills
## 5983                                                                                                                                               True Colors
## 5984                                                                                                                                                   Swimfan
## 5985                                                                                                                                           Betsy's Wedding
## 5986                                                                                                                                        Sweet Home Alabama
## 5987                                                                                                                                                Red Dragon
## 5988                                                                                                                                                  Fan, The
## 5989                                                                                                                                                  Comedian
## 5990                                                                                                                                                 Ring, The
## 5991                                                                                                                                                Auto Focus
## 5992                                                                                                                                            Billy Bathgate
## 5993                                                                                                                                             Staying Alive
## 5994                                                                                                                                              Urban Cowboy
## 5995                                                                                                                                                  Tom Horn
## 5996                                                                                                                                              Wholly Moses
## 5997                                                                                                                                                    Xanadu
## 5998                                                                                                                                         Absence of Malice
## 5999                                                                                                                                                  Blow Out
## 6000                                                                                                                                        Continental Divide
## 6001                                                                                                                                              Endless Love
## 6002                                                                                                                                         Eye of the Needle
## 6003                                                                                                                                   First Monday in October
## 6004                                                                                                                                         Four Seasons, The
## 6005                                                                                                                                                 Neighbors
## 6006                                                                                                                                           Far from Heaven
## 6007                                                                                                                                              Toy Soldiers
## 6008                                                                                                                                               Raggedy Man
## 6009                                                                                                                                                   Ragtime
## 6010                                                                                                                                          Sharky's Machine
## 6011                                                                                                                                                   So Fine
## 6012                                                                                                                                          Southern Comfort
## 6013                                                                                                                                          True Confessions
## 6014                                                                                                                                              Analyze That
## 6015                                                                                                                                                Adaptation
## 6016                                                                                                                                           Author! Author!
## 6017                                                                                                                                              Best Friends
## 6018                                                                                                                      Best Little Whorehouse in Texas, The
## 6019                                                                                                                                               Cannery Row
## 6020                                                                                                                                                 Deathtrap
## 6021                                                                                                                                              Eating Raoul
## 6022                                                                                                                                             About Schmidt
## 6023                                                                                                                                         Gangs of New York
## 6024                                                                                                                                                      Narc
## 6025                                                                                                                                             Bad Influence
## 6026                                                                                                                                                Blue Steel
## 6027                                                                                                                                          Body of Evidence
## 6028                                                                                                                                               Miami Blues
## 6029                                                                                                                                       Catch Me If You Can
## 6030                                                                                                                                                   Chicago
## 6031                                                                                                                                       King of Comedy, The
## 6032                                                                                                                                                  Dogfight
## 6033                                                                                                                                             Honkytonk Man
## 6034                                                                                                                                               Making Love
## 6035                                                                                                                                                   Missing
## 6036                                                                                                                                                 Monsignor
## 6037                                                                                                                                             Personal Best
## 6038                                                                                                                                            Shoot the Moon
## 6039                                                                                                                                                     Q & A
## 6040                                                                                                                                         Gods and Generals
## 6041                                                                                                                                   Bringing Down the House
## 6042                                                                                                                                            Born Yesterday
## 6043                                                                                                                                                     Equus
## 6044                                                                                                                                   Glenn Miller Story, The
## 6045                                                                                                                                                Green Card
## 6046                                                                                                                                              One Good Cop
## 6047                                                                                                                                                     Basic
## 6048                                                                                                                                               Phone Booth
## 6049                                                                                                                                              Legal Eagles
## 6050                                                                                                                     Marrying Man, The (Too Hot to Handle)
## 6051                                                                                                                                            Chorus Line, A
## 6052                                                                                                                                    Electric Horseman, The
## 6053                                                                                                                                         Mr. & Mrs. Bridge
## 6054                                                                                                                                                Shenandoah
## 6055                                                                                                                                           This Boy's Life
## 6056                                                                                                                                               Barton Fink
## 6057                                                                                                                                     Long, Hot Summer, The
## 6058                                                                                                                                          Half Moon Street
## 6059                                                                                                                                                Seabiscuit
## 6060                                                                                                                                           Dangerous Minds
## 6061                                                                                                                        Twelve Monkeys (a.k.a. 12 Monkeys)
## 6062                                                                                                                                       Usual Suspects, The
## 6063                                                                                                                                               Taxi Driver
## 6064                                                                                                                        Star Wars: Episode IV - A New Hope
## 6065                                                                                                                                              Pulp Fiction
## 6066                                                                                                                                 Shawshank Redemption, The
## 6067                                                                                                                                             Reality Bites
## 6068                                                                                                                                                   Timecop
## 6069                                                                                                                                          Schindler's List
## 6070                                                                                                                                              Blade Runner
## 6071                                                                                                                                             Trainspotting
## 6072                                                                                                                                            Godfather, The
## 6073                                                                                                                                               Rear Window
## 6074                                                                                                                                            Reservoir Dogs
## 6075                                                                                                                                       Weekend at Bernie's
## 6076                                                                                                                                  Sex, Lies, and Videotape
## 6077                                                                                                                                       Princess Bride, The
## 6078                                                                                                                                       Clockwork Orange, A
## 6079                                                                                                                                            Apocalypse Now
## 6080                                                                                                                                   Godfather: Part II, The
## 6081                                                                                                                                                Sting, The
## 6082                                                                                                                                       Killing Fields, The
## 6083                                                                                                                                                Young Guns
## 6084                                                                                                                                                     Evita
## 6085                                                                                                                                          Chariots of Fire
## 6086                                                                                                                                                 Labyrinth
## 6087                                                                                                                                       Saving Private Ryan
## 6088                                                                                                                                           Say Anything...
## 6089                                                                                                                                        American History X
## 6090                                                                                                                                              Office Space
## 6091                                                                                                                                               Matrix, The
## 6092                                                                                                                                 Run Lola Run (Lola rennt)
## 6093                                                                                                                                                Fight Club
## 6094                                                                                                                                      Being John Malkovich
## 6095                                                                                                                                                Moonstruck
## 6096                                                                                                                                                  Scrooged
## 6097                                                                                                                                          Running Man, The
## 6098                                                                                                                                        Perfect Storm, The
## 6099                                                                                                                                             Almost Famous
## 6100                                                                                                                                              Best in Show
## 6101                                                                                                                                            Monsters, Inc.
## 6102                                                                                                                                     Royal Tenenbaums, The
## 6103                                                                                                        Lord of the Rings: The Fellowship of the Ring, The
## 6104                                                                                                                                      Bourne Identity, The
## 6105                                                                                                                    Lord of the Rings: The Two Towers, The
## 6106                                                                                                                                              Pianist, The
## 6107                                                                                                    Pirates of the Caribbean: The Curse of the Black Pearl
## 6108                                                                                                                                       Lost in Translation
## 6109                                                                                                            Lord of the Rings: The Return of the King, The
## 6110                                                                                                                     Eternal Sunshine of the Spotless Mind
## 6111                                                                                                                                          Incredibles, The
## 6112                                                                                                                      Enron: The Smartest Guys in the Room
## 6113                                                                                                                                             Batman Begins
## 6114                                                                                                                                            V for Vendetta
## 6115                                                                                                                                     Thank You for Smoking
## 6116                                                                                                                 Pan's Labyrinth (Laberinto del fauno, El)
## 6117                                                                                                                                               Ratatouille
## 6118                                                                                                                                                  Superbad
## 6119                                                                                                                                    Lars and the Real Girl
## 6120                                                                                                                                    No Country for Old Men
## 6121                                                                                                                                          Dark Knight, The
## 6122                                                                                                                                                  Iron Man
## 6123                                                                                                                                               Gran Torino
## 6124                                                                                                                                         Fantastic Mr. Fox
## 6125                                                                                                                                                    Avatar
## 6126                                                                                                                                       Alice in Wonderland
## 6127                                                                                                                                  How to Train Your Dragon
## 6128                                                                                                                                                  Kick-Ass
## 6129                                                                                                                                                   Jumanji
## 6130                                                                                                                            Ace Ventura: When Nature Calls
## 6131                                                                                                                                           Dangerous Minds
## 6132                                                                                                                                             Mortal Kombat
## 6133                                                                                                                                                Braveheart
## 6134                                                                                                                                                 Apollo 13
## 6135                                                                                                                                            Batman Forever
## 6136                                                                                                                                                    Casper
## 6137                                                                                                                                Die Hard: With a Vengeance
## 6138                                                                                                                                              First Knight
## 6139                                                                                                                                               Judge Dredd
## 6140                                                                                                                             Under Siege 2: Dark Territory
## 6141                                                                                                                                                Waterworld
## 6142                                                                                                                                                Disclosure
## 6143                                                                                                                           Dumb & Dumber (Dumb and Dumber)
## 6144                                                                                                                                                      I.Q.
## 6145                                                                                                                                              Little Women
## 6146                                                                                                                                       Legends of the Fall
## 6147                                                                                                                                                  Outbreak
## 6148                                                                                                                                              Pulp Fiction
## 6149                                                                                                                                                 Quiz Show
## 6150                                                                                                                                                  Stargate
## 6151                                                                                                                                         Santa Clause, The
## 6152                                                                                                                                                 Tommy Boy
## 6153                                                                                                                               What's Eating Gilbert Grape
## 6154                                                                                                                                Ace Ventura: Pet Detective
## 6155                                                                                                                                  Clear and Present Danger
## 6156                                                                                                                                               Client, The
## 6157                                                                                                                                              Forrest Gump
## 6158                                                                                                                                            Lion King, The
## 6159                                                                                                                                                 Mask, The
## 6160                                                                                                                                                     Speed
## 6161                                                                                                                                                 True Lies
## 6162                                                                                                                                      Addams Family Values
## 6163                                                                                                                                     Beverly Hills Cop III
## 6164                                                                                                                                             Bronx Tale, A
## 6165                                                                                                              City Slickers II: The Legend of Curly's Gold
## 6166                                                                                                                                               Cliffhanger
## 6167                                                                                                                                                      Dave
## 6168                                                                                                                                            Demolition Man
## 6169                                                                                                                                             Fugitive, The
## 6170                                                                                                                                             Jurassic Park
## 6171                                                                                                                                                 Tombstone
## 6172                                                                                                                                                   Aladdin
## 6173                                                                                                                                Terminator 2: Judgment Day
## 6174                                                                                                                                        Dances with Wolves
## 6175                                                                                                                                                    Batman
## 6176                                                                                                                                      Beauty and the Beast
## 6177                                                                                                                            Ace Ventura: When Nature Calls
## 6178                                                                                                                                               Black Sheep
## 6179                                                                                                                                            Canadian Bacon
## 6180                                                                                                                           Dumb & Dumber (Dumb and Dumber)
## 6181                                                                                                                                Ace Ventura: Pet Detective
## 6182                                                                                                                                                     Speed
## 6183                                                                                                                                                Serial Mom
## 6184                                                                                                                                  Welcome to the Dollhouse
## 6185                                                                                                                                                    Ransom
## 6186                                                                                                                                                  Basquiat
## 6187                                                                                                                                        North by Northwest
## 6188                                                                                                                                                  Swingers
## 6189                                                                                                                                       Weekend at Bernie's
## 6190                                                                                                                               People vs. Larry Flynt, The
## 6191                                                                                                                                  Sex, Lies, and Videotape
## 6192                                                                                                            Star Wars: Episode V - The Empire Strikes Back
## 6193                                                                                                                                       Princess Bride, The
## 6194                                                                                   Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 6195                                                                                                                                                Annie Hall
## 6196                                                                                                                                              Shining, The
## 6197                                                                                                                                               Stand by Me
## 6198                                                                                                                                                  Heathers
## 6199                                                                                                                        Indiana Jones and the Last Crusade
## 6200                                                                                                                                Nightmare on Elm Street, A
## 6201                                                                                                                                        Jingle All the Way
## 6202                                                                                                                                           Raising Arizona
## 6203                                                                                                                                                    Scream
## 6204                                                                                                                                                  Scream 2
## 6205                                                                                                                                               Spice World
## 6206                                                                                                                                        As Good as It Gets
## 6207                                                                                                                                                 Labyrinth
## 6208                                                                                                                                           Friday the 13th
## 6209                                                                                                                                                 Halloween
## 6210                                                                                                                                              Halloween II
## 6211                                                                                                                        Halloween III: Season of the Witch
## 6212                                                                                                                                               Poltergeist
## 6213                                                                                                                                              Goonies, The
## 6214                                                                                                                                        Mask of Zorro, The
## 6215                                                                                                                                               BASEketball
## 6216                                                                                                                                                Roger & Me
## 6217                                                                                                                                                    Popeye
## 6218                                                                                 Halloween H20: 20 Years Later (Halloween 7: The Revenge of Laurie Strode)
## 6219                                                                                                                                            Pretty in Pink
## 6220                                                                                                                                        Wrongfully Accused
## 6221                                                                                                                                                    Willow
## 6222                                                                                                                                        American History X
## 6223                                                                                                                                                    Fletch
## 6224                                                                                                                                                  Rushmore
## 6225                                                                                                                                          Crocodile Dundee
## 6226                                                                                                                                              Office Space
## 6227                                                                                                                                    Breakfast of Champions
## 6228                                                                                                                                          Cruel Intentions
## 6229                                                                                                                                                  Election
## 6230                                                                                                                                                Mummy, The
## 6231                                                                                                                                                 Get Bruce
## 6232                                                                                                                                              American Pie
## 6233                                                                                                                                                 Cat's Eye
## 6234                                                                                                                            American Werewolf in Paris, An
## 6235                                                                                                                               National Lampoon's Vacation
## 6236                                                                                                                                            Drive Me Crazy
## 6237                                                                                                                                              Happy, Texas
## 6238                                                                                                                                                 Body Heat
## 6239                                                                                                                                  Ferris Bueller's Day Off
## 6240                                                                                                                                                 Hairspray
## 6241                                                                                                                                                Fight Club
## 6242                                                                                                                                      Being John Malkovich
## 6243                                                                                                                                            American Movie
## 6244                                                                                                                                             Stuart Little
## 6245                                                                                                                                                  Scream 3
## 6246                                                                                                                                               Boiler Room
## 6247                                                                                                                                               Wonder Boys
## 6248                                                                                                                                           Erin Brockovich
## 6249                                                                                                                                             High Fidelity
## 6250                                                                                                                                                Caddyshack
## 6251                                                                                                                                           Big Kahuna, The
## 6252                                                                                                                             Smiling Fish and Goat on Fire
## 6253                                                                                                                                   Pee-wee's Big Adventure
## 6254                                                                                                                                                 Road Trip
## 6255                                                                                                                                                Jesus' Son
## 6256                                                                                                                                        Me, Myself & Irene
## 6257                                                                                                                                               Scary Movie
## 6258                                                                                                                                              Chuck & Buck
## 6259                                                                                                                                         Tao of Steve, The
## 6260                                                                                                                                         Cecil B. DeMented
## 6261                                                                                                                             Original Kings of Comedy, The
## 6262                                                                                                           Naked Gun: From the Files of Police Squad!, The
## 6263                                                                                                                                               Nurse Betty
## 6264                                                                                                                                             Almost Famous
## 6265                                                                                                                                        Dancer in the Dark
## 6266                                                                                                                                              Best in Show
## 6267                                                                                                                                 Emperor's New Groove, The
## 6268                                                                                                                                                   Pollock
## 6269                                                                                                                                O Brother, Where Art Thou?
## 6270                                                                                                                                      Revenge of the Nerds
## 6271                                                                                                                                                  Joe Dirt
## 6272                                                                                                                                   Josie and the Pussycats
## 6273                                                                                                                                                   Chopper
## 6274                                                                                                                                Throw Momma from the Train
## 6275                                                                                                                                               Animal, The
## 6276                                                                                                                                                Sexy Beast
## 6277                                                                                                                                             Scary Movie 2
## 6278                                                                                                                                            Legally Blonde
## 6279                                                                                                                                                     Bully
## 6280                                                                                                                                                      Made
## 6281                                                                                                                                             Caddyshack II
## 6282                                                                                                                                                    Colors
## 6283                                                                                                                                    Ernest Saves Christmas
## 6284                                                                                                                                       Great Outdoors, The
## 6285                                                                                                                                                     Twins
## 6286                                                                                                                                        Look Who's Talking
## 6287                                                                                                                                                  Loverboy
## 6288                                                                                                                                               Ghost World
## 6289                                                                                                                                        Planet of the Apes
## 6290                                                                                                                                   Wet Hot American Summer
## 6291                                                                                                                                Return of Swamp Thing, The
## 6292                                                                                                                                 See No Evil, Hear No Evil
## 6293                                                                                                                                                       UHF
## 6294                                                                                                                                                Uncle Buck
## 6295                                                                                                                                            American Pie 2
## 6296                                                                                                                                                  Rat Race
## 6297                                                                                                                                                  Silkwood
## 6298                                                                                                                                              Donnie Darko
## 6299                                                                                                                                               Shallow Hal
## 6300                                                                                                                                                 Novocaine
## 6301                                                                                                                                                  Toy, The
## 6302                                                                                                                                            Stunt Man, The
## 6303                                                                                                                                            Ocean's Eleven
## 6304                                                                                                                                    Not Another Teen Movie
## 6305                                                                                                                                               Vanilla Sky
## 6306                                                                                                                                        White Water Summer
## 6307                                                                                                                                            Monster's Ball
## 6308                                                                                                                                              Storytelling
## 6309                                                                                                                                                Crossroads
## 6310                                                                                                                                               High Crimes
## 6311                                                                                                                                        Husbands and Wives
## 6312                                                                                                                             Kid Stays in the Picture, The
## 6313                                                                                                                                     Bowling for Columbine
## 6314                                                                                                                                          Punch-Drunk Love
## 6315                                                                                                                                                      Heat
## 6316                                                                                                                                                Get Shorty
## 6317                                                                                                                        Twelve Monkeys (a.k.a. 12 Monkeys)
## 6318                                                                                                                                                  Clueless
## 6319                                                                                                                                      Seven (a.k.a. Se7en)
## 6320                                                                                                                                       Usual Suspects, The
## 6321                                                                                                                                       From Dusk Till Dawn
## 6322                                                                                                                                                Braveheart
## 6323                                                                                                                                                 Apollo 13
## 6324                                                                                                                                              Strange Days
## 6325                                                                                                        Interview with the Vampire: The Vampire Chronicles
## 6326                                                                                                                        Star Wars: Episode IV - A New Hope
## 6327                                                                                                                                      Natural Born Killers
## 6328                                                                                                   Léon: The Professional (a.k.a. The Professional) (Léon)
## 6329                                                                                                                                              Pulp Fiction
## 6330                                                                                                                                                  Stargate
## 6331                                                                                                                               What's Eating Gilbert Grape
## 6332                                                                                                                                                     Speed
## 6333                                                                                                                                   In the Mouth of Madness
## 6334                                                                                                                                            Demolition Man
## 6335                                                                                                                                               Killing Zoe
## 6336                                                                                                                                          Schindler's List
## 6337                                                                                                                                              Blade Runner
## 6338                                                                                                                                              True Romance
## 6339                                                                                                                                             War Room, The
## 6340                                                                                                                                  Welcome to the Dollhouse
## 6341                                                                                                                                     Celluloid Closet, The
## 6342                                                                                                                                Terminator 2: Judgment Day
## 6343                                                                                                                                 Silence of the Lambs, The
## 6344                                                                                                                                      Beauty and the Beast
## 6345                                                                                                                                           Wild Bunch, The
## 6346                                                                                                                                                     Fargo
## 6347                                                                                                                                               Heavy Metal
## 6348                                                                                                                          Some Folks Call It a Sling Blade
## 6349                                                                                                                                                Craft, The
## 6350                                                                                      Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb
## 6351                                                                                                                                            Godfather, The
## 6352                                                                                                                                                Casablanca
## 6353                                                                                                                                       Maltese Falcon, The
## 6354                                                                                                                                         Wizard of Oz, The
## 6355                                                                                                                                              Citizen Kane
## 6356                                                                                                                                     2001: A Space Odyssey
## 6357                                                                                                                             Adventures of Robin Hood, The
## 6358                                                                                                                                        African Queen, The
## 6359                                                                                                                                                  Die Hard
## 6360                                                                                                                      William Shakespeare's Romeo + Juliet
## 6361                                                                                                                                            Reservoir Dogs
## 6362                                                                                                                                                   Platoon
## 6363                                                                                                                                            Basic Instinct
## 6364                                                                                                                                E.T. the Extra-Terrestrial
## 6365                                                                                                                                     Rebel Without a Cause
## 6366                                                                                                                                 Streetcar Named Desire, A
## 6367                                                                                                                               People vs. Larry Flynt, The
## 6368                                                                                                                                      Escape from New York
## 6369                                                                                                                                              Howling, The
## 6370                                                                                                                                        When We Were Kings
## 6371                                                                                                                                            Paths of Glory
## 6372                                                                                                                                             Grifters, The
## 6373                                                                                                                           One Flew Over the Cuckoo's Nest
## 6374                                                                                                            Star Wars: Episode V - The Empire Strikes Back
## 6375                                                                                   Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 6376                                                                                                                                                    Aliens
## 6377                                                                                        Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il)
## 6378                                                                                                                                        Lawrence of Arabia
## 6379                                                                                                                                       Clockwork Orange, A
## 6380                                                                                                                                     To Kill a Mockingbird
## 6381                                                                                                                                            Apocalypse Now
## 6382                                                                                                                                                Goodfellas
## 6383                                                                                                                                                     Alien
## 6384                                                                                                                                          Army of Darkness
## 6385                                                                                                                                                    Psycho
## 6386                                                                                                                                       Blues Brothers, The
## 6387                                                                                                                                   Godfather: Part II, The
## 6388                                                                                                                                         Full Metal Jacket
## 6389                                                                                                                                          Right Stuff, The
## 6390                                                                                                                                                Sting, The
## 6391                                                                                                                                           Terminator, The
## 6392                                                                                                                                             Graduate, The
## 6393                                                                                                                             Bridge on the River Kwai, The
## 6394                                                                                                                                                 Chinatown
## 6395                                                                                                                            Day the Earth Stood Still, The
## 6396                                                                                                                         Treasure of the Sierra Madre, The
## 6397                                                                                                                                              Shining, The
## 6398                                                                                                                                               Stand by Me
## 6399                                                                                                                                         Great Escape, The
## 6400                                                                                                                                          Deer Hunter, The
## 6401                                                                                                                                 Manchurian Candidate, The
## 6402                                                                                                                                        Back to the Future
## 6403                                                                                                                                                    Patton
## 6404                                                                                                                                            Cool Hand Luke
## 6405                                                                                                                                                   Ben-Hur
## 6406                                                                                                                                      Pink Floyd: The Wall
## 6407                                                                                                                                       Killing Fields, The
## 6408                                                                                                                                   Alien³ (a.k.a. Alien 3)
## 6409                                                                                                                           American Werewolf in London, An
## 6410                                                                                                                           Dracula (Bram Stoker's Dracula)
## 6411                                                                                                        Bride of Frankenstein, The (Bride of Frankenstein)
## 6412                                                                                                                                               Sling Blade
## 6413                                                                                                                                                      Jaws
## 6414                                                                                                                                                  Sneakers
## 6415                                                                                                                                                    Scream
## 6416                                                                                                                                              Lost Highway
## 6417                                                                                                                                        Fifth Element, The
## 6418                                                                                                                                 Men in Black (a.k.a. MIB)
## 6419                                                                                                                                                  Cop Land
## 6420                                                                                                                                         Conspiracy Theory
## 6421                                                                                                                                 Hunt for Red October, The
## 6422                                                                                                                                         L.A. Confidential
## 6423                                                                                                                                      The Devil's Advocate
## 6424                                                                                                                                                   Gattaca
## 6425                                                                                                                                         Starship Troopers
## 6426                                                                                                                                       Alien: Resurrection
## 6427                                                                                                                                                    Fallen
## 6428                                                                                                                              There's Something About Mary
## 6429                                                                                                                                      Mutiny on the Bounty
## 6430                                                                                                                                           Midnight Cowboy
## 6431                                                                                                                                                     Rocky
## 6432                                                                                                                                                  Repo Man
## 6433                                                                                                                                             Exorcist, The
## 6434                                                                                                                                             Soylent Green
## 6435                                                                                                                                       Saving Private Ryan
## 6436                                                                                                                                                Roger & Me
## 6437                                                                                                                                               Blue Velvet
## 6438                                                                                                                                                      Tron
## 6439                                                                                                                                                Thing, The
## 6440                                                                                                                                               Player, The
## 6441                                                                                                                            2010: The Year We Make Contact
## 6442                                                                                                                     I Still Know What You Did Last Summer
## 6443                                                                                                                                        Enemy of the State
## 6444                                                                                                                                                 King Kong
## 6445                                                                                                                                       Shakespeare in Love
## 6446                                                                                                                                                    Cocoon
## 6447                                                                                                                                                 Westworld
## 6448                                                                                                                                               Logan's Run
## 6449                                                                                                                                        Planet of the Apes
## 6450                                                                                                                                     Village of the Damned
## 6451                                                                                                                                               Matrix, The
## 6452                                                                                                                                                  Election
## 6453                                                                                                                                                   Dracula
## 6454                                                                                                                                              Frankenstein
## 6455                                                                                                                            Rocky Horror Picture Show, The
## 6456                                                                                                                                    War of the Worlds, The
## 6457                                                                                                                       Ghostbusters (a.k.a. Ghost Busters)
## 6458                                                                                                                                          Sixth Sense, The
## 6459                                                                                                                            American Werewolf in Paris, An
## 6460                                                                                                                                                       Big
## 6461                                                                                                                                           American Beauty
## 6462                                                                                                                                       Hard Day's Night, A
## 6463                                                                                                                                               Deliverance
## 6464                                                                                                                                                  Phantasm
## 6465                                                                                                                                            Boys Don't Cry
## 6466                                                                                                                                              Total Recall
## 6467                                                                                                                                       High Plains Drifter
## 6468                                                                                                                                          Dirty Dozen, The
## 6469                                                                                                                                                    Dr. No
## 6470                                                                                                           Fistful of Dollars, A (Per un pugno di dollari)
## 6471                                                                                                                                             All That Jazz
## 6472                                                                                                                                                   RoboCop
## 6473                                                                                                                                  Who Framed Roger Rabbit?
## 6474                                                                                                                                            Omega Man, The
## 6475                                                                                                                                            Mister Roberts
## 6476                                                                                                                                          Longest Day, The
## 6477                                                                                                                                         Tora! Tora! Tora!
## 6478                                                                                                                                          Jeremiah Johnson
## 6479                                                                                                                                                Easy Rider
## 6480                                                                                                                                                 Stalag 17
## 6481                                                                                                                                             Patriot Games
## 6482                                                                                                                                                  Snow Day
## 6483                                                                                                                                               Bull Durham
## 6484                                                                                                                                                       JFK
## 6485                                                                                                                                           Thelma & Louise
## 6486                                                                                                                                                       Hud
## 6487                                                                                                                                              Hustler, The
## 6488                                                                                                                        Close Encounters of the Third Kind
## 6489                                                                                                                                                   Network
## 6490                                                                                                                                   Outlaw Josey Wales, The
## 6491                                                                                                                                                  Predator
## 6492                                                                                                                                              Marathon Man
## 6493                                                                                                                                         Seven Days in May
## 6494                                                                                                                                                   Mad Max
## 6495                                                                                                                             Road Warrior, The (Mad Max 2)
## 6496                                                                                                                                               Angel Heart
## 6497                                                                                                                                                 Near Dark
## 6498                                                                                                                                            Breaker Morant
## 6499                                                                                                                                                Hellraiser
## 6500                                                                                                                                          Fantastic Voyage
## 6501                                                                                                                                     M*A*S*H (a.k.a. MASH)
## 6502                                                                                                                                                    Powder
## 6503                                                                                                                                         Dolores Claiborne
## 6504                                                                                                                                        Heavenly Creatures
## 6505                                                                                               Englishman Who Went Up a Hill But Came Down a Mountain, The
## 6506                                                                                                                                                Craft, The
## 6507                                                                                                                                                      Emma
## 6508                                                                                                                                              My Fair Lady
## 6509                                                                                                                                                     Dumbo
## 6510                                                                                                                                  Long Kiss Goodnight, The
## 6511                                                                                                                                         Strictly Ballroom
## 6512                                                                                                                                          Right Stuff, The
## 6513                                                                                                                                 Femme Nikita, La (Nikita)
## 6514                                                                                                                                 Manchurian Candidate, The
## 6515                                                                                                                                                      Tron
## 6516                                                                                                                                                     Ronin
## 6517                                                                                                                                               Player, The
## 6518                                                                                                                                                 Elizabeth
## 6519                                                                                                                                              Time Bandits
## 6520                                                                                                                                                Moonstruck
## 6521                                                                                                                                        Perfect Storm, The
## 6522                                                                                                                                                      Heat
## 6523                                                                                                                                                    Casino
## 6524                                                                                                                                                Four Rooms
## 6525                                                                                                                                                Get Shorty
## 6526                                                                                                                                         Leaving Las Vegas
## 6527                                                                                                                                           Dangerous Minds
## 6528                                                                                                                        Twelve Monkeys (a.k.a. 12 Monkeys)
## 6529                                                                                                                                          Dead Man Walking
## 6530                                                                                                                                               Richard III
## 6531                                                                                                                                                To Die For
## 6532                                                                                                                                       Usual Suspects, The
## 6533                                                                                                                                          Mighty Aphrodite
## 6534                                                                                                                                                   Georgia
## 6535                                                                                                                                     Home for the Holidays
## 6536                                                                                                                                Postman, The (Postino, Il)
## 6537                                                                                                                               French Twist (Gazon maudit)
## 6538                                                                                                                                               Taxi Driver
## 6539                                                                                                                                    Brothers McMullen, The
## 6540                                                                                                                                                  Bad Boys
## 6541                                                                                                                                   Basketball Diaries, The
## 6542                                                                                                                                                   Rob Roy
## 6543                                                                                                                                Die Hard: With a Vengeance
## 6544                                                                                                                                             Billy Madison
## 6545                                                                                                                                                    Clerks
## 6546                                                                                                                      Eat Drink Man Woman (Yin shi nan nu)
## 6547                                                                                                                                               French Kiss
## 6548                                                                                                                                    Farinelli: il castrato
## 6549                                                                                                                                               Hoop Dreams
## 6550                                                                                                                                                Houseguest
## 6551                                                                                                                                          Immortal Beloved
## 6552                                                                                                                                                      I.Q.
## 6553                                                                                                        Interview with the Vampire: The Vampire Chronicles
## 6554                                                                                                                                                    Junior
## 6555                                                                                                                        Star Wars: Episode IV - A New Hope
## 6556                                                                                                                                              Little Women
## 6557                                                                                                       Like Water for Chocolate (Como agua para chocolate)
## 6558                                                                                                                               Madness of King George, The
## 6559                                                                                                                Mary Shelley's Frankenstein (Frankenstein)
## 6560                                                                                                                                    Miracle on 34th Street
## 6561                                                                                                                                                      Nell
## 6562                                                                                                                                      Natural Born Killers
## 6563                                                                                                   Léon: The Professional (a.k.a. The Professional) (Léon)
## 6564                                                                                                                                              Pulp Fiction
## 6565                                                                                                                                                 Quiz Show
## 6566                                                                                                                 Three Colors: Red (Trois couleurs: Rouge)
## 6567                                                                                                                 Three Colors: Blue (Trois couleurs: Bleu)
## 6568                                                                                                                  Three Colors: White (Trzy kolory: Bialy)
## 6569                                                                                                                                   Stuart Saves His Family
## 6570                                                                                                                                           Specialist, The
## 6571                                                                                                                                 Shawshank Redemption, The
## 6572                                                                                                              Strawberry and Chocolate (Fresa y chocolate)
## 6573                                                                                                                                      Vanya on 42nd Street
## 6574                                                                                                         Adventures of Priscilla, Queen of the Desert, The
## 6575                                                                                                                                     Bullets Over Broadway
## 6576                                                                                                                                               Client, The
## 6577                                                                                                                                              Forrest Gump
## 6578                                                                                                                               Four Weddings and a Funeral
## 6579                                                                                                                                          Jungle Book, The
## 6580                                                                                                                                                  Maverick
## 6581                                                                                                                                             Reality Bites
## 6582                                                                                                                                  When a Man Loves a Woman
## 6583                                                                                                                                                      Wolf
## 6584                                                                                                                                     Age of Innocence, The
## 6585                                                                                                                                     Beverly Hills Cop III
## 6586                                                                                                                                             Carlito's Way
## 6587                                                                                                              City Slickers II: The Legend of Curly's Gold
## 6588                                                                                                                                               Cliffhanger
## 6589                                                                                                                                                      Dave
## 6590                                                                                                                                                 Firm, The
## 6591                                                                                                                                             Fugitive, The
## 6592                                                                                                                                 House of the Spirits, The
## 6593                                                                                                                                 In the Name of the Father
## 6594                                                                                                                                             Jurassic Park
## 6595                                                                                                                                                Kalifornia
## 6596                                                                                                                                   Man Without a Face, The
## 6597                                                                                                                                              Philadelphia
## 6598                                                                                                                                                Piano, The
## 6599                                                                                                                                   Remains of the Day, The
## 6600                                                                                                                                         Romeo Is Bleeding
## 6601                                                                                                                                                      Rudy
## 6602                                                                                                                                          Schindler's List
## 6603                                                                                                                                        Secret Garden, The
## 6604                                                                                                                                                Serial Mom
## 6605                                                                                                                                               Shadowlands
## 6606                                                                                                                                      Sleepless in Seattle
## 6607                                                                                                                                                    Sliver
## 6608                                                                                                                              So I Married an Axe Murderer
## 6609                                                                                                                           Nightmare Before Christmas, The
## 6610                                                                                                                                                Home Alone
## 6611                                                                                                                                                     Ghost
## 6612                                                                                                                                                   Aladdin
## 6613                                                                                                                                        Dances with Wolves
## 6614                                                                                                                                                    Batman
## 6615                                                                                                                                 Silence of the Lambs, The
## 6616                                                                                                                                              Pretty Woman
## 6617                                                                                                                                                Diabolique
## 6618                                                                                                           Wallace & Gromit: The Best of Aardman Animation
## 6619                                                                                                                                             Trainspotting
## 6620                                                                                                                                      Nutty Professor, The
## 6621                                                                                                                                                      Emma
## 6622                                                                                                                                                  Die Hard
## 6623                                                                                                Return of Martin Guerre, The (Retour de Martin Guerre, Le)
## 6624                                                                                                                                  Star Trek: First Contact
## 6625                                                                                                                                            101 Dalmatians
## 6626                                                                                                                                                 Toy Story
## 6627                                                                                                                                            Lion King, The
## 6628                                                                                                                                      Beauty and the Beast
## 6629                                                                                                                                    Breakfast at Tiffany's
## 6630                                                                                                                                                Casablanca
## 6631                                                                                                                                        Gone with the Wind
## 6632                                                                                                                             Adventures of Robin Hood, The
## 6633                                                                                                                           One Flew Over the Cuckoo's Nest
## 6634                                                                                                            Star Wars: Episode V - The Empire Strikes Back
## 6635                                                                                                                                        Dead Poets Society
## 6636                                                                                                                                   When Harry Met Sally...
## 6637                                                                                                                                                     Mulan
## 6638                                                                                                                                       Saving Private Ryan
## 6639                                                                                                                                       Little Mermaid, The
## 6640                                                                                                           101 Dalmatians (One Hundred and One Dalmatians)
## 6641                                                                                                                                                 Rush Hour
## 6642                                                                                                                                           American Beauty
## 6643                                                                                                                                     East-West (Est-ouest)
## 6644                                                                                                                                             High Fidelity
## 6645                                                                                                                                              East is East
## 6646                                                                                                                       Flintstones in Viva Rock Vegas, The
## 6647                                                                                                                                               Chicken Run
## 6648                                                                                                                                          Meet the Parents
## 6649                                                                                                                                          Charlie's Angels
## 6650                                                                                                          Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 6651                                                                                                                                                    Snatch
## 6652                                                                                                                                                  Chocolat
## 6653                                                                                                                                     Dude, Where's My Car?
## 6654                                                                                                                                           What Women Want
## 6655                                                                                                                                                   Traffic
## 6656                                                                                                                                       Save the Last Dance
## 6657                                                                                                                                      Wedding Planner, The
## 6658                                                                                                                                                    Casino
## 6659                                                                                                                                      Seven (a.k.a. Se7en)
## 6660                                                                                                                                                Braveheart
## 6661                                                                                                   Léon: The Professional (a.k.a. The Professional) (Léon)
## 6662                                                                                                                                              Pulp Fiction
## 6663                                                                                                                 Three Colors: Red (Trois couleurs: Rouge)
## 6664                                                                                                                                 Shawshank Redemption, The
## 6665                                                                                                                                              Forrest Gump
## 6666                                                                                                                                            Lion King, The
## 6667                                                                                                                                             Little Buddha
## 6668                                                                                                                                                 Mask, The
## 6669                                                                                                                                          Schindler's List
## 6670                                                                                                                                                   Aladdin
## 6671                                                                                                                                        Dances with Wolves
## 6672                                                                                                                                 Silence of the Lambs, The
## 6673                                                                                                                                             Trainspotting
## 6674                                                                                                                                                      Emma
## 6675                                                                                                                                            Godfather, The
## 6676                                                                                                                                             All About Eve
## 6677                                                                                                                                                   Bananas
## 6678                                                                                                                              Monty Python's Life of Brian
## 6679                                                                                                                           Monty Python and the Holy Grail
## 6680                                                                                                                   Cinema Paradiso (Nuovo cinema Paradiso)
## 6681                                                                                                                                                Goodfellas
## 6682                                                                                                                                   Godfather: Part II, The
## 6683                                                                                                                                                 Manhattan
## 6684                                                                                                 Koyaanisqatsi (a.k.a. Koyaanisqatsi: Life Out of Balance)
## 6685                                                                                                                                          Truman Show, The
## 6686                                                                                                                                         Good Will Hunting
## 6687                                                                                                                                             Lethal Weapon
## 6688                                                                                                                                                    Lolita
## 6689                                                                                                                 Fanny and Alexander (Fanny och Alexander)
## 6690                                                                                                                                                  Mephisto
## 6691                                                                                                                                      Return of Jafar, The
## 6692                                                                                                                               Autumn Sonata (Höstsonaten)
## 6693                                                                                                                                         Untouchables, The
## 6694                                                                                                                       Life Is Beautiful (La Vita è bella)
## 6695                                                                                                                                               Matrix, The
## 6696                                                                                                                                               Superman II
## 6697                                                                                                                        Red Violin, The (Violon rouge, Le)
## 6698                                                                                                                                                Radio Days
## 6699                                                                                                                                           American Beauty
## 6700                                                                                                                                                Fight Club
## 6701                                                                                                                         Ghost Dog: The Way of the Samurai
## 6702                                                                                                                                                 Gladiator
## 6703                                                                                                                                                    Baraka
## 6704                                                                                                                                     Good Morning, Babylon
## 6705                                                                                                                                                   Memento
## 6706                                                                                                                   Cries and Whispers (Viskningar och rop)
## 6707                                                                                                                                   Not Without My Daughter
## 6708                                                                                                                                                      Fame
## 6709                                                                                                             Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 6710                                                                                                        Lord of the Rings: The Fellowship of the Ring, The
## 6711                                                                                                                                         Beautiful Mind, A
## 6712                                                                                                                                                Spider-Man
## 6713                                                                                                                                      Bourne Identity, The
## 6714                                                                                                                    Lord of the Rings: The Two Towers, The
## 6715                                                                                                    Night of the Shooting Stars (Notte di San Lorenzo, La)
## 6716                                                                                                                                      Matrix Reloaded, The
## 6717                                                                                                    Pirates of the Caribbean: The Curse of the Black Pearl
## 6718                                                                                                                                              Mystic River
## 6719                                                                                                                                         Kill Bill: Vol. 1
## 6720                                                                                                                                                  21 Grams
## 6721                                                                                                      Aguirre: The Wrath of God (Aguirre, der Zorn Gottes)
## 6722                                                                                                                                                  Amarcord
## 6723                                                                                                            Lord of the Rings: The Return of the King, The
## 6724                                                                                                                                                Strada, La
## 6725                                                                                                                                                   Persona
## 6726                                                                                                          Scenes From a Marriage (Scener ur ett äktenskap)
## 6727                                                                                                                                         Kill Bill: Vol. 2
## 6728                                                                                                                                           Shame (Skammen)
## 6729                                                                                                           Smiles of a Summer Night (Sommarnattens leende)
## 6730                                                                                                                                            Dolce Vita, La
## 6731                                                                                                                                       Hiroshima Mon Amour
## 6732                                                                                                                                                 Viridiana
## 6733                                                                                                     Short Film About Killing, A (Krótki film o zabijaniu)
## 6734                                                                                                                                  Decalogue, The (Dekalog)
## 6735                                                                                                                                             Batman Begins
## 6736                                                                                                              Lives of Others, The (Das leben der Anderen)
## 6737                                                                                                                                                   Offside
## 6738                                                                                                                                             Blood Diamond
## 6739                                                                                                                                          Eastern Promises
## 6740                                                                                                                                             Into the Wild
## 6741                                                                                                                                          Dark Knight, The
## 6742                                                                                                                                                   Fiorile
## 6743                                                                                                                                                    WALL·E
## 6744                                                                                                                                               Gran Torino
## 6745                                                                                                          Through the Olive Trees (Zire darakhatan zeyton)
## 6746                                                                                                                                             Padre padrone
## 6747                                                                                                                                  Prophet, A (Un Prophète)
## 6748                                                                                                                               About Elly (Darbareye Elly)
## 6749                                                                                                                                                 Inception
## 6750                                                                                                                                                 Incendies
## 6751                                                                                                                   Separation, A (Jodaeiye Nader az Simin)
## 6752                                                                                                                                        Hunt, The (Jagten)
## 6753                                                                                                                                       Patience Stone, The
## 6754                                                                                                                      Caesar Must Die (Cesare deve morire)
## 6755                                                                                                                               Oh Boy (A Coffee in Berlin)
## 6756                                                                                                                                                    Wadjda
## 6757                                                                                                                                      Past, The (Le passé)
## 6758                                                                                                                                              Blue Jasmine
## 6759                                                                                                                                                  Nebraska
## 6760                                                                                                                Blue Is the Warmest Color (La vie d'Adèle)
## 6761                                                                                                                                             Congress, The
## 6762                                                                                                                           The Hunger Games: Catching Fire
## 6763                                                                                                                                  Wolf of Wall Street, The
## 6764                                                                                                                  Fireworks Wednesday (Chaharshanbe-soori)
## 6765                                                                                                                                 Grand Budapest Hotel, The
## 6766                                                                                                                       Captain America: The Winter Soldier
## 6767                                                                                                                                                   Calvary
## 6768                                                                                                                                               The Martian
## 6769                                                                                                                                                      Heat
## 6770                                                                                                                                                 GoldenEye
## 6771                                                                                                                                                    Casino
## 6772                                                                                                                                                Get Shorty
## 6773                                                                                                                                                   Copycat
## 6774                                                                                                                                           Dangerous Minds
## 6775                                                                                                                                      Seven (a.k.a. Se7en)
## 6776                                                                                                                                       Usual Suspects, The
## 6777                                                                                                                                                    Friday
## 6778                                                                                                                                       From Dusk Till Dawn
## 6779                                                                                                                                           Misérables, Les
## 6780                                                                                                                                                 Screamers
## 6781                                                                                                                                                Braveheart
## 6782                                                                                                                                                  Bad Boys
## 6783                                                                                                                                                 Apollo 13
## 6784                                                                                                                                            Batman Forever
## 6785                                                                                                                                                     Congo
## 6786                                                                                                                                                     Crumb
## 6787                                                                                                                                Die Hard: With a Vengeance
## 6788                                                                                                                                              First Knight
## 6789                                                                                                                                                   Hackers
## 6790                                                                                                                                                      Kids
## 6791                                                                                                                                         Lord of Illusions
## 6792                                                                                                                                                  Mallrats
## 6793                                                                                                                                             Prophecy, The
## 6794                                                                                                                                              Strange Days
## 6795                                                                                                                                              Castle Freak
## 6796                                                                                                                                                    Clerks
## 6797                                                                                                                           Dumb & Dumber (Dumb and Dumber)
## 6798                                                                                                        Interview with the Vampire: The Vampire Chronicles
## 6799                                                                                                                Mary Shelley's Frankenstein (Frankenstein)
## 6800                                                                                                                                             Beyond Bedlam
## 6801                                                                                                                                      Natural Born Killers
## 6802                                                                                                   Léon: The Professional (a.k.a. The Professional) (Léon)
## 6803                                                                                                                                              Pulp Fiction
## 6804                                                                                                                                           Specialist, The
## 6805                                                                                                                                                  Stargate
## 6806                                                                                                               Tales from the Crypt Presents: Demon Knight
## 6807                                                                                                                                       Tales from the Hood
## 6808                                                                                                                                     Village of the Damned
## 6809                                                                                                                                                 Tommy Boy
## 6810                                                                                                                                                Virtuosity
## 6811                                                                                                                                Ace Ventura: Pet Detective
## 6812                                                                                                                                                 Crow, The
## 6813                                                                           Wes Craven's New Nightmare (Nightmare on Elm Street Part 7: Freddy's Finale, A)
## 6814                                                                                                                                                 True Lies
## 6815                                                                                                                                            Body Snatchers
## 6816                                                                                                                                               Cliffhanger
## 6817                                                                                                                                             Fugitive, The
## 6818                                                                                                                                                 Tombstone
## 6819                                                                                                                                              True Romance
## 6820                                                                                                                                                   Aladdin
## 6821                                                                                                                                        Dances with Wolves
## 6822                                                                                                                                                    Batman
## 6823                                                                                                                                 Silence of the Lambs, The
## 6824                                                                                                                                      Beauty and the Beast
## 6825                                                                                                                           Candyman: Farewell to the Flesh
## 6826                                                                                                                                     Hellraiser: Bloodline
## 6827                                                                                                                                       Mission: Impossible
## 6828                                                                                                                                                      Fear
## 6829                                                                                                                             Kids in the Hall: Brain Candy
## 6830                                                                                                                                                  Spy Hard
## 6831                                                                                                                                       Usual Suspects, The
## 6832                                                                                                                        Star Wars: Episode IV - A New Hope
## 6833                                                                                                                           Monty Python and the Holy Grail
## 6834                                                                                                            Star Wars: Episode V - The Empire Strikes Back
## 6835                                                                                                                                       Princess Bride, The
## 6836                                                                                   Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 6837                                                                                                                                                Fight Club
## 6838                                                                                                                                                   Memento
## 6839                                                                                                        Lord of the Rings: The Fellowship of the Ring, The
## 6840                                                                                                            Lord of the Rings: The Return of the King, The
## 6841                                                                                                                     Eternal Sunshine of the Spotless Mind
## 6842                                                                                                                                         Shaun of the Dead
## 6843                                                                                                                                          Incredibles, The
## 6844                                                                                                                                             Batman Begins
## 6845                                                                                                                                       Kiss Kiss Bang Bang
## 6846                                                                                                                                            V for Vendetta
## 6847                                                                                                                                             Departed, The
## 6848                                                                                                                                           Children of Men
## 6849                                                                                                                                             Prestige, The
## 6850                                                                                                                                             Casino Royale
## 6851                                                                                                                                                  Hot Fuzz
## 6852                                                                                                                                                    Zodiac
## 6853                                                                                                                                    No Country for Old Men
## 6854                                                                                                                                          Dark Knight, The
## 6855                                                                                                                                      Inglourious Basterds
## 6856                                                                                                                                                      Moon
## 6857                                                                                                                                                        Up
## 6858                                                                                                                                                District 9
## 6859                                                                                                                                            Shutter Island
## 6860                                                                                                                                                 Inception
## 6861                                                                                                                               Scott Pilgrim vs. the World
## 6862                                                                                                                                          Django Unchained
## 6863                                                                                                                                                       Her
## 6864                                                                                                                                              Interstellar
## 6865                                                                                                                                                 Gone Girl
## 6866                                                                                                                                        The Imitation Game
## 6867                                                                                                                                        Mad Max: Fury Road
## 6868                                                                                                                Star Wars: Episode VII - The Force Awakens
## 6869                                                                                                                                                  Deadpool
## 6870                                                                                                                            Me and Earl and the Dying Girl
## 6871                                                                                                                                               The Martian
## 6872                                                                                                                                       10 Cloverfield Lane
## 6873                                                                                                                                                  Zootopia
## 6874                                                                                                                                                   Jumanji
## 6875                                                                                                  City of Lost Children, The (Cité des enfants perdus, La)
## 6876                                                                                                                                                Braveheart
## 6877                                                                                                                                                    Angela
## 6878                                                                                                                                Die Hard: With a Vengeance
## 6879                                                                                                                                           Johnny Mnemonic
## 6880                                                                                                                                               Judge Dredd
## 6881                                                                                                                                                   Species
## 6882                                                                                                                                                Waterworld
## 6883                                                                                                                                                   Exotica
## 6884                                                                                                        Interview with the Vampire: The Vampire Chronicles
## 6885                                                                                                                        Star Wars: Episode IV - A New Hope
## 6886                                                                                                                                        Little Princess, A
## 6887                                                                                                                                                  Stargate
## 6888                                                                                                                                                 Tank Girl
## 6889                                                                                                                                    Star Trek: Generations
## 6890                                                                                                                                     Village of the Damned
## 6891                                                                                                                                                 Crow, The
## 6892                                                                                                                                              Forrest Gump
## 6893                                                                                                                                                     Speed
## 6894                                                                                                                                                 True Lies
## 6895                                                                                                                                            Body Snatchers
## 6896                                                                                                                                                 Coneheads
## 6897                                                                                                                                            Demolition Man
## 6898                                                                                                                                             Fugitive, The
## 6899                                                                                                                                              Blade Runner
## 6900                                                                                                                                                    Batman
## 6901                                                                                                                                               Heavy Metal
## 6902                                                                                                                                       Mission: Impossible
## 6903                                                                                                                                                Barbarella
## 6904                                                                                                                                                   Twister
## 6905                                                                                                                                              Arrival, The
## 6906                                                                                                                             Independence Day (a.k.a. ID4)
## 6907                                                                                                                                          Escape from L.A.
## 6908                                                                                                                                      Little Princess, The
## 6909                                                                                                                                         Wizard of Oz, The
## 6910                                                                                                                                     2001: A Space Odyssey
## 6911                                                                                                                                             Fly Away Home
## 6912                                                                                                                                        Lawnmower Man, The
## 6913                                                                                                                       Willy Wonka & the Chocolate Factory
## 6914                                                                                                                                                   Sleeper
## 6915                                                                                                                                E.T. the Extra-Terrestrial
## 6916                                                                                                                                                Abyss, The
## 6917                                                                                                                                      Escape from New York
## 6918                                                                                                            Star Wars: Episode V - The Empire Strikes Back
## 6919                                                                                                                                                    Aliens
## 6920                                                                                                                                       Clockwork Orange, A
## 6921                                                                                                                Star Wars: Episode VI - Return of the Jedi
## 6922                                                                                                                                                     Alien
## 6923                                                                                                                                       Blues Brothers, The
## 6924                                                                                                                                         Full Metal Jacket
## 6925                                                                                                                                           Terminator, The
## 6926                                                                                                                                        Back to the Future
## 6927                                                                                                                                      Pink Floyd: The Wall
## 6928                                                                                                                                           Field of Dreams
## 6929                                                                                                                                   Alien³ (a.k.a. Alien 3)
## 6930                                                                                                                                                Birds, The
## 6931                                                                                                                                  Star Trek: First Contact
## 6932                                                                                                                             Star Trek: The Motion Picture
## 6933                                                                                                                    Star Trek VI: The Undiscovered Country
## 6934                                                                                                                           Star Trek V: The Final Frontier
## 6935                                                                                                                           Star Trek II: The Wrath of Khan
## 6936                                                                                                                       Star Trek III: The Search for Spock
## 6937                                                                                                                             Star Trek IV: The Voyage Home
## 6938                                                                                                                                        Cement Garden, The
## 6939                                                                                                                                        Fifth Element, The
## 6940                                                                                                                                                   Ponette
## 6941                                                                                                                                                   Con Air
## 6942                                                                                                                                 Men in Black (a.k.a. MIB)
## 6943                                                                                                                                                     Spawn
## 6944                                                                                                                                         Starship Troopers
## 6945                                                                                                                                       Alien: Resurrection
## 6946                                                                                                                                      Sweet Hereafter, The
## 6947                                                                                                                                               Wag the Dog
## 6948                                                                                                                                                 Dark City
## 6949                                                                                                                                       Blues Brothers 2000
## 6950                                                                                                                                                    Sphere
## 6951                                                                                                                                               Deep Impact
## 6952                                                                                                                                                 Lawn Dogs
## 6953                                                                                                                                                Armageddon
## 6954                                                                                                                                                  Repo Man
## 6955                                                                                                                                             Exorcist, The
## 6956                                                                                                                                           Lethal Weapon 2
## 6957                                                                                                                                                  Gremlins
## 6958                                                                                                                                             Soylent Green
## 6959                                                                                                                                Back to the Future Part II
## 6960                                                                                                                               Back to the Future Part III
## 6961                                                                                                                                                    Lolita
## 6962                                                                                                                                                      Tron
## 6963                                                                                                                               1984 (Nineteen Eighty-Four)
## 6964                                                                                                                                               Beetlejuice
## 6965                                                                                                                                                      Cube
## 6966                                                                                                                            2010: The Year We Make Contact
## 6967                                                                                                                                                   Soldier
## 6968                                                                                                                                                  Fly, The
## 6969                                                                                                                                                  Fly, The
## 6970                                                                                                                                                   Airport
## 6971                                                                                                                                              Airport 1975
## 6972                                                                                                                                               Airport '77
## 6973                                                                                                                                               Logan's Run
## 6974                                                                                                                                        Planet of the Apes
## 6975                                                                                                                            Beneath the Planet of the Apes
## 6976                                                                                                                         Battle for the Planet of the Apes
## 6977                                                                                                                        Conquest of the Planet of the Apes
## 6978                                                                                                                                Concorde: Airport '79, The
## 6979                                                                                                                                     Village of the Damned
## 6980                                                                                                                                               Matrix, The
## 6981                                                                                                                                                  eXistenZ
## 6982                                                                                                                                                  Superman
## 6983                                                                                                                                               Superman II
## 6984                                                                                                                                              Superman III
## 6985                                                                                                                                                    Lolita
## 6986                                                                                                                                    Little Shop of Horrors
## 6987                                                                                                                                         Universal Soldier
## 6988                                                                                                                                           American Beauty
## 6989                                                                                                                                                     Tommy
## 6990                                                                                                                                              Total Recall
## 6991                                                                                                                                  Ferris Bueller's Day Off
## 6992                                                                                                                                          Blue Lagoon, The
## 6993                                                                                                                                                Spaceballs
## 6994                                                                                                                                          Bicentennial Man
## 6995                                                                                                                                              Galaxy Quest
## 6996                                                                                                                                             Wayne's World
## 6997                                                                                                                                               Pitch Black
## 6998                                                                                                                                           Mission to Mars
## 6999                                                                                                                        Close Encounters of the Third Kind
## 7000                                                                                                                                                 Ladyhawke
## 7001                                                                                                                                      Virgin Suicides, The
## 7002                                                                                                                                         Battlefield Earth
## 7003                                                                                                                                                 Moonraker
## 7004                                                                                                                                          Running Man, The
## 7005                                                                                                                                                   Starman
## 7006                                                                                                                                                   Mad Max
## 7007                                                                                                                             Road Warrior, The (Mad Max 2)
## 7008                                                                                                                                Mad Max Beyond Thunderdome
## 7009                                                                                                                                                Titan A.E.
## 7010                                                                                                                                                     X-Men
## 7011                                                                                                                                                  Freejack
## 7012                                                                                                                                                 Cell, The
## 7013                                                                                                                                        Dancer in the Dark
## 7014                                                                                                                                                   Runaway
## 7015                                                                                                                                              6th Day, The
## 7016                                                                                                                                                     Annie
## 7017                                                                                                                                                  Spy Kids
## 7018                                                                                                                                                     Shrek
## 7019                                                                                                                              A.I. Artificial Intelligence
## 7020                                                                                                                                                   Outland
## 7021                                                                                                                         Final Fantasy: The Spirits Within
## 7022                                                                                                                                                 They Live
## 7023                                                                                                                                                Millennium
## 7024                                                                                                                                                       UHF
## 7025                                                                                                                                                 Def-Con 4
## 7026                                                                                                                                   Phantom of the Paradise
## 7027                                                                                                                                              Quadrophenia
## 7028                                                                                                                                                     K-PAX
## 7029                                                                                                                                                      Fame
## 7030                                                                                                                                             Resident Evil
## 7031                                                                                                                                                Spider-Man
## 7032                                                                                                                                           Minority Report
## 7033                                                                                                              Men in Black II (a.k.a. MIIB) (a.k.a. MIB 2)
## 7034                                                                                                                                             Reign of Fire
## 7035                                                                                                                                               The Big Bus
## 7036                                                                                                                 Beau Pere (a.k.a. Stepfather) (Beau-père)
## 7037                                                                                                                                                Rollerball
## 7038                                                                                                             Spirited Away (Sen to Chihiro no kamikakushi)
## 7039                                                                                                                                             Staying Alive
## 7040                                                                                                                                                    Xanadu
## 7041                                                                                                                                                   Solaris
## 7042                                                                                                                                               Equilibrium
## 7043                                                                                                                                  Day of the Triffids, The
## 7044                                                                                                                                         Pirate Movie, The
## 7045                                                                                                                                                 Daredevil
## 7046                                                                                                                                                 Core, The
## 7047                                                                                                                                     Andromeda Strain, The
## 7048                                                                                                                                                  Wiz, The
## 7049                                                                                                                                          X2: X-Men United
## 7050                                                                                                                                      Matrix Reloaded, The
## 7051                                                                                                                                               Whale Rider
## 7052                                                                                                                                             28 Days Later
## 7053                                                                                                                        Terminator 3: Rise of the Machines
## 7054                                                                                                       League of Extraordinary Gentlemen, The (a.k.a. LXG)
## 7055                                                                                                                                                  THX 1138
## 7056                                                                                                                                      Handmaid's Tale, The
## 7057                                                                                                                     Sgt. Pepper's Lonely Hearts Club Band
## 7058                                                                                                                                            School of Rock
## 7059                                                                                                                                   Matrix Revolutions, The
## 7060                                                                                                                                       Cat in the Hat, The
## 7061                                                                                                                                                  WarGames
## 7062                                                                                                                            Invasion of the Body Snatchers
## 7063                                                                                                                                    Jesus Christ Superstar
## 7064                                                                                                                                                 Peter Pan
## 7065                                                                                                                                                   Hellboy
## 7066                                                                                                                                                    Zardoz
## 7067                                                                                                                                           Death Race 2000
## 7068                                                                                                                                Chronicles of Riddick, The
## 7069                                                                                                                                               Pretty Baby
## 7070                                                                                                                                     Last Starfighter, The
## 7071                                                                                                                                                  I, Robot
## 7072                                                                                                                                 Resident Evil: Apocalypse
## 7073                                                                                                                                                Braveheart
## 7074                                                                                                                                Die Hard: With a Vengeance
## 7075                                                                                                                        Star Wars: Episode IV - A New Hope
## 7076                                                                                                                                              Pulp Fiction
## 7077                                                                                                                                 Shawshank Redemption, The
## 7078                                                                                                                                  Clear and Present Danger
## 7079                                                                                                                                              Forrest Gump
## 7080                                                                                                                                                 True Lies
## 7081                                                                                                                                             Fugitive, The
## 7082                                                                                                                                             Jurassic Park
## 7083                                                                                                                                              Philadelphia
## 7084                                                                                                                                          Schindler's List
## 7085                                                                                                                                                   Aladdin
## 7086                                                                                                                                Terminator 2: Judgment Day
## 7087                                                                                                                                       Mission: Impossible
## 7088                                                                                                                                                 Rock, The
## 7089                                                                                                                             Independence Day (a.k.a. ID4)
## 7090                                                                                                                                                  Die Hard
## 7091                                                                                                                                E.T. the Extra-Terrestrial
## 7092                                                                                                            Star Wars: Episode V - The Empire Strikes Back
## 7093                                                                                   Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 7094                                                                                                                                                    Aliens
## 7095                                                                                                                Star Wars: Episode VI - Return of the Jedi
## 7096                                                                                                                        Indiana Jones and the Last Crusade
## 7097                                                                                                                                   Alien³ (a.k.a. Alien 3)
## 7098                                                                                                                                                Die Hard 2
## 7099                                                                                                                                        Fifth Element, The
## 7100                                                                                                                                                  Face/Off
## 7101                                                                                                                                         Good Will Hunting
## 7102                                                                                                                                                   Titanic
## 7103                                                                                                                                       Saving Private Ryan
## 7104                                                                                                                                               Matrix, The
## 7105                                                                                                                                              Total Recall
## 7106                                                                                                                                                   RoboCop
## 7107                                                                                                                                                     X-Men
## 7108                                                                                                          Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 7109                                                                                                                                            Monsters, Inc.
## 7110                                                                                                        Lord of the Rings: The Fellowship of the Ring, The
## 7111                                                                                                                                                Spider-Man
## 7112                                                                                                                    Lord of the Rings: The Two Towers, The
## 7113                                                                                                            Lord of the Rings: The Return of the King, The
## 7114                                                                                                                                          Band of Brothers
## 7115                                                                                                                                              Spider-Man 2
## 7116                                                                                                                                          Incredibles, The
## 7117                                                                                                                                             Batman Begins
## 7118                                                                                                                       Harry Potter and the Goblet of Fire
## 7119                                                                                                                                            V for Vendetta
## 7120                                                                                                                 Pan's Labyrinth (Laberinto del fauno, El)
## 7121                                                                                                                                             Departed, The
## 7122                                                                                                                                          Dark Knight, The
## 7123                                                                                                                                                  Iron Man
## 7124                                                                                                                                       Slumdog Millionaire
## 7125                                                                                                                                                 Star Trek
## 7126                                                                                                                    Harry Potter and the Half-Blood Prince
## 7127                                                                                                                                                District 9
## 7128                                                                                                                                           Sherlock Holmes
## 7129                                                                                                                                            Shutter Island
## 7130                                                                                                                                  How to Train Your Dragon
## 7131                                                                                                                                                 Inception
## 7132                                                                                                                                        X-Men: First Class
## 7133                                                                                                                                             Avengers, The
## 7134                                                                                                                                    Dark Knight Rises, The
## 7135                                                                                                                        Hobbit: An Unexpected Journey, The
## 7136                                                                                                                      Hobbit: The Desolation of Smaug, The
## 7137                                                                                                                                  Wolf of Wall Street, The
## 7138                                                                                                                                              Interstellar
## 7139                                                                                                                                          Edge of Tomorrow
## 7140                                                                                                                                   Guardians of the Galaxy
## 7141                                                                                                                Star Wars: Episode VII - The Force Awakens
## 7142                                                                                                                                                Inside Out
## 7143                                                                                                                                                 Toy Story
## 7144                                                                                                                                                      Babe
## 7145                                                                                                                                                  Clueless
## 7146                                                                                                                                       From Dusk Till Dawn
## 7147                                                                                                                                             Happy Gilmore
## 7148                                                                                                                                                Braveheart
## 7149                                                                                                                                             Billy Madison
## 7150                                                                                                                                                    Clerks
## 7151                                                                                                                           Dumb & Dumber (Dumb and Dumber)
## 7152                                                                                                                                   While You Were Sleeping
## 7153                                                                                                                                              Forrest Gump
## 7154                                                                                                                                             Jurassic Park
## 7155                                                                                                                                            Mrs. Doubtfire
## 7156                                                                                                                                                      Rudy
## 7157                                                                                                                                          Schindler's List
## 7158                                                                                                                                    Brady Bunch Movie, The
## 7159                                                                                                                                                   Aladdin
## 7160                                                                                                                                Terminator 2: Judgment Day
## 7161                                                                                                                                                     Fargo
## 7162                                                                                                                                                   Matilda
## 7163                                                                                                                                                      Emma
## 7164                                                                                                                                       Sound of Music, The
## 7165                                                                                                                Star Wars: Episode VI - Return of the Jedi
## 7166                                                                                                                                                    Grease
## 7167                                                                                                                                             Fools Rush In
## 7168                                                                                                                                             Private Parts
## 7169                                                                                                                    Romy and Michele's High School Reunion
## 7170                                                                                                               Austin Powers: International Man of Mystery
## 7171                                                                                                                            Lost World: Jurassic Park, The
## 7172                                                                                                                                  My Best Friend's Wedding
## 7173                                                                                                                                 Men in Black (a.k.a. MIB)
## 7174                                                                                                                                            Kiss Me, Guido
## 7175                                                                                                                                             Boogie Nights
## 7176                                                                                                                                              Postman, The
## 7177                                                                                                                                       Wedding Singer, The
## 7178                                                                                                                                                    Paulie
## 7179                                                                                                                               Object of My Affection, The
## 7180                                                                                                                                                  Bulworth
## 7181                                                                                                                                         Can't Hardly Wait
## 7182                                                                                                                                                     Mulan
## 7183                                                                                                                                       Terms of Endearment
## 7184                                                                                                                                       Breakfast Club, The
## 7185                                                                                                                                             Exorcist, The
## 7186                                                                                                                                             Lethal Weapon
## 7187                                                                                                                                                  Gremlins
## 7188                                                                                                                                 Gremlins 2: The New Batch
## 7189                                                                                                                                  Honey, I Shrunk the Kids
## 7190                                                                                                                                       Little Mermaid, The
## 7191                                                                                                                                         Mighty Ducks, The
## 7192                                                                                                                                                 Jerk, The
## 7193                                                                                                                                           Sixteen Candles
## 7194                                                                                                                                   Gods Must Be Crazy, The
## 7195                                                                                                                                           Rosemary's Baby
## 7196                                                                                                                                       Edward Scissorhands
## 7197                                                                                                                                             Pleasantville
## 7198                                                                                                                                             Bug's Life, A
## 7199                                                                                                                                     Babe: Pig in the City
## 7200                                                                                                                                              Little Voice
## 7201                                                                                                                                                  Rushmore
## 7202                                                                                                                                       Shakespeare in Love
## 7203                                                                                                                                             Varsity Blues
## 7204                                                                                                                                                  Fly, The
## 7205                                                                                                                                                  Fly, The
## 7206                                                                                                                                       Blast from the Past
## 7207                                                                                                                                              Analyze This
## 7208                                                                                                           William Shakespeare's A Midsummer Night's Dream
## 7209                                                                                                                                              Notting Hill
## 7210                                                                                                                     Austin Powers: The Spy Who Shagged Me
## 7211                                                                                                                                   General's Daughter, The
## 7212                                                                                                                                         Ideal Husband, An
## 7213                                                                                                                      South Park: Bigger, Longer and Uncut
## 7214                                                                                                                                              American Pie
## 7215                                                                                                                                               Mystery Men
## 7216                                                                                                                                                 Bowfinger
## 7217                                                                                                                                                 Airplane!
## 7218                                                                                                                                        Christmas Story, A
## 7219                                                                                                                                        Outside Providence
## 7220                                                                                                                                           American Beauty
## 7221                                                                                  Armour of God II: Operation Condor (Operation Condor) (Fei ying gai wak)
## 7222                                                                                                                                            Three to Tango
## 7223                                                                                                                                      Being John Malkovich
## 7224                                                                                                                                       Bone Collector, The
## 7225                                                                                                                                                     Dogma
## 7226                                                                                                                                               Toy Story 2
## 7227                                                                                                                                          Bicentennial Man
## 7228                                                                                                                                                  Magnolia
## 7229                                                                                                                                          Any Given Sunday
## 7230                                                                                                                                               My Dog Skip
## 7231                                                                                                                                                Sister Act
## 7232                                                                                                                                           Wayne's World 2
## 7233                                                                                                                                    League of Their Own, A
## 7234                                                                                                                                                  Snow Day
## 7235                                                                                                                                     Whole Nine Yards, The
## 7236                                                                                                                                         Final Destination
## 7237                                                                                                                                            Grumpy Old Men
## 7238                                                                                                                                             High Fidelity
## 7239                                                                                                                                                 Frequency
## 7240                                                                                                                                               Me Myself I
## 7241                                                                                                                                            Bachelor Party
## 7242                                                                                                                                           American Psycho
## 7243                                                                                                                                                     U-571
## 7244                                                                                                                                             Shanghai Noon
## 7245                                                                                                                                                  Soapdish
## 7246                                                                                                                                              Patriot, The
## 7247                                                                                                                                               House Party
## 7248                                                                                                           Naked Gun: From the Files of Police Squad!, The
## 7249                                                                                                                   Naked Gun 2 1/2: The Smell of Fear, The
## 7250                                                                                                                                                Hellraiser
## 7251                                                                                                                                          Meet the Parents
## 7252                                                                                                                                            Pay It Forward
## 7253                                                                                                                                                 Toy Story
## 7254                                                                                                                                          Grumpier Old Men
## 7255                                                                                                                               Father of the Bride Part II
## 7256                                                                                                                                                      Heat
## 7257                                                                                                                                     Sense and Sensibility
## 7258                                                                                                                                         Leaving Las Vegas
## 7259                                                                                                                        Twelve Monkeys (a.k.a. 12 Monkeys)
## 7260                                                                                                                                        Mr. Holland's Opus
## 7261                                                                                                                                              Broken Arrow
## 7262                                                                                                                                             Happy Gilmore
## 7263                                                                                                                                            Down Periscope
## 7264                                                                                                                                             Birdcage, The
## 7265                                                                                                                        Star Wars: Episode IV - A New Hope
## 7266                                                                                                                                        Executive Decision
## 7267                                                                                                                                               Primal Fear
## 7268                                                                                                                                                Sgt. Bilko
## 7269                                                                                                                                       Mission: Impossible
## 7270                                                                                                                                                 Rock, The
## 7271                                                                                                                                                   Twister
## 7272                                                                                                                             Independence Day (a.k.a. ID4)
## 7273                                                                                                                                                    Eraser
## 7274                                                                                                                                      Nutty Professor, The
## 7275                                                                                                                                                Phenomenon
## 7276                                                                                                                                           Time to Kill, A
## 7277                                                                                                                                  Long Kiss Goodnight, The
## 7278                                                                                                                                 Robin Hood: Men in Tights
## 7279                                                                                                                                       Singin' in the Rain
## 7280                                                                                                                                                   Vertigo
## 7281                                                                                                                                                    Brazil
## 7282                                                                                                                                                Birds, The
## 7283                                                                                                                                               Chasing Amy
## 7284                                                                                                                                             Boogie Nights
## 7285                                                                                                                                                 Dark City
## 7286                                                                                                                                10 Things I Hate About You
## 7287                                                                                                                                 Run Lola Run (Lola rennt)
## 7288                                                                                                                                             Arachnophobia
## 7289                                                                                                                                                     Dogma
## 7290                                                                                                                                                  Magnolia
## 7291                                                                                                                                               City Lights
## 7292                                                                                                                                              Patriot, The
## 7293                                                                                                                            Amores Perros (Love's a Bitch)
## 7294                                                                                                                                     Bridget Jones's Diary
## 7295                                                                                                                                         Beautiful Mind, A
## 7296                                                                                                                              Talk to Her (Hable con Ella)
## 7297                                                                                                                Beauty and the Beast (La belle et la bête)
## 7298                                                                                                                                       Au Hasard Balthazar
## 7299                                                                                                                                           Misérables, Les
## 7300                                                                                                                                          Flintstones, The
## 7301                                                                                                                                                Craft, The
## 7302                                                                                                                                        Back to the Future
## 7303                                                                                                                                        Jingle All the Way
## 7304                                                                                                                                                   Volcano
## 7305                                                                                                                                              Home Alone 3
## 7306                                                                                                                                                  Repo Man
## 7307                                                                                                                                             Avengers, The
## 7308                                                                                                                  Police Academy 2: Their First Assignment
## 7309                                                                                                                      Police Academy 4: Citizens on Patrol
## 7310                                                                                                                        Police Academy 6: City Under Siege
## 7311                                                                                                                                    Miracle on 34th Street
## 7312                                                                                                                                              Analyze This
## 7313                                                                                                                                          Cruel Intentions
## 7314                                                                                                                                                Entrapment
## 7315                                                                                                                                        Christmas Story, A
## 7316                                                                                                                                             Stuart Little
## 7317                                                                                                                                                Sister Act
## 7318                                                                                                           Naked Gun: From the Files of Police Squad!, The
## 7319                                                                                                        Lord of the Rings: The Fellowship of the Ring, The
## 7320                                                                                                                    Lord of the Rings: The Two Towers, The
## 7321                                                                                                                                          Kindergarten Cop
## 7322                                                                                                            Lord of the Rings: The Return of the King, The
## 7323                                                                                                                         Police Academy: Mission to Moscow
## 7324                                                                                                                                      Bourne Identity, The
## 7325                                                                                                                                                Madagascar
## 7326                                                                                                                                             Batman Begins
## 7327                                                                                                                                             Blood Diamond
## 7328                                                                                                                                               Ratatouille
## 7329                                                                                                                                          Dark Knight, The
## 7330                                                                                                                                              Visitor, The
## 7331                                                                                                                                                 Inception
## 7332                                                                                                                                       Social Network, The
## 7333                                                                                                              Harry Potter and the Deathly Hallows: Part 1
## 7334                                                                                                              Harry Potter and the Deathly Hallows: Part 2
## 7335                                                                                                                                             Avengers, The
## 7336                                                                                                                                    Dark Knight Rises, The
## 7337                                                                                                                   Batman: The Dark Knight Returns, Part 1
## 7338                                                                                                                                                 Toy Story
## 7339                                                                                                                                                   Jumanji
## 7340                                                                                                                                                 GoldenEye
## 7341                                                                                                                        Twelve Monkeys (a.k.a. 12 Monkeys)
## 7342                                                                                                                                                  Clueless
## 7343                                                                                                                                       Usual Suspects, The
## 7344                                                                                                                                              Broken Arrow
## 7345                                                                                                                                                Braveheart
## 7346                                                                                                                                                 Apollo 13
## 7347                                                                                                                                            Batman Forever
## 7348                                                                                                                                                     Congo
## 7349                                                                                                                                              Crimson Tide
## 7350                                                                                                                                Die Hard: With a Vengeance
## 7351                                                                                                                                               Judge Dredd
## 7352                                                                                                                                                Waterworld
## 7353                                                                                                                           Dumb & Dumber (Dumb and Dumber)
## 7354                                                                                                                                               French Kiss
## 7355                                                                                                        Interview with the Vampire: The Vampire Chronicles
## 7356                                                                                                                                       Legends of the Fall
## 7357                                                                                                                                      Natural Born Killers
## 7358                                                                                                                                                  Outbreak
## 7359                                                                                                                                              Pulp Fiction
## 7360                                                                                                                                                 Quiz Show
## 7361                                                                                                                                           Specialist, The
## 7362                                                                                                                                                  Stargate
## 7363                                                                                                                                    Star Trek: Generations
## 7364                                                                                                                                Ace Ventura: Pet Detective
## 7365                                                                                                                                  Clear and Present Danger
## 7366                                                                                                                                                 True Lies
## 7367                                                                                                                                      Addams Family Values
## 7368                                                                                                                                     Beverly Hills Cop III
## 7369                                                                                                                                               Cliffhanger
## 7370                                                                                                                                            Demolition Man
## 7371                                                                                                                                             Fugitive, The
## 7372                                                                                                                                                   Aladdin
## 7373                                                                                                                                                    Batman
## 7374                                                                                                                                 Silence of the Lambs, The
## 7375                                                                                                                                      Beauty and the Beast
## 7376                                                                                                                                                 Toy Story
## 7377                                                                                                                                                   Jumanji
## 7378                                                                                                                                                      Babe
## 7379                                                                                                                                                Braveheart
## 7380                                                                                                                                               Taxi Driver
## 7381                                                                                                                                                    Casper
## 7382                                                                                                                                                 Desperado
## 7383                                                                                                                                                    Clerks
## 7384                                                                                                                           Dumb & Dumber (Dumb and Dumber)
## 7385                                                                                                                                      Natural Born Killers
## 7386                                                                                                   Léon: The Professional (a.k.a. The Professional) (Léon)
## 7387                                                                                                                                              Pulp Fiction
## 7388                                                                                                                                Ace Ventura: Pet Detective
## 7389                                                                                                                                              Forrest Gump
## 7390                                                                                                                                            Lion King, The
## 7391                                                                                                                                                 Mask, The
## 7392                                                                                                                                             Jurassic Park
## 7393                                                                                                                                                     Naked
## 7394                                                                                                                                          Schindler's List
## 7395                                                                                                                                              Blade Runner
## 7396                                                                                                                                  Welcome to the Dollhouse
## 7397                                                                                                                                 Silence of the Lambs, The
## 7398                                                                                                                                      Beauty and the Beast
## 7399                                                                                                                                       Mission: Impossible
## 7400                                                                                                                                                 Space Jam
## 7401                                                                                                                       Ghost in the Shell (Kôkaku kidôtai)
## 7402                                                                                                                                             Trainspotting
## 7403                                                                                                                                            Cable Guy, The
## 7404                                                                                                                                            Godfather, The
## 7405                                                                                                                                     2001: A Space Odyssey
## 7406                                                                                                                                E.T. the Extra-Terrestrial
## 7407                                                                                                                                                Abyss, The
## 7408                                                                                                                      Wallace & Gromit: The Wrong Trousers
## 7409                                                                                                                                              Delicatessen
## 7410                                                                                                                                              My Left Foot
## 7411                                                                                                                                       Clockwork Orange, A
## 7412                                                                                                                                                     Alien
## 7413                                                                                                                                         Full Metal Jacket
## 7414                                                                                                                                           Terminator, The
## 7415                                                                                                                                              Shining, The
## 7416                                                                                                                                        Back to the Future
## 7417                                                                                                                                                     Akira
## 7418                                                                                                                                                    Gandhi
## 7419                                                                                                                                                    Scream
## 7420                                                                                                                                                 Liar Liar
## 7421                                                                                                                                                  Anaconda
## 7422                                                                                                                                        Fifth Element, The
## 7423                                                                                                                            Lost World: Jurassic Park, The
## 7424                                                                                                                                 Men in Black (a.k.a. MIB)
## 7425                                                                                                                                                     Spawn
## 7426                                                                                                                                         Starship Troopers
## 7427                                                                                                                                          Truman Show, The
## 7428                                                                                                                                                   Titanic
## 7429                                                                                                                                         Big Lebowski, The
## 7430                                                                                                                                        As Good as It Gets
## 7431                                                                                                                                                  Godzilla
## 7432                                                                                                                            Fear and Loathing in Las Vegas
## 7433                                                                                                                                                Armageddon
## 7434                                                                                                                                                        Pi
## 7435                                                                                                                              There's Something About Mary
## 7436                                                                                                                                             Exorcist, The
## 7437                                                                                                                                        Mask of Zorro, The
## 7438                                                                                                                                                     Blade
## 7439                                                                                                                                                      Cube
## 7440                                                                                                                                                Thing, The
## 7441                                                                                                                                       Edward Scissorhands
## 7442                                                                                                                                                      Antz
## 7443                                                                                                                                                 Happiness
## 7444                                                                                                                       Life Is Beautiful (La Vita è bella)
## 7445                                                                                                                                        American History X
## 7446                                                                                                                                             Bug's Life, A
## 7447                                                                                                                                                  Fly, The
## 7448                                                                                                                         Lock, Stock & Two Smoking Barrels
## 7449                                                                                                                                               Matrix, The
## 7450                                                                                                                                                Mummy, The
## 7451                                                                                                                                 Run Lola Run (Lola rennt)
## 7452                                                                                                                      South Park: Bigger, Longer and Uncut
## 7453                                                                                                                                              American Pie
## 7454                                                                                                                                  Blair Witch Project, The
## 7455                                                                                                                                             Deep Blue Sea
## 7456                                                                                                                                          Sixth Sense, The
## 7457                                                                                                                                                  Stigmata
## 7458                                                                                                                                                Fight Club
## 7459                                                                                                                                  Who Framed Roger Rabbit?
## 7460                                                                                                                                      Being John Malkovich
## 7461                                                                                                                         Princess Mononoke (Mononoke-hime)
## 7462                                                                                                                                               Toy Story 2
## 7463                                                                                                                                           Green Mile, The
## 7464                                                                                                                                                  Predator
## 7465                                                                                                                                                 Gladiator
## 7466                                                                                                                                                    Baraka
## 7467                                                                                                                                        Gone in 60 Seconds
## 7468                                                                                                                                                Titan A.E.
## 7469                                                                                                                                               Chicken Run
## 7470                                                                                                                                                     X-Men
## 7471                                                                                                                                       Requiem for a Dream
## 7472                                                                                                                                                 Bedazzled
## 7473                                                                                                                                                    Snatch
## 7474                                                                                                                                 Emperor's New Groove, The
## 7475                                                                                                                                                 Cast Away
## 7476                                                                                                                                                   Memento
## 7477                                                                                                                                        Mummy Returns, The
## 7478                                                                                                                                                     Shrek
## 7479                                                                                                                                 Fast and the Furious, The
## 7480                                                                                                                         Final Fantasy: The Spirits Within
## 7481                                                                                                                                               Others, The
## 7482                                                                                                                                              Donnie Darko
## 7483                                                                                                                                            Monsters, Inc.
## 7484                                                                                                           Devil's Backbone, The (Espinazo del diablo, El)
## 7485                                                                                                             Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 7486                                                                                                                                               Vanilla Sky
## 7487                                                                                                        Lord of the Rings: The Fellowship of the Ring, The
## 7488                                                                                                                                         Beautiful Mind, A
## 7489                                                                                                                                           Black Hawk Down
## 7490                                                                                                             Vampire Hunter D: Bloodlust (Banpaia hantâ D)
## 7491                                                                                                                                                   Ice Age
## 7492                                                                                                                   And Your Mother Too (Y tu mamá también)
## 7493                                                                                                                                                Spider-Man
## 7494                                                                                                              Men in Black II (a.k.a. MIIB) (a.k.a. MIB 2)
## 7495                                                                                                                                                     Signs
## 7496                                                                                                                                            Thesis (Tesis)
## 7497                                                                                                             Spirited Away (Sen to Chihiro no kamikakushi)
## 7498                                                                                                                                     Bowling for Columbine
## 7499                                                                                                                                                 Ring, The
## 7500                                                                                                                   Grave of the Fireflies (Hotaru no haka)
## 7501                                                                                                                                                Adaptation
## 7502                                                                                                                                               Equilibrium
## 7503                                                                                                                    Lord of the Rings: The Two Towers, The
## 7504                                                                                                                     My Neighbor Totoro (Tonari no Totoro)
## 7505                                                                                                                                              Pianist, The
## 7506                                                                                                                              City of God (Cidade de Deus)
## 7507                                                                                                                               Irreversible (Irréversible)
## 7508                                                                                                                                                      Spun
## 7509                                                                                                                                              Ringu (Ring)
## 7510                                                                                                 Cowboy Bebop: The Movie (Cowboy Bebop: Tengoku no Tobira)
## 7511                                                                                                                               Lilya 4-Ever (Lilja 4-ever)
## 7512                                                                                                        Laputa: Castle in the Sky (Tenkû no shiro Rapyuta)
## 7513                                                                                                                                      Matrix Reloaded, The
## 7514                                                                                                                                            Bruce Almighty
## 7515                                                                                                                                              Finding Nemo
## 7516                                                                                                    Pirates of the Caribbean: The Curse of the Black Pearl
## 7517                                                                                                                                       Lost in Translation
## 7518                                                                                                                             Ninja Scroll (Jûbei ninpûchô)
## 7519                                                                                                                                                  Elephant
## 7520                                                                                                                                   Matrix Revolutions, The
## 7521                                                                                                                                                  21 Grams
## 7522                                                                                             Nausicaä of the Valley of the Wind (Kaze no tani no Naushika)
## 7523                                                                                                                                                  Big Fish
## 7524                                                                                                            Lord of the Rings: The Return of the King, The
## 7525                                                                                                                             Ichi the Killer (Koroshiya 1)
## 7526                                                                                                                                      The Butterfly Effect
## 7527                                                                                                                                         Touching the Void
## 7528                                                                                                                                          Dawn of the Dead
## 7529                                                                                                                     Eternal Sunshine of the Spotless Mind
## 7530                                                                                                                                                   Hellboy
## 7531                                                                                                                          I'm Not Scared (Io non ho paura)
## 7532                                                                                                               Tale of Two Sisters, A (Janghwa, Hongryeon)
## 7533                                                                                                                                                 Gladiator
## 7534                                                                                                                        Jin Roh: The Wolf Brigade (Jin-Rô)
## 7535                                                                                                                                                   Shrek 2
## 7536                                                                                                                                         Napoleon Dynamite
## 7537                                                                                                         Manufacturing Consent: Noam Chomsky and the Media
## 7538                                                                                                                                              Spider-Man 2
## 7539                                                                                                         Maria Full of Grace (Maria, Llena eres de gracia)
## 7540                                                                                                                                              Garden State
## 7541                                                                                                                       Harold and Kumar Go to White Castle
## 7542                                                                                                                                         Shaun of the Dead
## 7543                                                                                                                                        Cannibal Holocaust
## 7544                                                                                                                                                Shark Tale
## 7545                                                                                                                                             The Machinist
## 7546                                                                                                                                                       Saw
## 7547                                                                                                                                          Incredibles, The
## 7548                                                                                                                                        Polar Express, The
## 7549                                                                                                               Kiki's Delivery Service (Majo no takkyûbin)
## 7550                                                                                                               Porco Rosso (Crimson Pig) (Kurenai no buta)
## 7551                                               Neon Genesis Evangelion: The End of Evangelion (Shin seiki Evangelion Gekijô-ban: Air/Magokoro wo, kimi ni)
## 7552                                                                                                                      My Sassy Girl (Yeopgijeogin geunyeo)
## 7553                                                                                                                                            Animatrix, The
## 7554                                                                                                                                  Bukowski: Born into This
## 7555                                                                                                     Last Life in the Universe (Ruang rak noi nid mahasan)
## 7556                                                                                                                       Cat Returns, The (Neko no ongaeshi)
## 7557                                                                                                                                                   Old Boy
## 7558                                                                                                     Interstella 5555: The 5tory of the 5ecret 5tar 5ystem
## 7559                                                                                                                       Ong-Bak: The Thai Warrior (Ong Bak)
## 7560                                                                                                                                                Mean Creek
## 7561                                                                                                                                          Corporation, The
## 7562                                                                                                                                              Yes Men, The
## 7563                                                                                                                                        Born into Brothels
## 7564                                                                                                                         Charlie and the Chocolate Factory
## 7565                                                                                                                    Kamikaze Girls (Shimotsuma monogatari)
## 7566                                                                                                                                 Downfall (Untergang, Der)
## 7567                                                                                                                 Rory O'Shea Was Here (Inside I'm Dancing)
## 7568                                                                                                               Howl's Moving Castle (Hauru no ugoku shiro)
## 7569                                                                                                                                  Kung Fu Hustle (Gong fu)
## 7570                                                                                                                                                    Robots
## 7571                                                                                                                                       Memories (Memorîzu)
## 7572                                                                                                                                            Harvie Krumpet
## 7573                                                                                                                                                  Sin City
## 7574                                                                                                                      Enron: The Smartest Guys in the Room
## 7575                                                                                                                                                     Crash
## 7576                                                                                                                                                Madagascar
## 7577                                                                                                                                          Mr. & Mrs. Smith
## 7578                                                                                                                                      Devil's Rejects, The
## 7579                                                                                                                                                  Serenity
## 7580                                                                                                                             Hidden (a.k.a. Cache) (Caché)
## 7581                                                                                                                                 Everything Is Illuminated
## 7582                                                                                                                                              Corpse Bride
## 7583                                                                                                                        Final Fantasy VII: Advent Children
## 7584                                                                                                          Wallace & Gromit in The Curse of the Were-Rabbit
## 7585                                                                                                                                         Pride & Prejudice
## 7586                                                                                                                                                 King Kong
## 7587                                                                                                                                      Mozart and the Whale
## 7588                                                                                                                                                    Hostel
## 7589                                                                                                                                   Ice Age 2: The Meltdown
## 7590                                                                                                                                            V for Vendetta
## 7591                                                                                                                                      Hills Have Eyes, The
## 7592                                                                                                              Lives of Others, The (Das leben der Anderen)
## 7593                                                                                                                            Devil and Daniel Johnston, The
## 7594                                                                                                                                                   Slither
## 7595                                                                                                                                                Hard Candy
## 7596                                                                                                                                            Over the Hedge
## 7597                                                                                                                                                      Cars
## 7598                                                                                                                                    Devil Wears Prada, The
## 7599                                                                                                                                    Inconvenient Truth, An
## 7600                                                                                                                                      Little Miss Sunshine
## 7601                                                                                                                                             Monster House
## 7602                                                                                                                                     Stranger than Fiction
## 7603                                                                                                                                 Pursuit of Happyness, The
## 7604                                                                                                                                            Ant Bully, The
## 7605                                                                                                                                                 Mind Game
## 7606                                                                                                                                          Illusionist, The
## 7607                                                                                                                                                Jesus Camp
## 7608                                                                                                                                             Fountain, The
## 7609                                                                                                              Science of Sleep, The (La science des rêves)
## 7610                                                                       Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan
## 7611                                                                                                                 Pan's Labyrinth (Laberinto del fauno, El)
## 7612                                                                                                                                               Open Season
## 7613                                                                                                                                           Children of Men
## 7614                                                                                                                                             Prestige, The
## 7615                                                                                                                                              Flushed Away
## 7616                                                                                                                          Perfume: The Story of a Murderer
## 7617                                                                                                                                         Déjà Vu (Deja Vu)
## 7618                                                                                                                                         Linda Linda Linda
## 7619                                                                                                                                      Bridge to Terabithia
## 7620                                                                                                                                               Ratatouille
## 7621                                                                                                                                                  Hot Fuzz
## 7622                                                                                                                                                    Zodiac
## 7623                                                                                                                                                       300
## 7624                                                                                                                                                Grindhouse
## 7625                                                                                                                                        Meet the Robinsons
## 7626                                                                                                       Inglorious Bastards (Quel maledetto treno blindato)
## 7627                                                                                                                                                  Sunshine
## 7628                                                                                                                                                 Disturbia
## 7629                                                                                                                                              Spider-Man 3
## 7630                                                                                                                                           Shrek the Third
## 7631                                                                                                                                                Them (Ils)
## 7632                                                                                                                                                 Surf's Up
## 7633                                                                                                                                               Death Proof
## 7634                                                                                                Power of Nightmares, The: The Rise of the Politics of Fear
## 7635                                                                                                                                                     Sicko
## 7636                                                                                                                                              Transformers
## 7637                                                                                                                                       Simpsons Movie, The
## 7638                                                                                                                                                  Superbad
## 7639                                                                                                                                             Planet Terror
## 7640                                                                                                                                             Into the Wild
## 7641                                                                                                                                    Lars and the Real Girl
## 7642                                                                                                                                                Persepolis
## 7643                                                                                                                                                   Control
## 7644                                                                                                                                                 Bee Movie
## 7645                                                                                        Diving Bell and the Butterfly, The (Scaphandre et le papillon, Le)
## 7646                                                                                                                                       Man from Earth, The
## 7647                                                                                                                                                   Beowulf
## 7648                                                                                                                                              Murder Party
## 7649                                                                                                                                                       XXY
## 7650                                                                                                                                                 Mist, The
## 7651                                                                                                                                               I Am Legend
## 7652                                                                                                                             Orphanage, The (Orfanato, El)
## 7653                                                                                                                                                      Juno
## 7654                                                                                                                                          Kite Runner, The
## 7655                                                                                                            Sweeney Todd: The Demon Barber of Fleet Street
## 7656                                                                                                                                       There Will Be Blood
## 7657                                                                                                                                                Dedication
## 7658                                                                                                                                                     [REC]
## 7659                                                                                                                                               Cloverfield
## 7660                                                                                                                                                  Arranged
## 7661                                                                                                    Girl Who Leapt Through Time, The (Toki o kakeru shôjo)
## 7662                                                                                                                               Hellboy II: The Golden Army
## 7663                                                                                                                                                 In Bruges
## 7664                                                                                                  Art of Negative Thinking, The (Kunsten å tenke negativt)
## 7665                                                                                                                                       Horton Hears a Who!
## 7666                                                                                                                                                  Penelope
## 7667                                                                                                                                        Class, The (Klass)
## 7668                                                                                                                                          Dark Knight, The
## 7669                                                                                                                                            Happy-Go-Lucky
## 7670                                                                                                                                             Son of Rambow
## 7671                                                                                                                                                  Iron Man
## 7672                                                                                                                                                 Fall, The
## 7673                                                                                                                                              Lake of Fire
## 7674                                                                                                                                             Kung Fu Panda
## 7675                                                                                                                                                    WALL·E
## 7676                                                                                                                                                 Get Smart
## 7677                                                                                                                  Futurama: The Beast with a Billion Backs
## 7678                                                                                                        Gonzo: The Life and Work of Dr. Hunter S. Thompson
## 7679                                                                                                                                                  Watchmen
## 7680                                                                                                                                             American Teen
## 7681                                                                                                             Let the Right One In (Låt den rätte komma in)
## 7682                                                                                                                                        Burn After Reading
## 7683                                                                                                                                                   Martyrs
## 7684                                                                                                                                        Gomorrah (Gomorra)
## 7685                                                                                                                                   Futurama: Bender's Game
## 7686                                                                                                                               Madagascar: Escape 2 Africa
## 7687                                                                                                                                       Slumdog Millionaire
## 7688                                                                                                                                               Role Models
## 7689                                                                                                                               Class, The (Entre les murs)
## 7690                                                                                                                                                      Bolt
## 7691                                                                                                                                                     Doubt
## 7692                                                                                                                                              Seven Pounds
## 7693                                                                                                                      Curious Case of Benjamin Button, The
## 7694                                                                                                                                                   Yes Man
## 7695                                                                                                                                                  Valkyrie
## 7696                                                                                                         5 Centimeters per Second (Byôsoku 5 senchimêtoru)
## 7697                                                                                                                                                     Ben X
## 7698                                                                                                                               Ponyo (Gake no ue no Ponyo)
## 7699                                                                                                                                                    Ip Man
## 7700                                                                                                                                                  Coraline
## 7701                                                                                                                                    Departures (Okuribito)
## 7702                                                                                                                                                   Knowing
## 7703                                                                                                  Girl with the Dragon Tattoo, The (Män som hatar kvinnor)
## 7704                                                                                                                                       Monsters vs. Aliens
## 7705                                                                                                                                             Adventureland
## 7706                                                                                                                                      Inglourious Basterds
## 7707                                                                                                                                                      Moon
## 7708                                                                                                                                                 Star Trek
## 7709                                                                Neon Genesis Evangelion: Death & Rebirth (Shin seiki Evangelion Gekijô-ban: Shito shinsei)
## 7710                                                                                                                                                        Up
## 7711                                                                                                                                             Hangover, The
## 7712                                                                                                                       Transformers: Revenge of the Fallen
## 7713                                                                                                                            Ice Age: Dawn of the Dinosaurs
## 7714                                                                                                                                        My Sister's Keeper
## 7715                                                                                                                                      (500) Days of Summer
## 7716                                                                                                                                                    Orphan
## 7717                                                                                                                                                District 9
## 7718                                                                                       Evangelion: 1.0 You Are (Not) Alone (Evangerion shin gekijôban: Jo)
## 7719                                                                                                                                                      Adam
## 7720                                                                                                        Secret in Their Eyes, The (El secreto de sus ojos)
## 7721                                                                                                                                                         9
## 7722                                                                                                                         Cloudy with a Chance of Meatballs
## 7723                                                                                                                                                Food, Inc.
## 7724                                                                                                                                       Paranormal Activity
## 7725                                                                                                                                                 Cove, The
## 7726                                                                                                                                                       Ink
## 7727                                                                                                                                   Invention of Lying, The
## 7728                                                                                                                                                Zombieland
## 7729                                                                                                                                             Education, An
## 7730                                                                                                                                              Mary and Max
## 7731                                                                                                                                                   Balance
## 7732                                                                                                                                                 Astro Boy
## 7733                                                                                                                                          Fourth Kind, The
## 7734                                                                                                                                         Lovely Bones, The
## 7735                                                                                                                                          Everybody's Fine
## 7736                                                                                                                                                    Avatar
## 7737                                                                                                                                           Sherlock Holmes
## 7738                                                                                                                                               Daybreakers
## 7739                                                                                                                                          Book of Eli, The
## 7740                                                                                                                                                  Collapse
## 7741                                                                                                                     Dragon Hunters (Chasseurs de dragons)
## 7742                                                                                                                                                  3 Idiots
## 7743                                                                                                                                                  Triangle
## 7744                                                                                                                                Yes Men Fix the World, The
## 7745                                                                                                                                       Alice in Wonderland
## 7746                                                                                                                                  How to Train Your Dragon
## 7747                                                                                                                          Micmacs (Micmacs à tire-larigot)
## 7748                                                                                                                                                  Kick-Ass
## 7749                                                                                                                                     Dogtooth (Kynodontas)
## 7750                                                                                                                     Human Centipede, The (First Sequence)
## 7751                                                                                                                                                Iron Man 2
## 7752                                                                                                                                       You Don't Know Jack
## 7753                                                                                                                                               Toy Story 3
## 7754                                                                                                                                   Kurt Cobain About a Son
## 7755                                                                                                                                             Despicable Me
## 7756                                                                                                                                                 Inception
## 7757                                                                                                                                                Mr. Nobody
## 7758                                                                                                                               Scott Pilgrim vs. the World
## 7759                                                                                                                                                 Heartless
## 7760                                                                                                                                       Social Network, The
## 7761                                                                                                                                                   Flipped
## 7762                                                                                                                                                 Let Me In
## 7763                                                                                                                                                   Catfish
## 7764                                                                                                                                                Inside Job
## 7765                                                                                                                        Illusionist, The (L'illusionniste)
## 7766                                                                                                                                                 127 Hours
## 7767                                                                                                                                                  Megamind
## 7768                                                                                                                                                Black Swan
## 7769                                                                                                                                        King's Speech, The
## 7770                                                                                                                                                   Tangled
## 7771                                                                                                                                              Tron: Legacy
## 7772                                                                                                                         I Saw the Devil (Akmareul boatda)
## 7773                                                                                                   Secret World of Arrietty, The (Kari-gurashi no Arietti)
## 7774                                                                                                                                     Tucker & Dale vs Evil
## 7775                                                                                                                                               Day & Night
## 7776                                                                                                                                                 Limitless
## 7777                                                                                     Evangelion: 2.0 You Can (Not) Advance (Evangerion shin gekijôban: Ha)
## 7778                                                                                                                                                      Paul
## 7779                                                                                                                                                     Rango
## 7780                                                                                                                                    Confessions (Kokuhaku)
## 7781                                                                                                                          Troll Hunter, The (Trolljegeren)
## 7782                                                                                                                                               Source Code
## 7783                                                                                                                                              Sucker Punch
## 7784                                                                                                                                                    BURN-E
## 7785                                                                                                                                                     Senna
## 7786                                                                                                                                                 Insidious
## 7787                                                                                                                                       Hobo with a Shotgun
## 7788                                                                                                                                                       Rio
## 7789                                                                                                                                                      Thor
## 7790                                                                                                                                     Louis C.K.: Chewed Up
## 7791                                                                                                                                         Idiots and Angels
## 7792                                                                                                                                           Kung Fu Panda 2
## 7793                                                                                                                                        X-Men: First Class
## 7794                                                                                                                                                   Super 8
## 7795                                                                                                                                             Green Lantern
## 7796                                                                                                                            Transformers: Dark of the Moon
## 7797                                                                                                                        Captain America: The First Avenger
## 7798                                                                                                                            Rise of the Planet of the Apes
## 7799                                                                                                                                             Avengers, The
## 7800                                                                                                                                                 Kill List
## 7801                                                                                                                                     Paranormal Activity 3
## 7802                                                                                                                                                     Shame
## 7803                                                                                                                                             Puss in Boots
## 7804                                                                                                                                 Adventures of Tintin, The
## 7805                                                                                                                                          Arthur Christmas
## 7806                                                                                                                                    Dark Knight Rises, The
## 7807                                                                                                                        Sherlock Holmes: A Game of Shadows
## 7808                                                                                                                   Human Centipede II (Full Sequence), The
## 7809                                                                                                                                                 Chronicle
## 7810                                                                                                                                      Dr. Seuss' The Lorax
## 7811                                                                                                                                      The Raid: Redemption
## 7812                                                                                                                                   Cabin in the Woods, The
## 7813                                                                                                                                                     Brave
## 7814                                                                                                                                                    Presto
## 7815                                                                                                                                                  Boundin'
## 7816                                                                                                                                   Amazing Spider-Man, The
## 7817                                                                                                                              Ice Age 4: Continental Drift
## 7818                                                                                                                                             For the Birds
## 7819                                                                                                                                              Total Recall
## 7820                                                                                                                                                ParaNorman
## 7821                                                                                                                                                   Samsara
## 7822                                                                                                                                                    Looper
## 7823                                                                                                                                                     Dredd
## 7824                                                                                                                          Perks of Being a Wallflower, The
## 7825                                                                                                                                                  Sinister
## 7826                                                                                                                                        Hotel Transylvania
## 7827                                                                                                                                               Cloud Atlas
## 7828                                                                                                                                            Wreck-It Ralph
## 7829                                                                                                                                   Silver Linings Playbook
## 7830                                                                                                                                                Life of Pi
## 7831                                                                                                                                                  Excision
## 7832                                                                                                                                                     Amour
## 7833                                                                                                                                     Rise of the Guardians
## 7834                                                                                                                        Hobbit: An Unexpected Journey, The
## 7835                                                                                                                                          Django Unchained
## 7836                                                                                                                           Impossible, The (Imposible, Lo)
## 7837                                                                                                                                       Act of Killing, The
## 7838                                                                                                                                               Croods, The
## 7839                                                                                                                                                Iron Man 3
## 7840                                                                                                                                   Star Trek Into Darkness
## 7841                                                                                                                                              Man of Steel
## 7842                                                                                                                                               Pacific Rim
## 7843                                                                                                                                               World War Z
## 7844                                                                                                                                                   Elysium
## 7845                                                                                                                                             American Mary
## 7846                                                                                                                                           Despicable Me 2
## 7847                                                                                                                                            Conjuring, The
## 7848                                                                                                                                                   Gravity
## 7849                                                                                                                                              Ender's Game
## 7850                                                                                                                                      Thor: The Dark World
## 7851                                                                                                                                                     Pieta
## 7852                                                                                                                      Hobbit: The Desolation of Smaug, The
## 7853                                                                                                                                                    Frozen
## 7854                                                                                                                                               Snowpiercer
## 7855                                                                                                                      Paranormal Activity: The Marked Ones
## 7856                                                                                                                             Dragon Ball Z: Battle of Gods
## 7857                                                                                                                                                 Divergent
## 7858                                                                                                                                                   RoboCop
## 7859                                                                                                                                              Interstellar
## 7860                                                                                                                                                  Non-Stop
## 7861                                                                                                                                    300: Rise of an Empire
## 7862                                                                                                                                     Mr. Peabody & Sherman
## 7863                                                                                                                                            Under the Skin
## 7864                                                                                                                                            Need for Speed
## 7865                                                                                                                       Captain America: The Winter Soldier
## 7866                                                                                                                                                      Noah
## 7867                                                                                                                                      The Raid 2: Berandal
## 7868                                                                                                                                  The Amazing Spider-Man 2
## 7869                                                                                                                                                    Oculus
## 7870                                                                                                                                                     Rio 2
## 7871                                                                                                                                             Transcendence
## 7872                                                                                                                                X-Men: Days of Future Past
## 7873                                                                                                                                                  Godzilla
## 7874                                                                                                                                                Maleficent
## 7875                                                                                                                                          Edge of Tomorrow
## 7876                                                                                                                                How to Train Your Dragon 2
## 7877                                                                                                                           Transformers: Age of Extinction
## 7878                                                                                                                                             Babadook, The
## 7879                                                                                                                            Dawn of the Planet of the Apes
## 7880                                                                                                                                   Guardians of the Galaxy
## 7881                                                                                                                                                 Coherence
## 7882                                                                                                                                          Maze Runner, The
## 7883                                                                                                                                            Predestination
## 7884                                                                                                                                                 John Wick
## 7885                                                                                                                                                     Ouija
## 7886                                                                                                                                                Big Hero 6
## 7887                                                                                                                        Dream Home (Wai dor lei ah yut ho)
## 7888                                                                                                                 The Hobbit: The Battle of the Five Armies
## 7889                                                                                                                                                   Jumanji
## 7890                                                                                                                               Indian in the Cupboard, The
## 7891                                                                                                                                              Crimson Tide
## 7892                                                                                                                                               Judge Dredd
## 7893                                                                                                                             Kid in King Arthur's Court, A
## 7894                                                                                                                                   Quick and the Dead, The
## 7895                                                                                                                                    Star Trek: Generations
## 7896                                                                                                                                              Forrest Gump
## 7897                                                                                                                                              Black Beauty
## 7898                                                                                                                                      Hot Shots! Part Deux
## 7899                                                                                                                                                      Rudy
## 7900                                                                                                                                        Dances with Wolves
## 7901                                                                                                                                                    Batman
## 7902                                                                                                                                               Dragonheart
## 7903                                                                                                                                                Barbarella
## 7904                                                                                                                                      Operation Dumbo Drop
## 7905                                                                                                                                                 Rock, The
## 7906                                                                                                                                                   Twister
## 7907                                                                                      Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb
## 7908                                                                                                                             Independence Day (a.k.a. ID4)
## 7909                                                                                                                                   For Whom the Bell Tolls
## 7910                                                                                                                                                Casablanca
## 7911                                                                                                                                         Wizard of Oz, The
## 7912                                                                                                                                        Gone with the Wind
## 7913                                                                                                                               Around the World in 80 Days
## 7914                                                                                                                                        African Queen, The
## 7915                                                                                                                                       Farewell to Arms, A
## 7916                                                                                                                                     Swiss Family Robinson
## 7917                                                                                                                       Willy Wonka & the Chocolate Factory
## 7918                                                                                                                                  Old Man and the Sea, The
## 7919                                                                                                                                                Abyss, The
## 7920                                                                                                                                      Escape from New York
## 7921                                                                                                            Star Wars: Episode V - The Empire Strikes Back
## 7922                                                                                                                                       Princess Bride, The
## 7923                                                                                   Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 7924                                                                                                                                        Lawrence of Arabia
## 7925                                                                                                                                            Apocalypse Now
## 7926                                                                                                                Star Wars: Episode VI - Return of the Jedi
## 7927                                                                                                                                                     Glory
## 7928                                                                                                                         Treasure of the Sierra Madre, The
## 7929                                                                                                                                         Great Escape, The
## 7930                                                                                                                                                    Patton
## 7931                                                                                                                                                   Ben-Hur
## 7932                                                                                                                        Indiana Jones and the Last Crusade
## 7933                                                                                                                           Star Trek II: The Wrath of Khan
## 7934                                                                                                                       Star Trek III: The Search for Spock
## 7935                                                                                                                             Star Trek IV: The Voyage Home
## 7936                                                                                                                                             Mars Attacks!
## 7937                                                                                                                                 Men in Black (a.k.a. MIB)
## 7938                                                                                                                                         Starship Troopers
## 7939                                                                                                                            All Quiet on the Western Front
## 7940                                                                                                                                   Poseidon Adventure, The
## 7941                                                                                                                                  Honey, I Shrunk the Kids
## 7942                                                                                                                                                    Popeye
## 7943                                                                                                                                            Rocketeer, The
## 7944                                                                                                                                                      Tron
## 7945                                                                                                                      Indiana Jones and the Temple of Doom
## 7946                                                                                                                                    NeverEnding Story, The
## 7947                                                                                                                                                  Lifeboat
## 7948                                                                                                                                                     Them!
## 7949                                                                                                                                                 King Kong
## 7950                                                                                                                                Rambo: First Blood Part II
## 7951                                                                                                                                       Romancing the Stone
## 7952                                                                                                                                     Young Sherlock Holmes
## 7953                                                                                                                                          Mighty Joe Young
## 7954                                                                                                                                       Crocodile Dundee II
## 7955                                                                                                                                     Towering Inferno, The
## 7956                                                                                                                             Beyond the Poseidon Adventure
## 7957                                                                                                                                    War of the Worlds, The
## 7958                                                                                                                                            Pork Chop Hill
## 7959                                                                                                                Allan Quatermain and the Lost City of Gold
## 7960                                                                                                                                                Iron Eagle
## 7961                                                                                                                                             Iron Eagle II
## 7962                                                                                                                                      Aces: Iron Eagle III
## 7963                                                                                                                                               Deliverance
## 7964                                                                                                                                             South Pacific
## 7965                                                                                                                                          Dirty Dozen, The
## 7966                                                                                                                                              Time Bandits
## 7967                                                                                                                                  Who Framed Roger Rabbit?
## 7968                                                                                                                                          Longest Day, The
## 7969                                                                                                                                         Tora! Tora! Tora!
## 7970                                                                                                                                                 Stalag 17
## 7971                                                                                                                                                Sister Act
## 7972                                                                                                                                             Forever Young
## 7973                                                                                                                           Captain Horatio Hornblower R.N.
## 7974                                                                                                                                      Bear, The (Ours, L')
## 7975                                                                                                                                       Crimson Pirate, The
## 7976                                                                                                                                                  Red Dawn
## 7977                                                                                                                                         Lord of the Flies
## 7978                                                                                                                                    Force 10 from Navarone
## 7979                                                                                                                                             Flying Tigers
## 7980                                                                                                                                     Fighting Seabees, The
## 7981                                                                                                                                        Perfect Storm, The
## 7982                                                                                                                                            Kelly's Heroes
## 7983                                                                                                                                          Fantastic Voyage
## 7984                                                                                                                                         Time Machine, The
## 7985                                                                                                                                                Alamo, The
## 7986                                                                                                                                                Gettysburg
## 7987                                                                                                                                     M*A*S*H (a.k.a. MASH)
## 7988                                                                                                                                                 GoldenEye
## 7989                                                                                                                                                Get Shorty
## 7990                                                                                                                                                  Clueless
## 7991                                                                                                                                      Seven (a.k.a. Se7en)
## 7992                                                                                                                                              Broken Arrow
## 7993                                                                                                                                                Braveheart
## 7994                                                                                                                                                 Apollo 13
## 7995                                                                                                                                                     Congo
## 7996                                                                                                                                              Crimson Tide
## 7997                                                                                                                                Die Hard: With a Vengeance
## 7998                                                                                                                                                  Net, The
## 7999                                                                                                                                                Waterworld
## 8000                                                                                                                           Dumb & Dumber (Dumb and Dumber)
## 8001                                                                                                        Interview with the Vampire: The Vampire Chronicles
## 8002                                                                                                                                                      Nell
## 8003                                                                                                                                                  Outbreak
## 8004                                                                                                                                              Pulp Fiction
## 8005                                                                                                                                           Specialist, The
## 8006                                                                                                                                                  Stargate
## 8007                                                                                                                               What's Eating Gilbert Grape
## 8008                                                                                                                                   While You Were Sleeping
## 8009                                                                                                                                Ace Ventura: Pet Detective
## 8010                                                                                                                                  Clear and Present Danger
## 8011                                                                                                                                              Forrest Gump
## 8012                                                                                                                               Four Weddings and a Funeral
## 8013                                                                                                                                                 Mask, The
## 8014                                                                                                                                                  Maverick
## 8015                                                                                                                                                     Speed
## 8016                                                                                                                                                 True Lies
## 8017                                                                                                                                     Beverly Hills Cop III
## 8018                                                                                                                                               Cliffhanger
## 8019                                                                                                                                                      Dave
## 8020                                                                                                                                            Demolition Man
## 8021                                                                                                                                                 Firm, The
## 8022                                                                                                                                             Fugitive, The
## 8023                                                                                                                                             Jurassic Park
## 8024                                                                                                                                                Piano, The
## 8025                                                                                                                                          Schindler's List
## 8026                                                                                                                                      Sleepless in Seattle
## 8027                                                                                                                                                 Tombstone
## 8028                                                                                                                                                     Ghost
## 8029                                                                                                                                Terminator 2: Judgment Day
## 8030                                                                                                                                        Dances with Wolves
## 8031                                                                                                                                              Pretty Woman
## 8032                                                                                                                             Independence Day (a.k.a. ID4)
## 8033                                                                                                                                                    Eraser
## 8034                                                                                                                                       Maltese Falcon, The
## 8035                                                                                                                                                      Stag
## 8036                                                                                                                                               Hope Floats
## 8037                                                                                                                                                 Tom Jones
## 8038                                                                                                                                             Out of Africa
## 8039                                                                                                                                       Breakfast Club, The
## 8040                                                                                                                                 Desperately Seeking Susan
## 8041                                                                                                                                       Shakespeare in Love
## 8042                                                                                                                                                Entrapment
## 8043                                                                                                                                       Run Silent Run Deep
## 8044                                                                                                                     Austin Powers: The Spy Who Shagged Me
## 8045                                                                                                                                   General's Daughter, The
## 8046                                                                                                                                             Arachnophobia
## 8047                                                                                                                                            Wild Wild West
## 8048                                                                                                                                               Lake Placid
## 8049                                                                                                                                             Deep Blue Sea
## 8050                                                                                                                                             Runaway Bride
## 8051                                                                                                                                       Mosquito Coast, The
## 8052                                                                                                                                           Iron Giant, The
## 8053                                                                                                                                  Thomas Crown Affair, The
## 8054                                                                                                                                         13th Warrior, The
## 8055                                                                                                                                     Astronaut's Wife, The
## 8056                                                                                                                                                  Stigmata
## 8057                                                                                                                                            Stir of Echoes
## 8058                                                                                                                                           Double Jeopardy
## 8059                                                                                                                                  Who Framed Roger Rabbit?
## 8060                                                                                                                                             Stuart Little
## 8061                                                                                                                                              Galaxy Quest
## 8062                                                                                                                                           Pacific Heights
## 8063                                                                                                                                                 Frequency
## 8064                                                                                                                                                     Diner
## 8065                                                                                                                               Four Weddings and a Funeral
## 8066                                                                                                                                             Little Buddha
## 8067                                                                                                                                                   Go Fish
## 8068                                                                                                                                                     Bound
## 8069                                                                                                                                             Dirty Dancing
## 8070                                                                                                                        Unbearable Lightness of Being, The
## 8071                                                                                                                                                  In & Out
## 8072                                                                                                                                               Chasing Amy
## 8073                                                                                                                                        Great Expectations
## 8074                                                                                                            Nightmare on Elm Street 2: Freddy's Revenge, A
## 8075                                                                                                                     I Still Know What You Did Last Summer
## 8076                                                                                                                                       Shakespeare in Love
## 8077                                                                                                                                        Cocoon: The Return
## 8078                                                                                                                                      Teaching Mrs. Tingle
## 8079                                                                                                                                           American Beauty
## 8080                                                                                                                                         Anna and the King
## 8081                                                                                                                                    League of Their Own, A
## 8082                                                                                                                                                     X-Men
## 8083                                                                                                                                            Aimée & Jaguar
## 8084                                                                                                                                              Billy Elliot
## 8085                                                                                                                                                    Bounce
## 8086                                                                                                          Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 8087                                                                                                                                                  Chocolat
## 8088                                                                                                                                             Heartbreakers
## 8089                                                                                                                                     Bridget Jones's Diary
## 8090                                                                   Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 8091                                                                                                             Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 8092                                                                                                                                     Kissing Jessica Stein
## 8093                                                                                                                                       Sweetest Thing, The
## 8094                                                                                                                          Importance of Being Earnest, The
## 8095                                                                                                                              Mostly Martha (Bella Martha)
## 8096                                                                                                                                                     Frida
## 8097                                                                                                                                           Far from Heaven
## 8098                                                                                                                   Harry Potter and the Chamber of Secrets
## 8099                                                                                                                              Talk to Her (Hable con Ella)
## 8100                                                                                                                                                Hours, The
## 8101                                                                                                                                       Final Destination 2
## 8102                                                                                                                                      Bend It Like Beckham
## 8103                                                                                                              Spanish Apartment, The (L'auberge espagnole)
## 8104                                                                                                    Pirates of the Caribbean: The Curse of the Black Pearl
## 8105                                                                                                                         Lagaan: Once Upon a Time in India
## 8106                                                                                                                        Monty Python's The Meaning of Life
## 8107                                                                                                                                             Love Actually
## 8108                                                                                                                                                   Monster
## 8109                                                                                                                                             Desert Hearts
## 8110                                                                                                                  Harry Potter and the Prisoner of Azkaban
## 8111                                                                                                                                 Manchurian Candidate, The
## 8112                                                                                                                                                    Eulogy
## 8113                                                                                                                                                    Kinsey
## 8114                                                                                                                 House of Flying Daggers (Shi mian mai fu)
## 8115                                                                                                                                                       Gia
## 8116                                                                                                 Very Long Engagement, A (Un long dimanche de fiançailles)
## 8117                                                                                                                                          Meet the Fockers
## 8118                                                                                                                                Summer Storm (Sommersturm)
## 8119                                                                                                                                                Flightplan
## 8120                                                                                                                                  Squid and the Whale, The
## 8121                                                                                                                                        Brokeback Mountain
## 8122                                                                                                                       Harry Potter and the Goblet of Fire
## 8123                                                                                                                                       Memoirs of a Geisha
## 8124                                                                                                                                          Imagine Me & You
## 8125                                                                                                              Lives of Others, The (Das leben der Anderen)
## 8126                                                                                                                                        Da Vinci Code, The
## 8127                                                                                                                                               Ratatouille
## 8128                                                                                                                                              Gray Matters
## 8129                                                                                                                                     Puccini for Beginners
## 8130                                                                                                                 Harry Potter and the Order of the Phoenix
## 8131                                                                                                                                 The Jane Austen Book Club
## 8132                                                                                                                                  Vicky Cristina Barcelona
## 8133                                                                                                                                               Taxi Driver
## 8134                                                                                                                                Die Hard: With a Vengeance
## 8135                                                                                                               Far From Home: The Adventures of Yellow Dog
## 8136                                                                                                                       Secret Adventures of Tom Thumb, The
## 8137                                                                                                                                     Beverly Hills Cop III
## 8138                                                                                                                                              Black Beauty
## 8139                                                                                                                                                    Lassie
## 8140                                                                                                                                  Night of the Living Dead
## 8141                                                                                                                           One Flew Over the Cuckoo's Nest
## 8142                                                                                                                                                Die Hard 2
## 8143                                                                                                                                 Men in Black (a.k.a. MIB)
## 8144                                                                                                                                 Hunt for Red October, The
## 8145                                                                                                                                       Blues Brothers 2000
## 8146                                                                                                                                              Dr. Dolittle
## 8147                                                                                                                                                Armageddon
## 8148                                                                                                                            Poltergeist II: The Other Side
## 8149                                                                                                                                           Lethal Weapon 3
## 8150                                                                                                                                              Return to Oz
## 8151                                                                                                                                                 Elizabeth
## 8152                                                                                                                                           King Kong Lives
## 8153                                                                                                                                      Prince of Egypt, The
## 8154                                                                                                                                       Shakespeare in Love
## 8155                                                                                                                                                   Rocky V
## 8156                                                                                                                                           Civil Action, A
## 8157                                                                                                                                          Crocodile Dundee
## 8158                                                                                                                                         Ideal Husband, An
## 8159                                                                                                                                             Arachnophobia
## 8160                                                                                                                      South Park: Bigger, Longer and Uncut
## 8161                                                                                                                                        Muppets From Space
## 8162                                                                                                                                  Blair Witch Project, The
## 8163                                                                                                                       Ghostbusters (a.k.a. Ghost Busters)
## 8164                                                                                                                                           Ghostbusters II
## 8165                                                                                                                                          Inspector Gadget
## 8166                                                                                                                                           Iron Giant, The
## 8167                                                                                                                                          Sixth Sense, The
## 8168                                                                                                                                                  Stigmata
## 8169                                                                                                                                                Limey, The
## 8170                                                                                                                                                 RoboCop 2
## 8171                                                                                                                                  Who Framed Roger Rabbit?
## 8172                                                                                                                                      Being John Malkovich
## 8173                                                                                                                                                 Backdraft
## 8174                                                                                                                                               Toy Story 2
## 8175                                                                                                                                                  Magnolia
## 8176                                                                                                                                            Hurricane, The
## 8177                                                                                                                                       Single White Female
## 8178                                                                                                                           Death Wish 5: The Face of Death
## 8179                                                                                                                                 Shawshank Redemption, The
## 8180                                                                                                                             Robin Hood: Prince of Thieves
## 8181                                                                                                                                             Dirty Dancing
## 8182                                                                                        Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il)
## 8183                                                                                                                                              12 Angry Men
## 8184                                                                                                                                                Birds, The
## 8185                                                                                                                                             Sliding Doors
## 8186                                                                                                                                   Gods Must Be Crazy, The
## 8187                                                                                                                                       Crocodile Dundee II
## 8188                                                                                                                                               Matrix, The
## 8189                                                                                                                                          Live and Let Die
## 8190                                                                                                                                         Death Becomes Her
## 8191                                                                                                                                              Modern Times
## 8192                                                                                                                                                 Moonraker
## 8193                                                                                                                                           Under Suspicion
## 8194                                                                                                                       Adventures of Baron Munchausen, The
## 8195                                                                                                                                            Ocean's Eleven
## 8196                                                                                                                                      Bourne Identity, The
## 8197                                                                                                                                          Italian Job, The
## 8198                                                                                                                                             Notebook, The
## 8199                                                                                                                                     Bourne Supremacy, The
## 8200                                                                                                                Asterix and the Gauls (Astérix le Gaulois)
## 8201                                                                                                                 My Name Is Nobody (Il Mio nome è Nessuno)
## 8202                                                                                                                                              Hotel Rwanda
## 8203                                                                                                                                             Batman Begins
## 8204                                                                                                                                            Find Me Guilty
## 8205                                                                                                                                                Inside Man
## 8206                                                                                                                                             Departed, The
## 8207                                                                                                             Elementary Particles, The (Elementarteilchen)
## 8208                                                                                                                                             Prestige, The
## 8209                                                                                                                          Perfume: The Story of a Murderer
## 8210                                                                                                                                     Bourne Ultimatum, The
## 8211                                                                                                                                    No Country for Old Men
## 8212                                                                                                                                           P.S. I Love You
## 8213                                                                                                                                                        21
## 8214                                                                                                                                                    WALL·E
## 8215                                                                                                                                      Inglourious Basterds
## 8216                                                                                                                                            Public Enemies
## 8217                                                                                                                                              Mary and Max
## 8218                                                                                                                                              12 Angry Men
## 8219                                                                                                                                               Toy Story 3
## 8220                                                                                                                                                 Inception
## 8221                                                                                                          Asterix and the Vikings (Astérix et les Vikings)
## 8222                                                                                                                                             Robot & Frank
## 8223                                                                                                                                                 Toy Story
## 8224                                                                                                                               Father of the Bride Part II
## 8225                                                                                                                                                      Heat
## 8226                                                                                                                                                   Sabrina
## 8227                                                                                                                                              Sudden Death
## 8228                                                                                                                        Twelve Monkeys (a.k.a. 12 Monkeys)
## 8229                                                                                                                                                  Bio-Dome
## 8230                                                                                                                                              Bed of Roses
## 8231                                                                                                                                                Juror, The
## 8232                                                                                                                                              Broken Arrow
## 8233                                                                                                                                                 City Hall
## 8234                                                                                                                                             Happy Gilmore
## 8235                                                                                                                       Rumble in the Bronx (Hont faan kui)
## 8236                                                                                                                                             Birdcage, The
## 8237                                                                                                                        Star Wars: Episode IV - A New Hope
## 8238                                                                                                                                           River Wild, The
## 8239                                                                                                                                        Executive Decision
## 8240                                                                                                                                                     Fargo
## 8241                                                                                                                  Homeward Bound II: Lost in San Francisco
## 8242                                                                                                                                                Sgt. Bilko
## 8243                                                                                                                                       Mission: Impossible
## 8244                                                                                                                                               Dragonheart
## 8245                                                                                                                                          Mulholland Falls
## 8246                                                                                                                              Truth About Cats & Dogs, The
## 8247                                                                                                                                              Multiplicity
## 8248                                                                                                                                                Craft, The
## 8249                                                                                                                                                 Rock, The
## 8250                                                                                                                                                   Twister
## 8251                                                                                                                                                 Barb Wire
## 8252                                                                                                                                              Phantom, The
## 8253                                                                                                                             Independence Day (a.k.a. ID4)
## 8254                                                                                                                                            Cable Guy, The
## 8255                                                                                                                                                    Eraser
## 8256                                                                                                                                      Nutty Professor, The
## 8257                                                                                                                                                Phenomenon
## 8258                                                                                                                                           Time to Kill, A
## 8259                                                                                                                                                    Ransom
## 8260                                                                                                                       Willy Wonka & the Chocolate Factory
## 8261                                                                                                                                                 Toy Story
## 8262                                                                                                                                                 GoldenEye
## 8263                                                                                                                                                    Casino
## 8264                                                                                                                                                Get Shorty
## 8265                                                                                                  City of Lost Children, The (Cité des enfants perdus, La)
## 8266                                                                                                                                                  Clueless
## 8267                                                                                                                                      Seven (a.k.a. Se7en)
## 8268                                                                                                                                       Usual Suspects, The
## 8269                                                                                                                                             Bottle Rocket
## 8270                                                                                                                                             Happy Gilmore
## 8271                                                                                                                                               Taxi Driver
## 8272                                                                                                                                   Basketball Diaries, The
## 8273                                                                                                                                                     Congo
## 8274                                                                                                                                        Living in Oblivion
## 8275                                                                                                                                             Billy Madison
## 8276                                                                                                                                                    Clerks
## 8277                                                                                                                           Dumb & Dumber (Dumb and Dumber)
## 8278                                                                                                                                               Hoop Dreams
## 8279                                                                                                                              Heavyweights (Heavy Weights)
## 8280                                                                                                                        Star Wars: Episode IV - A New Hope
## 8281                                                                                                                                                  Outbreak
## 8282                                                                                                   Léon: The Professional (a.k.a. The Professional) (Léon)
## 8283                                                                                                                                              Pulp Fiction
## 8284                                                                                                                                 Shawshank Redemption, The
## 8285                                                                                                                                                 Tommy Boy
## 8286                                                                                                                               What's Eating Gilbert Grape
## 8287                                                                                                                                          Muriel's Wedding
## 8288                                                                                                                                              Forrest Gump
## 8289                                                                                                                                                     Speed
## 8290                                                                                                                                        Dazed and Confused
## 8291                                                                                                                                            Demolition Man
## 8292                                                                                                                                                     Fresh
## 8293                                                                                                                                             Fugitive, The
## 8294                                                                                                                                             Jurassic Park
## 8295                                                                                                                                          Schindler's List
## 8296                                                                                                                               Searching for Bobby Fischer
## 8297                                                                                                                                              Blade Runner
## 8298                                                                                                                                                Home Alone
## 8299                                                                                                                                 Silence of the Lambs, The
## 8300                                                                                                                                                 Space Jam
## 8301                                                                                      Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb
## 8302                                                                                                                                             Trainspotting
## 8303                                                                                                                                             Roman Holiday
## 8304                                                                                                                                         Wizard of Oz, The
## 8305                                                                                                                    Sunset Blvd. (a.k.a. Sunset Boulevard)
## 8306                                                                                                                                              Citizen Kane
## 8307                                                                                                                                     2001: A Space Odyssey
## 8308                                                                                                                                             All About Eve
## 8309                                                                                                                                                     Laura
## 8310                                                                                                                                           His Girl Friday
## 8311                                                                                                                                     It's a Wonderful Life
## 8312                                                                                                                                                  Die Hard
## 8313                                                                                                                                                  Swingers
## 8314                                                                                                                       Willy Wonka & the Chocolate Factory
## 8315                                                                                                                                            Reservoir Dogs
## 8316                                                                                                                                          Crying Game, The
## 8317                                                                                                                                       Glengarry Glen Ross
## 8318                                                                                                                                E.T. the Extra-Terrestrial
## 8319                                                                                                                               People vs. Larry Flynt, The
## 8320                                                                                                                           Monty Python and the Holy Grail
## 8321                                                                                                                   Cinema Paradiso (Nuovo cinema Paradiso)
## 8322                                                                                                                           One Flew Over the Cuckoo's Nest
## 8323                                                                                                            Star Wars: Episode V - The Empire Strikes Back
## 8324                                                                                                                                       Princess Bride, The
## 8325                                                                                   Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 8326                                                                                        Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il)
## 8327                                                                                                                                       Clockwork Orange, A
## 8328                                                                                                                                     To Kill a Mockingbird
## 8329                                                                                                                                            Apocalypse Now
## 8330                                                                                                    Once Upon a Time in the West (C'era una volta il West)
## 8331                                                                                                                Star Wars: Episode VI - Return of the Jedi
## 8332                                                                                                                                                Goodfellas
## 8333                                                                                                                                         Full Metal Jacket
## 8334                                                                                                                                                   Amadeus
## 8335                                                                                                                                            Quiet Man, The
## 8336                                                                                                                                               Raging Bull
## 8337                                                                                                                                                Annie Hall
## 8338                                                                                                                                          Harold and Maude
## 8339                                                                                                                                           Terminator, The
## 8340                                                                                                                                                 Manhattan
## 8341                                                                                                                                             Graduate, The
## 8342                                                                                                                             Bridge on the River Kwai, The
## 8343                                                                                                                                                 Chinatown
## 8344                                                                                                                                                 Duck Soup
## 8345                                                                                                                                              Shining, The
## 8346                                                                                                                                               Stand by Me
## 8347                                                                                                                                          Deer Hunter, The
## 8348                                                                                                                                             Groundhog Day
## 8349                                                                                                                                                Unforgiven
## 8350                                                                                                                                        Back to the Future
## 8351                                                                                                                                                 High Noon
## 8352                                                                                                                                                  Heathers
## 8353                                                                                                                                        This Is Spinal Tap
## 8354                                                                                                                        Indiana Jones and the Last Crusade
## 8355                                                                                                                                           Field of Dreams
## 8356                                                                                                                        Butch Cassidy and the Sundance Kid
## 8357                                                                                                                                   When Harry Met Sally...
## 8358                                                                                                                                               Sling Blade
## 8359                                                                                                                                                    Grease
## 8360                                                                                                                                                      Jaws
## 8361                                                                                                                                             Jerry Maguire
## 8362                                                                                                                                       Waiting for Guffman
## 8363                                                                                                                                             Donnie Brasco
## 8364                                                                                                                                             Air Force One
## 8365                                                                                                                                         L.A. Confidential
## 8366                                                                                                                                             Boogie Nights
## 8367                                                                                                                                         Starship Troopers
## 8368                                                                                                                                          Truman Show, The
## 8369                                                                                                                                         Good Will Hunting
## 8370                                                                                                                                                   Titanic
## 8371                                                                                                                                         Big Lebowski, The
## 8372                                                                                                                                        As Good as It Gets
## 8373                                                                                                                                                     Mulan
## 8374                                                                                                                              There's Something About Mary
## 8375                                                                                                                                           West Side Story
## 8376                                                                                                                                           Midnight Cowboy
## 8377                                                                                                                                    French Connection, The
## 8378                                                                                                                                                     Rocky
## 8379                                                                                                                                          Chariots of Fire
## 8380                                                                                                                                       Terms of Endearment
## 8381                                                                                                                                                  Rain Man
## 8382                                                                                                                                       Breakfast Club, The
## 8383                                                                                                                                             Lethal Weapon
## 8384                                                                                                                                              Goonies, The
## 8385                                                                                                                                        Mask of Zorro, The
## 8386                                                                                                                                Back to the Future Part II
## 8387                                                                                                                                       Saving Private Ryan
## 8388                                                                                                                                      D2: The Mighty Ducks
## 8389                                                                                                                                               Hocus Pocus
## 8390                                                                                                                                               BASEketball
## 8391                                                                                                                                               'burbs, The
## 8392                                                                                                                                         Mighty Ducks, The
## 8393                                                                                                                      Indiana Jones and the Temple of Doom
## 8394                                                                                                                                           Sixteen Candles
## 8395                                                                                                                                      Strangers on a Train
## 8396                                                                                                                                         Untouchables, The
## 8397                                                                                                                                           Say Anything...
## 8398                                                                                                                                                      Toys
## 8399                                                                                                                                            Producers, The
## 8400                                                                                                                                             Pleasantville
## 8401                                                                                                                       Life Is Beautiful (La Vita è bella)
## 8402                                                                                                                                        American History X
## 8403                                                                                                                                                  Rushmore
## 8404                                                                                                                                           Karate Kid, The
## 8405                                                                                                                                              Office Space
## 8406                                                                                                                         Lock, Stock & Two Smoking Barrels
## 8407                                                                                                                                10 Things I Hate About You
## 8408                                                                                                                                                  Election
## 8409                                                                                                                                                Mummy, The
## 8410                                                                                                                                                 Big Daddy
## 8411                                                                                                                      South Park: Bigger, Longer and Uncut
## 8412                                                                                                                       Ghostbusters (a.k.a. Ghost Busters)
## 8413                                                                                                                                    Little Shop of Horrors
## 8414                                                                                                                                           Iron Giant, The
## 8415                                                                                                                                                 Airplane!
## 8416                                                                                                                                                       Big
## 8417                                                                                                                                        Christmas Story, A
## 8418                                                                                                                                           American Beauty
## 8419                                                                                                                                       Hard Day's Night, A
## 8420                                                                                                                                  Ferris Bueller's Day Off
## 8421                                                                                                                         Conformist, The (Conformista, Il)
## 8422                                                                                                                                                Goldfinger
## 8423                                                                                                           Fistful of Dollars, A (Per un pugno di dollari)
## 8424                                                                                                                            Home Alone 2: Lost in New York
## 8425                                                                                                                                                Fight Club
## 8426                                                                                                                                                Robin Hood
## 8427                                                                                                                                            Trading Places
## 8428                                                                                                                                                Moonstruck
## 8429                                                                                                                                            Mansfield Park
## 8430                                                                                                                                          Babes in Toyland
## 8431                                                             Bicycle Thieves (a.k.a. The Bicycle Thief) (a.k.a. The Bicycle Thieves) (Ladri di biciclette)
## 8432                                                                                                                                              Natural, The
## 8433                                                                                                                                              Midnight Run
## 8434                                                                                                                                               Toy Story 2
## 8435                                                                                                                                    Last Picture Show, The
## 8436                                                                                                                                                  Magnolia
## 8437                                                                                                                              Fast Times at Ridgemont High
## 8438                                                                                                                                             Wayne's World
## 8439                                                                                                                                    League of Their Own, A
## 8440                                                                                                                                Stop! Or My Mom Will Shoot
## 8441                                                                                                                               Hoosiers (a.k.a. Best Shot)
## 8442                                                                                                                                               Bull Durham
## 8443                                                                                                                                            Searchers, The
## 8444                                                                                                                                              Animal House
## 8445                                                                                                                                        Do the Right Thing
## 8446                                                                                                                                              Hustler, The
## 8447                                                                                                                                                     Lucas
## 8448                                                                                                                                                      Hook
## 8449                                                                                                                                                   Network
## 8450                                                                                                                                                Caddyshack
## 8451                                                                                                                                               On the Town
## 8452                                                                                                                                   Pee-wee's Big Adventure
## 8453                                                                                                                                       Endless Summer, The
## 8454                                                                                                                                           Blazing Saddles
## 8455                                                                                                                                              Blood Simple
## 8456                                                                                                                                               Chicken Run
## 8457                                                                                                                                                  Croupier
## 8458                                                                                                                                                 Footloose
## 8459                                                                                                           Naked Gun: From the Files of Police Squad!, The
## 8460                                                                                                                                             Almost Famous
## 8461                                                                                                                                       Remember the Titans
## 8462                                                                                                               Legend of Drunken Master, The (Jui kuen II)
## 8463                                                                                                        How the Grinch Stole Christmas (a.k.a. The Grinch)
## 8464                                                                                                                                 Emperor's New Groove, The
## 8465                                                                                                                                                 Cast Away
## 8466                                                                                                                                O Brother, Where Art Thou?
## 8467                                                                                                                                                   Traffic
## 8468                                                                                                                                       Save the Last Dance
## 8469                                                                                                                                         Beverly Hills Cop
## 8470                                                                                                                                         Can't Buy Me Love
## 8471                                                                                                                                          Eddie Murphy Raw
## 8472                                                                                                                                                   Memento
## 8473                                                                                                                                                  Scarface
## 8474                                                                                                                                                     Shrek
## 8475                                                                                                                              A.I. Artificial Intelligence
## 8476                                                                                                                         Man Who Shot Liberty Valance, The
## 8477                                                                                                                                            Legally Blonde
## 8478                                                                                                                          Bill & Ted's Excellent Adventure
## 8479                                                                                                                                   Wet Hot American Summer
## 8480                                                                                                                                                  Hardball
## 8481                                                                                                                                              Training Day
## 8482                                                                                                                                                 Zoolander
## 8483                                                                                                                                          Mulholland Drive
## 8484                                                                                                                                              Donnie Darko
## 8485                                                                                                                                 Man Who Wasn't There, The
## 8486                                                                                                                                            Monsters, Inc.
## 8487                                                                   Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 8488                                                                                                             Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 8489                                                                                                        Lord of the Rings: The Fellowship of the Ring, The
## 8490                                                                                                                                              Sandlot, The
## 8491                                                                                                                                               About a Boy
## 8492                                                                                                                                        Undercover Brother
## 8493                                                                                                                                      Bourne Identity, The
## 8494                                                                                                                                           Minority Report
## 8495                                                                                                                                          Punch-Drunk Love
## 8496                                                                                                                                        Jackass: The Movie
## 8497                                                                                                                   Harry Potter and the Chamber of Secrets
## 8498                                                                                                                                                Adaptation
## 8499                                                                                                                    Lord of the Rings: The Two Towers, The
## 8500                                                                                                                                                   My Girl
## 8501                                                                                                                                              Pianist, The
## 8502                                                                                                                           Confessions of a Dangerous Mind
## 8503                                                                                                                              City of God (Cidade de Deus)
## 8504                                                                                                                                                Old School
## 8505                                                                                                                                            Bruce Almighty
## 8506                                                                                                                                              Finding Nemo
## 8507                                                                                                                          Shaolin Soccer (Siu lam juk kau)
## 8508                                                                                                                                             Hello, Dolly!
## 8509                                                                                                                                           Boyz N the Hood
## 8510                                                                                                                                            School of Rock
## 8511                                                                                                                                        Station Agent, The
## 8512                                                                                                                                              Mystic River
## 8513                                                                                                                                       Intolerable Cruelty
## 8514                                                                                                                                         Kill Bill: Vol. 1
## 8515                                                                                                                                           Shattered Glass
## 8516                                                                                                                                                       Elf
## 8517                                                                                                                                             Love Actually
## 8518                                                                                                                                                   Slacker
## 8519                                                                                                                                         Presumed Innocent
## 8520                                                                                                                           Battle Royale (Batoru rowaiaru)
## 8521                                                                                                                                                 Teen Wolf
## 8522                                                                                                                                                Stagecoach
## 8523                                                                                                                                     Night at the Opera, A
## 8524                                                                                                                                                  Big Fish
## 8525                                                                                                            Lord of the Rings: The Return of the King, The
## 8526                                                                                                                                                   Miracle
## 8527                                                                                                                     Eternal Sunshine of the Spotless Mind
## 8528                                                                                                                                         Kill Bill: Vol. 2
## 8529                                                                                                                                                Mean Girls
## 8530                                                                                                                                                   Shrek 2
## 8531                                                                                                                  Harry Potter and the Prisoner of Azkaban
## 8532                                                                                                                                         Napoleon Dynamite
## 8533                                                                                                                          Dodgeball: A True Underdog Story
## 8534                                                                                                                     Anchorman: The Legend of Ron Burgundy
## 8535                                                                                                                                     Bourne Supremacy, The
## 8536                                                                                                                                              Garden State
## 8537                                                                                                                       Harold and Kumar Go to White Castle
## 8538                                                                                                                                         Shaun of the Dead
## 8539                                                                                                                                                    Primer
## 8540                                                                                                                                Team America: World Police
## 8541                                                                                                                                          Incredibles, The
## 8542                                                                                                                                         National Treasure
## 8543                                                                                                                                            Music Man, The
## 8544                                                                                                                                    Eddie Murphy Delirious
## 8545                                                                                                                                 Extremely Goofy Movie, An
## 8546                                                                                                                                                   Old Boy
## 8547                                                                                                                                                  Sin City
## 8548                                                                                                                                               Fever Pitch
## 8549                                                                                                                                                     Crash
## 8550                                                                                                                                       Kicking & Screaming
## 8551                                                                                                                                            Cinderella Man
## 8552                                                                                                                                             Batman Begins
## 8553                                                                                                                           Me and You and Everyone We Know
## 8554                                                                                                                                          Wedding Crashers
## 8555                                                                                                                                                   Junebug
## 8556                                                                                                                                   40-Year-Old Virgin, The
## 8557                                                                                                                                    History of Violence, A
## 8558                                                                                                          Wallace & Gromit in The Curse of the Were-Rabbit
## 8559                                                                                                                                       Kiss Kiss Bang Bang
## 8560                                                                                                                                  Squid and the Whale, The
## 8561                                                                                                                                Good Night, and Good Luck.
## 8562                                                                                                                                         Pride & Prejudice
## 8563                                                                                                                       Harry Potter and the Goblet of Fire
## 8564                                                                                           Chronicles of Narnia: The Lion, the Witch and the Wardrobe, The
## 8565                                                                                                                                            V for Vendetta
## 8566                                                                                                                                                Inside Man
## 8567                                                                                                                                      Little Miss Sunshine
## 8568                                                                                                                                             Monster House
## 8569                                                                                                               Talladega Nights: The Ballad of Ricky Bobby
## 8570                                                                                                                                 Pursuit of Happyness, The
## 8571                                                                                                                                        Jackass Number Two
## 8572                                                                                                                                             Departed, The
## 8573                                                                                                                                      Deliver Us from Evil
## 8574                                                                                                                                              Flushed Away
## 8575                                                                                                                                             Casino Royale
## 8576                                                                                                                      After the Wedding (Efter brylluppet)
## 8577                                                                                                                                               Ratatouille
## 8578                                                                                                                                                  Hot Fuzz
## 8579                                                                                                                                                    Zodiac
## 8580                                                                                                                                                       300
## 8581                                                                                                                                           Blades of Glory
## 8582                                                                                                                           How the Grinch Stole Christmas!
## 8583                                                                                                                                                      Once
## 8584                                                                                                                  Pirates of the Caribbean: At World's End
## 8585                                                                                                                 Harry Potter and the Order of the Phoenix
## 8586                                                                                                                                                   Hot Rod
## 8587                                                                                                                                     Bourne Ultimatum, The
## 8588                                                                                                                                                  Superbad
## 8589                                                                                                                                         King of Kong, The
## 8590                                                                                                                                                 Atonement
## 8591                                                                                                                                          Eastern Promises
## 8592                                                                                                                                             Into the Wild
## 8593                                                                                                                                         American Gangster
## 8594                                                                                                                        Before the Devil Knows You're Dead
## 8595                                                                                                                                    No Country for Old Men
## 8596                                                                                                                                               I Am Legend
## 8597                                                                                                                                              Savages, The
## 8598                                                                                                                                                      Juno
## 8599                                                                                                            Sweeney Todd: The Demon Barber of Fleet Street
## 8600                                                                                                                                       There Will Be Blood
## 8601                                                                                                                                         Meet the Spartans
## 8602                                                                                                                                                 In Bruges
## 8603                                                                                                                                                    Jumper
## 8604                                                                                                                                          Dark Knight, The
## 8605                                                                                                                                            Happy-Go-Lucky
## 8606                                                                                                                                                  Iron Man
## 8607                                                                                                                                                     Taken
## 8608                                                                                                                                                  Watchmen
## 8609                                                                                                                                             Step Brothers
## 8610                                                                                                                                  Vicky Cristina Barcelona
## 8611                                                                                                                                         Pineapple Express
## 8612                                                                                                                                            Tropic Thunder
## 8613                                                                                                                                       Slumdog Millionaire
## 8614                                                                                                                                         Quantum of Solace
## 8615                                                                                                                                               Role Models
## 8616                                                                                                                                                   Yes Man
## 8617                                                                                                                                                  Valkyrie
## 8618                                                                                                          Dear Zachary: A Letter to a Son About His Father
## 8619                                                                                                                                           I Love You, Man
## 8620                                                                                                                                             Adventureland
## 8621                                                                                                                                               In the Loop
## 8622                                                                                                                                      Inglourious Basterds
## 8623                                                                                                                                                        Up
## 8624                                                                                                                                             Hangover, The
## 8625                                                                                                                               Taking of Pelham 1 2 3, The
## 8626                                                                                                                    Harry Potter and the Half-Blood Prince
## 8627                                                                                                                                                District 9
## 8628                                                                                                                                             Julie & Julia
## 8629                                                                                                                                                   Bronson
## 8630                                                                                                                         Cloudy with a Chance of Meatballs
## 8631                                                                                                                                               City Island
## 8632                                                                                                                                                Zombieland
## 8633                                                                                                                                             Education, An
## 8634                                                                                                                                             Up in the Air
## 8635                                                                                                                                            Black Dynamite
## 8636                                                                                                                                         Fantastic Mr. Fox
## 8637                                                                                                                                             Single Man, A
## 8638                                                                                                                                               Crazy Heart
## 8639                                                                                                                                 I Love You Phillip Morris
## 8640                                                                                                                                                 Fish Tank
## 8641                                                                                                                                                 Room, The
## 8642                                                                                                                                                 Greenberg
## 8643                                                                                                                               About Elly (Darbareye Elly)
## 8644                                                                                                                                                  Kick-Ass
## 8645                                                                                                                                               Toy Story 3
## 8646                                                                                                                                             Despicable Me
## 8647                                                                                                                                                 Inception
## 8648                                                                                                                                           Other Guys, The
## 8649                                                                                                                                         Two Escobars, The
## 8650                                                                                                                               Scott Pilgrim vs. the World
## 8651                                                                                                                                       Social Network, The
## 8652                                                                                                                                                    Easy A
## 8653                                                                                                                                                Jackass 3D
## 8654                                                                                                                                                 127 Hours
## 8655                                                                                                                                                Black Swan
## 8656                                                                                                              Harry Potter and the Deathly Hallows: Part 1
## 8657                                                                                                                                                 Burlesque
## 8658                                                                                                                                                 Trip, The
## 8659                                                                                                                                              Poetry (Shi)
## 8660                                                                                                                                               Source Code
## 8661                                                                                                                                                 Jane Eyre
## 8662                                                                                                                                                       Boy
## 8663                                                                                                                   Kid With a Bike, The (Le gamin au vélo)
## 8664                                                                                                                                     Hangover Part II, The
## 8665                                                                                                                                        X-Men: First Class
## 8666                                                                                                                                                 Beginners
## 8667                                                                                                                                              Larry Crowne
## 8668                                                                                                                                           Horrible Bosses
## 8669                                                                                                              Harry Potter and the Deathly Hallows: Part 2
## 8670                                                                                                                            Rise of the Planet of the Apes
## 8671                                                                                                                                                 Help, The
## 8672                                                                                                                                        30 Minutes or Less
## 8673                                                                                                                                                 Moneyball
## 8674                                                                                                                   Separation, A (Jodaeiye Nader az Simin)
## 8675                                                                                                                                  Martha Marcy May Marlene
## 8676                                                                                                                               We Need to Talk About Kevin
## 8677                                                                                                                                 Headhunters (Hodejegerne)
## 8678                                                                                                                      Oslo, August 31st (Oslo, 31. august)
## 8679                                                                                                                                                   Weekend
## 8680                                                                                                                                    Dark Knight Rises, The
## 8681                                                                                                                                                 Chronicle
## 8682                                                                                                                                                 Project X
## 8683                                                                                                                                                  Starbuck
## 8684                                                                                                                                                      Goon
## 8685                                                                                                                                            21 Jump Street
## 8686                                                                                                                                   Jeff, Who Lives at Home
## 8687                                                                                                                                      Jiro Dreams of Sushi
## 8688                                                                                                                                                    Bernie
## 8689                                                                                                                                          Moonrise Kingdom
## 8690                                                                                                                                     Safety Not Guaranteed
## 8691                                                                                                                                                       Ted
## 8692                                                                                                                                   Amazing Spider-Man, The
## 8693                                                                                                                                                   Skyfall
## 8694                                                                                                                                             Campaign, The
## 8695                                                                                                                                         Sleepwalk with Me
## 8696                                                                                                                                               Master, The
## 8697                                                                                                                                        Hunt, The (Jagten)
## 8698                                                                                                                     Royal Affair, A (Kongelig affære, En)
## 8699                                                                                                                                         Seven Psychopaths
## 8700                                                                                                                                       Here Comes the Boom
## 8701                                                                                                                                             Imposter, The
## 8702                                                                                                                                   Silver Linings Playbook
## 8703                                                                                                                                                    Flight
## 8704                                                                                                                                                Life of Pi
## 8705                                                                                                                                          Django Unchained
## 8706                                                                                                                                                This Is 40
## 8707                                                                                                                                 It's Such a Beautiful Day
## 8708                                                                                                                                            Upstream Color
## 8709                                                                                                                                 Snow White (Blancanieves)
## 8710                                                                                                                                       Act of Killing, The
## 8711                                                                                                                                                 Host, The
## 8712                                                                                                                                           This Is the End
## 8713                                                                                                                                                Frances Ha
## 8714                                                                                                                                        Way, Way Back, The
## 8715                                                                                                                                       Monsters University
## 8716                                                                                                                                          What Maisie Knew
## 8717                                                                                                                                         Fruitvale Station
## 8718                                                                                                                                            Conjuring, The
## 8719                                                                                                                                             Short Term 12
## 8720                                                                                                                                                  Nebraska
## 8721                                                                                                                                        Inequality for All
## 8722                                                                                                                                               Just Wright
## 8723                                                                                                                                          12 Years a Slave
## 8724                                                                                                                             Jackass Presents: Bad Grandpa
## 8725                                                                                                                                        Dallas Buyers Club
## 8726                                                                                                                                        Selfish Giant, The
## 8727                                                                                                                                             Muscle Shoals
## 8728                                                                                                                                                 Philomena
## 8729                                                                                                                                           American Hustle
## 8730                                                                                                                                                       Her
## 8731                                                                                                                                          Saving Mr. Banks
## 8732                                                                                                                         Anchorman 2: The Legend Continues
## 8733                                                                                                            Like Father, Like Son (Soshite chichi ni naru)
## 8734                                                                                                                                                Ride Along
## 8735                                                                                                                                            The Lego Movie
## 8736                                                                                                                            We Are the Best! (Vi är bäst!)
## 8737                                                                                                                                X-Men: Days of Future Past
## 8738                                                                                                                                                   Blended
## 8739                                                                                                                                            22 Jump Street
## 8740                                                                                                          Birdman: Or (The Unexpected Virtue of Ignorance)
## 8741                                                                                                                                                     Frank
## 8742                                                                                                                                             Babadook, The
## 8743                                                                                                                                                  Whiplash
## 8744                                                                                                                                                 Gone Girl
## 8745                                                                                                                                   Guardians of the Galaxy
## 8746                                                                                                                                        Trip to Italy, The
## 8747                                                                                                                                             Let's Be Cops
## 8748                                                                                                                Two Days, One Night (Deux jours, une nuit)
## 8749                                                                                                                                           One I Love, The
## 8750                                                                                                                                                Guest, The
## 8751                                                                                                                                        The Skeleton Twins
## 8752                                                                                                                                    Force Majeure (Turist)
## 8753                                                                                                                                      Look of Silence, The
## 8754                                                                                                                                              Nightcrawler
## 8755                                                                                                                                        The Imitation Game
## 8756                                                                                                                                        Mad Max: Fury Road
## 8757                                                                                                                Star Wars: Episode VII - The Force Awakens
## 8758                                                                                                                                                  Brooklyn
## 8759                                                                                                         Going Clear: Scientology and the Prison of Belief
## 8760                                                                                                                                                      Dope
## 8761                                                                                                                                    People, Places, Things
## 8762                                                                                                                                         The Hateful Eight
## 8763                                                                                                                                                  Victoria
## 8764                                                                                                                                                   Phoenix
## 8765                                                                                                                                               The Lobster
## 8766                                                                                                                                                 Kung Fury
## 8767                                                                                                                                                Inside Out
## 8768                                                                                                                        Batman v Superman: Dawn of Justice
## 8769                                                                                                                                  Requiem For The Big East
## 8770                                                                                                                                              The Revenant
## 8771                                                                                                                                           Best of Enemies
## 8772                                                                                                                                    Straight Outta Compton
## 8773                                                                                                                                       Beasts of No Nation
## 8774                                                                                                                                          The Night Before
## 8775                                                                                                                                                 Spotlight
## 8776                                                                                                                                                     Creed
## 8777                                                                                                                                            Big Short, The
## 8778                                                                                                                                         World of Tomorrow
## 8779                                                                                                                                                  Zootopia
## 8780                                                                                                                                   Hello, My Name Is Doris
## 8781                                                                                                                              Neighbors 2: Sorority Rising
## 8782                                                                                                                                       Survive and Advance
## 8783                                                                                                                                   American President, The
## 8784                                                                                                                                     Sense and Sensibility
## 8785                                                                                                                                                Get Shorty
## 8786                                                                                                                                                      Babe
## 8787                                                                                                                                                Braveheart
## 8788                                                                                                                                                   Rob Roy
## 8789                                                                                                                                                 Desperado
## 8790                                                                                                                                     Devil in a Blue Dress
## 8791                                                                                                                        Star Wars: Episode IV - A New Hope
## 8792                                                                                                       Like Water for Chocolate (Como agua para chocolate)
## 8793                                                                                                   Léon: The Professional (a.k.a. The Professional) (Léon)
## 8794                                                                                                                                 Shawshank Redemption, The
## 8795                                                                                                                               What's Eating Gilbert Grape
## 8796                                                                                                                                               Client, The
## 8797                                                                                                                                              Forrest Gump
## 8798                                                                                                                               Four Weddings and a Funeral
## 8799                                                                                                                                                 True Lies
## 8800                                                                                                                                                      Dave
## 8801                                                                                               Englishman Who Went Up a Hill But Came Down a Mountain, The
## 8802                                                                                                                                    Much Ado About Nothing
## 8803                                                                                                                                                Piano, The
## 8804                                                                                                                                          Schindler's List
## 8805                                                                                                                                               Shadowlands
## 8806                                                                                                                                 Six Degrees of Separation
## 8807                                                                                                                                              True Romance
## 8808                                                                                                                                        Dances with Wolves
## 8809                                                                                                                                                    Batman
## 8810                                                                                                                                                     Fargo
## 8811                                                                                                                                           Family Thing, A
## 8812                                                                                                                                       Mission: Impossible
## 8813                                                                                                                                         Cold Comfort Farm
## 8814                                                                                                                                                 Lone Star
## 8815                                                                                                                                            Godfather, The
## 8816                                                                                                                                              My Fair Lady
## 8817                                                                                                                                          My Favorite Year
## 8818                                                                                                                                  Apple Dumpling Gang, The
## 8819                                                                                                                                  Escape to Witch Mountain
## 8820                                                                                                                                              Mary Poppins
## 8821                                                                                                                                       Sound of Music, The
## 8822                                                                                                                                                  Die Hard
## 8823                                                                                                                       Willy Wonka & the Chocolate Factory
## 8824                                                                                                                                      Fish Called Wanda, A
## 8825                                                                                                                              Monty Python's Life of Brian
## 8826                                                                                                                                           Victor/Victoria
## 8827                                                                                                                                             Dirty Dancing
## 8828                                                                                                                                       Weekend at Bernie's
## 8829                                                                                                                                            Basic Instinct
## 8830                                                                                                                                          Crying Game, The
## 8831                                                                                                                                E.T. the Extra-Terrestrial
## 8832                                                                                                                                                   Top Gun
## 8833                                                                                                                                            On Golden Pond
## 8834                                                                                                                           Return of the Pink Panther, The
## 8835                                                                                                                                                Abyss, The
## 8836                                                                                                                                                  Fog, The
## 8837                                                                                                                                      Escape from New York
## 8838                                                                                                                                              Howling, The
## 8839                                                                                                                                          Private Benjamin
## 8840                                                                                                                           Monty Python and the Holy Grail
## 8841                                                                                                                      Wallace & Gromit: The Wrong Trousers
## 8842                                                                                                                                              My Left Foot
## 8843                                                                                                                                  Sex, Lies, and Videotape
## 8844                                                                                                                           One Flew Over the Cuckoo's Nest
## 8845                                                                                                                            Cheech and Chong's Up in Smoke
## 8846                                                                                                            Star Wars: Episode V - The Empire Strikes Back
## 8847                                                                                                                                       Princess Bride, The
## 8848                                                                                   Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 8849                                                                                                                                                    Aliens
## 8850                                                                                                                                            Apocalypse Now
## 8851                                                                                                                                                     Alien
## 8852                                                                                                                                       Blues Brothers, The
## 8853                                                                                                                                   Godfather: Part II, The
## 8854                                                                                                                                         Full Metal Jacket
## 8855                                                                                                                                                   Henry V
## 8856                                                                                                                                                   Amadeus
## 8857                                                                                                                               Once Upon a Time in America
## 8858                                                                                                                                                Sting, The
## 8859                                                                                                                                           Terminator, The
## 8860                                                                                                                                                     Glory
## 8861                                                                                                                     Rosencrantz and Guildenstern Are Dead
## 8862                                                                                                                                        Dead Poets Society
## 8863                                                                                                                                                 Chinatown
## 8864                                                                                                                                              Shining, The
## 8865                                                                                                                                               Stand by Me
## 8866                                                                                                                                          Deer Hunter, The
## 8867                                                                                                                                             Groundhog Day
## 8868                                                                                                                                        Back to the Future
## 8869                                                                                                                                                    Patton
## 8870                                                                                                                                                Highlander
## 8871                                                                                                                                        Young Frankenstein
## 8872                                                                                                                                         Somewhere in Time
## 8873                                                                                                                                        This Is Spinal Tap
## 8874                                                                                                                        Indiana Jones and the Last Crusade
## 8875                                                                                                                                       Room with a View, A
## 8876                                                                                                                                       Killing Fields, The
## 8877                                                                                                                                           Field of Dreams
## 8878                                                                                                                                   When Harry Met Sally...
## 8879                                                                                                                           American Werewolf in London, An
## 8880                                                                                                                                            Amityville 3-D
## 8881                                                                                                                             Amityville II: The Possession
## 8882                                                                                                                                    Amityville Horror, The
## 8883                                                                                                                                                    Carrie
## 8884                                                                                                                                                Cat People
## 8885                                                                                                                                Nightmare on Elm Street, A
## 8886                                                                                                                                                 Omen, The
## 8887                                                                                                                                                     Shine
## 8888                                                                                                                                               Sling Blade
## 8889                                                                                                                                                Young Guns
## 8890                                                                                                                                                    Grease
## 8891                                                                                                                                                      Jaws
## 8892                                                                                                                                             Jerry Maguire
## 8893                                                                                                                                           Raising Arizona
## 8894                                                                                                                                 Last of the Mohicans, The
## 8895                                                                                                                                            Murder at 1600
## 8896                                                                                                                                            Absolute Power
## 8897                                                                                                                                             Private Parts
## 8898                                                                                                                                       Conan the Barbarian
## 8899                                                                                                                                                  Cop Land
## 8900                                                                                                                                         Conspiracy Theory
## 8901                                                                                                                                         L.A. Confidential
## 8902                                                                                                                                                 Game, The
## 8903                                                                                                                                           Full Monty, The
## 8904                                                                                                                                      The Devil's Advocate
## 8905                                                                                                                                                   Stripes
## 8906                                                                                                                                                   Witness
## 8907                                                                                                                                         Good Will Hunting
## 8908                                                                                                                                      Sweet Hereafter, The
## 8909                                                                                                                                                   Titanic
## 8910                                                                                                                                         Big Lebowski, The
## 8911                                                                                                                                                    Fallen
## 8912                                                                                                                                        As Good as It Gets
## 8913                                                                                                                                         Perfect Murder, A
## 8914                                                                                                                            X-Files: Fight the Future, The
## 8915                                                                                                                                             Smoke Signals
## 8916                                                                                                                                                Armageddon
## 8917                                                                                                                                           Lethal Weapon 4
## 8918                                                                                                                              There's Something About Mary
## 8919                                                                                                                                           West Side Story
## 8920                                                                                                                                                   Oliver!
## 8921                                                                                                                                    French Connection, The
## 8922                                                                                                                                                     Rocky
## 8923                                                                                                                                         Kramer vs. Kramer
## 8924                                                                                                                                           Ordinary People
## 8925                                                                                                                                          Chariots of Fire
## 8926                                                                                                                                       Terms of Endearment
## 8927                                                                                                                                                  Rain Man
## 8928                                                                                                                                        Driving Miss Daisy
## 8929                                                                                                                                                     Klute
## 8930                                                                                                                                                 Labyrinth
## 8931                                                                                                                                       Breakfast Club, The
## 8932                                                                                                                                           Friday the 13th
## 8933                                                                                                                                    Friday the 13th Part 2
## 8934                                                                                                                Friday the 13th Part IV: The Final Chapter
## 8935                                                                                                                   Friday the 13th Part V: A New Beginning
## 8936                                                                                                                      Friday the 13th Part VI: Jason Lives
## 8937                                                                                                          Friday the 13th Part VIII: Jason Takes Manhattan
## 8938                                                                                                                                                 Halloween
## 8939                                                                                                                                              Halloween II
## 8940                                                                                                                        Halloween III: Season of the Witch
## 8941                                                                                                                                                Prom Night
## 8942                                                                                                                                               Poltergeist
## 8943                                                                                                                            Poltergeist II: The Other Side
## 8944                                                                                                                                           Poltergeist III
## 8945                                                                                                                                             Exorcist, The
## 8946                                                                                                                                             Lethal Weapon
## 8947                                                                                                                                           Lethal Weapon 2
## 8948                                                                                                                                                  Gremlins
## 8949                                                                                                                                              Goonies, The
## 8950                                                                                                                                        Mask of Zorro, The
## 8951                                                                                                                                             Soylent Green
## 8952                                                                                                                                   Poseidon Adventure, The
## 8953                                                                                                                                        Dangerous Liaisons
## 8954                                                                                                                                      Jane Austen's Mafia!
## 8955                                                                                                                                       Saving Private Ryan
## 8956                                                                                                                                                Candleshoe
## 8957                                                                                                                                 Devil and Max Devlin, The
## 8958                                                                                                                                  Honey, I Shrunk the Kids
## 8959                                                                                                                                            Tender Mercies
## 8960                                                                                                                                                    Popeye
## 8961                                                                                                                           Something Wicked This Way Comes
## 8962                                                                                                                                                    Splash
## 8963                                                                                                                                                 Jerk, The
## 8964                                                                                                                                 Dead Men Don't Wear Plaid
## 8965                                                                                                                                  Man with Two Brains, The
## 8966                                                                                                                                            Outsiders, The
## 8967                                                                                                                      Indiana Jones and the Temple of Doom
## 8968                                                                                                                                            Dead Zone, The
## 8969                                                                                                                                                      Cujo
## 8970                                                                                                                                      Children of the Corn
## 8971                                                                                                                            Ever After: A Cinderella Story
## 8972                                                                                                                                             Atlantic City
## 8973                                                                                                                                                    Legend
## 8974                                                                                                                                           Sixteen Candles
## 8975                                                                                                                                             Avengers, The
## 8976                                                                                                                                    NeverEnding Story, The
## 8977                                                                                                                            Attack of the Killer Tomatoes!
## 8978                                                                                                                                               Beetlejuice
## 8979                                                                                                                                                    Frenzy
## 8980                                                                                                                                                    Willow
## 8981                                                                                                                                         Untouchables, The
## 8982                                                                                                                                              My Bodyguard
## 8983                                                                                                                                              Working Girl
## 8984                                                                                                                                           Few Good Men, A
## 8985                                                                                                                                                Thing, The
## 8986                                                                                                                                       Edward Scissorhands
## 8987                                                                                                                                            Producers, The
## 8988                                                                                                                              History of the World: Part I
## 8989                                                                                                                                           My Cousin Vinny
## 8990                                                                                                                                         Elephant Man, The
## 8991                                                                                                                                     M*A*S*H (a.k.a. MASH)
## 8992                                                                                                                                   American President, The
## 8993                                                                                                                            Ace Ventura: When Nature Calls
## 8994                                                                                                                                                 Apollo 13
## 8995                                                                                                                                Ace Ventura: Pet Detective
## 8996                                                                                                                                      Addams Family Values
## 8997                                                                                                                                          Another Stakeout
## 8998                                                                                                                                           Aristocats, The
## 8999                                                                                                                                              Arrival, The
## 9000                                                                                                                                            Apartment, The
## 9001                                                                                                                                     2001: A Space Odyssey
## 9002                                                                                                                             Adventures of Robin Hood, The
## 9003                                                                                                                               Around the World in 80 Days
## 9004                                                                                                                                             39 Steps, The
## 9005                                                                                                                                        African Queen, The
## 9006                                                                                                                                      2 Days in the Valley
## 9007                                                                                                                                  Apple Dumpling Gang, The
## 9008                                                                                                                              20,000 Leagues Under the Sea
## 9009                                                                                                                                    Angels in the Outfield
## 9010                                                                                                                                                Abyss, The
## 9011                                                                                                                                                    Aliens
## 9012                                                                                                                                              12 Angry Men
## 9013                                                                                                                                                     Alien
## 9014                                                                                                                                                   Amadeus
## 9015                                                                                                                                                Annie Hall
## 9016                                                                                                                                      Arsenic and Old Lace
## 9017                                                                                                                                   Alien³ (a.k.a. Alien 3)
## 9018                                                                                                                           American Werewolf in London, An
## 9019                                                                                                                                            101 Dalmatians
## 9020                                                                                                                                            Absolute Power
## 9021                                                                                                                                                  Anaconda
## 9022                                                                                                               Austin Powers: International Man of Mystery
## 9023                                                                                                                                             Air Force One
## 9024                                                                                                                                       Alien: Resurrection
## 9025                                                                                                                                        As Good as It Gets
## 9026                                                                                                                                                Armageddon
## 9027                                                                                                                            All Quiet on the Western Front
## 9028                                                                                                                              Absent-Minded Professor, The
## 9029                                                                                                                      Apple Dumpling Gang Rides Again, The
## 9030                                                                                                                                               'burbs, The
## 9031                                                                                                           101 Dalmatians (One Hundred and One Dalmatians)
## 9032                                                                                                                                        Addams Family, The
## 9033                                                                                                                                 Adventures in Babysitting
## 9034                                                                                                                                             Avengers, The
## 9035                                                                                                                            Attack of the Killer Tomatoes!
## 9036                                                                                                                                              Torn Curtain
## 9037                                                                                                                                                  Lifeboat
## 9038                                                                                                                            2010: The Year We Make Contact
## 9039                                                                                                                                                52 Pick-Up
## 9040                                                                                                                                                       8MM
## 9041                                                                                                                                                   Airport
## 9042                                                                                                                                               Airport '77
## 9043                                                                                                                                              Dead Ringers
## 9044                                                                                                                     Austin Powers: The Spy Who Shagged Me
## 9045                                                                                                 Monty Python's And Now for Something Completely Different
## 9046                                                                                                                                                 Airplane!
## 9047                                                                                                                                   Airplane II: The Sequel
## 9048                                                                                                                                      Aces: Iron Eagle III
## 9049                                                                                                                                     Astronaut's Wife, The
## 9050                                                                                                      Adventures of Milo and Otis, The (Koneko monogatari)
## 9051                                                                                               Adventures of Buckaroo Banzai Across the 8th Dimension, The
## 9052                                                                                                                                 7th Voyage of Sinbad, The
## 9053                                                                                                                                              Agnes of God
## 9054                                                                                                                                    ...And Justice for All
## 9055                                                                                                                                              Animal House
## 9056                                                                                                                                                 Frequency
## 9057                                                                                                                                                    Arthur
## 9058                                                                                                                                           American Psycho
## 9059                                                                                                                                                     U-571
## 9060                                                                                                                                           American Gigolo
## 9061                                                                                                                                                     Benji
## 9062                                                                                                                                              Alien Nation
## 9063                                                                                                                                               Angel Heart
## 9064                                                                                                                                            Action Jackson
## 9065                                                                                                                                   American President, The
## 9066                                                                                                                        Twelve Monkeys (a.k.a. 12 Monkeys)
## 9067                                                                                                                                       Usual Suspects, The
## 9068                                                                                                                                               Taxi Driver
## 9069                                                                                                                                                 Apollo 13
## 9070                                                                                                                                                    Clerks
## 9071                                                                                                                           Dumb & Dumber (Dumb and Dumber)
## 9072                                                                                                                                                  Outbreak
## 9073                                                                                                                                              Pulp Fiction
## 9074                                                                                                                                                 Quiz Show
## 9075                                                                                                                                 Shawshank Redemption, The
## 9076                                                                                                                                                 Mask, The
## 9077                                                                                                                                                 True Lies
## 9078                                                                                                                                      Addams Family Values
## 9079                                                                                                                                     Age of Innocence, The
## 9080                                                                                                                                             Jurassic Park
## 9081                                                                                                                                          Schindler's List
## 9082                                                                                                                                              Blade Runner
## 9083                                                                                                                                                Home Alone
## 9084                                                                                                                                        Dances with Wolves
## 9085                                                                                                                                 Silence of the Lambs, The
## 9086                                                                                                           Wallace & Gromit: The Best of Aardman Animation
## 9087                                                                                                                           Wallace & Gromit: A Close Shave
## 9088                                                                                                                                            Godfather, The
## 9089                                                                                                                                                Casablanca
## 9090                                                                                                                                         Wizard of Oz, The
## 9091                                                                                                                           Monty Python and the Holy Grail
## 9092                                                                                                                      Wallace & Gromit: The Wrong Trousers
## 9093                                                                                                                           One Flew Over the Cuckoo's Nest
## 9094                                                                                                                                                Goodfellas
## 9095                                                                                                                                   Godfather: Part II, The
## 9096                                                                                                                                  Star Trek: First Contact
## 9097                                                                                                                                             Boogie Nights
## 9098                                                                                                                                       Tomorrow Never Dies
## 9099                                                                                                                              There's Something About Mary
## 9100                                                                                                                                                  Rain Man
## 9101                                                                                                                                       Breakfast Club, The
## 9102                                                                                                                                       Saving Private Ryan
## 9103                                                                                                                                                      Tron
## 9104                                                                                                                                    NeverEnding Story, The
## 9105                                                                                                                                                     Blade
## 9106                                                                                                                                                    Willow
## 9107                                                                                                                                         Untouchables, The
## 9108                                                                                                                                           My Cousin Vinny
## 9109                                                                                                                                        American History X
## 9110                                                                                                                                       Shakespeare in Love
## 9111                                                                                                                                          Crocodile Dundee
## 9112                                                                                                                         Lock, Stock & Two Smoking Barrels
## 9113                                                                                                                                                Mummy, The
## 9114                                                                                                                                                  Superman
## 9115                                                                                                                                              Notting Hill
## 9116                                                                                                                     Austin Powers: The Spy Who Shagged Me
## 9117                                                                                                                                 Run Lola Run (Lola rennt)
## 9118                                                                                                                       Ghostbusters (a.k.a. Ghost Busters)
## 9119                                                                                                                                  Thomas Crown Affair, The
## 9120                                                                                                                                                       Big
## 9121                                                                                                                                           American Beauty
## 9122                                                                                                                                                Fight Club
## 9123                                                                                                                                      Being John Malkovich
## 9124                                                                                                                                             Wayne's World
## 9125                                                                                                                                                 Gladiator
## 9126                                                                                                                                    Mission: Impossible II
## 9127                                                                                                                                               Chicken Run
## 9128                                                                                                                                              Best in Show
## 9129                                                                                                                                          Meet the Parents
## 9130                                                                                                                                                     Shrek
## 9131                                                                                                        Lord of the Rings: The Fellowship of the Ring, The
## 9132                                                                                                                                     M*A*S*H (a.k.a. MASH)
## 9133                                                                                                                                                Spider-Man
## 9134                                                                                                                    Lord of the Rings: The Two Towers, The
## 9135                                                                                                                                   All the President's Men
## 9136                                                                                                                                   To Live and Die in L.A.
## 9137                                                                                                            Lord of the Rings: The Return of the King, The
## 9138                                                                                                                     Eternal Sunshine of the Spotless Mind
## 9139                                                                                                                                          Incredibles, The
## 9140                                                                                                                                                Krays, The
## 9141                                                                                                                                             Batman Begins
## 9142                                                                                                                                                Murderball
## 9143                                                                                                                                                    Casino
## 9144                                                                                                                                                Get Shorty
## 9145                                                                                                                                               Taxi Driver
## 9146                                                                                                                                                 Desperado
## 9147                                                                                                                                               Judge Dredd
## 9148                                                                                                                                                   Ed Wood
## 9149                                                                                                                                      Hot Shots! Part Deux
## 9150                                                                                                                                              Blade Runner
## 9151                                                                                                                                                     Fargo
## 9152                                                                                                                                               Dragonheart
## 9153                                                                                                           Wallace & Gromit: The Best of Aardman Animation
## 9154                                                                                                                           Wallace & Gromit: A Close Shave
## 9155                                                                                                                                            Godfather, The
## 9156                                                                                                                              Monty Python's Life of Brian
## 9157                                                                                                                                                   Platoon
## 9158                                                                                                                                            Apocalypse Now
## 9159                                                                                                    Once Upon a Time in the West (C'era una volta il West)
## 9160                                                                                                                                                    Psycho
## 9161                                                                                                                                   Godfather: Part II, The
## 9162                                                                                                                                                    Grease
## 9163                                                                                                                                                 Liar Liar
## 9164                                                                                                                                                   Gattaca
## 9165                                                                                                                                             Boogie Nights
## 9166                                                                                                                                         Big Lebowski, The
## 9167                                                                                                                               Back to the Future Part III
## 9168                                                                                                                      Indiana Jones and the Temple of Doom
## 9169                                                                                                                                               Beetlejuice
## 9170                                                                                                                       Life Is Beautiful (La Vita è bella)
## 9171                                                                                                                                                  Superman
## 9172                                                                                                                                  Blair Witch Project, The
## 9173                                                                                                                                                       Big
## 9174                                                                                                                                               Re-Animator
## 9175                                                                                                                                                  Magnolia
## 9176                                                                                                                                   Pee-wee's Big Adventure
## 9177                                                                                                                                    Assault on Precinct 13
## 9178                                                                                                                                       Requiem for a Dream
## 9179                                                                                                             Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 9180                                                                                                                                     M*A*S*H (a.k.a. MASH)
## 9181                                                                                                             Spirited Away (Sen to Chihiro no kamikakushi)
## 9182                                                                                                                   Grave of the Fireflies (Hotaru no haka)
## 9183                                                                                                                                             About Schmidt
## 9184                                                                                                                    Lord of the Rings: The Two Towers, The
## 9185                                                                                                                                                      Narc
## 9186                                                                                                                                              Pianist, The
## 9187                                                                                                        Laputa: Castle in the Sky (Tenkû no shiro Rapyuta)
## 9188                                                                                                                                             28 Days Later
## 9189                                                                                                                                                 Bad Santa
## 9190                                                                                                                     Eternal Sunshine of the Spotless Mind
## 9191                                                                                                                                          Dawn of the Dead
## 9192                                                                                                                                             Before Sunset
## 9193                                                                                                                                                    Closer
## 9194                                                                                                                                                   Old Boy
## 9195                                                                                                                       Ong-Bak: The Thai Warrior (Ong Bak)
## 9196                                                                                                                             Sea Inside, The (Mar adentro)
## 9197                                                                                                                                              Hotel Rwanda
## 9198                                                                                                                                                   Jumanji
## 9199                                                                                                                                                      Babe
## 9200                                                                                                                                                Pocahontas
## 9201                                                                                                                                       Usual Suspects, The
## 9202                                                                                                                                             Happy Gilmore
## 9203                                                                                                                                                    Casper
## 9204                                                                                                                           Dumb & Dumber (Dumb and Dumber)
## 9205                                                                                                                                         Santa Clause, The
## 9206                                                                                                                                            Lion King, The
## 9207                                                                                                                                            Mrs. Doubtfire
## 9208                                                                                                                           Nightmare Before Christmas, The
## 9209                                                                                                                                    Brady Bunch Movie, The
## 9210                                                                                                                                                Home Alone
## 9211                                                                                                                                                     Ghost
## 9212                                                                                                                                                   Aladdin
## 9213                                                                                                                                                    Batman
## 9214                                                                                                                                 Silence of the Lambs, The
## 9215                                                                                                                           Snow White and the Seven Dwarfs
## 9216                                                                                                                                      Beauty and the Beast
## 9217                                                                                                                                                 Pinocchio
## 9218                                                                                                                                           Aristocats, The
## 9219                                                                                                                                 James and the Giant Peach
## 9220                                                                                                                                                 Space Jam
## 9221                                                                                                                                           Harriet the Spy
## 9222                                                                                                                                         Wizard of Oz, The
## 9223                                                                                                                                     It's a Wonderful Life
## 9224                                                                                                                                             Love Bug, The
## 9225                                                                                                                                                Cinderella
## 9226                                                                                                                                              Mary Poppins
## 9227                                                                                                                                                     Dumbo
## 9228                                                                                                                                       Sound of Music, The
## 9229                                                                                                                      William Shakespeare's Romeo + Juliet
## 9230                                                                                                                       Willy Wonka & the Chocolate Factory
## 9231                                                                                                                                E.T. the Extra-Terrestrial
## 9232                                                                                                                           Monty Python and the Holy Grail
## 9233                                                                                                                                       Princess Bride, The
## 9234                                                                                                                                     To Kill a Mockingbird
## 9235                                                                                                                                       Blues Brothers, The
## 9236                                                                                                                                            101 Dalmatians
## 9237                                                                                                                                                    Grease
## 9238                                                                                                                                       Grosse Pointe Blank
## 9239                                                                                                                                 Men in Black (a.k.a. MIB)
## 9240                                                                                                                                       Wedding Singer, The
## 9241                                                                                                                                                     Mulan
## 9242                                                                                                                                                     Rocky
## 9243                                                                                                                                       Breakfast Club, The
## 9244                                                                                                                                                     Bambi
## 9245                                                                                                                                  Honey, I Shrunk the Kids
## 9246                                                                                                                                          Jungle Book, The
## 9247                                                                                                                                        Lady and the Tramp
## 9248                                                                                                                                       Little Mermaid, The
## 9249                                                                                                           101 Dalmatians (One Hundred and One Dalmatians)
## 9250                                                                                                                                                 Peter Pan
## 9251                                                                                                                                     All Dogs Go to Heaven
## 9252                                                                                                                                           Sixteen Candles
## 9253                                                                                                                                    NeverEnding Story, The
## 9254                                                                                                                                               Beetlejuice
## 9255                                                                                                                                                 Rush Hour
## 9256                                                                                                                                            Producers, The
## 9257                                                                                                                                             Bug's Life, A
## 9258                                                                                                                                     Babe: Pig in the City
## 9259                                                                                                                                              Office Space
## 9260                                                                                                                                               Matrix, The
## 9261                                                                                                                                10 Things I Hate About You
## 9262                                                                                                                       Ghostbusters (a.k.a. Ghost Busters)
## 9263                                                                                                                                           Iron Giant, The
## 9264                                                                                                                                        Christmas Story, A
## 9265                                                                                                                                          Yellow Submarine
## 9266                                                                                                                                  Ferris Bueller's Day Off
## 9267                                                                                                                            Home Alone 2: Lost in New York
## 9268                                                                                                                                               Toy Story 2
## 9269                                                                                                                                          Romeo and Juliet
## 9270                                                                                                                                               Chicken Run
## 9271                                                                                                        How the Grinch Stole Christmas (a.k.a. The Grinch)
## 9272                                                                                                                                 Emperor's New Groove, The
## 9273                                                                                                                                         Miss Congeniality
## 9274                                                                                                                                                  Spy Kids
## 9275                                                                                                                                     Bridget Jones's Diary
## 9276                                                                                                                                                     Shrek
## 9277                                                                                                                                Throw Momma from the Train
## 9278                                                                                                                                               Rush Hour 2
## 9279                                                                                                                                            Monsters, Inc.
## 9280                                                                                                                                               Shallow Hal
## 9281                                                                   Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 9282                                                                                                        Lord of the Rings: The Fellowship of the Ring, The
## 9283                                                                                                                                  My Big Fat Greek Wedding
## 9284                                                                                                                                                Spider-Man
## 9285                                                                                                                                             Lilo & Stitch
## 9286                                                                                                                                                 Mr. Deeds
## 9287                                                                                                              Men in Black II (a.k.a. MIIB) (a.k.a. MIB 2)
## 9288                                                                                                                               Austin Powers in Goldmember
## 9289                                                                                                             Spirited Away (Sen to Chihiro no kamikakushi)
## 9290                                                                                                                                      Saturday Night Fever
## 9291                                                                                                                   Harry Potter and the Chamber of Secrets
## 9292                                                                                                                    Lord of the Rings: The Two Towers, The
## 9293                                                                                                                     My Neighbor Totoro (Tonari no Totoro)
## 9294                                                                                                                                      Bend It Like Beckham
## 9295                                                                                                        Laputa: Castle in the Sky (Tenkû no shiro Rapyuta)
## 9296                                                                                                                                            Bruce Almighty
## 9297                                                                                                                                              Finding Nemo
## 9298                                                                                                    Pirates of the Caribbean: The Curse of the Black Pearl
## 9299                                                                                                                                               Jungle Book
## 9300                                                                                                                                            School of Rock
## 9301                                                                                                                                                       Elf
## 9302                                                                                                                                          Kindergarten Cop
## 9303                                                                                                            Lord of the Rings: The Return of the King, The
## 9304                                                                                                                                      Cheaper by the Dozen
## 9305                                                                                                                                                Mean Girls
## 9306                                                                                                                                                   Shrek 2
## 9307                                                                                                                  Harry Potter and the Prisoner of Azkaban
## 9308                                                                                                                                         Napoleon Dynamite
## 9309                                                                                                                                             Super Size Me
## 9310                                                                                                                            Now You See Him, Now You Don't
## 9311                                                                                                                                          Incredibles, The
## 9312                                                                                                                                         Finding Neverland
## 9313                                                                                                               Kiki's Delivery Service (Majo no takkyûbin)
## 9314                                                                                                           Lemony Snicket's A Series of Unfortunate Events
## 9315                                                                                                                         Charlie and the Chocolate Factory
## 9316                                                                                                                     Hitchhiker's Guide to the Galaxy, The
## 9317                                                                                                                                                Madagascar
## 9318                                                                                                                                            Cinderella Man
## 9319                                                                                                                                          Mr. & Mrs. Smith
## 9320                                                                                                                                             Batman Begins
## 9321                                                                                                                                            Fantastic Four
## 9322                                                                                                                                          Wedding Crashers
## 9323                                                                                                                                         Pride & Prejudice
## 9324                                                                                                                       Harry Potter and the Goblet of Fire
## 9325                                                                                           Chronicles of Narnia: The Lion, the Witch and the Wardrobe, The
## 9326                                                                                                                                            V for Vendetta
## 9327                                                                                                                                     Thank You for Smoking
## 9328                                                                                                                                            Over the Hedge
## 9329                                                                                                                                                      Cars
## 9330                                                                                                                                    Devil Wears Prada, The
## 9331                                                                                                                Pirates of the Caribbean: Dead Man's Chest
## 9332                                                                                                                                      Little Miss Sunshine
## 9333                                                                                                               Talladega Nights: The Ballad of Ricky Bobby
## 9334                                                                                                                                       Night at the Museum
## 9335                                                                                                                                     Stranger than Fiction
## 9336                                                                                                                                          Illusionist, The
## 9337                                                                                                                 Pan's Labyrinth (Laberinto del fauno, El)
## 9338                                                                                                                                             Prestige, The
## 9339                                                                                                                                               Ratatouille
## 9340                                                                                                                                                Knocked Up
## 9341                                                                                                                                           Shrek the Third
## 9342                                                                                                                  Pirates of the Caribbean: At World's End
## 9343                                                                                                                                          Ocean's Thirteen
## 9344                                                                                                                 Fantastic Four: Rise of the Silver Surfer
## 9345                                                                                                                                              Transformers
## 9346                                                                                                                 Harry Potter and the Order of the Phoenix
## 9347                                                                                                                                       Simpsons Movie, The
## 9348                                                                                                                      Tyler Perry's Why Did I Get Married?
## 9349                                                                                                                                            Be Kind Rewind
## 9350                                                                                                                                                Darfur Now
## 9351                                                                                                                                       Golden Compass, The
## 9352                                                                                                                                               I Am Legend
## 9353                                                                                                                                                      Juno
## 9354                                                                                                            Sweeney Todd: The Demon Barber of Fleet Street
## 9355                                                                                                                               Hellboy II: The Golden Army
## 9356                                                                                                                                                 In Bruges
## 9357                                                                                                                                                    Jumper
## 9358                                                                                                                                          Dark Knight, The
## 9359                                                                                                                                 Forgetting Sarah Marshall
## 9360                                                                                                                                                  Iron Man
## 9361                                                                                                                                                    WALL·E
## 9362                                                                                                                                                   Hancock
## 9363                                                                                                                                                 Get Smart
## 9364                                                                                                                                               Taxi Driver
## 9365                                                                                                                        Star Wars: Episode IV - A New Hope
## 9366                                                                                                                                 Shawshank Redemption, The
## 9367                                                                                                            Star Wars: Episode V - The Empire Strikes Back
## 9368                                                                                                                Star Wars: Episode VI - Return of the Jedi
## 9369                                                                                                                                        Back to the Future
## 9370                                                                                                                                       Saving Private Ryan
## 9371                                                                                                                                  Ferris Bueller's Day Off
## 9372                                                                                                                                                Fight Club
## 9373                                                                                                                                                   Memento
## 9374                                                                                                                                      Bourne Identity, The
## 9375                                                                                                                              City of God (Cidade de Deus)
## 9376                                                                                                                                     Bourne Supremacy, The
## 9377                                                                                                                                           Children of Men
## 9378                                                                                                                                             Blood Diamond
## 9379                                                                                                                                     Bourne Ultimatum, The
## 9380                                                                                                                                          Dark Knight, The
## 9381                                                                                                                                      Inglourious Basterds
## 9382                                                                                                                                                      Moon
## 9383                                                                                                                                          Hurt Locker, The
## 9384                                                                                                                                                District 9
## 9385                                                                                                                                         It Might Get Loud
## 9386                                                                                                                                                 Inception
## 9387                                                                                                                                                Black Swan
## 9388                                                                                                                                               Source Code
## 9389                                                                                                                                        Bourne Legacy, The
## 9390                                                                                                                                              Intouchables
## 9391                                                                                                                                                      Argo
## 9392                                                                                                                                                  Oblivion
## 9393                                                                                                                                         From the Sky Down
## 9394                                                                                                                                               Pacific Rim
## 9395                                                                                                                                                About Time
## 9396                                                                                                                                                   Gravity
## 9397                                                                                                                                  Wolf of Wall Street, The
## 9398                                                                                                                                                       Her
## 9399                                                                                                                                              Interstellar
## 9400                                                                                                                                          Edge of Tomorrow
## 9401                                                                                                          Birdman: Or (The Unexpected Virtue of Ignorance)
## 9402                                                                                                                                                   Boyhood
## 9403                                                                                                                                                  Whiplash
## 9404                                                                                                                                           American Sniper
## 9405                                                                                                                                                 John Wick
## 9406                                                                                                                                              Nightcrawler
## 9407                                                                                                                                                Ex Machina
## 9408                                                                                                                              Kingsman: The Secret Service
## 9409                                                                                                                                                  Blackhat
## 9410                                                                                                                                        Mad Max: Fury Road
## 9411                                                                                                                                                   Ant-Man
## 9412                                                                                                                                               The Martian
## 9413                                                                                                                                                Inside Out
## 9414                                                                                                                                                   Sicario
## 9415                                                                                                                                                     Creed
## 9416                                                                                                                                              Jason Bourne
## 9417                                                                                                                                                 Toy Story
## 9418                                                                                                                                   American President, The
## 9419                                                                                                                                                    Casino
## 9420                                                                                                                                Postman, The (Postino, Il)
## 9421                                                                                                                       Rumble in the Bronx (Hont faan kui)
## 9422                                                                                                                                                 Apollo 13
## 9423                                                                                                                                                   Rob Roy
## 9424                                                                                                                                               Hoop Dreams
## 9425                                                                                                                        Star Wars: Episode IV - A New Hope
## 9426                                                                                                                                           Specialist, The
## 9427                                                                                                                                 Shawshank Redemption, The
## 9428                                                                                                                                                 True Lies
## 9429                                                                                                              City Slickers II: The Legend of Curly's Gold
## 9430                                                                                                                                             Fugitive, The
## 9431                                                                                                                                             Jurassic Park
## 9432                                                                                                                                   Remains of the Day, The
## 9433                                                                                                                                 Robin Hood: Men in Tights
## 9434                                                                                                                                                    Batman
## 9435                                                                                                                                 Silence of the Lambs, The
## 9436                                                                                                           Wallace & Gromit: The Best of Aardman Animation
## 9437                                                                                                                                                    Ransom
## 9438                                                                                                                    Homeward Bound: The Incredible Journey
## 9439                                                                                                                      William Shakespeare's Romeo + Juliet
## 9440                                                                                                                              Monty Python's Life of Brian
## 9441                                                                                                                    Children of the Corn IV: The Gathering
## 9442                                                                                                                           One Flew Over the Cuckoo's Nest
## 9443                                                                                   Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 9444                                                                                                                                                     Alien
## 9445                                                                                                                                   Godfather: Part II, The
## 9446                                                                                                                                                Annie Hall
## 9447                                                                                                                                                Sting, The
## 9448                                                                                                                                               Stand by Me
## 9449                                                                                                                        Butch Cassidy and the Sundance Kid
## 9450                                                                                                                                   When Harry Met Sally...
## 9451                                                                                                                                  Star Trek: First Contact
## 9452                                                                                                                    Star Trek VI: The Undiscovered Country
## 9453                                                                                                                           Star Trek II: The Wrath of Khan
## 9454                                                                                                                             Star Trek IV: The Voyage Home
## 9455                                                                                                                                 Last of the Mohicans, The
## 9456                                                                                                                    Jungle2Jungle (a.k.a. Jungle 2 Jungle)
## 9457                                                                                                                    Romy and Michele's High School Reunion
## 9458                                                                                                               Austin Powers: International Man of Mystery
## 9459                                                                                                                                                  Face/Off
## 9460                                                                                                                                 Hunt for Red October, The
## 9461                                                                                                                                               Chasing Amy
## 9462                                                                                                                                           Full Monty, The
## 9463                                                                                                                                                Armageddon
## 9464                                                                                                                                                     Rocky
## 9465                                                                                                                                                  Rain Man
## 9466                                                                                                                                 Gremlins 2: The New Batch
## 9467                                                                                                                                   Flight of the Navigator
## 9468                                                                                                                                    Lord of the Rings, The
## 9469                                                                                                                                               Beetlejuice
## 9470                                                                                                                                           Few Good Men, A
## 9471                                                                                                                                           My Cousin Vinny
## 9472                                                                                                                                   Star Trek: Insurrection
## 9473                                                                                                                                               Matrix, The
## 9474                                                                                                                 Star Wars: Episode I - The Phantom Menace
## 9475                                                                                                                                                  Superman
## 9476                                                                                                                                             Arachnophobia
## 9477                                                                                                                                  Blair Witch Project, The
## 9478                                                                                                                                          Sixth Sense, The
## 9479                                                                                                                                                 Airplane!
## 9480                                                                                                                                                       Big
## 9481                                                                                                                                           American Beauty
## 9482                                                                                                                                  Ferris Bueller's Day Off
## 9483                                                                                                                                                Fight Club
## 9484                                                                                                                                  Who Framed Roger Rabbit?
## 9485                                                                                                                                      Being John Malkovich
## 9486                                                                                                                                               Toy Story 2
## 9487                                                                                                                                  Talented Mr. Ripley, The
## 9488                                                                                                                         Ghost Dog: The Way of the Samurai
## 9489                                                                                                                                           Erin Brockovich
## 9490                                                                                                                        Close Encounters of the Third Kind
## 9491                                                                                                                                             High Fidelity
## 9492                                                                                                                                                 Gladiator
## 9493                                                                                                                                               Chicken Run
## 9494                                                                                                                                                     X-Men
## 9495                                                                                                           Naked Gun: From the Files of Police Squad!, The
## 9496                                                                                                                   Naked Gun 2 1/2: The Smell of Fear, The
## 9497                                                                                                                                             Almost Famous
## 9498                                                                                                          Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 9499                                                                                                                                                 Cast Away
## 9500                                                                                                                                                     Shrek
## 9501                                                                                                                                   Lara Croft: Tomb Raider
## 9502                                                                                                                                 Fast and the Furious, The
## 9503                                                                                                                         Final Fantasy: The Spirits Within
## 9504                                                                                                        Iron Monkey (Siu nin Wong Fei-hung ji: Tit Ma Lau)
## 9505                                                                                                        Lord of the Rings: The Fellowship of the Ring, The
## 9506                                                                                                                                                Spider-Man
## 9507                                                                                                                    Lord of the Rings: The Two Towers, The
## 9508                                                                                                                                          X2: X-Men United
## 9509                                                                                                       League of Extraordinary Gentlemen, The (a.k.a. LXG)
## 9510                                                                                                                                       Lost in Translation
## 9511                                                                                                                                            School of Rock
## 9512                                                                                                            Lord of the Rings: The Return of the King, The
## 9513                                                                                                                                Passion of the Christ, The
## 9514                                                                                                                                                Braveheart
## 9515                                                                                                                                                 Apollo 13
## 9516                                                                                                                                            Batman Forever
## 9517                                                                                                                                Die Hard: With a Vengeance
## 9518                                                                                                                                              First Knight
## 9519                                                                                                                           Dumb & Dumber (Dumb and Dumber)
## 9520                                                                                                        Interview with the Vampire: The Vampire Chronicles
## 9521                                                                                                                                       Legends of the Fall
## 9522                                                                                                                                              Pulp Fiction
## 9523                                                                                                                                 Shawshank Redemption, The
## 9524                                                                                                                                    Star Trek: Generations
## 9525                                                                                                                                Ace Ventura: Pet Detective
## 9526                                                                                                                                  Clear and Present Danger
## 9527                                                                                                                                              Forrest Gump
## 9528                                                                                                                                                 True Lies
## 9529                                                                                                                                               Cliffhanger
## 9530                                                                                                                                             Fugitive, The
## 9531                                                                                                                                        Dances with Wolves
## 9532                                                                                                                                                    Batman
## 9533                                                                                                                                 Silence of the Lambs, The
## 9534                                                                                                                                      Beauty and the Beast
## 9535                                                                                                                        Star Wars: Episode IV - A New Hope
## 9536                                                                                                                                            Godfather, The
## 9537                                                                                                                                            Apartment, The
## 9538                                                                                                                                        Gone with the Wind
## 9539                                                                                                                                     2001: A Space Odyssey
## 9540                                                                                                                                                   Sleeper
## 9541                                                                                                                                                   Bananas
## 9542                                                                                                                                          Bonnie and Clyde
## 9543                                                                                                                Star Wars: Episode VI - Return of the Jedi
## 9544                                                                                                                                   Godfather: Part II, The
## 9545                                                                                                                                                Annie Hall
## 9546                                                                                                                                                Local Hero
## 9547                                                                                                                                                 Duck Soup
## 9548                                                                                                                                        Back to the Future
## 9549                                                                                                                                        Young Frankenstein
## 9550                                                                                                                                        This Is Spinal Tap
## 9551                                                                                                                                               Being There
## 9552                                                                                                                                       Killing Fields, The
## 9553                                                                                                                        Butch Cassidy and the Sundance Kid
## 9554                                                                                                                                           Midnight Cowboy
## 9555                                                                                                                                           Ordinary People
## 9556                                                                                                                                                Roger & Me
## 9557                                                                                                                                               Player, The
## 9558                                                                                                                                       Hard Day's Night, A
## 9559                                                                                                                                               Deliverance
## 9560                                                                                                                                             All That Jazz
## 9561                                                                                                                                     M*A*S*H (a.k.a. MASH)
## 9562                                                                                                                                                Get Shorty
## 9563                                                                                                                                                   Copycat
## 9564                                                                                                                            Bridges of Madison County, The
## 9565                                                                                                                                                Braveheart
## 9566                                                                                                                        Star Wars: Episode IV - A New Hope
## 9567                                                                                                                                              Forrest Gump
## 9568                                                                                                                                                     Speed
## 9569                                                                                                                                             Fugitive, The
## 9570                                                                                                                                             Jurassic Park
## 9571                                                                                                                                Terminator 2: Judgment Day
## 9572                                                                                                                                 Silence of the Lambs, The
## 9573                                                                                                                                                     Fargo
## 9574                                                                                                                                                    Ransom
## 9575                                                                                                                                            Godfather, The
## 9576                                                                                                                                        North by Northwest
## 9577                                                                                                                                                  Die Hard
## 9578                                                                                                                                            Basic Instinct
## 9579                                                                                                                                      Escape from New York
## 9580                                                                                                                                             Grifters, The
## 9581                                                                                                            Star Wars: Episode V - The Empire Strikes Back
## 9582                                                                                   Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 9583                                                                                                                                                    Aliens
## 9584                                                                                                                                              12 Angry Men
## 9585                                                                                                                                           Terminator, The
## 9586                                                                                                                                 Femme Nikita, La (Nikita)
## 9587                                                                                                                                        Back to the Future
## 9588                                                                                                                                                Highlander
## 9589                                                                                                                                                  Face/Off
## 9590                                                                                                                                 Men in Black (a.k.a. MIB)
## 9591                                                                                                                                                 Game, The
## 9592                                                                                                                                         Big Lebowski, The
## 9593                                                                                                                                                     Rocky
## 9594                                                                                                                                             Lethal Weapon
## 9595                                                                                                                                           Negotiator, The
## 9596                                                                                                                               1984 (Nineteen Eighty-Four)
## 9597                                                                                                                                         Untouchables, The
## 9598                                                                                                                                           Few Good Men, A
## 9599                                                                                                                                            Simple Plan, A
## 9600                                                                                                                                                  Fly, The
## 9601                                                                                                                                               Fly II, The
## 9602                                                                                                                                               Matrix, The
## 9603                                                                                                                                                Entrapment
## 9604                                                                                                                                           American Beauty
## 9605                                                                                                                                                Goldfinger
## 9606                                                                                                                                                   RoboCop
## 9607                                                                                                                                                  Predator
## 9608                                                                                                                           On Her Majesty's Secret Service
## 9609                                                                                                                                                       F/X
## 9610                                                                                                                                                Billy Jack
## 9611                                                                                                                                                 Toy Story
## 9612                                                                                                                                                      Heat
## 9613                                                                                                                               Dracula: Dead and Loving It
## 9614                                                                                                                                                    Casino
## 9615                                                                                                                                     Sense and Sensibility
## 9616                                                                                                                                                Four Rooms
## 9617                                                                                                                                                Persuasion
## 9618                                                                                                                                                      Babe
## 9619                                                                                                                                           Dead Presidents
## 9620                                                                                                                                               Restoration
## 9621                                                                                                                               Indian in the Cupboard, The
## 9622                                                                                                                                        Mr. Holland's Opus
## 9623                                                                                                                                              White Squall
## 9624                                                                                                                                               Black Sheep
## 9625                                                                                                                                           Beautiful Girls
## 9626                                                                                                                                              Broken Arrow
## 9627                                                                                                                                             Happy Gilmore
## 9628                                                                                                                                    Muppet Treasure Island
## 9629                                                                                                                                                Braveheart
## 9630                                                                                                                       Rumble in the Bronx (Hont faan kui)
## 9631                                                                                                                                             Birdcage, The
## 9632                                                                                                                                                   Rob Roy
## 9633                                                                                                                                              Strange Days
## 9634                                                                                                               Far From Home: The Adventures of Yellow Dog
## 9635                                                                                                                        Star Wars: Episode IV - A New Hope
## 9636                                                                                                       Like Water for Chocolate (Como agua para chocolate)
## 9637                                                                                                                                       Legends of the Fall
## 9638                                                                                                                               Madness of King George, The
## 9639                                                                                                                                    Miracle on 34th Street
## 9640                                                                                                                                                 My Family
## 9641                                                                                                                                       Murder in the First
## 9642                                                                                                                                                      Nell
## 9643                                                                                                                                      Natural Born Killers
## 9644                                                                                                   Léon: The Professional (a.k.a. The Professional) (Léon)
## 9645                                                                                                                                         Perez Family, The
## 9646                                                                                                                                              Pulp Fiction
## 9647                                                                                                                                 Secret of Roan Inish, The
## 9648                                                                                                                                                  Stargate
## 9649                                                                                                                                 Shawshank Redemption, The
## 9650                                                                                                                               What's Eating Gilbert Grape
## 9651                                                                                                                                               Client, The
## 9652                                                                                                                                                 Crow, The
## 9653                                                                                                                                              Forrest Gump
## 9654                                                                                                                                          Jungle Book, The
## 9655                                                                                                                                            Lion King, The
## 9656                                                                                                                                                  Maverick
## 9657                                                                                                                                                Wyatt Earp
## 9658                                                                                                                                     Age of Innocence, The
## 9659                                                                                                                                             Carlito's Way
## 9660                                                                                                                                               Cliffhanger
## 9661                                                                                                                                              Widows' Peak
## 9662                                                                                                                                                 Firm, The
## 9663                                                                                                                                             Fugitive, The
## 9664                                                                                                                                       In the Line of Fire
## 9665                                                                                                                                 In the Name of the Father
## 9666                                                                                                                                             Jurassic Park
## 9667                                                                                                                                   Man Without a Face, The
## 9668                                                                                                                                         Menace II Society
## 9669                                                                                                                                                Piano, The
## 9670                                                                                                                                   Remains of the Day, The
## 9671                                                                                                                                                      Rudy
## 9672                                                                                                                                        Secret Garden, The
## 9673                                                                                                                                              Blade Runner
## 9674                                                                                                                                                 Tombstone
## 9675                                                                                                                                                Home Alone
## 9676                                                                                                                                                     Ghost
## 9677                                                                                                                                Terminator 2: Judgment Day
## 9678                                                                                                                                        Dances with Wolves
## 9679                                                                                                                                                    Batman
## 9680                                                                                                                                 Silence of the Lambs, The
## 9681                                                                                                                                      Beauty and the Beast
## 9682                                                                                                                                              Pretty Woman
## 9683                                                                                                                  Homeward Bound II: Lost in San Francisco
## 9684                                                                                                                                               Heavy Metal
## 9685                                                                                                                                                 Jane Eyre
## 9686                                                                                                                                           Aristocats, The
## 9687                                                                                                                                               Primal Fear
## 9688                                                                                                                                   All Dogs Go to Heaven 2
## 9689                                                                                                                                                Sgt. Bilko
## 9690                                                                                                                                       Mission: Impossible
## 9691                                                                                                                                             Moll Flanders
## 9692                                                                                                                                               Dragonheart
## 9693                                                                                                                                                  Faithful
## 9694                                                                                                                                           Substitute, The
## 9695                                                                                                                                          Mulholland Falls
## 9696                                                                                                                              Truth About Cats & Dogs, The
## 9697                                                                                                                                          Oliver & Company
## 9698                                                                                                                                                   Flipper
## 9699                                                                                                                                              Multiplicity
## 9700                                                                                                                                                Craft, The
## 9701                                                                                                                                                 Rock, The
## 9702                                                                                                                                                   Twister
## 9703                                                                                                                                                  Spy Hard
## 9704                                                                                                                             Independence Day (a.k.a. ID4)
## 9705                                                                                                                                            Cable Guy, The
## 9706                                                                                                                                      Nutty Professor, The
## 9707                                                                                                                                          Escape from L.A.
## 9708                                                                                                                                                   Tin Cup
## 9709                                                                                                                             Robin Hood: Prince of Thieves
## 9710                                                                                                                                       Sound of Music, The
## 9711                                                                                                                       Willy Wonka & the Chocolate Factory
## 9712                                                                                                                                          Bonnie and Clyde
## 9713                                                                                                                                E.T. the Extra-Terrestrial
## 9714                                                                                                                                                 Toy Story
## 9715                                                                                                                                                   Jumanji
## 9716                                                                                                                                   American President, The
## 9717                                                                                                                                                 Apollo 13
## 9718                                                                                                                        Star Wars: Episode IV - A New Hope
## 9719                                                                                                                                         Santa Clause, The
## 9720                                                                                                                                 Shawshank Redemption, The
## 9721                                                                                                                                              Forrest Gump
## 9722                                                                                                                                                 Mask, The
## 9723                                                                                                                                                 True Lies
## 9724                                                                                                                                                 Firm, The
## 9725                                                                                                                                             Fugitive, The
## 9726                                                                                               Englishman Who Went Up a Hill But Came Down a Mountain, The
## 9727                                                                                                                                             Jurassic Park
## 9728                                                                                                                                            Mrs. Doubtfire
## 9729                                                                                                                                          Schindler's List
## 9730                                                                                                                                      Sleepless in Seattle
## 9731                                                                                                                                              Blade Runner
## 9732                                                                                                                                                Home Alone
## 9733                                                                                                                                                     Ghost
## 9734                                                                                                                                        Dances with Wolves
## 9735                                                                                                                                                    Batman
## 9736                                                                                                                                              Pretty Woman
## 9737                                                                                                                                             Trainspotting
## 9738                                                                                                                             Independence Day (a.k.a. ID4)
## 9739                                                                                                                                               Rear Window
## 9740                                                                                                                                        North by Northwest
## 9741                                                                                                                                                Casablanca
## 9742                                                                                                                                              My Fair Lady
## 9743                                                                                                                                          To Catch a Thief
## 9744                                                                                                                                       Father of the Bride
## 9745                                                                                                                                     It's a Wonderful Life
## 9746                                                                                                                                       Sound of Music, The
## 9747                                                                                                                       Willy Wonka & the Chocolate Factory
## 9748                                                                                                                                E.T. the Extra-Terrestrial
## 9749                                                                                                                                              My Left Foot
## 9750                                                                                                            Star Wars: Episode V - The Empire Strikes Back
## 9751                                                                                                                                       Princess Bride, The
## 9752                                                                                   Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 9753                                                                                                                                                    Aliens
## 9754                                                                                                                                          Right Stuff, The
## 9755                                                                                                                                             Groundhog Day
## 9756                                                                                                                                        Back to the Future
## 9757                                                                                                                                        Young Frankenstein
## 9758                                                                                                                        Indiana Jones and the Last Crusade
## 9759                                                                                                                                               Being There
## 9760                                                                                                                                           Field of Dreams
## 9761                                                                                                                             Star Trek IV: The Voyage Home
## 9762                                                                                                                                             Jerry Maguire
## 9763                                                                                                                                                   Michael
## 9764                                                                                                                                 Men in Black (a.k.a. MIB)
## 9765                                                                                                                                             Air Force One
## 9766                                                                                                                                                   Titanic
## 9767                                                                                                                              There's Something About Mary
## 9768                                                                                                                                                   Oliver!
## 9769                                                                                                                                             Out of Africa
## 9770                                                                                                                                               Beetlejuice
## 9771                                                                                                                                     Babe: Pig in the City
## 9772                                                                                                                                           Karate Kid, The
## 9773                                                                                                                                        Jumpin' Jack Flash
## 9774                                                                                                                                     Peggy Sue Got Married
## 9775                                                                                                                       Ghostbusters (a.k.a. Ghost Busters)
## 9776                                                                                                                                    Little Shop of Horrors
## 9777                                                                                                                                          Sixth Sense, The
## 9778                                                                                                                                           Heaven Can Wait
## 9779                                                                                                                                                 Airplane!
## 9780                                                                                                                                                       Big
## 9781                                                                                                                                  Ferris Bueller's Day Off
## 9782                                                                                                                                              Time Bandits
## 9783                                                                                                                                                Moonstruck
## 9784                                                                                                                                    Cider House Rules, The
## 9785                                                                                                                                                Sister Act
## 9786                                                                                                                                                 Frequency
## 9787                                                                                                                                                 Gladiator
## 9788                                                                                                                                                   Starman
## 9789                                                                                                                                        Perfect Storm, The
## 9790                                                                                                                                       Lilies of the Field
## 9791                                                                                                                                                     Shrek
## 9792                                                                                                                                            Monsters, Inc.
## 9793                                                                                                                                            Ocean's Eleven
## 9794                                                                                                                                            Kate & Leopold
## 9795                                                                                                        Lord of the Rings: The Fellowship of the Ring, The
## 9796                                                                                                                                         Beautiful Mind, A
## 9797                                                                                                                                                   Ice Age
## 9798                                                                                                                                  My Big Fat Greek Wedding
## 9799                                                                                                                                                Spider-Man
## 9800                                                                                                                                      Bourne Identity, The
## 9801                                                                                                                   Harry Potter and the Chamber of Secrets
## 9802                                                                                                                    Lord of the Rings: The Two Towers, The
## 9803                                                                                                                                       Catch Me If You Can
## 9804                                                                                                                                              Pianist, The
## 9805                                                                                                                                      Bend It Like Beckham
## 9806                                                                                                                                                     Holes
## 9807                                                                                                                                            Bruce Almighty
## 9808                                                                                                                                              Finding Nemo
## 9809                                                                                                    Pirates of the Caribbean: The Curse of the Black Pearl
## 9810                                                                                                                                            School of Rock
## 9811                                                                                                                                         Kill Bill: Vol. 1
## 9812                                                                                                                                                  Big Fish
## 9813                                                                                                            Lord of the Rings: The Return of the King, The
## 9814                                                                                                                     Eternal Sunshine of the Spotless Mind
## 9815                                                                                                                                                   Shrek 2
## 9816                                                                                                                                             Terminal, The
## 9817                                                                                                                                                   Roxanne
## 9818                                                                                                                                              Spider-Man 2
## 9819                                                                                                                     Sky Captain and the World of Tomorrow
## 9820                                                                                                                                          Incredibles, The
## 9821                                                                                                                                         National Treasure
## 9822                                                                                                                                  Spirit of St. Louis, The
## 9823                                                                                                                                              White Nights
## 9824                                                                                                                                       Million Dollar Baby
## 9825                                                                                                                                              Hotel Rwanda
## 9826                                                                                                                                              Aviator, The
## 9827                                                                                                                                           Hobson's Choice
## 9828                                                                                                               Howl's Moving Castle (Hauru no ugoku shiro)
## 9829                                                                                                                                                     Hitch
## 9830                                                                                                                     Hitchhiker's Guide to the Galaxy, The
## 9831                                                                                                                                            Over the Hedge
## 9832                                                                                                                                                      Cars
## 9833                                                                                                                                           Lake House, The
## 9834                                                                                                                                     Stranger than Fiction
## 9835                                                                                                                                                  Stardust
## 9836                                                                                                                                                      Juno
## 9837                                                                                                                                                 Toy Story
## 9838                                                                                                                                                   Jumanji
## 9839                                                                                                                               Father of the Bride Part II
## 9840                                                                                                                            Ace Ventura: When Nature Calls
## 9841                                                                                                                                                      Babe
## 9842                                                                                                                                                  Clueless
## 9843                                                                                                                                                Pocahontas
## 9844                                                                                                                                             Happy Gilmore
## 9845                                                                                                                                                    Casper
## 9846                                                                                                                           Dumb & Dumber (Dumb and Dumber)
## 9847                                                                                                                                        Little Princess, A
## 9848                                                                                                                                              Pulp Fiction
## 9849                                                                                                                                 Shawshank Redemption, The
## 9850                                                                                                                                Ace Ventura: Pet Detective
## 9851                                                                                                                                              Forrest Gump
## 9852                                                                                                                               Four Weddings and a Funeral
## 9853                                                                                                                                            Lion King, The
## 9854                                                                                                                                               Richie Rich
## 9855                                                                                                                                      Addams Family Values
## 9856                                                                                                                                            Mrs. Doubtfire
## 9857                                                                                                                                          Schindler's List
## 9858                                                                                                                                                Home Alone
## 9859                                                                                                                                                     Ghost
## 9860                                                                                                                                      Beauty and the Beast
## 9861                                                                                                                                                 Pinocchio
## 9862                                                                                                                                              Pretty Woman
## 9863                                                                                                                                      Nutty Professor, The
## 9864                                                                                                                                         Wizard of Oz, The
## 9865                                                                                                                                       Father of the Bride
## 9866                                                                                                                                             Cool Runnings
## 9867                                                                                                                                              Mary Poppins
## 9868                                                                                                                                       Sound of Music, The
## 9869                                                                                                                       Willy Wonka & the Chocolate Factory
## 9870                                                                                                                           One Flew Over the Cuckoo's Nest
## 9871                                                                                                                                             Groundhog Day
## 9872                                                                                                                                        Back to the Future
## 9873                                                                                                                    Romy and Michele's High School Reunion
## 9874                                                                                                                                          Truman Show, The
## 9875                                                                                                                                         Good Will Hunting
## 9876                                                                                                                                                   Titanic
## 9877                                                                                                                                                     Rocky
## 9878                                                                                                                                       Breakfast Club, The
## 9879                                                                                                                                Back to the Future Part II
## 9880                                                                                                                               Back to the Future Part III
## 9881                                                                                                                                       Saving Private Ryan
## 9882                                                                                                                                  Honey, I Shrunk the Kids
## 9883                                                                                                                                          Parent Trap, The
## 9884                                                                                                                                      Nutty Professor, The
## 9885                                                                                                                                              My Bodyguard
## 9886                                                                                                                                           My Cousin Vinny
## 9887                                                                                                                                             Pleasantville
## 9888                                                                                                                                             Bug's Life, A
## 9889                                                                                                                  Police Academy 2: Their First Assignment
## 9890                                                                                                                                              American Pie
## 9891                                                                                                                                  Ferris Bueller's Day Off
## 9892                                                                                                                                  Who Framed Roger Rabbit?
## 9893                                                                                                                                               Toy Story 2
## 9894                                                                                                                                             Wayne's World
## 9895                                                                                                                                          Romeo and Juliet
## 9896                                                                                                                                                 Footloose
## 9897                                                                                                                            Nutty Professor II: The Klumps
## 9898                                                                                                                                          Meet the Parents
## 9899                                                                                                                                          Charlie's Angels
## 9900                                                                                                                           Crocodile Dundee in Los Angeles
## 9901                                                                                                                                                     Shrek
## 9902                                                                                                                                              Donnie Darko
## 9903                                                                                                                                            Monsters, Inc.
## 9904                                                                   Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 9905                                                                                                        Lord of the Rings: The Fellowship of the Ring, The
## 9906                                                                                                                                      Three Men and a Baby
## 9907                                                                                                                                                Spider-Man
## 9908                                                                                                                   Harry Potter and the Chamber of Secrets
## 9909                                                                                                                    Lord of the Rings: The Two Towers, The
## 9910                                                                                                                                              Finding Nemo
## 9911                                                                                                    Pirates of the Caribbean: The Curse of the Black Pearl
## 9912                                                                                                            Lord of the Rings: The Return of the King, The
## 9913                                                                                                                     Eternal Sunshine of the Spotless Mind
## 9914                                                                                                                                          Incredibles, The
## 9915                                                                                                                                         Definitely, Maybe
## 9916                                                                                                                                           Angels & Demons
## 9917                                                                                                                                      (500) Days of Summer
## 9918                                                                                                                                                 Toy Story
## 9919                                                                                                                                          Grumpier Old Men
## 9920                                                                                                                               Father of the Bride Part II
## 9921                                                                                                                                                   Sabrina
## 9922                                                                                                                                              Sudden Death
## 9923                                                                                                                               Dracula: Dead and Loving It
## 9924                                                                                                                                                     Nixon
## 9925                                                                                                                                     Sense and Sensibility
## 9926                                                                                                                                         Leaving Las Vegas
## 9927                                                                                                                                                   Othello
## 9928                                                                                                                        Twelve Monkeys (a.k.a. 12 Monkeys)
## 9929                                                                                                                                          Dead Man Walking
## 9930                                                                                                                                          Mighty Aphrodite
## 9931                                                                                                                                Postman, The (Postino, Il)
## 9932                                                                                                                                            Eye for an Eye
## 9933                                                                                                                                        Mr. Holland's Opus
## 9934                                                                                  Don't Be a Menace to South Central While Drinking Your Juice in the Hood
## 9935                                                                                                                                                  Bio-Dome
## 9936                                                                                                                                                 Screamers
## 9937                                                                                                                                                Juror, The
## 9938                                                                                                                   Things to Do in Denver When You're Dead
## 9939                                                                                                                                  Antonia's Line (Antonia)
## 9940                                                                                                                                              White Squall
## 9941                                                                                                                                               Black Sheep
## 9942                                                                                                                                               Mary Reilly
## 9943                                                                                                                                              Broken Arrow
## 9944                                                                                                                                                 City Hall
## 9945                                                                                                                                             Happy Gilmore
## 9946                                                                                                                                    Muppet Treasure Island
## 9947                                                                                                                       Rumble in the Bronx (Hont faan kui)
## 9948                                                                                                                                            Down Periscope
## 9949                                                                                                                                             Birdcage, The
## 9950                                                                                                                                           River Wild, The
## 9951                                                                                                                                        Executive Decision
## 9952                                                                                                                                                     Fargo
## 9953                                                                                                                  Homeward Bound II: Lost in San Francisco
## 9954                                                                                                                                                 Jane Eyre
## 9955                                                                                                                                               Primal Fear
## 9956                                                                                                                                   All Dogs Go to Heaven 2
## 9957                                                                                                                                                Sgt. Bilko
## 9958                                                                                                                                                Diabolique
## 9959                                                                                                                                       Mission: Impossible
## 9960                                                                                                                                               Dragonheart
## 9961                                                                                                                                 James and the Giant Peach
## 9962                                                                                                                             Kids in the Hall: Brain Candy
## 9963                                                                                                      Bloodsport 2 (a.k.a. Bloodsport II: The Next Kumite)
## 9964                                                                                                                   Mystery Science Theater 3000: The Movie
## 9965                                                                                                                                                 Space Jam
## 9966                                                                                                                                           Substitute, The
## 9967                                                                                                                                                Quest, The
## 9968                                                                                                                                          Mulholland Falls
## 9969                                                                                                                              Truth About Cats & Dogs, The
## 9970                                                                                                                                                   Flipper
## 9971                                                                                                                                              Multiplicity
## 9972                                                                                                                                                Craft, The
## 9973                                                                                                                                                 Rock, The
## 9974                                                                                                                                                   Twister
## 9975                                                                                                                                                 Barb Wire
## 9976                                                                                                                                                  Spy Hard
## 9977                                                                                                                           Wallace & Gromit: A Close Shave
## 9978                                                                                                                                              Arrival, The
## 9979                                                                                                                                              Phantom, The
## 9980                                                                                                                                                Striptease
## 9981                                                                                                                             Independence Day (a.k.a. ID4)
## 9982                                                                                                                                            Cable Guy, The
## 9983                                                                                                                                                   Kingpin
## 9984                                                                                                                                                    Eraser
## 9985                                                                                                                                      Nutty Professor, The
## 9986                                                                                                                                          Frighteners, The
## 9987                                                                                                                                                Phenomenon
## 9988                                                                                                                                           Time to Kill, A
## 9989                                                                                                                                                    Kazaam
## 9990                                                                                                                                                    Ransom
## 9991                                                                                                                                 Crow: City of Angels, The
## 9992                                                                                                                                          Escape from L.A.
## 9993                                                                                                                                                   Tin Cup
## 9994                                                                                                                                 Island of Dr. Moreau, The
## 9995                                                                           Halloween: The Curse of Michael Myers (Halloween 6: The Curse of Michael Myers)
## 9996                                                                                                                      William Shakespeare's Romeo + Juliet
## 9997                                                                                                                                                  Sleepers
## 9998                                                                                                                       Willy Wonka & the Chocolate Factory
## 9999                                                                                                                                  Star Trek: First Contact
## 10000                                                                                                                                           101 Dalmatians
## 10001                                                                                                                                    Celluloid Closet, The
## 10002                                                                                                                               Terminator 2: Judgment Day
## 10003                                                                                                                                       North by Northwest
## 10004                                                                                                                                              Bob Roberts
## 10005                                                                                                                                              Stand by Me
## 10006                                                                                                                                           Big Sleep, The
## 10007                                                                                                                                        L.A. Confidential
## 10008                                                                                                                                            Boogie Nights
## 10009                                                                                                                                         Chariots of Fire
## 10010                                                                                                                                          American Beauty
## 10011                                                                                                                                             Natural, The
## 10012                                                                                                                                   End of the Affair, The
## 10013                                                                                                                                                 Magnolia
## 10014                                                                                                                                      She's Gotta Have It
## 10015                                                                                                                                            High Fidelity
## 10016                                                                                           8 ½ Women (a.k.a. 8 1/2 Women) (a.k.a. Eight and a Half Women)
## 10017                                                                                                             Faraway, So Close (In weiter Ferne, so nah!)
## 10018                                                                                                                                   Stranger Than Paradise
## 10019                                                                                                                      Creature from the Black Lagoon, The
## 10020                                                                                                                                       Invisible Man, The
## 10021                                                                                                                              Unsinkable Molly Brown, The
## 10022                                                                                                                        Strange Love of Martha Ivers, The
## 10023                                                                                                                                                   Detour
## 10024                                                                                                                                                Toy Story
## 10025                                                                                                                                                  Jumanji
## 10026                                                                                                                                     Seven (a.k.a. Se7en)
## 10027                                                                                                                                      Usual Suspects, The
## 10028                                                                                                                                               Braveheart
## 10029                                                                                                                                                Apollo 13
## 10030                                                                                                                       Star Wars: Episode IV - A New Hope
## 10031                                                                                                                                             Pulp Fiction
## 10032                                                                                                                                Shawshank Redemption, The
## 10033                                                                                                                                             Forrest Gump
## 10034                                                                                                                                            Jurassic Park
## 10035                                                                                                                                         Schindler's List
## 10036                                                                                                                                             Blade Runner
## 10037                                                                                                                                Silence of the Lambs, The
## 10038                                                                                                                                                    Fargo
## 10039                                                                                                                                            Trainspotting
## 10040                                                                                                                                           Godfather, The
## 10041                                                                                                                                               Casablanca
## 10042                                                                                                                                    2001: A Space Odyssey
## 10043                                                                                                                                                 Die Hard
## 10044                                                                                                           Star Wars: Episode V - The Empire Strikes Back
## 10045                                                                                                                                                   Aliens
## 10046                                                                                                                                      Clockwork Orange, A
## 10047                                                                                                                                           Apocalypse Now
## 10048                                                                                                                                               Goodfellas
## 10049                                                                                                                                  Godfather: Part II, The
## 10050                                                                                                                                        Full Metal Jacket
## 10051                                                                                                                                       Dead Poets Society
## 10052                                                                                                                                             Shining, The
## 10053                                                                                                                                       Back to the Future
## 10054                                                                                                                                         Truman Show, The
## 10055                                                                                                                                                 Rain Man
## 10056                                                                                                                                       Mask of Zorro, The
## 10057                                                                                                                                      Saving Private Ryan
## 10058                                                                                                                      Life Is Beautiful (La Vita è bella)
## 10059                                                                                                                                                 Rushmore
## 10060                                                                                                                                              Matrix, The
## 10061                                                                                                                Star Wars: Episode I - The Phantom Menace
## 10062                                                                                                                                Run Lola Run (Lola rennt)
## 10063                                                                                                                                         Sixth Sense, The
## 10064                                                                                                                                          American Beauty
## 10065                                                                                                                                 Ferris Bueller's Day Off
## 10066                                                                                                                                               Fight Club
## 10067                                                                                                                                              Toy Story 2
## 10068                                                                                                                                            High Fidelity
## 10069                                                                                                                                                Gladiator
## 10070                                                                                                                                       Gone in 60 Seconds
## 10071                                                                                                                                             Patriot, The
## 10072                                                                                                                                                    X-Men
## 10073                                                                                                                                            Almost Famous
## 10074                                                                                                                                      Requiem for a Dream
## 10075                                                                                                         Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 10076                                                                                                                                                   Snatch
## 10077                                                                                                                                          What Women Want
## 10078                                                                                                                                                Cast Away
## 10079                                                                                                                                        Miss Congeniality
## 10080                                                                                                                               O Brother, Where Art Thou?
## 10081                                                                                                                                                  Memento
## 10082                                                                                                                                    Bridget Jones's Diary
## 10083                                                                                                                                                 Scarface
## 10084                                                                                                                                                    Shrek
## 10085                                                                                                                                           Legally Blonde
## 10086                                                                                                                                              Others, The
## 10087                                                                                                                                             Donnie Darko
## 10088                                                                                                                                           Monsters, Inc.
## 10089                                                                                                                                           Ocean's Eleven
## 10090                                                                                                            Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 10091                                                                                                                                    Royal Tenenbaums, The
## 10092                                                                                                       Lord of the Rings: The Fellowship of the Ring, The
## 10093                                                                                                                                        Beautiful Mind, A
## 10094                                                                                                                                                  Ice Age
## 10095                                                                                                                                               Spider-Man
## 10096                                                                                                             Star Wars: Episode II - Attack of the Clones
## 10097                                                                                                                                     Bourne Identity, The
## 10098                                                                                                                                          Minority Report
## 10099                                                                                                                                                Ring, The
## 10100                                                                                                                                              Equilibrium
## 10101                                                                                                                   Lord of the Rings: The Two Towers, The
## 10102                                                                                                                                      Catch Me If You Can
## 10103                                                                                                                                             Pianist, The
## 10104                                                                                                                                         X2: X-Men United
## 10105                                                                                                                                             Finding Nemo
## 10106                                                                                                                                            28 Days Later
## 10107                                                                                                   Pirates of the Caribbean: The Curse of the Black Pearl
## 10108                                                                                                                                      Lost in Translation
## 10109                                                                                                                                           School of Rock
## 10110                                                                                                                                        Kill Bill: Vol. 1
## 10111                                                                                                                                  Matrix Revolutions, The
## 10112                                                                                                                                        Last Samurai, The
## 10113                                                                                                                                                 Big Fish
## 10114                                                                                                           Lord of the Rings: The Return of the King, The
## 10115                                                                                                                                     The Butterfly Effect
## 10116                                                                                                                    Eternal Sunshine of the Spotless Mind
## 10117                                                                                                                                        Kill Bill: Vol. 2
## 10118                                                                                                                                                     Troy
## 10119                                                                                                                                         Band of Brothers
## 10120                                                                                                                                                 I, Robot
## 10121                                                                                                                                        Shaun of the Dead
## 10122                                                                                                                                            The Machinist
## 10123                                                                                                                                         Incredibles, The
## 10124                                                                                                                                              Constantine
## 10125                                                                                                                                            Batman Begins
## 10126                                                                                                                                              Lord of War
## 10127                                                                                          Chronicles of Narnia: The Lion, the Witch and the Wardrobe, The
## 10128                                                                                                                                           V for Vendetta
## 10129                                                                                                                                    Thank You for Smoking
## 10130                                                                                                                                       Da Vinci Code, The
## 10131                                                                                                                                     Little Miss Sunshine
## 10132                                                                                                                                         Illusionist, The
## 10133                                                                      Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan
## 10134                                                                                                                Pan's Labyrinth (Laberinto del fauno, El)
## 10135                                                                                                                                            Departed, The
## 10136                                                                                                                                            Casino Royale
## 10137                                                                                                                                              Ratatouille
## 10138                                                                                                                                                 Hot Fuzz
## 10139                                                                                                                                                   Zodiac
## 10140                                                                                                                                                      300
## 10141                                                                                                                                               Grindhouse
## 10142                                                                                                                                             Spider-Man 3
## 10143                                                                                                                                               Knocked Up
## 10144                                                                                                                                           28 Weeks Later
## 10145                                                                                                                 Pirates of the Caribbean: At World's End
## 10146                                                                                                                                         Ocean's Thirteen
## 10147                                                                                                                                              Death Proof
## 10148                                                                                                                                    Live Free or Die Hard
## 10149                                                                                                                                             Transformers
## 10150                                                                                                                Harry Potter and the Order of the Phoenix
## 10151                                                                                                                                                 Stardust
## 10152                                                                                                                                      Simpsons Movie, The
## 10153                                                                                                                                    Bourne Ultimatum, The
## 10154                                                                                                                                                 Superbad
## 10155                                                                                                                                             3:10 to Yuma
## 10156                                                                                                                                            Into the Wild
## 10157                                                                                                                                  Darjeeling Limited, The
## 10158                                                                                                                                        American Gangster
## 10159                                                                                                                                   No Country for Old Men
## 10160                                                                                                                                              I Am Legend
## 10161                                                                                                                                                     Juno
## 10162                                                                                                           Sweeney Todd: The Demon Barber of Fleet Street
## 10163                                                                                                                                      There Will Be Blood
## 10164                                                                                                                                         Dark Knight, The
## 10165                                                                                                                                                 Iron Man
## 10166                                                                                                                                                   WALL·E
## 10167                                                                                                                                       Burn After Reading
## 10168                                                                                                                     Curious Case of Benjamin Button, The
## 10169                                                                                                                                     Inglourious Basterds
## 10170                                                                                                                                 X-Men Origins: Wolverine
## 10171                                                                                                                                                Star Trek
## 10172                                                                                                                                                       Up
## 10173                                                                                                                                            Hangover, The
## 10174                                                                                                                                                   Avatar
## 10175                                                                                                                                           Shutter Island
## 10176                                                                                                                                                Inception
## 10177                                                                                                                              Scott Pilgrim vs. the World
## 10178                                                                                                                                                127 Hours
## 10179                                                                                                                                               Black Swan
## 10180                                                                                                                                                True Grit
## 10181                                                                                                                                        Midnight in Paris
## 10182                                                                                                                       Captain America: The First Avenger
## 10183                                                                                                                           Rise of the Planet of the Apes
## 10184                                                                                                                                                Moneyball
## 10185                                                                                                                                            Avengers, The
## 10186                                                                                                                                   Dark Knight Rises, The
## 10187                                                                                                                                             Intouchables
## 10188                                                                                                                                         Moonrise Kingdom
## 10189                                                                                                                                              Cloud Atlas
## 10190                                                                                                                                               Life of Pi
## 10191                                                                                                                                         Django Unchained
## 10192                                                                                                                                  Star Trek Into Darkness
## 10193                                                                                                                                              World War Z
## 10194                                                                                                                                               About Time
## 10195                                                                                                                                                  Gravity
## 10196                                                                                                                                         12 Years a Slave
## 10197                                                                                                                                       Dallas Buyers Club
## 10198                                                                                                                                                      Her
## 10199                                                                                                                                             Interstellar
## 10200                                                                                                                                                 Whiplash
## 10201                                                                                                                                  Guardians of the Galaxy
## 10202                                                                                                                                          American Sniper
## 10203                                                                                                                                               Ex Machina
## 10204                                                                                                                                       The Imitation Game
## 10205                                                                                                                                 The Theory of Everything
## 10206                                                                                                                                       Mad Max: Fury Road
## 10207                                                                                                               Star Wars: Episode VII - The Force Awakens
## 10208                                                                                                                                                 Deadpool
## 10209                                                                                                                               Captain America: Civil War
## 10210                                                                                                                                              The Martian
## 10211                                                                                                                       Batman v Superman: Dawn of Justice
## 10212                                                                                                                                             The Revenant
## 10213                                                                                                                                                Spotlight
## 10214                                                                                                                                The Huntsman Winter's War
## 10215                                                                                                                                                Toy Story
## 10216                                                                                                                                                  Jumanji
## 10217                                                                                                                                                     Heat
## 10218                                                                                                                                                GoldenEye
## 10219                                                                                                                                         Cutthroat Island
## 10220                                                                                                                                                   Casino
## 10221                                                                                                                           Ace Ventura: When Nature Calls
## 10222                                                                                                                                               Get Shorty
## 10223                                                                                                                                        Leaving Las Vegas
## 10224                                                                                                                                          Dangerous Minds
## 10225                                                                                                                       Twelve Monkeys (a.k.a. 12 Monkeys)
## 10226                                                                                                                                                     Babe
## 10227                                                                                                                                         Dead Man Walking
## 10228                                                                                                                                                 Clueless
## 10229                                                                                                                                            Mortal Kombat
## 10230                                                                                                                                     Seven (a.k.a. Se7en)
## 10231                                                                                                                                               Pocahontas
## 10232                                                                                                                                      Usual Suspects, The
## 10233                                                                                                                              Indian in the Cupboard, The
## 10234                                                                                 Don't Be a Menace to South Central While Drinking Your Juice in the Hood
## 10235                                                                                                                                                 Bio-Dome
## 10236                                                                                                                                                   Friday
## 10237                                                                                                                                      From Dusk Till Dawn
## 10238                                                                                                                                                 Shopping
## 10239                                                                                                                                            Bottle Rocket
## 10240                                                                                                                                            Happy Gilmore
## 10241                                                                                                                                   Muppet Treasure Island
## 10242                                                                                                                                               Braveheart
## 10243                                                                                                                                              Taxi Driver
## 10244                                                                                                                      Rumble in the Bronx (Hont faan kui)
## 10245                                                                                                                                                 Bad Boys
## 10246                                                                                                                                  Basketball Diaries, The
## 10247                                                                                                                                                Apollo 13
## 10248                                                                                                                                           Batman Forever
## 10249                                                                                                                                                   Casper
## 10250                                                                                                                                                    Congo
## 10251                                                                                                                                                Desperado
## 10252                                                                                                                               Die Hard: With a Vengeance
## 10253                                                                                                                                             First Knight
## 10254                                                                                                                         Free Willy 2: The Adventure Home
## 10255                                                                                                                                          Johnny Mnemonic
## 10256                                                                                                                                              Judge Dredd
## 10257                                                                                                                                                     Kids
## 10258                                                                                                                                        Lord of Illusions
## 10259                                                                                                                                                 Mallrats
## 10260                                                                                                                                                 Net, The
## 10261                                                                                                                                                Showgirls
## 10262                                                                                                                                             Strange Days
## 10263                                                                                                                                               Waterworld
## 10264                                                                                                                                           Before Sunrise
## 10265                                                                                                                                            Billy Madison
## 10266                                                                                                                                                   Clerks
## 10267                                                                                                                          Dumb & Dumber (Dumb and Dumber)
## 10268                                                                                                                                                  Exotica
## 10269                                                                                                                                                  Ed Wood
## 10270                                                                                                                                           Goofy Movie, A
## 10271                                                                                                                                              Hoop Dreams
## 10272                                                                                                                                       Heavenly Creatures
## 10273                                                                                                       Interview with the Vampire: The Vampire Chronicles
## 10274                                                                                                                                                   Junior
## 10275                                                                                                                            Kid in King Arthur's Court, A
## 10276                                                                                                                       Star Wars: Episode IV - A New Hope
## 10277                                                                                                                                      Legends of the Fall
## 10278                                                                                                                                              Major Payne
## 10279                                                                                                                                     Natural Born Killers
## 10280                                                                                                                                                 Outbreak
## 10281                                                                                                  Léon: The Professional (a.k.a. The Professional) (Léon)
## 10282                                                                                                                                             Pulp Fiction
## 10283                                                                                                                                                Quiz Show
## 10284                                                                                                                                                 Stargate
## 10285                                                                                                                                Shawshank Redemption, The
## 10286                                                                                                                                            Shallow Grave
## 10287                                                                                                                                     Swimming with Sharks
## 10288                                                                                                                                                Tank Girl
## 10289                                                                                                                                                Tommy Boy
## 10290                                                                                                                              What's Eating Gilbert Grape
## 10291                                                                                                                                               Virtuosity
## 10292                                                                                                                               Ace Ventura: Pet Detective
## 10293                                                                                                                                 Clear and Present Danger
## 10294                                                                                                                                                 Crooklyn
## 10295                                                                                                                                                Crow, The
## 10296                                                                                                                                             Forrest Gump
## 10297                                                                                                                                           Lion King, The
## 10298                                                                                                                                                Mask, The
## 10299                                                                                                                                                 Maverick
## 10300                                                                                                                                              Richie Rich
## 10301                                                                                                                                                    Speed
## 10302                                                                                                                                                True Lies
## 10303                                                                                                                                  In the Mouth of Madness
## 10304                                                                                                                                            Above the Rim
## 10305                                                                                                                                     Addams Family Values
## 10306                                                                                                                                                 Airheads
## 10307                                                                                                                                            Bronx Tale, A
## 10308                                                                                                                                            Carlito's Way
## 10309                                                                                                                                                Coneheads
## 10310                                                                                                                                       Dazed and Confused
## 10311                                                                                                                                           Demolition Man
## 10312                                                                                                                                                    Fresh
## 10313                                                                                                                                            Fugitive, The
## 10314                                                                                                                                     Hot Shots! Part Deux
## 10315                                                                                                                                     Hudsucker Proxy, The
## 10316                                                                                                                                      In the Line of Fire
## 10317                                                                                                                                            Jurassic Park
## 10318                                                                                                                                               Kalifornia
## 10319                                                                                                                                              Killing Zoe
## 10320                                                                                                                                         Last Action Hero
## 10321                                                                                                                                        Menace II Society
## 10322                                                                                                                                   Much Ado About Nothing
## 10323                                                                                                                                           Mrs. Doubtfire
## 10324                                                                                                                                     Next Karate Kid, The
## 10325                                                                                                                                         Perfect World, A
## 10326                                                                                                                                             Philadelphia
## 10327                                                                                                                                           Poetic Justice
## 10328                                                                                                                                                 Ref, The
## 10329                                                                                                                                Robin Hood: Men in Tights
## 10330                                                                                                                                           Romper Stomper
## 10331                                                                                                                                         Schindler's List
## 10332                                                                                                                                             Blade Runner
## 10333                                                                                                                          Nightmare Before Christmas, The
## 10334                                                                                                                                                Tombstone
## 10335                                                                                                                                             True Romance
## 10336                                                                                                                                      Little Rascals, The
## 10337                                                                                                                                   Brady Bunch Movie, The
## 10338                                                                                                                                               Home Alone
## 10339                                                                                                                                                  Aladdin
## 10340                                                                                                                               Terminator 2: Judgment Day
## 10341                                                                                                                                       Dances with Wolves
## 10342                                                                                                                                                   Batman
## 10343                                                                                                                                Silence of the Lambs, The
## 10344                                                                                                                          Snow White and the Seven Dwarfs
## 10345                                                                                                                                     Beauty and the Beast
## 10346                                                                                                                                                Pinocchio
## 10347                                                                                                                                             Pretty Woman
## 10348                                                                                                                                                    Fargo
## 10349                                                                                                                                              Heavy Metal
## 10350                                                                                                                                              Primal Fear
## 10351                                                                                                                                  All Dogs Go to Heaven 2
## 10352                                                                                                                                      Mission: Impossible
## 10353                                                                                                                                              Dragonheart
## 10354                                                                                                                                                Space Jam
## 10355                                                                                                                                          Substitute, The
## 10356                                                                                                                                               Quest, The
## 10357                                                                                                                             Truth About Cats & Dogs, The
## 10358                                                                                                                                             Multiplicity
## 10359                                                                                                                                                Rock, The
## 10360                                                                                                                      Cemetery Man (Dellamorte Dellamore)
## 10361                                                                                                                                                  Twister
## 10362                                                                                                                                                Barb Wire
## 10363                                                                                                                      Ghost in the Shell (Kôkaku kidôtai)
## 10364                                                                                                                                                  Thinner
## 10365                                                                                                                          Wallace & Gromit: A Close Shave
## 10366                                                                                                                                             Arrival, The
## 10367                                                                                                                                             Phantom, The
## 10368                                                                                                                                            Trainspotting
## 10369                                                                                                                            Independence Day (a.k.a. ID4)
## 10370                                                                                                                                           Cable Guy, The
## 10371                                                                                                                                                  Kingpin
## 10372                                                                                                                                                   Eraser
## 10373                                                                                                                                     Nutty Professor, The
## 10374                                                                                                                                         Frighteners, The
## 10375                                                                                                                                               Phenomenon
## 10376                                                                                                                                                   Ransom
## 10377                                                                                                                                         Escape from L.A.
## 10378                                                                                                                                           Godfather, The
## 10379                                                                                                                                Island of Dr. Moreau, The
## 10380                                                                                                                                              Rear Window
## 10381                                                                                                                                           Apartment, The
## 10382                                                                                                                                        Wizard of Oz, The
## 10383                                                                                                                                    2001: A Space Odyssey
## 10384                                                                                                                            Adventures of Robin Hood, The
## 10385                                                                                                                                 Night of the Living Dead
## 10386                                                                                                                   Homeward Bound: The Incredible Journey
## 10387                                                                                                                                            Cool Runnings
## 10388                                                                                                                                               Cinderella
## 10389                                                                                                                                  Sword in the Stone, The
## 10390                                                                                                                            Robin Hood: Prince of Thieves
## 10391                                                                                                                                                    Dumbo
## 10392                                                                                                                                      Alice in Wonderland
## 10393                                                                                                                                   Fox and the Hound, The
## 10394                                                                                                                                                 Die Hard
## 10395                                                                                                                              Ghost and the Darkness, The
## 10396                                                                                                                     William Shakespeare's Romeo + Juliet
## 10397                                                                                                                                                 Swingers
## 10398                                                                                                                                                 Sleepers
## 10399                                                                                                                             Monty Python's Life of Brian
## 10400                                                                                                                                           Reservoir Dogs
## 10401                                                                                                                                                  Platoon
## 10402                                                                                                                                               Doors, The
## 10403                                                                                                                                         Crying Game, The
## 10404                                                                                                                               E.T. the Extra-Terrestrial
## 10405                                                                                                                                                  Top Gun
## 10406                                                                                                                              People vs. Larry Flynt, The
## 10407                                                                                                                                               Abyss, The
## 10408                                                                                                                                     Escape from New York
## 10409                                                                                                                          Monty Python and the Holy Grail
## 10410                                                                                                                     Wallace & Gromit: The Wrong Trousers
## 10411                                                                                                                                             My Left Foot
## 10412                                                                                                                                 Sex, Lies, and Videotape
## 10413                                                                                                                          One Flew Over the Cuckoo's Nest
## 10414                                                                                                                           Cheech and Chong's Up in Smoke
## 10415                                                                                                           Star Wars: Episode V - The Empire Strikes Back
## 10416                                                                                                                                      Princess Bride, The
## 10417                                                                                  Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 10418                                                                                                                                                   Brazil
## 10419                                                                                                                                                   Aliens
## 10420                                                                                       Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il)
## 10421                                                                                                                                             12 Angry Men
## 10422                                                                                                                                       Lawrence of Arabia
## 10423                                                                                                                                      Clockwork Orange, A
## 10424                                                                                                                                           Apocalypse Now
## 10425                                                                                                               Star Wars: Episode VI - Return of the Jedi
## 10426                                                                                                                                               Goodfellas
## 10427                                                                                                                                                    Alien
## 10428                                                                                                                                         Army of Darkness
## 10429                                                                                                                       Killer, The (Die xue shuang xiong)
## 10430                                                                                                                                      Blues Brothers, The
## 10431                                                                                                                                  Godfather: Part II, The
## 10432                                                                                                                                        Full Metal Jacket
## 10433                                                                                                                                                  Amadeus
## 10434                                                                                                                                              Raging Bull
## 10435                                                                                                                                          Terminator, The
## 10436                                                                                                                                   Dead Alive (Braindead)
## 10437                                                                                                                                                    Glory
## 10438                                                                                                                                        Miller's Crossing
## 10439                                                                                                                                       Dead Poets Society
## 10440                                                                                                                                                Chinatown
## 10441                                                                                                                                                Bad Taste
## 10442                                                                                                                                       Better Off Dead...
## 10443                                                                                                                                             Shining, The
## 10444                                                                                                                                              Stand by Me
## 10445                                                                                                                              Evil Dead II (Dead by Dawn)
## 10446                                                                                                                                        Great Escape, The
## 10447                                                                                                                                         Deer Hunter, The
## 10448                                                                                                                                            Groundhog Day
## 10449                                                                                                                                               Unforgiven
## 10450                                                                                                                                       Back to the Future
## 10451                                                                                                                                                    Akira
## 10452                                                                                                                                               Highlander
## 10453                                                                                                                                                 Fantasia
## 10454                                                                                                                                                 Heathers
## 10455                                                                                                                                       This Is Spinal Tap
## 10456                                                                                                                       Indiana Jones and the Last Crusade
## 10457                                                                                                                                                   Gandhi
## 10458                                                                                                                                     Pink Floyd: The Wall
## 10459                                                                                                                                      Killing Fields, The
## 10460                                                                                                                                          Field of Dreams
## 10461                                                                                                                                  Alien³ (a.k.a. Alien 3)
## 10462                                                                                                                          American Werewolf in London, An
## 10463                                                                                                                          Dracula (Bram Stoker's Dracula)
## 10464                                                                                                                                                 Candyman
## 10465                                                                                                                                                Cape Fear
## 10466                                                                                                                                                   Carrie
## 10467                                                                                                                               Nightmare on Elm Street, A
## 10468                                                                                                                                                Omen, The
## 10469                                                                                                                                 Star Trek: First Contact
## 10470                                                                                                                                              Sling Blade
## 10471                                                                                                                                       Jingle All the Way
## 10472                                                                                                                                           101 Dalmatians
## 10473                                                                                                                                               Die Hard 2
## 10474                                                                                                                   Star Trek VI: The Undiscovered Country
## 10475                                                                                                                          Star Trek II: The Wrath of Khan
## 10476                                                                                                                                           Batman Returns
## 10477                                                                                                                                                   Grease
## 10478                                                                                                                                                     Jaws
## 10479                                                                                                                                            Mars Attacks!
## 10480                                                                                                                                            Jerry Maguire
## 10481                                                                                                                                          Raising Arizona
## 10482                                                                                                                                                 Sneakers
## 10483                                                                                                                          Beavis and Butt-Head Do America
## 10484                                                                                                                                                   Scream
## 10485                                                                                                                                Last of the Mohicans, The
## 10486                                                                                                                                             Dante's Peak
## 10487                                                                                                                                                Pest, The
## 10488                                                                                                                                             Lost Highway
## 10489                                                                                                                                            Donnie Brasco
## 10490                                                                                                                                               Saint, The
## 10491                                                                                                                                                Liar Liar
## 10492                                                                                                                                                 Anaconda
## 10493                                                                                                                                      Grosse Pointe Blank
## 10494                                                                                                                                                  Volcano
## 10495                                                                                                              Austin Powers: International Man of Mystery
## 10496                                                                                                                                       Fifth Element, The
## 10497                                                                                                                           Lost World: Jurassic Park, The
## 10498                                                                                                                                                  Con Air
## 10499                                                                                                                                           Batman & Robin
## 10500                                                                                                                                                 Hercules
## 10501                                                                                                                                                 Face/Off
## 10502                                                                                                                                Men in Black (a.k.a. MIB)
## 10503                                                                                                                                                  Contact
## 10504                                                                                                                                      Conan the Barbarian
## 10505                                                                                                                                            Event Horizon
## 10506                                                                                                                                                    Spawn
## 10507                                                                                                                                 Free Willy 3: The Rescue
## 10508                                                                                                                                        Conspiracy Theory
## 10509                                                                                                                                                    Steel
## 10510                                                                                                                                                    Mimic
## 10511                                                                                                                                            Air Force One
## 10512                                                                                                                                        L.A. Confidential
## 10513                                                                                                                                                Game, The
## 10514                                                                                                                                              Chasing Amy
## 10515                                                                                                                          I Know What You Did Last Summer
## 10516                                                                                                                                     The Devil's Advocate
## 10517                                                                                                                                                  Gattaca
## 10518                                                                                                                                            Boogie Nights
## 10519                                                                                                                                                  Witness
## 10520                                                                                                                                        Starship Troopers
## 10521                                                                                                                              Mortal Kombat: Annihilation
## 10522                                                                                                                                         Truman Show, The
## 10523                                                                                                                                      Alien: Resurrection
## 10524                                                                                                                                        Good Will Hunting
## 10525                                                                                                                                             Home Alone 3
## 10526                                                                                                                                                  Titanic
## 10527                                                                                                                                             Jackie Brown
## 10528                                                                                                                                        Big Lebowski, The
## 10529                                                                                                                                                Dark City
## 10530                                                                                                                                                Hard Rain
## 10531                                                                                                                                               Half Baked
## 10532                                                                                                                                              Spice World
## 10533                                                                                                                                              Deep Rising
## 10534                                                                                                                                      Wedding Singer, The
## 10535                                                                                                                                                   Sphere
## 10536                                                                                                                                       As Good as It Gets
## 10537                                                                                                                                         King of New York
## 10538                                                                                                                                            U.S. Marshals
## 10539                                                                                                                                 Barney's Great Adventure
## 10540                                                                                                                                              He Got Game
## 10541                                                                                                                            Mr. Nice Guy (Yat goh ho yan)
## 10542                                                                                                                                               Species II
## 10543                                                                                                                                              Deep Impact
## 10544                                                                                                                                                 Godzilla
## 10545                                                                                                                           Fear and Loathing in Las Vegas
## 10546                                                                                                                           X-Files: Fight the Future, The
## 10547                                                                                                                                             Dr. Dolittle
## 10548                                                                                                                                             Out of Sight
## 10549                                                                                                                          Buffalo '66 (a.k.a. Buffalo 66)
## 10550                                                                                                                                               Armageddon
## 10551                                                                                                                                           Small Soldiers
## 10552                                                                                                                             There's Something About Mary
## 10553                                                                                                                                   French Connection, The
## 10554                                                                                                                                                    Rocky
## 10555                                                                                                                                                 Rain Man
## 10556                                                                                                                                                 Repo Man
## 10557                                                                                                                                                Labyrinth
## 10558                                                                                                                                      Breakfast Club, The
## 10559                                                                                                                                          Friday the 13th
## 10560                                                                                                                                                Halloween
## 10561                                                                                                                                             Child's Play
## 10562                                                                                                                                              Poltergeist
## 10563                                                                                                                                            Exorcist, The
## 10564                                                                                                                                            Lethal Weapon
## 10565                                                                                                                                                 Gremlins
## 10566                                                                                                                                Gremlins 2: The New Batch
## 10567                                                                                                                                             Goonies, The
## 10568                                                                                                                                       Mask of Zorro, The
## 10569                                                                                                                                            Soylent Green
## 10570                                                                                                                               Back to the Future Part II
## 10571                                                                                                                              Back to the Future Part III
## 10572                                                                                                                                                    Bambi
## 10573                                                                                                                                                     Dune
## 10574                                                                                                                                 Godfather: Part III, The
## 10575                                                                                                                                      Saving Private Ryan
## 10576                                                                                                                                      Black Cauldron, The
## 10577                                                                                                                                              Hocus Pocus
## 10578                                                                                                                                 Honey, I Shrunk the Kids
## 10579                                                                                                                                          Negotiator, The
## 10580                                                                                                                                              BASEketball
## 10581                                                                                                                                              Blue Velvet
## 10582                                                                                                                                         Jungle Book, The
## 10583                                                                                                                                       Lady and the Tramp
## 10584                                                                                                                                      Little Mermaid, The
## 10585                                                                                                                                        Mighty Ducks, The
## 10586                                                                                                                                                Peter Pan
## 10587                                                                                                                                 Rescuers Down Under, The
## 10588                                                                                                                                            Rescuers, The
## 10589                                                                                                                                             Return to Oz
## 10590                                                                                                                                          Sleeping Beauty
## 10591                                                                                                                                                     Tron
## 10592                                                                                                                     Indiana Jones and the Temple of Doom
## 10593                                                                                                                                    All Dogs Go to Heaven
## 10594                                                                                                                                       Addams Family, The
## 10595                                                                                                                                            Weird Science
## 10596                                                                                                                                           Watership Down
## 10597                                                                                                                                      Secret of NIMH, The
## 10598                                                                                                                                        Dark Crystal, The
## 10599                                                                                                                      American Tail: Fievel Goes West, An
## 10600                                                                                                                                                   Legend
## 10601                                                                                                                                          Sixteen Candles
## 10602                                                                                                                                                    House
## 10603                                                                                                                                  Gods Must Be Crazy, The
## 10604                                                                                                                       Henry: Portrait of a Serial Killer
## 10605                                                                                                                                   NeverEnding Story, The
## 10606                                                                                                                                      Surf Nazis Must Die
## 10607                                                                                                                                                    Blade
## 10608                                                                                                                                              Beetlejuice
## 10609                                                                                                                                                   Willow
## 10610                                                                                                                                        Untouchables, The
## 10611                                                                                                                                               Dirty Work
## 10612                                                                                                                                                 Rounders
## 10613                                                                                                                                                     Cube
## 10614                                                                                                                                          Say Anything...
## 10615                                                                                                                                                     Hero
## 10616                                                                                                                                                Rush Hour
## 10617                                                                                                                                                    Ronin
## 10618                                                                                                                                               Thing, The
## 10619                                                                                                                                              Player, The
## 10620                                                                                                                                      Edward Scissorhands
## 10621                                                                                                                                                     Antz
## 10622                                                                                                                                          My Cousin Vinny
## 10623                                                                                                                                                     Slam
## 10624                                                                                                                         Bride of Chucky (Child's Play 4)
## 10625                                                                                                                                                Happiness
## 10626                                                                                                                                            Pleasantville
## 10627                                                                                                                      Life Is Beautiful (La Vita è bella)
## 10628                                                                                                                       Tales from the Darkside: The Movie
## 10629                                                                                                                                       American History X
## 10630                                                                                                                                            Waterboy, The
## 10631                                                                                                                                           Meet Joe Black
## 10632                                                                                                                                       Enemy of the State
## 10633                                                                                                                                            Bug's Life, A
## 10634                                                                                                                                Celebration, The (Festen)
## 10635                                                                                                                                           Police Academy
## 10636                                                                                                                                          Very Bad Things
## 10637                                                                                                                                           Simple Plan, A
## 10638                                                                                                                                     Prince of Egypt, The
## 10639                                                                                                                                                 Rushmore
## 10640                                                                                                                                      Shakespeare in Love
## 10641                                                                                                                               Rambo: First Blood Part II
## 10642                                                                                                                         First Blood (Rambo: First Blood)
## 10643                                                                                                                                                Rambo III
## 10644                                                                                                                                      Romancing the Stone
## 10645                                                                                                                                                 Rocky II
## 10646                                                                                                                                                Rocky III
## 10647                                                                                                                                                 Rocky IV
## 10648                                                                                                                                                  Rocky V
## 10649                                                                                                                                          Karate Kid, The
## 10650                                                                                                                                 Karate Kid, Part II, The
## 10651                                                                                                                                Karate Kid, Part III, The
## 10652                                                                                                                                          You've Got Mail
## 10653                                                                                                                                       Thin Red Line, The
## 10654                                                                                                                                             Faculty, The
## 10655                                                                                                                                         Mighty Joe Young
## 10656                                                                                                                                              Patch Adams
## 10657                                                                                                                                                Gate, The
## 10658                                                                                                                                                 Fly, The
## 10659                                                                                                                             Texas Chainsaw Massacre, The
## 10660                                                                                                                           Texas Chainsaw Massacre 2, The
## 10661                                                                                                               Name of the Rose, The (Name der Rose, Der)
## 10662                                                                                                                                         Crocodile Dundee
## 10663                                                                                                                                                  Payback
## 10664                                                                                                              Fantastic Planet, The (Planète sauvage, La)
## 10665                                                                                                                                             Office Space
## 10666                                                                                                                                              Logan's Run
## 10667                                                                                                                                       Planet of the Apes
## 10668                                                                                                                                         Cruel Intentions
## 10669                                                                                                                        Lock, Stock & Two Smoking Barrels
## 10670                                                                                                                                             Dead Ringers
## 10671                                                                                                                                            Baby Geniuses
## 10672                                                                                                                                                 Ravenous
## 10673                                                                                                                                              Matrix, The
## 10674                                                                                                                               10 Things I Hate About You
## 10675                                                                                                                                                       Go
## 10676                                                                                                                           Twin Dragons (Shuang long hui)
## 10677                                                                                                                                                SLC Punk!
## 10678                                                                                                                                                 Election
## 10679                                                                                                                                               Entrapment
## 10680                                                                                                                                               Idle Hands
## 10681                                                                                                                                               Mummy, The
## 10682                                                                                                                Star Wars: Episode I - The Phantom Menace
## 10683                                                                                                                           Rocky Horror Picture Show, The
## 10684                                                                                                                                             Notting Hill
## 10685                                                                                                                    Austin Powers: The Spy Who Shagged Me
## 10686                                                                                                                                                   Tarzan
## 10687                                                                                                                                Run Lola Run (Lola rennt)
## 10688                                                                                                                                                Big Daddy
## 10689                                                                                                                                            Arachnophobia
## 10690                                                                                                                     South Park: Bigger, Longer and Uncut
## 10691                                                                                                                                           Wild Wild West
## 10692                                                                                                                                             American Pie
## 10693                                                                                                                                           Arlington Road
## 10694                                                                                                                                 Blair Witch Project, The
## 10695                                                                                                                                           Eyes Wide Shut
## 10696                                                                                                                                              Lake Placid
## 10697                                                                                                                      Ghostbusters (a.k.a. Ghost Busters)
## 10698                                                                                                                                          Ghostbusters II
## 10699                                                                                                                                         Inspector Gadget
## 10700                                                                                                                                            Deep Blue Sea
## 10701                                                                                                                                              Mystery Men
## 10702                                                                                                                                            Runaway Bride
## 10703                                                                                                                                                Spartacus
## 10704                                                                                                                                      Mosquito Coast, The
## 10705                                                                                                                                   Little Shop of Horrors
## 10706                                                                                                                                          Iron Giant, The
## 10707                                                                                                                                         Sixth Sense, The
## 10708                                                                                                                                                Bowfinger
## 10709                                                                                                                                                Airplane!
## 10710                                                                                                                                                      Big
## 10711                                                                                                                                            Problem Child
## 10712                                                                                                                                       Christmas Story, A
## 10713                                                                                                                                        Universal Soldier
## 10714                                                                                                                                           Stir of Echoes
## 10715                                                                                                                                          American Beauty
## 10716                                                                                                                                              Blue Streak
## 10717                                                                                                                                                 Caligula
## 10718                                                                                                                                             Fright Night
## 10719                                                                                                                                              Deliverance
## 10720                                                                                                                                                Excalibur
## 10721                                                                                 Armour of God II: Operation Condor (Operation Condor) (Fei ying gai wak)
## 10722                                                                                                                                              Three Kings
## 10723                                                                                                                                            Monkey Shines
## 10724                                                                                                                                                 Phantasm
## 10725                                                                                                                                           Risky Business
## 10726                                                                                                                                             Total Recall
## 10727                                                                                                                                 Ferris Bueller's Day Off
## 10728                                                                                                                                      High Plains Drifter
## 10729                                                                                                                                Drunken Master (Jui kuen)
## 10730                                                                                                                                               Goldfinger
## 10731                                                                                                                                    From Russia with Love
## 10732                                                                                                          Fistful of Dollars, A (Per un pugno di dollari)
## 10733                                                                                                                                      Sydney (Hard Eight)
## 10734                                                                                                                           Home Alone 2: Lost in New York
## 10735                                                                                                                                               Fight Club
## 10736                                                                                                                                             Time Bandits
## 10737                                                                                                                                                     Bats
## 10738                                                                                                                                                  RoboCop
## 10739                                                                                                                                 Who Framed Roger Rabbit?
## 10740                                                                                                                                     Being John Malkovich
## 10741                                                                                                                                             Insider, The
## 10742                                                                                                                                     Bride of Re-Animator
## 10743                                                                                                                                                Creepshow
## 10744                                                                                                                                              Re-Animator
## 10745                                                                                                                                         Drugstore Cowboy
## 10746                                                                                                                                             Falling Down
## 10747                                                                                                                                               Spaceballs
## 10748                                                                                                                                               Robin Hood
## 10749                                                                                                                       Quest for Fire (Guerre du feu, La)
## 10750                                                                                                                                                    Dogma
## 10751                                                                                              Adventures of Buckaroo Banzai Across the 8th Dimension, The
## 10752                                                                                                                                            Sleepy Hollow
## 10753                                                                                                                                 World Is Not Enough, The
## 10754                                                                                                                                         Fatal Attraction
## 10755                                                                                                                                             Midnight Run
## 10756                                                                                                                                         Fisher King, The
## 10757                                                                                                                                              End of Days
## 10758                                                                                                                                              Toy Story 2
## 10759                                                                                                                               Deuce Bigalow: Male Gigolo
## 10760                                                                                                                                          Green Mile, The
## 10761                                                                                                                                7th Voyage of Sinbad, The
## 10762                                                                                                                                                 Magnolia
## 10763                                                                                                                                         Any Given Sunday
## 10764                                                                                                                                          Man on the Moon
## 10765                                                                                                                                             Galaxy Quest
## 10766                                                                                                                                           Hurricane, The
## 10767                                                                                                                             Fast Times at Ridgemont High
## 10768                                                                                                                             Batman: Mask of the Phantasm
## 10769                                                                                                                                         Scent of a Woman
## 10770                                                                                                                                            Wayne's World
## 10771                                                                                                                                          Wayne's World 2
## 10772                                                                                                                                   League of Their Own, A
## 10773                                                                                                                                            Patriot Games
## 10774                                                                                                                                     White Men Can't Jump
## 10775                                                                                                                           Hard-Boiled (Lat sau san taam)
## 10776                                                                                                                                             Mariachi, El
## 10777                                                                                                                                                 Scream 3
## 10778                                                                                                                                     Boondock Saints, The
## 10779                                                                                                                                              Boiler Room
## 10780                                                                                                                                              Pitch Black
## 10781                                                                                                                        Ghost Dog: The Way of the Samurai
## 10782                                                                                                                              Hoosiers (a.k.a. Best Shot)
## 10783                                                                                                                                              Bull Durham
## 10784                                                                                                                                        Dog Day Afternoon
## 10785                                                                                                                                        American Graffiti
## 10786                                                                                                                                       Do the Right Thing
## 10787                                                                                                                                             Jungle Fever
## 10788                                                                                                                             Teenage Mutant Ninja Turtles
## 10789                                                                                                  Teenage Mutant Ninja Turtles II: The Secret of the Ooze
## 10790                                                                                                                         Teenage Mutant Ninja Turtles III
## 10791                                                                                                                                    Good Morning, Vietnam
## 10792                                                                                                                       Close Encounters of the Third Kind
## 10793                                                                                                                                           Jacob's Ladder
## 10794                                                                                                                                                Ladyhawke
## 10795                                                                                                                                            High Fidelity
## 10796                                                                                                                                                     Hook
## 10797                                                                                                                                                   Misery
## 10798                                                                                                                                                 Predator
## 10799                                                                                                                                          American Psycho
## 10800                                                                                                                                               Caddyshack
## 10801                                                                                                                                      Love and Basketball
## 10802                                                                                                                                                    U-571
## 10803                                                                                                                                              Carnosaur 2
## 10804                                                                                                                              Carnosaur 3: Primal Species
## 10805                                                                                                                                                Gladiator
## 10806                                                                                                                                            Human Traffic
## 10807                                                                                                                                        Battlefield Earth
## 10808                                                                                                                                                Road Trip
## 10809                                                                                                                                   Mission: Impossible II
## 10810                                                                                                                                          Blazing Saddles
## 10811                                                                                                      For a Few Dollars More (Per qualche dollaro in più)
## 10812                                                                                                                                   Light Years (Gandahar)
## 10813                                                                                                                                                  Porky's
## 10814                                                                                                                                      Night of the Creeps
## 10815                                                                                                                                         Running Man, The
## 10816                                                                                                                                                  Mad Max
## 10817                                                                                                                            Road Warrior, The (Mad Max 2)
## 10818                                                                                                                               Mad Max Beyond Thunderdome
## 10819                                                                                                                                              Angel Heart
## 10820                                                                                                                                       Gone in 60 Seconds
## 10821                                                                                                                                                Near Dark
## 10822                                                                                                                                           One False Move
## 10823                                                                                                                                                  Serpico
## 10824                                                                                                                              Big Trouble in Little China
## 10825                                                                                                                                               Titan A.E.
## 10826                                                                                                                                              Chicken Run
## 10827                                                                                                                                       Me, Myself & Irene
## 10828                                                                                                                                             Patriot, The
## 10829                                                                                                                                       Perfect Storm, The
## 10830                                                                                                                                      Blood In, Blood Out
## 10831                                                                                                                                              Scary Movie
## 10832                                                                                                                                                    X-Men
## 10833                                                                                                                           Nutty Professor II: The Klumps
## 10834                                                                                                                                               Hollow Man
## 10835                                                                                                                                           Sleepaway Camp
## 10836                                                                                                                                        Tao of Steve, The
## 10837                                                                                                                                        Replacements, The
## 10838                                                                                                                                              Bring It On
## 10839                                                                                                                                            Almost Famous
## 10840                                                                                                                                      Remember the Titans
## 10841                                                                                                                                               Hellraiser
## 10842                                                                                                                                         Meet the Parents
## 10843                                                                                                                                      Requiem for a Dream
## 10844                                                                                                                                                Tigerland
## 10845                                                                                                                                          Ladies Man, The
## 10846                                                                                                                                                 Ghoulies
## 10847                                                                                                                                              Ghoulies II
## 10848                                                                                                                                             Billy Elliot
## 10849                                                                                                         Beyond, The (E tu vivrai nel terrore - L'aldilà)
## 10850                                                                                                              Legend of Drunken Master, The (Jui kuen II)
## 10851                                                                                                                                         Charlie's Angels
## 10852                                                                                                                                             Little Nicky
## 10853                                                                                                                                             6th Day, The
## 10854                                                                                                                                              Unbreakable
## 10855                                                                                                         Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 10856                                                                                                                             Planes, Trains & Automobiles
## 10857                                                                                                                                  Transformers: The Movie
## 10858                                                                                                                                              Wall Street
## 10859                                                                                                                                                   Snatch
## 10860                                                                                                                                                 Chocolat
## 10861                                                                                                                                    Dude, Where's My Car?
## 10862                                                                                                                                          What Women Want
## 10863                                                                                                                                        Finding Forrester
## 10864                                                                                                                                                Cast Away
## 10865                                                                                                                                        Miss Congeniality
## 10866                                                                                                                               O Brother, Where Art Thou?
## 10867                                                                                                                                                  Traffic
## 10868                                                                                                                                      Save the Last Dance
## 10869                                                                                                                                     Wedding Planner, The
## 10870                                                                                                                                        Beverly Hills Cop
## 10871                                                                                                                                        Empire of the Sun
## 10872                                                                                                                                           Evil Dead, The
## 10873                                                                                                                                           Lost Boys, The
## 10874                                                                                                                                       Monster Squad, The
## 10875                                                                                                                                                 Hannibal
## 10876                                                                                                                                     Revenge of the Nerds
## 10877                                                                                                                                       Enemy at the Gates
## 10878                                                                                                                                                  Memento
## 10879                                                                                                                                                 Spy Kids
## 10880                                                                                                                                                     Blow
## 10881                                                                                                                                    Bridget Jones's Diary
## 10882                                                                                                                                      Freddy Got Fingered
## 10883                                                                                                                                                 Scarface
## 10884                                                                                                                                       Mummy Returns, The
## 10885                                                                                                                                                    Krull
## 10886                                                                                                                                         Knight's Tale, A
## 10887                                                                                                                                                    Shrek
## 10888                                                                                                                                             Moulin Rouge
## 10889                                                                                                                                             Pearl Harbor
## 10890                                                                                                                                              Animal, The
## 10891                                                                                                                                                Evolution
## 10892                                                                                                                                                Swordfish
## 10893                                                                                                                                              Point Break
## 10894                                                                                                                                                  Tootsie
## 10895                                                                                                                                  Lara Croft: Tomb Raider
## 10896                                                                                                                                Fast and the Furious, The
## 10897                                                                                                                             A.I. Artificial Intelligence
## 10898                                                                                                                                               Sexy Beast
## 10899                                                                                                                                            Scary Movie 2
## 10900                                                                                                                             Cheech & Chong's Nice Dreams
## 10901                                                                                                                                                 Suspiria
## 10902                                                                                                     Fist of Fury (Chinese Connection, The) (Jing wu men)
## 10903                                                                                                                                            Game of Death
## 10904                                                                                                                                                  Outland
## 10905                                                                               Way of the Dragon, The (a.k.a. Return of the Dragon) (Meng long guo jiang)
## 10906                                                                                                                                           Legally Blonde
## 10907                                                                                                                                               Score, The
## 10908                                                                                                                                                     More
## 10909                                                                                                                      Adventures of Baron Munchausen, The
## 10910                                                                                                                                                   Colors
## 10911                                                                                                                                    Land Before Time, The
## 10912                                                                                                                           Return of the Living Dead, The
## 10913                                                                                                                                                They Live
## 10914                                                                                                                         Bill & Ted's Excellent Adventure
## 10915                                                                                                                                        Casualties of War
## 10916                                                                                                                                                Kickboxer
## 10917                                                                                                                                                Leviathan
## 10918                                                                                                                                          Little Monsters
## 10919                                                                                                                                       Look Who's Talking
## 10920                                                                                                                                         Meet the Feebles
## 10921                                                                                                                                        Jurassic Park III
## 10922                                                                                                                                              Ghost World
## 10923                                                                                                                                Hedwig and the Angry Inch
## 10924                                                                                                                                       Planet of the Apes
## 10925                                                                                                                                              Basket Case
## 10926                                                                                                                                              Rush Hour 2
## 10927                                                                                                                                           Altered States
## 10928                                                                                                                                           American Pie 2
## 10929                                                                                                                                              Others, The
## 10930                                                                                                                                                 Rat Race
## 10931                                                                                                                           Jay and Silent Bob Strike Back
## 10932                                                                                                                                         Jeepers Creepers
## 10933                                                                                                                                                  Glitter
## 10934                                                                                                                                             Training Day
## 10935                                                                                                                                     King Solomon's Mines
## 10936                                                                                                                                                Zoolander
## 10937                                                                                                                                              Serendipity
## 10938                                                                                                       Iron Monkey (Siu nin Wong Fei-hung ji: Tit Ma Lau)
## 10939                                                                                                                                         Mulholland Drive
## 10940                                                                                                                                              Dirty Harry
## 10941                                                                                                                                                From Hell
## 10942                                                                                                                                              Waking Life
## 10943                                                                                                                                                    K-PAX
## 10944                                                                                                                                             Donnie Darko
## 10945                                                                                                                                           Monsters, Inc.
## 10946                                                                                                                                              Shallow Hal
## 10947                                                                  Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 10948                                                                                                                                             Black Knight
## 10949                                                                                                                                         Beastmaster, The
## 10950                                                                                                                                           Ocean's Eleven
## 10951                                                                                                                                   Not Another Teen Movie
## 10952                                                                                                                                              Vanilla Sky
## 10953                                                                                                                                    Royal Tenenbaums, The
## 10954                                                                                                                               Bill & Ted's Bogus Journey
## 10955                                                                                                            Spacehunter: Adventures in the Forbidden Zone
## 10956                                                                                                                                                 How High
## 10957                                                                                                       Lord of the Rings: The Fellowship of the Ring, The
## 10958                                                                                                                                        Beautiful Mind, A
## 10959                                                                                                                                          Black Hawk Down
## 10960                                                                                                                                                 I Am Sam
## 10961                                                                                                                                            Orange County
## 10962                                                                                                                                      Conan the Destroyer
## 10963                                                                                                                              Dragon: The Bruce Lee Story
## 10964                                                                                                                                The Count of Monte Cristo
## 10965                                                                                                                                               Rollerball
## 10966                                                                                                                                             Sandlot, The
## 10967                                                                                                                                           Super Troopers
## 10968                                                                                                                                      Bad News Bears, The
## 10969                                                                                                            Vampire Hunter D: Bloodlust (Banpaia hantâ D)
## 10970                                                                                                                                    40 Days and 40 Nights
## 10971                                                                                                                                         We Were Soldiers
## 10972                                                                                                                           Ferngully: The Last Rainforest
## 10973                                                                                                Zombie (a.k.a. Zombie 2: The Dead Are Among Us) (Zombi 2)
## 10974                                                                                                                                               Motel Hell
## 10975                                                                           Burial Ground (a.k.a. Zombie Horror) (a.k.a. Zombie 3) (Notti del Terrore, Le)
## 10976                                                                                                                                                  Ice Age
## 10977                                                                                                                                            Resident Evil
## 10978                                                                                                                                          Shogun Assassin
## 10979                                                                                                                                               Panic Room
## 10980                                                                                                                            National Lampoon's Van Wilder
## 10981                                                                                                                                                  Frailty
## 10982                                                                                                                                 My Big Fat Greek Wedding
## 10983                                                                                                                                        The Scorpion King
## 10984                                                                                                                                          Salton Sea, The
## 10985                                                                                                                                               Spider-Man
## 10986                                                                                                             Star Wars: Episode II - Attack of the Clones
## 10987                                                                                                                                                 Insomnia
## 10988                                                                                                                                       Undercover Brother
## 10989                                                                                                                                     Bourne Identity, The
## 10990                                                                                                                                          Minority Report
## 10991                                                                                                                                                Mr. Deeds
## 10992                                                                                                                                   Look Who's Talking Now
## 10993                                                                                                             Men in Black II (a.k.a. MIIB) (a.k.a. MIB 2)
## 10994                                                                                                                                            Reign of Fire
## 10995                                                                                                                                        Road to Perdition
## 10996                                                                                                                              Austin Powers in Goldmember
## 10997                                                                                                                                                    Signs
## 10998                                                                                                                    Spy Kids 2: The Island of Lost Dreams
## 10999                                                                                                                                                      xXx
## 11000                                                                                                                                               Blue Crush
## 11001                                                                                                                                      Clash of the Titans
## 11002                                                                                                                                               Hot Shots!
## 11003                                                                                                                                               Barbershop
## 11004                                                                                                                                         Transporter, The
## 11005                                                                                                                                     Ernest Scared Stupid
## 11006                                                                                                                                                Secretary
## 11007                                                                                                            Spirited Away (Sen to Chihiro no kamikakushi)
## 11008                                                                                                                                              Tuxedo, The
## 11009                                                                                                                                               Red Dragon
## 11010                                                                                                                                 Rules of Attraction, The
## 11011                                                                                                                                    Bowling for Columbine
## 11012                                                                                                                                         Punch-Drunk Love
## 11013                                                                                                                                                Ring, The
## 11014                                                                                                                  Grave of the Fireflies (Hotaru no haka)
## 11015                                                                                                                     Jason Goes to Hell: The Final Friday
## 11016                                                                                                                                         Faces of Death 2
## 11017                                                                                                                                           Faces of Death
## 11018                                                                                                                                         Faces of Death 3
## 11019                                                                                                                                         Faces of Death 4
## 11020                                                                                                                                 Galaxy of Terror (Quest)
## 11021                                                                                                                                                   8 Mile
## 11022                                                                                                                  Harry Potter and the Chamber of Secrets
## 11023                                                                                                                                          Treasure Planet
## 11024                                                                                                                                               Adaptation
## 11025                                                                                                                                              Equilibrium
## 11026                                                                                                                                           Hot Chick, The
## 11027                                                                                                                                        Maid in Manhattan
## 11028                                                                                                                   Lord of the Rings: The Two Towers, The
## 11029                                                                                                                                                25th Hour
## 11030                                                                                                                                           Antwone Fisher
## 11031                                                                                                                                        Gangs of New York
## 11032                                                                                                                                                     Narc
## 11033                                                                                                                                      Catch Me If You Can
## 11034                                                                                                                                                  Chicago
## 11035                                                                                                                             City of God (Cidade de Deus)
## 11036                                                                                                                                          CB4 - The Movie
## 11037                                                                                                                             How to Lose a Guy in 10 Days
## 11038                                                                                                                                         Shanghai Knights
## 11039                                                                                                                                                Daredevil
## 11040                                                                                                                                               Old School
## 11041                                                                                                                                  Bringing Down the House
## 11042                                                                                                                                         Tears of the Sun
## 11043                                                                                                                                     Bend It Like Beckham
## 11044                                                                                                                                                     Spun
## 11045                                                                                                                                              Phone Booth
## 11046                                                                                                                                         Anger Management
## 11047                                                                                                                                     Malibu's Most Wanted
## 11048                                                                                                                                    Andromeda Strain, The
## 11049                                                                                                                                                 Identity
## 11050                                                                                                                                         X2: X-Men United
## 11051                                                                                                                                           Daddy Day Care
## 11052                                                                                                                                     Matrix Reloaded, The
## 11053                                                                                                                                           Bruce Almighty
## 11054                                                                                                                                             Finding Nemo
## 11055                                                                                                                                         Italian Job, The
## 11056                                                                                                                                               Wrong Turn
## 11057                                                                                                           2 Fast 2 Furious (Fast and the Furious 2, The)
## 11058                                                                                                                                              Barton Fink
## 11059                                                                                                                                            28 Days Later
## 11060                                                                                                                          Charlie's Angels: Full Throttle
## 11061                                                                                                                                                     Hulk
## 11062                                                                                                                       Terminator 3: Rise of the Machines
## 11063                                                                                                   Pirates of the Caribbean: The Curse of the Black Pearl
## 11064                                                                                                                                              Bad Boys II
## 11065                                                                                                                                            Little Giants
## 11066                                                                                                               Lara Croft Tomb Raider: The Cradle of Life
## 11067                                                                                                                                               Seabiscuit
## 11068                                                                                                                                  Spy Kids 3-D: Game Over
## 11069                                                                                                                      Remo Williams: The Adventure Begins
## 11070                                                                                                                        American Wedding (American Pie 3)
## 11071                                                                                                                                            Freaky Friday
## 11072                                                                                                                                                 S.W.A.T.
## 11073                                                                                                                                             Brain Damage
## 11074                                                                                                                                         Freddy vs. Jason
## 11075                                                                                                                                                  Tremors
## 11076                                                                                                                                                 Commando
## 11077                                                                                                                                       Jeepers Creepers 2
## 11078                                                                                                                                              Cabin Fever
## 11079                                                                                                                                           Matchstick Men
## 11080                                                                                                                                      Lost in Translation
## 11081                                                                                                                                          Day of the Dead
## 11082                                                                                                                                               Underworld
## 11083                                                                                                                                             Bubba Ho-tep
## 11084                                                                                                                                               Videodrome
## 11085                                                                                                                                          Boyz N the Hood
## 11086                                                                                                                              Phenomena (a.k.a. Creepers)
## 11087                                                                                                                       Monty Python's The Meaning of Life
## 11088                                                                                                                                       Three O'Clock High
## 11089                                                                                                                                             Ginger Snaps
## 11090                                                                                                                            Ninja Scroll (Jûbei ninpûchô)
## 11091                                                                                                                                           School of Rock
## 11092                                                                                                                                             Mystic River
## 11093                                                                                                                                        Kill Bill: Vol. 1
## 11094                                                                                                                                                    Radio
## 11095                                                                                                                                            Scary Movie 3
## 11096                                                                                                                                            Interstate 60
## 11097                                                                                                                                  Matrix Revolutions, The
## 11098                                                                                                                                                      Elf
## 11099                                                                                                          Master and Commander: The Far Side of the World
## 11100                                                                                                                                                  Gothika
## 11101                                                                                                                                                 21 Grams
## 11102                                                                                                                                                Bad Santa
## 11103                                                                                                                                            New Jack City
## 11104                                                                                                                           Invasion of the Body Snatchers
## 11105                                                                                                                                      Last Boy Scout, The
## 11106                                                                                                                          Battle Royale (Batoru rowaiaru)
## 11107                                                                                                                                                Teen Wolf
## 11108                                                                                                                                             Witches, The
## 11109                                                                                                                                 Witches of Eastwick, The
## 11110                                                                                                     Aguirre: The Wrath of God (Aguirre, der Zorn Gottes)
## 11111                                                                                                                                        Hero (Ying xiong)
## 11112                                                                                            Nausicaä of the Valley of the Wind (Kaze no tani no Naushika)
## 11113                                                                                                                                               Leprechaun
## 11114                                                                                                                                              Cooler, The
## 11115                                                                                                                                        Last Samurai, The
## 11116                                                                                                                                                 Big Fish
## 11117                                                                                                           Lord of the Rings: The Return of the King, The
## 11118                                                                                                                                     Cheaper by the Dozen
## 11119                                                                                                                            Ichi the Killer (Koroshiya 1)
## 11120                                                                                                                                     The Butterfly Effect
## 11121                                                                                                                                                 Thirteen
## 11122                                                                                                                                           50 First Dates
## 11123                                                                                                                                     King Solomon's Mines
## 11124                                                                                                                                                 EuroTrip
## 11125                                                                                                                               Passion of the Christ, The
## 11126                                                                                                                                                  Hidalgo
## 11127                                                                                                                                          Starsky & Hutch
## 11128                                                                                                                                      Girl Next Door, The
## 11129                                                                                                                                         Dawn of the Dead
## 11130                                                                                                                    Eternal Sunshine of the Spotless Mind
## 11131                                                                                                                                         Ladykillers, The
## 11132                                                                                                                                                  Hellboy
## 11133                                                                                                                                         Dawn of the Dead
## 11134                                                                                                                                                 Munchies
## 11135                                                                                                                                              After Hours
## 11136                                                                                                                                        Kill Bill: Vol. 2
## 11137                                                                                                                                              Man on Fire
## 11138                                                                                                                                              Van Helsing
## 11139                                                                                                                                                     Troy
## 11140                                                                                                                                               Enemy Mine
## 11141                                                                                                                                         Enter the Dragon
## 11142                                                                                                                                         Band of Brothers
## 11143                                                                                                                                   Look Who's Talking Too
## 11144                                                                                                                                                Explorers
## 11145                                                                                                                                            Warriors, The
## 11146                                                                                                                                                     Dune
## 11147                                                                                                 Legend, The (Legend of Fong Sai-Yuk, The) (Fong Sai Yuk)
## 11148                                                                                                                                  Tremors II: Aftershocks
## 11149                                                                                                                            Tremors 3: Back to Perfection
## 11150                                                                                                                        Samurai Fiction (SF: Episode One)
## 11151                                                                                                                                                 Ken Park
## 11152                                                                                                                                              From Beyond
## 11153                                                                                                                                                    Dolls
## 11154                                                                                                                                     Pursuit of Happiness
## 11155                                                                                                                                     Escape from Alcatraz
## 11156                                                                                                                                                  Shrek 2
## 11157                                                                                                                                  Day After Tomorrow, The
## 11158                                                                                                                                               Soul Plane
## 11159                                                                                                                 Harry Potter and the Prisoner of Azkaban
## 11160                                                                                                                               Chronicles of Riddick, The
## 11161                                                                                                                                      Garfield: The Movie
## 11162                                                                                                                                      Stepford Wives, The
## 11163                                                                                                                                        Napoleon Dynamite
## 11164                                                                                                                                                   Freaks
## 11165                                                                                                                              Around the World in 80 Days
## 11166                                                                                                                         Dodgeball: A True Underdog Story
## 11167                                                                                                                                            Terminal, The
## 11168                                                                                                                                             White Chicks
## 11169                                                                                                                                          Fahrenheit 9/11
## 11170                                                                                                                                             Spider-Man 2
## 11171                                                                                                                                            Before Sunset
## 11172                                                                                                                                              King Arthur
## 11173                                                                                                                    Anchorman: The Legend of Ron Burgundy
## 11174                                                                                                                                                 I, Robot
## 11175                                                                                                                                    Bourne Supremacy, The
## 11176                                                                                                                                             Village, The
## 11177                                                                                                                                             Garden State
## 11178                                                                                                                                               Collateral
## 11179                                                                                                                      Harold and Kumar Go to White Castle
## 11180                                                                                                                                  AVP: Alien vs. Predator
## 11181                                                                                                                                                Yu-Gi-Oh!
## 11182                                                                                                                                      Night of the Demons
## 11183                                                                                                                             SuperBabies: Baby Geniuses 2
## 11184                                                                                                                                Resident Evil: Apocalypse
## 11185                                                                                                                                        Shaun of the Dead
## 11186                                                                                                                                       Cannibal Holocaust
## 11187                                                                                                                                        I Heart Huckabees
## 11188                                                                                                                                                   Primer
## 11189                                                                                                                               Team America: World Police
## 11190                                                                                                                            Fearless Vampire Killers, The
## 11191                                                                                                                                              Grudge, The
## 11192                                                                                                                                                 Sideways
## 11193                                                                                                                                            The Machinist
## 11194                                                                                                                                                      Saw
## 11195                                                                                                                                         Incredibles, The
## 11196                                                                                                                                        National Treasure
## 11197                                                                                                                                           Ocean's Twelve
## 11198                                                                                                                                     King Solomon's Mines
## 11199                                                                                                                                                 Topo, El
## 11200                                                                                                                                              Hobbit, The
## 11201                                                                                                                                 Raiders of Atlantis, The
## 11202                                                                                                                         Police Story (Ging chaat goo si)
## 11203                                                                                                                  Better Tomorrow, A (Ying hung boon sik)
## 11204                                                                                                                                       Prince of Darkness
## 11205                                                                                                                   Chinese Ghost Story, A (Sinnui yauwan)
## 11206                                                                                                                                            Frankenhooker
## 11207                                                                                                                                           State of Grace
## 11208                                                                                                              Hearts of Darkness: A Filmmakers Apocalypse
## 11209                                                                                                                   Riki-Oh: The Story of Ricky (Lik Wong)
## 11210                                                                                                  Tai Chi Master (Twin Warriors) (Tai ji: Zhang San Feng)
## 11211                                                                                                                               From the Earth to the Moon
## 11212                                                                                                                                                 Thursday
## 11213                                                                                                                                  Who Am I? (Wo shi shei)
## 11214                                                                                                                           Lady Snowblood (Shurayukihime)
## 11215                                                                                                                                       Audition (Ôdishon)
## 11216                                                                                                                                   Daria: Is It Fall Yet?
## 11217                                                                                                                                          Ali G Indahouse
## 11218                                                                                                                                                    Fubar
## 11219                                                                                                                           Suicide Club (Jisatsu saakuru)
## 11220                                                                                                                                     Battlestar Galactica
## 11221                                                                                                                                           Soldier's Girl
## 11222                                                                                                                                           Animatrix, The
## 11223                                                                                                 Battle Royale 2: Requiem (Batoru rowaiaru II: Chinkonka)
## 11224                                                                                                          Lemony Snicket's A Series of Unfortunate Events
## 11225                                                                                                                                        Ju-on: The Grudge
## 11226                                                                                                                                                  Old Boy
## 11227                                                                                                                         Ginger Snaps Back: The Beginning
## 11228                                                                                                              Starship Troopers 2: Hero of the Federation
## 11229                                                                                                    Interstella 5555: The 5tory of the 5ecret 5tar 5ystem
## 11230                                                                                                                      Ong-Bak: The Thai Warrior (Ong Bak)
## 11231                                                                                                                                                Spanglish
## 11232                                                                                                                                               Layer Cake
## 11233                                                                                                                                        Scanner Darkly, A
## 11234                                                                                                                                      Million Dollar Baby
## 11235                                                                                                                                             Hotel Rwanda
## 11236                                                                                                                      Life Aquatic with Steve Zissou, The
## 11237                                                                                                                                             Aviator, The
## 11238                                                                                                                                            Woodsman, The
## 11239                                                                                                                                         Meet the Fockers
## 11240                                                                                                                                                  Wizards
## 11241                                                                                                                                             Coach Carter
## 11242                                                                                                                Beastmaster 2: Through the Portal of Time
## 11243                                                                                                                                        Are We There Yet?
## 11244                                                                                                                                                Boogeyman
## 11245                                                                                                                Rory O'Shea Was Here (Inside I'm Dancing)
## 11246                                                                                                                                                    Hitch
## 11247                                                                                                                                              Constantine
## 11248                                                                                                                                 Kung Fu Hustle (Gong fu)
## 11249                                                                                                       Thief and the Cobbler, The (a.k.a. Arabian Knight)
## 11250                                                                                                                    Sword of Doom, The (Dai-bosatsu tôge)
## 11251                                                                                                                                                 Sin City
## 11252                                                                                                                                                   Sahara
## 11253                                                                                                                    Hitchhiker's Guide to the Galaxy, The
## 11254                                                                                                                                        Kingdom of Heaven
## 11255                                                                                                                                             House of Wax
## 11256                                                                                                                                                    Crash
## 11257                                                                                                                                          Mysterious Skin
## 11258                                                                                                             Star Wars: Episode III - Revenge of the Sith
## 11259                                                                                                                                         Mr. & Mrs. Smith
## 11260                                                                                                                                            Batman Begins
## 11261                                                                                                                                         Land of the Dead
## 11262                                                                                                                                        War of the Worlds
## 11263                                                                                                                                           Fantastic Four
## 11264                                                                                                                                         Wedding Crashers
## 11265                                                                                                                                              Island, The
## 11266                                                                                                                                                 Serenity
## 11267                                                                                                                                           Broken Flowers
## 11268                                                                                                                           Deuce Bigalow: European Gigolo
## 11269                                                                                                                                  40-Year-Old Virgin, The
## 11270                                                                                                                                            Transporter 2
## 11271                                                                                                                                              Lord of War
## 11272                                                                                                     Family Guy Presents Stewie Griffin: The Untold Story
## 11273                                                                                                                                                Aeon Flux
## 11274                                                                                                                Green Street Hooligans (a.k.a. Hooligans)
## 11275                                                                                                                                   History of Violence, A
## 11276                                                                                                                                      Kiss Kiss Bang Bang
## 11277                                                                                                                                         Proposition, The
## 11278                                                                                                                                                   Saw II
## 11279                                                                                                                                                  Jarhead
## 11280                                                                                                                                   Get Rich or Die Tryin'
## 11281                                                                                                                                        Pride & Prejudice
## 11282                                                                                                                                             Descent, The
## 11283                                                                                                                      Harry Potter and the Goblet of Fire
## 11284                                                                                                                                              Match Point
## 11285                                                                                          Chronicles of Narnia: The Lion, the Witch and the Wardrobe, The
## 11286                                                                                                                                                King Kong
## 11287                                                                                                                                                   Munich
## 11288                                                                                                                                   Fun with Dick and Jane
## 11289                                                                                                                                                   Hostel
## 11290                                                                                                                                            Grandma's Boy
## 11291                                                                                                                                                    Troll
## 11292                                                                                                                                               Date Movie
## 11293                                                                                                                                           Running Scared
## 11294                                                                                                                                                16 Blocks
## 11295                                                                                                                                           V for Vendetta
## 11296                                                                                                                                    Thank You for Smoking
## 11297                                                                                                                                               Inside Man
## 11298                                                                                                                                   Leprechaun in the Hood
## 11299                                                                                                                                     Hills Have Eyes, The
## 11300                                                                                                                                      Lucky Number Slevin
## 11301                                                                                                                                                    Brick
## 11302                                                                                                                                            Scary Movie 4
## 11303                                                                                                                                               Hard Candy
## 11304                                                                                                     Protector, The (a.k.a. Warrior King) (Tom yum goong)
## 11305                                                                                                                                  Mission: Impossible III
## 11306                                                                                                                                       Da Vinci Code, The
## 11307                                                                                                                                       Twelve and Holding
## 11308                                                                                                                                              Nacho Libre
## 11309                                                                                                                                                    Click
## 11310                                                                                                               Pirates of the Caribbean: Dead Man's Chest
## 11311                                                                                                                                       You, Me and Dupree
## 11312                                                                                                                                                Clerks II
## 11313                                                                                                                         Jet Li's Fearless (Huo Yuan Jia)
## 11314                                                                                     Fast and the Furious: Tokyo Drift, The (Fast and the Furious 3, The)
## 11315                                                                                                                          Garfield: A Tail of Two Kitties
## 11316                                                                                                                                     Little Miss Sunshine
## 11317                                                                                                                                               Little Man
## 11318                                                                                                                                        Snakes on a Plane
## 11319                                                                                                              Talladega Nights: The Ballad of Ricky Bobby
## 11320                                                                                                                                      Night at the Museum
## 11321                                                                                                                                    Stranger than Fiction
## 11322                                                                                                                                Pursuit of Happyness, The
## 11323                                                                                                                                                    Crank
## 11324                                                                                                                                         Illusionist, The
## 11325                                                                                                                                                 Beerfest
## 11326                                                                                                                                                Crossover
## 11327                                                                                                                                                Idiocracy
## 11328                                                                                                                                            Fountain, The
## 11329                                                                                                                                               Apocalypto
## 11330                                                                      Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan
## 11331                                                                                                                Pan's Labyrinth (Laberinto del fauno, El)
## 11332                                                                                                                                            Departed, The
## 11333                                                                                                                                            Grudge 2, The
## 11334                                                                                                                                          Little Children
## 11335                                                                                                                                                 Shortbus
## 11336                                                                                                                                          Children of Men
## 11337                                                                                                                                            Prestige, The
## 11338                                                                                                                                                  Saw III
## 11339                                                                                                                                            Casino Royale
## 11340                                                                                                                                        Déjà Vu (Deja Vu)
## 11341                                                                                                           National Lampoon's Van Wilder: The Rise of Taj
## 11342                                                                                                                                                 Turistas
## 11343                                                                                                                                            Blood Diamond
## 11344                                                                                                                                                   Eragon
## 11345                                                                                                                                             Rocky Balboa
## 11346                                                                                                                                         Plague Dogs, The
## 11347                                                                                                                                            House (Hausu)
## 11348                                                                                                                                                    Kenny
## 11349                                                                                                                                             Smokin' Aces
## 11350                                                                                                                                               Epic Movie
## 11351                                                                                                                                                   Norbit
## 11352                                                                                                                                              Ratatouille
## 11353                                                                                                                                                 Hot Fuzz
## 11354                                                                                 36th Chamber of Shaolin, The (Shao Lin san shi liu fang) (Master Killer)
## 11355                                                                                                                                                   Zodiac
## 11356                                                                                                                                                      300
## 11357                                                                                                                                            Reign Over Me
## 11358                                                                                                                                  Hills Have Eyes II, The
## 11359                                                                                                                                          Blades of Glory
## 11360                                                                                                                                               Grindhouse
## 11361                                                                                                                                                 Sunshine
## 11362                                                                                                                                                Disturbia
## 11363                                                                                                     Aqua Teen Hunger Force Colon Movie Film for Theaters
## 11364                                                                                                                                                 Fracture
## 11365                                                                                                                                             Spider-Man 3
## 11366                                                                                                                                          This Is England
## 11367                                                                                                                                               Knocked Up
## 11368                                                                                                                                           28 Weeks Later
## 11369                                                                                                                                          Shrek the Third
## 11370                                                                                                                 Pirates of the Caribbean: At World's End
## 11371                                                                                                                                                 Cashback
## 11372                                                                                                                                         Ocean's Thirteen
## 11373                                                                                                                                                     Fido
## 11374                                                                                                                                              Death Proof
## 11375                                                                                                                                              Rescue Dawn
## 11376                                                                                                                                    Live Free or Die Hard
## 11377                                                                                                                                             Transformers
## 11378                                                                                                                Harry Potter and the Order of the Phoenix
## 11379                                                                                                                                      Across the Universe
## 11380                                                                                                                                      Simpsons Movie, The
## 11381                                                                                                                                    Bourne Ultimatum, The
## 11382                                                                                                                                         Bratz: The Movie
## 11383                                                                                                                                              You Kill Me
## 11384                                                                                                                                                 Superbad
## 11385                                                                                                                                              Rush Hour 3
## 11386                                                                                                                                           Rocket Science
## 11387                                                                                                                                            Planet Terror
## 11388                                                                                                                                             3:10 to Yuma
## 11389                                                                                                                                                Atonement
## 11390                                                                                                                                    In the Valley of Elah
## 11391                                                                                                                                                 Cashback
## 11392                                                                                                                                Resident Evil: Extinction
## 11393                                                                                                                                          Good Luck Chuck
## 11394                                                                                                                                            Into the Wild
## 11395                                                                                                                                  Darjeeling Limited, The
## 11396                                                                                                                                           Gone Baby Gone
## 11397                                                                                                                                                   Saw IV
## 11398                                                                                                                             Elite Squad (Tropa de Elite)
## 11399                                                                                                                                        American Gangster
## 11400                                                                                                                       Before the Devil Knows You're Dead
## 11401                                                                                                                                   No Country for Old Men
## 11402                                                                                                                                           Be Kind Rewind
## 11403                                                                                                                                                  Beowulf
## 11404                                                                                                                                          Southland Tales
## 11405                                                                                                                                                Mist, The
## 11406                                                                                                                                              I Am Legend
## 11407                                                                                                                             Futurama: Bender's Big Score
## 11408                                                                                                                                                     Juno
## 11409                                                                                                                                         Bucket List, The
## 11410                                                                                                           Sweeney Todd: The Demon Barber of Fleet Street
## 11411                                                                                                                       National Treasure: Book of Secrets
## 11412                                                                                                                                      There Will Be Blood
## 11413                                                                                                                      AVPR: Aliens vs. Predator - Requiem
## 11414                                                                                                                                              Cloverfield
## 11415                                                                                                                                          Rambo (Rambo 4)
## 11416                                                                                                                                        Meet the Spartans
## 11417                                                                                                                              Hellboy II: The Golden Army
## 11418                                                                                                                                                In Bruges
## 11419                                                                                                                                                   Jumper
## 11420                                                                                                                                       Witless Protection
## 11421                                                                                                                                                10,000 BC
## 11422                                                                                                                                            Bank Job, The
## 11423                                                                                                                                         Funny Games U.S.
## 11424                                                                                                                                           Love Guru, The
## 11425                                                                                                                          City of Men (Cidade dos Homens)
## 11426                                                                                                                                         Dark Knight, The
## 11427                                                                                                                                          Never Back Down
## 11428                                                                                                                                                       21
## 11429                                                                                                                                               Ruins, The
## 11430                                                                                                                                Forgetting Sarah Marshall
## 11431                                                                                                                                          Superhero Movie
## 11432                                                                                                                Harold & Kumar Escape from Guantanamo Bay
## 11433                                                                                                                                                 Iron Man
## 11434                                                                                                                                                    Taken
## 11435                                                                                                                                                Fall, The
## 11436                                                                                                       Indiana Jones and the Kingdom of the Crystal Skull
## 11437                                                                                                                                            Kung Fu Panda
## 11438                                                                                                                            You Don't Mess with the Zohan
## 11439                                                                                                                                                    Boy A
## 11440                                                                                                                                           Happening, The
## 11441                                                                                                                                                   WALL·E
## 11442                                                                                                                                                   Wanted
## 11443                                                                                                                                                  Hancock
## 11444                                                                                                                                                Get Smart
## 11445                                                                                                                 Futurama: The Beast with a Billion Backs
## 11446                                                                                                                                            Wackness, The
## 11447                                                                                                                    It's the Great Pumpkin, Charlie Brown
## 11448                                                                                                                                               Death Note
## 11449                                                                                                                                                 Watchmen
## 11450                                                                                                                                                    Felon
## 11451                                                                                                                                            Step Brothers
## 11452                                                                                                                                        Pineapple Express
## 11453                                                                                                                                           Tropic Thunder
## 11454                                                                                                                                               Death Race
## 11455                                                                                                                                       Burn After Reading
## 11456                                                                                                                                           Disaster Movie
## 11457                                                                                                                                         Onion Movie, The
## 11458                                                                                                                                                Max Payne
## 11459                                                                                                                               Zack and Miri Make a Porno
## 11460                                                                        Lone Wolf and Cub: Baby Cart to Hades (Kozure Ôkami: Shinikazeni mukau ubaguruma)
## 11461                                                                                                                       High School Musical 3: Senior Year
## 11462                                                                                                                                  Futurama: Bender's Game
## 11463                                                                                                                                                Road, The
## 11464                                                                                                                                      Slumdog Millionaire
## 11465                                                                                                                                        Quantum of Solace
## 11466                                                                                                                                              Role Models
## 11467                                                                                                                                  Beverly Hills Chihuahua
## 11468                                                                                                                                                 Splinter
## 11469                                                                                                                                                     Milk
## 11470                                                                                                                                                 Twilight
## 11471                                                                                                                                                   Hunger
## 11472                                                                                                                            Starship Troopers 3: Marauder
## 11473                                                                                                                                              Gran Torino
## 11474                                                                                                                                             Seven Pounds
## 11475                                                                                                                                            Wrestler, The
## 11476                                                                                              Chinese Ghost Story II, A (Sien nui yau wan II yan gaan do)
## 11477                                                                                                                     Curious Case of Benjamin Button, The
## 11478                                                                                                                                                 Valkyrie
## 11479                                                                                                                                                    Choke
## 11480                                                                                                                  Poultrygeist: Night of the Chicken Dead
## 11481                                                                                                                                                   Ip Man
## 11482                                                                                                                                                Outlander
## 11483                                                                                                                                            Grudge 3, The
## 11484                                                                                                                                                Eden Lake
## 11485                                                                                                                     Futurama: Into the Wild Green Yonder
## 11486                                                                                                                               Afro Samurai: Resurrection
## 11487                                                                                                                           Dr. Horrible's Sing-Along Blog
## 11488                                                                                                                     Ong-Bak 2: The Beginning (Ong Bak 2)
## 11489                                                                                                 Girl with the Dragon Tattoo, The (Män som hatar kvinnor)
## 11490                                                                                                                                Anvil! The Story of Anvil
## 11491                                                                                                                                       Observe and Report
## 11492                                                                                                                                            Adventureland
## 11493                                                                                                             Fast & Furious (Fast and the Furious 4, The)
## 11494                                                                                                                                             Pirate Radio
## 11495                                                                                                                                     Inglourious Basterds
## 11496                                                                                                                                            State of Play
## 11497                                                                                                                                                     Moon
## 11498                                                                                                                                 X-Men Origins: Wolverine
## 11499                                                                                                                                                Star Trek
## 11500                                                                                                                                   Great Buck Howard, The
## 11501                                                                                                                                          Angels & Demons
## 11502                                                                                                                                                Chop Shop
## 11503                                                                                                                                          Drag Me to Hell
## 11504                                                                                                                                                       Up
## 11505                                       Fullmetal Alchemist the Movie: Conqueror of Shamballa (Gekijô-ban hagane no renkinjutsushi: Shanbara wo yuku mono)
## 11506                                                                                                                                              Dance Flick
## 11507                                                                                                                                            Hangover, The
## 11508                                                                                                                              Taking of Pelham 1 2 3, The
## 11509                                                                                                                                         Hurt Locker, The
## 11510                                                                                                                                           Public Enemies
## 11511                                                                                                                                Daria: Is It College Yet?
## 11512                                                                                                                   Watchmen: Tales of the Black Freighter
## 11513                                                                                                                                     (500) Days of Summer
## 11514                                                                                                                   Harry Potter and the Half-Blood Prince
## 11515                                                                                                                                               District 9
## 11516                                                                                                             Jerusalema (Gangster's Paradise: Jerusalema)
## 11517                                                                                                                                                  Troll 2
## 11518                                                                                                                                                        9
## 11519                                                                                                             Frequently Asked Questions About Time Travel
## 11520                                                                                                                                                 Pandorum
## 11521                                                                                                                                                  Extract
## 11522                                                                                                                                      Paranormal Activity
## 11523                                                                                                                                     World's Greatest Dad
## 11524                                                                                                                                              City Island
## 11525                                                                                                                                  Invention of Lying, The
## 11526                                                                                                                                             Next Day Air
## 11527                                                                                                                                               Zombieland
## 11528                                                                                                                                Where the Wild Things Are
## 11529                                                                                                                                      Law Abiding Citizen
## 11530                                                                                                                                            Up in the Air
## 11531                                                                                                                                           Black Dynamite
## 11532                                                                                                                                        Fantastic Mr. Fox
## 11533                                                                                                                                         Merry Madagascar
## 11534                                                                                                                                         Blind Side, The 
## 11535                                                                                                                                                 Invictus
## 11536                                                                                                                                                   Avatar
## 11537                                                                                                                                              Crazy Heart
## 11538                                                                                                                                              Daybreakers
## 11539                                                                                                                                         Book of Eli, The
## 11540                                                                                                                             Hellsing Ultimate OVA Series
## 11541                                                                                                                                                Fish Tank
## 11542                                                                                                                                           Shutter Island
## 11543                                                                                                                                        Ghost Writer, The
## 11544                                                                                                                                     From Paris with Love
## 11545                                                                                                                                        Brooklyn's Finest
## 11546                                                                                                                                              Harry Brown
## 11547                                                                                                                                          Leaves of Grass
## 11548                                                                                                                                     Slammin' Salmon, The
## 11549                                                                                                                                     Hot Tub Time Machine
## 11550                                                                                                                                 How to Train Your Dragon
## 11551                                                                                                                                                 Kick-Ass
## 11552                                                                                                                                   Five Minutes of Heaven
## 11553                                                                                                                                               Iron Man 2
## 11554                                                                                                                                               Four Lions
## 11555                                                                                                                                      You Don't Know Jack
## 11556                                                                                                                                               Robin Hood
## 11557                                                                                                                                     Get Him to the Greek
## 11558                                                                                                                                                   Splice
## 11559                                                                                                                                                     Exam
## 11560                                                                                                                                              A-Team, The
## 11561                                                                                                                                              Toy Story 3
## 11562                                                                                                                                            Winter's Bone
## 11563                                                                                                                              Twilight Saga: Eclipse, The
## 11564                                                                                                                              South Park: Imaginationland
## 11565                                                                                                                                                Predators
## 11566                                                                                                                                            Despicable Me
## 11567                                                                                                                                                Inception
## 11568                                                                                                                                  Kids Are All Right, The
## 11569                                                                                                                            Serbian Film, A (Srpski film)
## 11570                                                                                                                               Batman: Under the Red Hood
## 11571                                                                                                                                               Mr. Nobody
## 11572                                                                                                                                                 Ip Man 2
## 11573                                                                                                                                         Expendables, The
## 11574                                                                                                                              Scott Pilgrim vs. the World
## 11575                                                                                                                                           Animal Kingdom
## 11576                                                                                                                                     Piranha (Piranha 3D)
## 11577                                                                                       Dragon Ball Z: Dead Zone (Doragon bôru Z 1: Ora no Gohan wo kaese)
## 11578                                                                                                                                                  Machete
## 11579                                                                                                                                      Social Network, The
## 11580                                                                                                                                                Town, The
## 11581                                                                                                                               It's Kind of a Funny Story
## 11582                                                                                                                                                Let Me In
## 11583                                                                                                                                                    Devil
## 11584                                                                                                                                                   Kaboom
## 11585                                                                                                                                                127 Hours
## 11586                                                                                                                                                 Megamind
## 11587                                                                                                                                               Black Swan
## 11588                                                                                                   1990: The Bronx Warriors (1990: I guerrieri del Bronx)
## 11589                                                                                                                                     Next Three Days, The
## 11590                                                                                                             Harry Potter and the Deathly Hallows: Part 1
## 11591                                                                                                                                             Fighter, The
## 11592                                                                                                                                          Loved Ones, The
## 11593                                                                                                                                                True Grit
## 11594                                                                                                                                         Barney's Version
## 11595                                                                                                                        I Saw the Devil (Akmareul boatda)
## 11596                                                                                                                                    Tucker & Dale vs Evil
## 11597                                                                                                                                         Cowboys & Aliens
## 11598                                                                                                                                                Limitless
## 11599                                                                                                                                                     Paul
## 11600                                                                                                                                                    Rango
## 11601                                                                               Elite Squad: The Enemy Within (Tropa de Elite 2 - O Inimigo Agora É Outro)
## 11602                                                                                                                                                    Super
## 11603                                                                                                                                              Source Code
## 11604                                                                                                                                                Insidious
## 11605                                                                                                                                                  Win Win
## 11606                                                                                                                      13 Assassins (Jûsan-nin no shikaku)
## 11607                                                                                                                  Fast Five (Fast and the Furious 5, The)
## 11608                                                                                                                                        Midnight in Paris
## 11609                                                                                                                                         Attack the Block
## 11610                                                                                                                                       X-Men: First Class
## 11611                                                                                                                                                Submarine
## 11612                                                                                                                                       Everything Must Go
## 11613                                                                                                                                                  Super 8
## 11614                                                                                                                                          Horrible Bosses
## 11615                                                                                                                                        Perfect Host, The
## 11616                                                                                                             Harry Potter and the Deathly Hallows: Part 2
## 11617                                                                                                                                                    Drive
## 11618                                                                                                                       Captain America: The First Avenger
## 11619                                                                                                                                     Crazy, Stupid, Love.
## 11620                                                                                                                           Rise of the Planet of the Apes
## 11621                                                                                                                                            Another Earth
## 11622                                                                                                                                                Debt, The
## 11623                                                                                                                                                Red State
## 11624                                                                                                                                                Contagion
## 11625                                                                                                                                            Avengers, The
## 11626                                                                                                                                                  Warrior
## 11627                                                                                                                                                    50/50
## 11628                                                                                                                              We Need to Talk About Kevin
## 11629                                                                                                                                                  Carnage
## 11630                                                                                                                                              Margin Call
## 11631                                                                                                                                                    Shame
## 11632                                                                                                                                       Expendables 2, The
## 11633                                                                                                                                         The Hunger Games
## 11634                                                                                                                                   Dark Knight Rises, The
## 11635                                                                                                                     Mission: Impossible - Ghost Protocol
## 11636                                                                                                                         Girl with the Dragon Tattoo, The
## 11637                                                                                                                                                Grey, The
## 11638                                                                                                                                          Innkeepers, The
## 11639                                                                                                                                        Trailer Park Boys
## 11640                                                                                                                                              John Carter
## 11641                                                                                                                                                     Goon
## 11642                                                                                                                                           21 Jump Street
## 11643                                                                                                                        American Reunion (American Pie 4)
## 11644                                                                                                                                     The Raid: Redemption
## 11645                                                                                                                                  Cabin in the Woods, The
## 11646                                                                                                                                        God Bless America
## 11647                                                                                                                                               Battleship
## 11648                                                                                                                          Best Exotic Marigold Hotel, The
## 11649                                                                                                                                            Dictator, The
## 11650                                                                                                                            Pirates! Band of Misfits, The
## 11651                                                                                                                                               Prometheus
## 11652                                                                                                                                         Moonrise Kingdom
## 11653                                                                                                                                    Safety Not Guaranteed
## 11654                                                                  Dragon Ball: Sleeping Princess in Devil's Castle (Doragon bôru: Majinjô no nemuri hime)
## 11655  Dragon Ball Z the Movie: The World's Strongest (a.k.a. Dragon Ball Z: The Strongest Guy in The World) (Doragon bôru Z: Kono yo de ichiban tsuyoi yatsu)
## 11656                                                                Dragon Ball Z the Movie: The Tree of Might (Doragon bôru Z 3: Chikyû marugoto chô kessen)
## 11657                                                                                                                                                      Ted
## 11658                                                               Dragon Ball Z: The Return of Cooler (Doragon bôru Z 6: Gekitotsu! Hyakuoku pawâ no senshi)
## 11659                                                                       Dragon Ball Z: Cooler's Revenge (Doragon bôru Z 5: Tobikkiri no saikyô tai saikyô)
## 11660                                           Dragon Ball Z: Broly - The Legendary Super Saiyan (Doragon bôru Z 8: Moetsukiro!! Nessen retsusen-chô gekisen)
## 11661                                                                                                                                  Amazing Spider-Man, The
## 11662                                                                                                                              Beasts of the Southern Wild
## 11663                                                                     Dragon Ball Z: Bio-Broly (Doragon bôru Z 11: Sûpâ senshi gekiha! Katsu no wa ore da)
## 11664                                                                   Dragon Ball Z: Fusion Reborn (Doragon bôru Z 12: Fukkatsu no fyushon!! Gokû to Bejîta)
## 11665                                                                                                                                             Total Recall
## 11666                                                 Dragon Ball Z: Wrath of the Dragon (Doragon bôru Z 13: Ryûken bakuhatsu!! Gokû ga yaraneba dare ga yaru)
## 11667            Dragon Ball Z: Bardock - The Father of Goku (Doragon bôru Z: Tatta hitori no saishuu kessen - Furiiza ni itonda Z senshi Kakarotto no chichi)
## 11668                                   Dragon Ball Z: The History of Trunks (Doragon bôru Z: Zetsubô e no hankô!! Nokosareta chô senshi - Gohan to Torankusu)
## 11669                                                            Dragon Ball GT: A Hero's Legacy (Doragon bôru GT: Gokû gaiden! Yûki no akashi wa sû-shin-chû)
## 11670                                                                                                                                                  Skyfall
## 11671                                                                                                                                            Campaign, The
## 11672                                                                                                                                               ParaNorman
## 11673                                                                                                                                                  Lawless
## 11674                                                                                                                                            Pitch Perfect
## 11675                                                                                                                                                   Looper
## 11676                                                                                                                                                    Dredd
## 11677                                                                                                                                             End of Watch
## 11678                                                                                                                         Perks of Being a Wallflower, The
## 11679                                                                                                                                        Seven Psychopaths
## 11680                                                                                                                                              Cloud Atlas
## 11681                                                                                                                                      Killing Them Softly
## 11682                                                                                                                                           Wreck-It Ralph
## 11683                                                                                                                                  Silver Linings Playbook
## 11684                                                                                                                                                   Flight
## 11685                                                                                                                                               Life of Pi
## 11686                                                                                                                                                  Redline
## 11687                                                                                                                       Hobbit: An Unexpected Journey, The
## 11688                                                                          Evil Cult, The (Lord of the Wu Tang) (Yi tian tu long ji: Zhi mo jiao jiao zhu)
## 11689                                                                                                                                         Zero Dark Thirty
## 11690                                                                                                                                             Jack Reacher
## 11691                                                                                                                                         Django Unchained
## 11692                                                                                                                          Impossible, The (Imposible, Lo)
## 11693                                                                                                                                           Gangster Squad
## 11694                                                                                                                                               Sightseers
## 11695                                                                                                                                             Side Effects
## 11696                                                                                                                                          Before Midnight
## 11697                                                                                                                              Place Beyond the Pines, The
## 11698                                                                                                                                                 Oblivion
## 11699                                                                                                                                              Pain & Gain
## 11700                                                                                                                                          This Is the End
## 11701                                                                                                                                                      Mud
## 11702                                                                                                                               Legendary Weapons of China
## 11703                                                                                                                                        Great Gatsby, The
## 11704                                                                                                                                  Star Trek Into Darkness
## 11705                                                                                                           Fast & Furious 6 (Fast and the Furious 6, The)
## 11706                                                                                                                                       Way, Way Back, The
## 11707                                                                                                                                             Man of Steel
## 11708                                                                                                                                     Kings of Summer, The
## 11709                                                                                                                                              Pacific Rim
## 11710                                                                                                                                              World War Z
## 11711                                                                                                                                                  Elysium
## 11712                                                                                                                                         Lone Ranger, The
## 11713                                                                                                                                        Fruitvale Station
## 11714                                                                                                                                           Conjuring, The
## 11715                                                                                                                                           Wolverine, The
## 11716                                                                                                                                                  Gravity
## 11717                                                                                                                                                     Rush
## 11718                                                                                                                                            Short Term 12
## 11719                                                                                                                                                  Don Jon
## 11720                                                                                                                                         Captain Phillips
## 11721                                                                                                                                             Ender's Game
## 11722                                                                                                                                      Toy Story of Terror
## 11723                                                                                                                                       Dallas Buyers Club
## 11724                                                                                                                          The Hunger Games: Catching Fire
## 11725                                                                                                                     Hobbit: The Desolation of Smaug, The
## 11726                                                                                                                                                 47 Ronin
## 11727                                                                                                                                 Wolf of Wall Street, The
## 11728                                                                                                                                          American Hustle
## 11729                                                                                                                         Secret Life of Walter Mitty, The
## 11730                                                                                                                                                      Her
## 11731                                                                                                                                            Lone Survivor
## 11732                                                                                                                        Anchorman 2: The Legend Continues
## 11733                                                                                                                                              Snowpiercer
## 11734                                                                                                                            Dragon Ball Z: Battle of Gods
## 11735                                                                                                                              Dragon ball Z 04: Lord Slug
## 11736                                                                                         Dragon Ball: The Path to Power (Doragon bôru: Saikyô e no michi)
## 11737                                                                                                                                                Divergent
## 11738                                                                                                                                                     <NA>
## 11739                                                                                                                                           The Lego Movie
## 11740                                                                                                                                  Nymphomaniac: Volume II
## 11741                                                                                                                                Four, The (Si da ming bu)
## 11742                                                                                                                                Grand Budapest Hotel, The
## 11743                                                                                                                                             Interstellar
## 11744                                                                                                                                           Need for Speed
## 11745                                                                                                                                                Bad Words
## 11746                                                                                                                                                     Noah
## 11747                                                                                                                                 Wetlands (Feuchtgebiete)
## 11748                                                                                                                                     The Raid 2: Berandal
## 11749                                                                                                                                                    Locke
## 11750                                                                                                                                                     Lucy
## 11751                                                                                                                               X-Men: Days of Future Past
## 11752                                                                                                                                                 Godzilla
## 11753                                                                                                                                              Kelly & Cal
## 11754                                                                                                                                               Maleficent
## 11755                                                                                                                                         Edge of Tomorrow
## 11756                                                                                                                       Mission: Impossible - Rogue Nation
## 11757                                                                                                                                   The Fault in Our Stars
## 11758                                                                                                         Birdman: Or (The Unexpected Virtue of Ignorance)
## 11759                                                                                                                                                  Boyhood
## 11760                                                                                                                                            Babadook, The
## 11761                                                                                                                                                 Whiplash
## 11762                                                                                                                                                Gone Girl
## 11763                                                                                                                           Dawn of the Planet of the Apes
## 11764                                                                                                                                      Purge: Anarchy, The
## 11765                                                                                                                                  Guardians of the Galaxy
## 11766                                                                                                                                               Housebound
## 11767                                                                                                                             Teenage Mutant Ninja Turtles
## 11768                                                                                                                             Sin City: A Dame to Kill For
## 11769                                                                                                                                                 The Drop
## 11770                                                                                                                                         Maze Runner, The
## 11771                                                                                                                                          American Sniper
## 11772                                                                                                                                                     Tusk
## 11773                                                                                                                                           Predestination
## 11774                                                                                                                                What We Do in the Shadows
## 11775                                                                                                                                                John Wick
## 11776                                                                                                                                           Salvation, The
## 11777                                                                                                                                             Nightcrawler
## 11778                                                                                                                                               Ex Machina
## 11779                                                                                                                       Simpsons: The Longest Daycare, The
## 11780                                                                                                                                                        9
## 11781                                                                                                                                       Stonehearst Asylum
## 11782                                                                                                                                       The Imitation Game
## 11783                                                                                                                    The Hunger Games: Mockingjay - Part 1
## 11784                                                                                                                                        Dear White People
## 11785                                                                                                                                 The Theory of Everything
## 11786                                                                                                                                           Jurassic World
## 11787                                                                                                                                               The Voices
## 11788                                                                                                                The Hobbit: The Battle of the Five Armies
## 11789                                                                                                                             Kingsman: The Secret Service
## 11790                                                                                                                                                  Chappie
## 11791                                                                                                                                               It Follows
## 11792                                                                                                                                       Mad Max: Fury Road
## 11793                                                                                                               Star Wars: Episode VII - The Force Awakens
## 11794                                                                                                                                                 Warcraft
## 11795                                                                                                                                                  Ant-Man
## 11796                                                                                                                                                 Deadpool
## 11797                                                                                                                                        X-Men: Apocalypse
## 11798                                                                                                                           Rudolph the Red-Nosed Reindeer
## 11799                                                                                                                                                     Dope
## 11800                                                                                                                                        The Hateful Eight
## 11801                                                                                                                                              Backcountry
## 11802                                                                                                                                                     Muck
## 11803                                                                                                                                              The Lobster
## 11804                                                                                                                                              The Martian
## 11805                                                                                                                                                  Minions
## 11806                                                                                                                                          The Jungle Book
## 11807                                                                                                                                             Afro Samurai
## 11808                                                                                                                                             The Revenant
## 11809                                                                                                                                                  Sicario
## 11810                                                                                                                                                The Witch
## 11811                                                                                                                                   Straight Outta Compton
## 11812                                                                                                                                                Deathgasm
## 11813                                                                                                                                               Green Room
## 11814                                                                                                                                                    Creed
## 11815                                                                                                                                           Big Short, The
## 11816                                                                                                                                      10 Cloverfield Lane
## 11817                                                                                                                                     The Brothers Grimsby
## 11818                                                                                                                                                   Demons
## 11819                                                                                                                                                     Hush
## 11820                                                                                                                                            The Nice Guys
## 11821                                                                                                                                           The Video Dead
## 11822                                                                                                                                          The Conjuring 2
## 11823                                                                                                                            Kingsglaive: Final Fantasy XV
## 11824                                                                                                                                                     <NA>
## 11825                                                                                                                                                GoldenEye
## 11826                                                                                                                                                   Casino
## 11827                                                                                                                                    Sense and Sensibility
## 11828                                                                                                                                            Happy Gilmore
## 11829                                                                                                                                               Braveheart
## 11830                                                                                                                                           Batman Forever
## 11831                                                                                                                       Star Wars: Episode IV - A New Hope
## 11832                                                                                                                                             Forrest Gump
## 11833                                                                                                                                         Schindler's List
## 11834                                                                                                                                                   Batman
## 11835                                                                                                                                          Pallbearer, The
## 11836                                                                                                                                               Casablanca
## 11837                                                                                                                     William Shakespeare's Romeo + Juliet
## 11838                                                                                                                             Monty Python's Life of Brian
## 11839                                                                                                                               E.T. the Extra-Terrestrial
## 11840                                                                                                                          Monty Python and the Holy Grail
## 11841                                                                                                           Star Wars: Episode V - The Empire Strikes Back
## 11842                                                                                                               Star Wars: Episode VI - Return of the Jedi
## 11843                                                                                                                                                   Patton
## 11844                                                                                                                                          Field of Dreams
## 11845                                                                                                                                           Batman Returns
## 11846                                                                                                                                           Batman & Robin
## 11847                                                                                                                                                  Contact
## 11848                                                                                                                                        Good Will Hunting
## 11849                                                                                                                                                  Titanic
## 11850                                                                                                                                      Tomorrow Never Dies
## 11851                                                                                                                                              Deep Impact
## 11852                                                                                                                                               Armageddon
## 11853                                                                                                                                          Lethal Weapon 4
## 11854                                                                                                                                                    Rocky
## 11855                                                                                                                                                 Rain Man
## 11856                                                                                                                                            Lethal Weapon
## 11857                                                                                                                                          Lethal Weapon 3
## 11858                                                                                                                                      Saving Private Ryan
## 11859                                                                                                                                               Swing Kids
## 11860                                                                                                                                                    Blade
## 11861                                                                                                                                                       54
## 11862                                                                                                                                        Gods and Monsters
## 11863                                                                                                                                      Shakespeare in Love
## 11864                                                                                                                                                  Payback
## 11865                                                                                                                                         Cruel Intentions
## 11866                                                                                                                                           Wing Commander
## 11867                                                                                                                                              Matrix, The
## 11868                                                                                                                               10 Things I Hate About You
## 11869                                                                                                                Star Wars: Episode I - The Phantom Menace
## 11870                                                                                                                                                 Superman
## 11871                                                                                                                     South Park: Bigger, Longer and Uncut
## 11872                                                                                                                                 Blair Witch Project, The
## 11873                                                                                                                                         Sixth Sense, The
## 11874                                                                                                                                                Toy Story
## 11875                                                                                                                                         Grumpier Old Men
## 11876                                                                                                                       Twelve Monkeys (a.k.a. 12 Monkeys)
## 11877                                                                                                                                             Crimson Tide
## 11878                                                                                                       Interview with the Vampire: The Vampire Chronicles
## 11879                                                                                                                       Star Wars: Episode IV - A New Hope
## 11880                                                                                                                                                 Stargate
## 11881                                                                                                                                Shawshank Redemption, The
## 11882                                                                                                                                              Client, The
## 11883                                                                                                                                                Crow, The
## 11884                                                                                                                                             Forrest Gump
## 11885                                                                                                                                                 Maverick
## 11886                                                                                                                                                    Speed
## 11887                                                                                                                                                  Timecop
## 11888                                                                                                                                           Demolition Man
## 11889                                                                                                                                            Jurassic Park
## 11890                                                                                                                                               Piano, The
## 11891                                                                                                                                Robin Hood: Men in Tights
## 11892                                                                                                                                         Schindler's List
## 11893                                                                                                                                             Blade Runner
## 11894                                                                                                                               Terminator 2: Judgment Day
## 11895                                                                                                                                                   Batman
## 11896                                                                                                                             Truth About Cats & Dogs, The
## 11897                                                                                                                                                   Eraser
## 11898                                                                                                                                                Lone Star
## 11899                                                                                                                                           Godfather, The
## 11900                                                                                                                                Island of Dr. Moreau, The
## 11901                                                                                                                                      Singin' in the Rain
## 11902                                                                                                                                              Rear Window
## 11903                                                                                                                                       North by Northwest
## 11904                                                                                                                                             Citizen Kane
## 11905                                                                                                                                         To Catch a Thief
## 11906                                                                                                                                    It's a Wonderful Life
## 11907                                                                                                                                         Bringing Up Baby
## 11908                                                                                                                             Monty Python's Life of Brian
## 11909                                                                                                                                               Abyss, The
## 11910                                                                                                           Star Wars: Episode V - The Empire Strikes Back
## 11911                                                                                                                                      Princess Bride, The
## 11912                                                                                  Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 11913                                                                                       Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il)
## 11914                                                                                                                                    To Kill a Mockingbird
## 11915                                                                                                                                           Apocalypse Now
## 11916                                                                                                                                                    Alien
## 11917                                                                                                                                                   Psycho
## 11918                                                                                                                                  Godfather: Part II, The
## 11919                                                                                                                                                  Amadeus
## 11920                                                                                                                                               Sting, The
## 11921                                                                                                                                          Terminator, The
## 11922                                                                                                                           Day the Earth Stood Still, The
## 11923                                                                                                                                             Shining, The
## 11924                                                                                                                                              Stand by Me
## 11925                                                                                                                                            Groundhog Day
## 11926                                                                                                                                       Back to the Future
## 11927                                                                                                                                                   Patton
## 11928                                                                                                                                       Young Frankenstein
## 11929                                                                                                                                       This Is Spinal Tap
## 11930                                                                                                                       Indiana Jones and the Last Crusade
## 11931                                                                                                                                              Real Genius
## 11932                                                                                                                                 Star Trek: First Contact
## 11933                                                                                                                                              Sling Blade
## 11934                                                                                                                            Star Trek IV: The Voyage Home
## 11935                                                                                                                                             Benny & Joon
## 11936                                                                                                              Austin Powers: International Man of Mystery
## 11937                                                                                                                                Men in Black (a.k.a. MIB)
## 11938                                                                                                                                                  Contact
## 11939                                                                                                                                           Rainmaker, The
## 11940                                                                                                                                                  Titanic
## 11941                                                                                                                                               Armageddon
## 11942                                                                                                                                                Labyrinth
## 11943                                                                                                                                              Poltergeist
## 11944                                                                                                                                                 Gremlins
## 11945                                                                                                                                             Goonies, The
## 11946                                                                                                                               Back to the Future Part II
## 11947                                                                                                                              Back to the Future Part III
## 11948                                                                                                                     Indiana Jones and the Temple of Doom
## 11949                                                                                                                                            Weird Science
## 11950                                                                                                                                   NeverEnding Story, The
## 11951                                                                                                                                                    Blade
## 11952                                                                                                                                              Beetlejuice
## 11953                                                                                                                                                     Rope
## 11954                                                                                                                                                 Rounders
## 11955                                                                                                                                           Producers, The
## 11956                                                                                                                                          My Cousin Vinny
## 11957                                                                                                                           2010: The Year We Make Contact
## 11958                                                                                                                                            Bug's Life, A
## 11959                                                                                                                                                   Fletch
## 11960                                                                                               Christmas Vacation (National Lampoon's Christmas Vacation)
## 11961                                                                                                                                          You've Got Mail
## 11962                                                                                                                                                 Fly, The
## 11963                                                                                                                                             Office Space
## 11964                                                                                                                                              Matrix, The
## 11965                                                                                                                                                 eXistenZ
## 11966                                                                                                                                Run Lola Run (Lola rennt)
## 11967                                                                                                                                           Arlington Road
## 11968                                                                                                                                 Blair Witch Project, The
## 11969                                                                                                                                                      Big
## 11970                                                                                                                                           Stir of Echoes
## 11971                                                                                                                                             Total Recall
## 11972                                                                                                                                               Fight Club
## 11973                                                                                                                                         Live and Let Die
## 11974                                                                                                                                           American Movie
## 11975                                                                                                                                             Falling Down
## 11976                                                                                                                                               Spaceballs
## 11977                                                                                                                                                 Scrooged
## 11978                                                                                                                                          Green Mile, The
## 11979                                                                                                                                         Scent of a Woman
## 11980                                                                                                                                          Erin Brockovich
## 11981                                                                                                                                                Frequency
## 11982                                                                                                                                          Blazing Saddles
## 11983                                                                                                                                                    X-Men
## 11984                                                                                                                                         Meet the Parents
## 11985                                                                                                                                        Time Machine, The
## 11986                                                                                                                                       Enemy at the Gates
## 11987                                                                                                                                                  Memento
## 11988                                                                                                                                                    Shrek
## 11989                                                                                                                         Bill & Ted's Excellent Adventure
## 11990                                                                                                                          It's a Mad, Mad, Mad, Mad World
## 11991                                                                                                                                             Donnie Darko
## 11992                                                                                                            Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 11993                                                                                                                                              Vanilla Sky
## 11994                                                                                                                               Bill & Ted's Bogus Journey
## 11995                                                                                                       Lord of the Rings: The Fellowship of the Ring, The
## 11996                                                                                                                                               Brainstorm
## 11997                                                                                                                                        Time Machine, The
## 11998                                                                                                                                          Minority Report
## 11999                                                                                                                     Professional, The (Le professionnel)
## 12000                                                                                                                   Lord of the Rings: The Two Towers, The
## 12001                                                                                                                                                 Identity
## 12002                                                                                                                       Terminator 3: Rise of the Machines
## 12003                                                                                                                                             Ginger Snaps
## 12004                                                                                                           Lord of the Rings: The Return of the King, The
## 12005                                                                                                                                     The Butterfly Effect
## 12006                                                                                                                    Eternal Sunshine of the Spotless Mind
## 12007                                                                                                                                                Explorers
## 12008                                                                                                                                Pirates of Silicon Valley
## 12009                                                                                                                                            Before Sunset
## 12010                                                                                                                                                      Saw
## 12011                                                                                                                                           Blade: Trinity
## 12012                                                                                                                                              Jacket, The
## 12013                                                                                                                                                    Crash
## 12014                                                                                                                                            Batman Begins
## 12015                                                                                                                                              Island, The
## 12016                                                                                                                                                   Saw II
## 12017                                                                                                                                           Producers, The
## 12018                                                                                                                                     Hills Have Eyes, The
## 12019                                                                                                                                               To Die For
## 12020                                                                                                                                  Quick and the Dead, The
## 12021                                                                                                                                       Secret Garden, The
## 12022                                                                                                                                                  Sabrina
## 12023                                                                                                                             Mr. Smith Goes to Washington
## 12024                                                                                                                                          Sophie's Choice
## 12025                                                                                                                                             My Left Foot
## 12026                                                                                                                                     Arsenic and Old Lace
## 12027                                                                                                                                      Waiting for Guffman
## 12028                                                                                                                                       Dangerous Liaisons
## 12029                                                                                                                                                Peter Pan
## 12030                                                                                                                                                Elizabeth
## 12031                                                                                                                                    From Russia with Love
## 12032                                                                                                                                          Blazing Saddles
## 12033                                                                                                                                             Best in Show
## 12034                                                                                                       How the Grinch Stole Christmas (a.k.a. The Grinch)
## 12035                                                                                                                                            City Slickers
## 12036                                                                                                                                                   Volver
## 12037                                                                                                                                            Blood Diamond
## 12038                                                                                                                                                 Stardust
## 12039                                                                                                                                                Toy Story
## 12040                                                                                                                                                     Heat
## 12041                                                                                                                                                GoldenEye
## 12042                                                                                                                       Twelve Monkeys (a.k.a. 12 Monkeys)
## 12043                                                                                                                                                     Babe
## 12044                                                                                                                                                 Clueless
## 12045                                                                                                                                     Seven (a.k.a. Se7en)
## 12046                                                                                                                                       Mr. Holland's Opus
## 12047                                                                                                                                      From Dusk Till Dawn
## 12048                                                                                                                                                Screamers
## 12049                                                                                                                                             Broken Arrow
## 12050                                                                                                                                               Braveheart
## 12051                                                                                                                                              Taxi Driver
## 12052                                                                                                                                            Birdcage, The
## 12053                                                                                                                                             Crimson Tide
## 12054                                                                                                                                                Desperado
## 12055                                                                                                                               Die Hard: With a Vengeance
## 12056                                                                                                                                              Judge Dredd
## 12057                                                                                                                                                 Net, The
## 12058                                                                                                                                               Waterworld
## 12059                                                                                                                                                   Clerks
## 12060                                                                                                                          Dumb & Dumber (Dumb and Dumber)
## 12061                                                                                                       Interview with the Vampire: The Vampire Chronicles
## 12062                                                                                                                       Star Wars: Episode IV - A New Hope
## 12063                                                                                                                                     Natural Born Killers
## 12064                                                                                                                                                 Outbreak
## 12065                                                                                                  Léon: The Professional (a.k.a. The Professional) (Léon)
## 12066                                                                                                                                             Pulp Fiction
## 12067                                                                                                                                                 Stargate
## 12068                                                                                                                                Shawshank Redemption, The
## 12069                                                                                                                                   Star Trek: Generations
## 12070                                                                                                                                  While You Were Sleeping
## 12071                                                                                                                               Ace Ventura: Pet Detective
## 12072                                                                                                                                 Clear and Present Danger
## 12073                                                                                                                                                Crow, The
## 12074                                                                                                                                             Forrest Gump
## 12075                                                                                                                                           Lion King, The
## 12076                                                                                                                                                Mask, The
## 12077                                                                                                                                                    Speed
## 12078                                                                                                                                                True Lies
## 12079                                                                                                                                                 Airheads
## 12080                                                                                                                                           Demolition Man
## 12081                                                                                                                                            Fugitive, The
## 12082                                                                                                                                            Jurassic Park
## 12083                                                                                                                                           Mrs. Doubtfire
## 12084                                                                                                                                             Blade Runner
## 12085                                                                                                                          Nightmare Before Christmas, The
## 12086                                                                                                                                               Home Alone
## 12087                                                                                                                                                    Ghost
## 12088                                                                                                                                                  Aladdin
## 12089                                                                                                                               Terminator 2: Judgment Day
## 12090                                                                                                                                       Dances with Wolves
## 12091                                                                                                                                                   Batman
## 12092                                                                                                                                Silence of the Lambs, The
## 12093                                                                                                                                     Beauty and the Beast
## 12094                                                                                                                                             Pretty Woman
## 12095                                                                                                                                                    Fargo
## 12096                                                                                                                                      Mission: Impossible
## 12097                                                                                                          Wallace & Gromit: The Best of Aardman Animation
## 12098                                                                                                                                                Rock, The
## 12099                                                                                                                                                  Twister
## 12100                                                                                                                      Ghost in the Shell (Kôkaku kidôtai)
## 12101                                                                                                                          Wallace & Gromit: A Close Shave
## 12102                                                                                     Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb
## 12103                                                                                                                            Independence Day (a.k.a. ID4)
## 12104                                                                                                                                Crow: City of Angels, The
## 12105                                                                                                                                         Escape from L.A.
## 12106                                                                                                                                        Wizard of Oz, The
## 12107                                                                                                                                    2001: A Space Odyssey
## 12108                                                                                                                                                 Die Hard
## 12109                                                                                                                      Willy Wonka & the Chocolate Factory
## 12110                                                                                                                                     Fish Called Wanda, A
## 12111                                                                                                                             Monty Python's Life of Brian
## 12112                                                                                                                               E.T. the Extra-Terrestrial
## 12113                                                                                                                                     Escape from New York
## 12114                                                                                                                          Monty Python and the Holy Grail
## 12115                                                                                                                     Wallace & Gromit: The Wrong Trousers
## 12116                                                                                                           Star Wars: Episode V - The Empire Strikes Back
## 12117                                                                                                                                      Princess Bride, The
## 12118                                                                                  Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 12119                                                                                                                                                   Brazil
## 12120                                                                                                                                                   Aliens
## 12121                                                                                                                                      Clockwork Orange, A
## 12122                                                                                                                                           Apocalypse Now
## 12123                                                                                                               Star Wars: Episode VI - Return of the Jedi
## 12124                                                                                                                                                    Alien
## 12125                                                                                                                                         Army of Darkness
## 12126                                                                                                                                                      Ran
## 12127                                                                                                                                      Blues Brothers, The
## 12128                                                                                                                                        Full Metal Jacket
## 12129                                                                                                                 Grand Day Out with Wallace and Gromit, A
## 12130                                                                                                                                          Terminator, The
## 12131                                                                                                                                             Shining, The
## 12132                                                                                                                                        Great Escape, The
## 12133                                                                                                                                            Groundhog Day
## 12134                                                                                                                                       Back to the Future
## 12135                                                                                                                                                    Akira
## 12136                                                                                                                                       Young Frankenstein
## 12137                                                                                                                                                 Fantasia
## 12138                                                                                                                       Indiana Jones and the Last Crusade
## 12139                                                                                                                          American Werewolf in London, An
## 12140                                                                                                                                                   Grease
## 12141                                                                                                                                                     Jaws
## 12142                                                                                                                                            Jerry Maguire
## 12143                                                                                                              Austin Powers: International Man of Mystery
## 12144                                                                                                                                       Fifth Element, The
## 12145                                                                                                                                                  Con Air
## 12146                                                                                                                                Men in Black (a.k.a. MIB)
## 12147                                                                                                                                                  Contact
## 12148                                                                                                                                                    Spawn
## 12149                                                                                                                                Hunt for Red October, The
## 12150                                                                                                                                                  Gattaca
## 12151                                                                                                                                        Starship Troopers
## 12152                                                                                                                                         Truman Show, The
## 12153                                                                                                                                        Good Will Hunting
## 12154                                                                                                                                                  Titanic
## 12155                                                                                                                                        Big Lebowski, The
## 12156                                                                                                                                      Blues Brothers 2000
## 12157                                                                                                                                                   Sphere
## 12158                                                                                                                                       As Good as It Gets
## 12159                                                                                                                                               Armageddon
## 12160                                                                                                                             There's Something About Mary
## 12161                                                                                                                                                 Rain Man
## 12162                                                                                                                                                Labyrinth
## 12163                                                                                                                                      Breakfast Club, The
## 12164                                                                                                                                            Lethal Weapon
## 12165                                                                                                                                          Lethal Weapon 2
## 12166                                                                                                                                             Goonies, The
## 12167                                                                                                                               Back to the Future Part II
## 12168                                                                                                                              Back to the Future Part III
## 12169                                                                                                                                                     Dune
## 12170                                                                                                                                 Honey, I Shrunk the Kids
## 12171                                                                                                                                      Little Mermaid, The
## 12172                                                                                                                                                     Tron
## 12173                                                                                                                     Indiana Jones and the Temple of Doom
## 12174                                                                                                                                      Secret of NIMH, The
## 12175                                                                                                                                        Dark Crystal, The
## 12176                                                                                                                                                    Blade
## 12177                                                                                                                                              Beetlejuice
## 12178                                                                                                                                       Six-String Samurai
## 12179                                                                                                                                      Edward Scissorhands
## 12180                                                                                                                                            Pleasantville
## 12181                                                                                                                                            Bug's Life, A
## 12182                                                                                                                                                 Rushmore
## 12183                                                                                                                                          Howard the Duck
## 12184                                                                                                                                             Office Space
## 12185                                                                                                                                              Logan's Run
## 12186                                                                                                                                       Planet of the Apes
## 12187                                                                                                                                         Cruel Intentions
## 12188                                                                                                                        Lock, Stock & Two Smoking Barrels
## 12189                                                                                                                                              Matrix, The
## 12190                                                                                                                                                 Election
## 12191                                                                                                                                                 eXistenZ
## 12192                                                                                                                Star Wars: Episode I - The Phantom Menace
## 12193                                                                                                                                                 Superman
## 12194                                                                                                                                              Superman II
## 12195                                                                                                                                             Notting Hill
## 12196                                                                                                                    Austin Powers: The Spy Who Shagged Me
## 12197                                                                                                                     South Park: Bigger, Longer and Uncut
## 12198                                                                                                                                             American Pie
## 12199                                                                                                                                       Muppets From Space
## 12200                                                                                                                                 Blair Witch Project, The
## 12201                                                                                                                      Ghostbusters (a.k.a. Ghost Busters)
## 12202                                                                                                                                         Sixth Sense, The
## 12203                                                                                                Monty Python's And Now for Something Completely Different
## 12204                                                                                                                                                      Big
## 12205                                                                                                                                        Universal Soldier
## 12206                                                                                                                                          American Beauty
## 12207                                                                                                                                             Total Recall
## 12208                                                                                                                                 Ferris Bueller's Day Off
## 12209                                                                                                                                               Fight Club
## 12210                                                                                                                                             Time Bandits
## 12211                                                                                                                                                  RoboCop
## 12212                                                                                                                                                RoboCop 2
## 12213                                                                                                                                 Who Framed Roger Rabbit?
## 12214                                                                                                                        Princess Mononoke (Mononoke-hime)
## 12215                                                                                                                                               Spaceballs
## 12216                                                                                                                                                    Dogma
## 12217                                                                                              Adventures of Buckaroo Banzai Across the 8th Dimension, The
## 12218                                                                                                                                            Sleepy Hollow
## 12219                                                                                                                                              Toy Story 2
## 12220                                                                                                                                          Green Mile, The
## 12221                                                                                                                                   Cider House Rules, The
## 12222                                                                                                                                             Galaxy Quest
## 12223                                                                                                                                                Stalag 17
## 12224                                                                                                                                    Boys from Brazil, The
## 12225                                                                                                                                 Buffy the Vampire Slayer
## 12226                                                                                                                                     Boondock Saints, The
## 12227                                                                                                                                        Muppet Movie, The
## 12228                                                                                                                                  Great Muppet Caper, The
## 12229                                                                                                                              Muppets Take Manhattan, The
## 12230                                                                                                                                          Erin Brockovich
## 12231                                                                                                                                          Thelma & Louise
## 12232                                                                                                                                             Animal House
## 12233                                                                                                                                        Creature Comforts
## 12234                                                                                                                             Teenage Mutant Ninja Turtles
## 12235                                                                                                  Teenage Mutant Ninja Turtles II: The Secret of the Ooze
## 12236                                                                                                                       Close Encounters of the Third Kind
## 12237                                                                                                                                                 Predator
## 12238                                                                                                                                                Gladiator
## 12239                                                                                                                                   Mission: Impossible II
## 12240                                                                                                                                          Blazing Saddles
## 12241                                                                                                                                                  Mad Max
## 12242                                                                                                                            Road Warrior, The (Mad Max 2)
## 12243                                                                                                                               Mad Max Beyond Thunderdome
## 12244                                                                                                                                              Chicken Run
## 12245                                                                                                                                             Patriot, The
## 12246                                                                                                                                                    X-Men
## 12247                                                                                                                                              Bring It On
## 12248                                                                                                                                            Almost Famous
## 12249                                                                                                                                         Charlie's Angels
## 12250                                                                                                                                              Unbreakable
## 12251                                                                                                         Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 12252                                                                                                                                                   Snatch
## 12253                                                                                                                               O Brother, Where Art Thou?
## 12254                                                                                                                     Don't Tell Mom the Babysitter's Dead
## 12255                                                                                                                                              Cherry 2000
## 12256                                                                                                                                    Bridget Jones's Diary
## 12257                                                                                                                                       Mummy Returns, The
## 12258                                                                                                                                                    Shrek
## 12259                                                                                                                        Final Fantasy: The Spirits Within
## 12260                                                                                                                                           Legally Blonde
## 12261                                                                                                                      Adventures of Baron Munchausen, The
## 12262                                                                                                                                  Dirty Rotten Scoundrels
## 12263                                                                                                                           Return of the Living Dead, The
## 12264                                                                                                                                           Monsters, Inc.
## 12265                                                                  Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 12266                                                                                                                                           Ocean's Eleven
## 12267                                                                                                                                    Royal Tenenbaums, The
## 12268                                                                                                       Lord of the Rings: The Fellowship of the Ring, The
## 12269                                                                                                                                        Time Machine, The
## 12270                                                                                                                                                  Ice Age
## 12271                                                                                                                                                 Blade II
## 12272                                                                                                                                               Spider-Man
## 12273                                                                                                             Star Wars: Episode II - Attack of the Clones
## 12274                                                                                                                                          Minority Report
## 12275                                                                                                                                                    Signs
## 12276                                                                                                                                               Rollerball
## 12277                                                                                                            Spirited Away (Sen to Chihiro no kamikakushi)
## 12278                                                                                                                                             Strange Brew
## 12279                                                                                                                                    Bowling for Columbine
## 12280                                                                                                                     Professional, The (Le professionnel)
## 12281                                                                                                                  Harry Potter and the Chamber of Secrets
## 12282                                                                                                                                              Equilibrium
## 12283                                                                                                                                        Last Unicorn, The
## 12284                                                                                                                                                Daredevil
## 12285                                                                                                                                              Phone Booth
## 12286                                                                                                                                    Andromeda Strain, The
## 12287                                                                                                                                           Fahrenheit 451
## 12288                                                                                                                                                 Wiz, The
## 12289                                                                                                                                         X2: X-Men United
## 12290                                                                                                       Laputa: Castle in the Sky (Tenkû no shiro Rapyuta)
## 12291                                                                                                                                     Matrix Reloaded, The
## 12292                                                                                                                                             Finding Nemo
## 12293                                                                                                                       Terminator 3: Rise of the Machines
## 12294                                                                                                   Pirates of the Caribbean: The Curse of the Black Pearl
## 12295                                                                                                      League of Extraordinary Gentlemen, The (a.k.a. LXG)
## 12296                                                                                                                                                 THX 1138
## 12297                                                                                                                                        Pink Panther, The
## 12298                                                                                                                                             Bubba Ho-tep
## 12299                                                                                                                       Monty Python's The Meaning of Life
## 12300                                                                                                                                                      PCU
## 12301                                                                                                                                        Kill Bill: Vol. 1
## 12302                                                                                                                                  Matrix Revolutions, The
## 12303                                                                                            Nausicaä of the Valley of the Wind (Kaze no tani no Naushika)
## 12304                                                                                                                                        Last Samurai, The
## 12305                                                                                                                                                 Big Fish
## 12306                                                                                                                                                 Paycheck
## 12307                                                                                                                                       Boy and His Dog, A
## 12308                                                                                                                                         Dawn of the Dead
## 12309                                                                                                                                                  Hellboy
## 12310                                                                                                                                         Dawn of the Dead
## 12311                                                                                                                                        Kill Bill: Vol. 2
## 12312                                                                                                                              Babylon 5: In the Beginning
## 12313                                                                                                                                                Bedazzled
## 12314                                                                                                                                Babylon 5: A Call to Arms
## 12315                                                                                                                            Babylon 5: The River of Souls
## 12316                                                                                                                                    Babylon 5: Thirdspace
## 12317                                                                                                                                         Children of Dune
## 12318                                                                                                                                                     Dune
## 12319                                                                                                                       Jin Roh: The Wolf Brigade (Jin-Rô)
## 12320                                                                                                                 Harry Potter and the Prisoner of Azkaban
## 12321                                                                                                                Kaena: The Prophecy (Kaena: La prophétie)
## 12322                                                                                                                                          Fahrenheit 9/11
## 12323                                                                                                                                             Spider-Man 2
## 12324                                                                                                                                                 I, Robot
## 12325                                                                                                                                    Bourne Supremacy, The
## 12326                                                                                                                                        Shaun of the Dead
## 12327                                                                                                                                                      Ray
## 12328                                                                                                                                         Incredibles, The
## 12329                                                                                                                                 Twilight Zone: The Movie
## 12330                                                                                                                                          Nuns on the Run
## 12331                                                                                                                                        Bring It On Again
## 12332                                                                                                                                               Layer Cake
## 12333                                                                                                                                                  Wizards
## 12334                                                                                                                                                  Elektra
## 12335                                                                                                              Howl's Moving Castle (Hauru no ugoku shiro)
## 12336                                                                                                                                 Kung Fu Hustle (Gong fu)
## 12337                                                                                                                                                 Sin City
## 12338                                                                                                             Star Wars: Episode III - Revenge of the Sith
## 12339                                                                                                                                            Batman Begins
## 12340                                                                                                                                              Island, The
## 12341                                                                                                                                                 Serenity
## 12342                                                                                                     Family Guy Presents Stewie Griffin: The Untold Story
## 12343                                                                                                                                             Corpse Bride
## 12344                                                                                                                                               MirrorMask
## 12345                                                                                                         Wallace & Gromit in The Curse of the Were-Rabbit
## 12346                                                                                                                                             Descent, The
## 12347                                                                                                                                            Walk the Line
## 12348                                                                                                                                           V for Vendetta
## 12349                                                                                                                                    X-Men: The Last Stand
## 12350                                                                                                               Pirates of the Caribbean: Dead Man's Chest
## 12351                                                                                                                                              Half Nelson
## 12352                                                                                                                                                 Accepted
## 12353                                                                                                                                                    Sicko
## 12354                                                                                                                                                  Jumanji
## 12355                                                                                                                                                GoldenEye
## 12356                                                                                                                                                   Casino
## 12357                                                                                                                       Twelve Monkeys (a.k.a. 12 Monkeys)
## 12358                                                                                                                                                     Babe
## 12359                                                                                                                                                 Clueless
## 12360                                                                                                                                     Seven (a.k.a. Se7en)
## 12361                                                                                                                                      Usual Suspects, The
## 12362                                                                                                                                               Braveheart
## 12363                                                                                                                                              Taxi Driver
## 12364                                                                                                                                            Birdcage, The
## 12365                                                                                                                                                Apollo 13
## 12366                                                                                                                                          Johnny Mnemonic
## 12367                                                                                                                                                 Net, The
## 12368                                                                                                                                                Showgirls
## 12369                                                                                                                                                   Clerks
## 12370                                                                                                       Interview with the Vampire: The Vampire Chronicles
## 12371                                                                                                                       Star Wars: Episode IV - A New Hope
## 12372                                                                                                                                             Pulp Fiction
## 12373                                                                                                                                                 Stargate
## 12374                                                                                                                                Shawshank Redemption, The
## 12375                                                                                                                                   Star Trek: Generations
## 12376                                                                                                        Adventures of Priscilla, Queen of the Desert, The
## 12377                                                                                                                                 Clear and Present Danger
## 12378                                                                                                                                             Forrest Gump
## 12379                                                                                                                                           Lion King, The
## 12380                                                                                                                                                    Speed
## 12381                                                                                                                                            Jurassic Park
## 12382                                                                                                                                           Mrs. Doubtfire
## 12383                                                                                                                                             Philadelphia
## 12384                                                                                                                                                   Sliver
## 12385                                                                                                                                                  Aladdin
## 12386                                                                                                                               Terminator 2: Judgment Day
## 12387                                                                                                                                Silence of the Lambs, The
## 12388                                                                                                                                      Mission: Impossible
## 12389                                                                                                                                                  Twister
## 12390                                                                                                                                            Trainspotting
## 12391                                                                                                                            Independence Day (a.k.a. ID4)
## 12392                                                                                                                                     Nutty Professor, The
## 12393                                                                                                                                           Godfather, The
## 12394                                                                                                                                        Wizard of Oz, The
## 12395                                                                                                                                    2001: A Space Odyssey
## 12396                                                                                                                     William Shakespeare's Romeo + Juliet
## 12397                                                                                                                                           Reservoir Dogs
## 12398                                                                                                                                         Crying Game, The
## 12399                                                                                                                               E.T. the Extra-Terrestrial
## 12400                                                                                                                          Monty Python and the Holy Grail
## 12401                                                                                                           Star Wars: Episode V - The Empire Strikes Back
## 12402                                                                                                                                                   Aliens
## 12403                                                                                                                                      Clockwork Orange, A
## 12404                                                                                                                                           Apocalypse Now
## 12405                                                                                                               Star Wars: Episode VI - Return of the Jedi
## 12406                                                                                                                                               Goodfellas
## 12407                                                                                                                                                    Alien
## 12408                                                                                                                                        Full Metal Jacket
## 12409                                                                                                                                          Terminator, The
## 12410                                                                                                                                            Groundhog Day
## 12411                                                                                                                                       Back to the Future
## 12412                                                                                                                                                   Gandhi
## 12413                                                                                                                                  Alien³ (a.k.a. Alien 3)
## 12414                                                                                                                                                   Carrie
## 12415                                                                                                                                 Star Trek: First Contact
## 12416                                                                                                                            Star Trek: The Motion Picture
## 12417                                                                                                                          Star Trek II: The Wrath of Khan
## 12418                                                                                                                      Star Trek III: The Search for Spock
## 12419                                                                                                                            Star Trek IV: The Voyage Home
## 12420                                                                                                                                                   Scream
## 12421                                                                                                                   Romy and Michele's High School Reunion
## 12422                                                                                                              Austin Powers: International Man of Mystery
## 12423                                                                                                                                       Fifth Element, The
## 12424                                                                                                                                                  Con Air
## 12425                                                                                                                                Men in Black (a.k.a. MIB)
## 12426                                                                                                                                                  Contact
## 12427                                                                                                                                                G.I. Jane
## 12428                                                                                                                                Hunt for Red October, The
## 12429                                                                                                                                                Game, The
## 12430                                                                                                                          I Know What You Did Last Summer
## 12431                                                                                                                                        Starship Troopers
## 12432                                                                                                                                            Sliding Doors
## 12433                                                                                                                                         Truman Show, The
## 12434                                                                                                                                      Alien: Resurrection
## 12435                                                                                                                                        Good Will Hunting
## 12436                                                                                                                                                 Scream 2
## 12437                                                                                                                                                  Titanic
## 12438                                                                                                                                      Tomorrow Never Dies
## 12439                                                                                                                                        Big Lebowski, The
## 12440                                                                                                                                              Wag the Dog
## 12441                                                                                                                                              Wild Things
## 12442                                                                                                                                              Deep Impact
## 12443                                                                                                                                               Armageddon
## 12444                                                                                                                             There's Something About Mary
## 12445                                                                                                                                      Breakfast Club, The
## 12446                                                                                                                                            Exorcist, The
## 12447                                                                                                                               Back to the Future Part II
## 12448                                                                                                                              Back to the Future Part III
## 12449                                                                                                                                      Saving Private Ryan
## 12450                                                                                Halloween H20: 20 Years Later (Halloween 7: The Revenge of Laurie Strode)
## 12451                                                                                                                                              Beetlejuice
## 12452                                                                                                                                                 Rounders
## 12453                                                                                                                                     What Dreams May Come
## 12454                                                                                                                                       American History X
## 12455                                                                                                                                               Siege, The
## 12456                                                                                                                                                Elizabeth
## 12457                                                                                                                                       Enemy of the State
## 12458                                                                                                                                  Star Trek: Insurrection
## 12459                                                                                                                                     Prince of Egypt, The
## 12460                                                                                                                                         Cruel Intentions
## 12461                                                                                                                        Lock, Stock & Two Smoking Barrels
## 12462                                                                                                                                              Matrix, The
## 12463                                                                                                                                               Mummy, The
## 12464                                                                                                                Star Wars: Episode I - The Phantom Menace
## 12465                                                                                                                           Rocky Horror Picture Show, The
## 12466                                                                                                                    Austin Powers: The Spy Who Shagged Me
## 12467                                                                                                                     South Park: Bigger, Longer and Uncut
## 12468                                                                                                                                             American Pie
## 12469                                                                                                                                 Blair Witch Project, The
## 12470                                                                                                                                          American Beauty
## 12471                                                                                                                                           Boys Don't Cry
## 12472                                                                                                                                             Total Recall
## 12473                                                                                                                                               Goldfinger
## 12474                                                                                                                                               Fight Club
## 12475                                                                                                                                 Who Framed Roger Rabbit?
## 12476                                                                                                                                    House on Haunted Hill
## 12477                                                                                                                                                    Dogma
## 12478                                                                                                                                                    42 Up
## 12479                                                                                                                                 World Is Not Enough, The
## 12480                                                                                                                                          Green Mile, The
## 12481                                                                                                                                            Patriot Games
## 12482                                                                                                                                                 Scream 3
## 12483                                                                                                                                              Boiler Room
## 12484                                                                                                                                                      JFK
## 12485                                                                                                                                          Thelma & Louise
## 12486                                                                                                                                                  Network
## 12487                                                                                                                                     Virgin Suicides, The
## 12488                                                                                                                                                Gladiator
## 12489                                                                                                                                                Road Trip
## 12490                                                                                                                                   Mission: Impossible II
## 12491                                                                                                                                             Patriot, The
## 12492                                                                                                                                       Perfect Storm, The
## 12493                                                                                                                                              Scary Movie
## 12494                                                                                                                                                    X-Men
## 12495                                                                                                                                            Almost Famous
## 12496                                                                                                                                 Urban Legends: Final Cut
## 12497                                                                                                                                      Requiem for a Dream
## 12498                                                                                                                                             Billy Elliot
## 12499                                                                                                                                         Charlie's Angels
## 12500                                                                                                                                             Little Nicky
## 12501                                                                                                                                             6th Day, The
## 12502                                                                                                                                              Unbreakable
## 12503                                                                                                         Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 12504                                                                                                                                              Wall Street
## 12505                                                                                                                                                   Snatch
## 12506                                                                                                                                    Dude, Where's My Car?
## 12507                                                                                                                                          What Women Want
## 12508                                                                                                                                                Cast Away
## 12509                                                                                                                                        Miss Congeniality
## 12510                                                                                                                                           Lost Boys, The
## 12511                                                                                                                                                  Memento
## 12512                                                                                                                                                     Blow
## 12513                                                                                                                                       Mummy Returns, The
## 12514                                                                                                                                                    Shrek
## 12515                                                                                                                                             Moulin Rouge
## 12516                                                                                                                                  Lara Croft: Tomb Raider
## 12517                                                                                                                                Fast and the Furious, The
## 12518                                                                                                                             A.I. Artificial Intelligence
## 12519                                                                                                                                            Scary Movie 2
## 12520                                                                                                                        Final Fantasy: The Spirits Within
## 12521                                                                                                                                              Ghost World
## 12522                                                                                                                                       Planet of the Apes
## 12523                                                                                                                                           American Pie 2
## 12524                                                                                                                                         Jeepers Creepers
## 12525                                                                                                                                             Donnie Darko
## 12526                                                                  Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 12527                                                                                                            Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 12528                                                                                                                                   Not Another Teen Movie
## 12529                                                                                                       Lord of the Rings: The Fellowship of the Ring, The
## 12530                                                                                                                                        Beautiful Mind, A
## 12531                                                                                                                                          Black Hawk Down
## 12532                                                                                                                                            Resident Evil
## 12533                                                                                                             Star Wars: Episode II - Attack of the Clones
## 12534                                                                                                                                     Bourne Identity, The
## 12535                                                                                                                                          Minority Report
## 12536                                                                                                                                            Reign of Fire
## 12537                                                                                                                                                    Signs
## 12538                                                                                                                                    Bowling for Columbine
## 12539                                                                                                                                     Saturday Night Fever
## 12540                                                                                                                                               Ghost Ship
## 12541                                                                                                                                          Die Another Day
## 12542                                                                                                                   Lord of the Rings: The Two Towers, The
## 12543                                                                                                                                      Catch Me If You Can
## 12544                                                                                                                                               Hours, The
## 12545                                                                                                                             City of God (Cidade de Deus)
## 12546                                                                                                                                      Final Destination 2
## 12547                                                                                                                                     Matrix Reloaded, The
## 12548                                                                                                                                             Finding Nemo
## 12549                                                                                                                                            28 Days Later
## 12550                                                                                                                       Terminator 3: Rise of the Machines
## 12551                                                                                                   Pirates of the Caribbean: The Curse of the Black Pearl
## 12552                                                                                                                                      Dirty Pretty Things
## 12553                                                                                                               Lara Croft Tomb Raider: The Cradle of Life
## 12554                                                                                                                                                Beethoven
## 12555                                                                                                                                          Boyz N the Hood
## 12556                                                                                                                                        Kill Bill: Vol. 1
## 12557                                                                                                                                            Scary Movie 3
## 12558                                                                                                                                  Matrix Revolutions, The
## 12559                                                                                                                                                 WarGames
## 12560                                                                                                           Lord of the Rings: The Return of the King, The
## 12561                                                                                                                                     The Butterfly Effect
## 12562                                                                                                                                         Good bye, Lenin!
## 12563                                                                                                                                        Kill Bill: Vol. 2
## 12564                                                                                                                                                     Troy
## 12565                                                                                                                                                    28 Up
## 12566                                                                                                                                  Day After Tomorrow, The
## 12567                                                                                                                 Harry Potter and the Prisoner of Azkaban
## 12568                                                                                                                                            Super Size Me
## 12569                                                                                                                                            Notebook, The
## 12570                                                                                                                                          Fahrenheit 9/11
## 12571                                                                                                                                                 I, Robot
## 12572                                                                                                                                    Bourne Supremacy, The
## 12573                                                                                                                                Resident Evil: Apocalypse
## 12574                                                                                                                                        Shaun of the Dead
## 12575                                                                                                                                              Grudge, The
## 12576                                                                                                                                        National Treasure
## 12577                                                                                                                                     Bourne Identity, The
## 12578                                                                                                                                                    35 Up
## 12579                                                                                                                                               Layer Cake
## 12580                                                                                                                                                    Crash
## 12581                                                                                                             Star Wars: Episode III - Revenge of the Sith
## 12582                                                                                                                                            Batman Begins
## 12583                                                                                                                                        War of the Worlds
## 12584                                                                                                                                              Lord of War
## 12585                                                                                                                                        Angels in America
## 12586                                                                                                                                       Brokeback Mountain
## 12587                                                                                                                      Harry Potter and the Goblet of Fire
## 12588                                                                                                                                      Final Destination 3
## 12589                                                                                                                                           V for Vendetta
## 12590                                                                                                             Lives of Others, The (Das leben der Anderen)
## 12591                                                                                     Fast and the Furious: Tokyo Drift, The (Fast and the Furious 3, The)
## 12592                                                                                                                                                    Babel
## 12593                                                                                                                                          Children of Men
## 12594                                                                                                                                            Casino Royale
## 12595                                                                                                                                                    49 Up
## 12596                                                                                                                                                Seven Up!
## 12597                                                                                                                                             7 Plus Seven
## 12598                                                                                                                                                      300
## 12599                                                                                                                                                  Shooter
## 12600                                                                                                                                                    21 Up
## 12601                                                                                                                                          This Is England
## 12602                                                                                                                Harry Potter and the Order of the Phoenix
## 12603                                                                                                                                      Simpsons Movie, The
## 12604                                                                                                                                    Bourne Ultimatum, The
## 12605                                                                                                                                              I Am Legend
## 12606                                                                                                                                         Dark Knight, The
## 12607                                                                                                                                       Revolutionary Road
## 12608                                                                                                                                                Star Trek
## 12609                                                                                                                                     (500) Days of Summer
## 12610                                                                                                                               Huhwihaji Anha (No Regret)
## 12611                                                                                                                                                   Avatar
## 12612                                                                                                                                                Inception
## 12613                                                                                                             Harry Potter and the Deathly Hallows: Part 1
## 12614                                                                                                             Harry Potter and the Deathly Hallows: Part 2
## 12615                                                                                                                                                    Drive
## 12616                                                                                                                                                    56 Up
## 12617                                                                                                                                                Toy Story
## 12618                                                                                                                                                  Jumanji
## 12619                                                                                                                                                  Sabrina
## 12620                                                                                                                                                Apollo 13
## 12621                                                                                                                       Star Wars: Episode IV - A New Hope
## 12622                                                                                                                               Ace Ventura: Pet Detective
## 12623                                                                                                                                             Forrest Gump
## 12624                                                                                                                                                Mask, The
## 12625                                                                                              Englishman Who Went Up a Hill But Came Down a Mountain, The
## 12626                                                                                                                                            Jurassic Park
## 12627                                                                                                                                                RoboCop 3
## 12628                                                                                                                                                    Ghost
## 12629                                                                                                                                                  Aladdin
## 12630                                                                                                                                                   Batman
## 12631                                                                                                                                      Mission: Impossible
## 12632                                                                                                                                                  Twister
## 12633                                                                                                                                            Trainspotting
## 12634                                                                                                                            Independence Day (a.k.a. ID4)
## 12635                                                                                                                                    2001: A Space Odyssey
## 12636                                                                                                                               E.T. the Extra-Terrestrial
## 12637                                                                                                                                                  Top Gun
## 12638                                                                                                           Star Wars: Episode V - The Empire Strikes Back
## 12639                                                                                                               Star Wars: Episode VI - Return of the Jedi
## 12640                                                                                                                       Indiana Jones and the Last Crusade
## 12641                                                                                                              Austin Powers: International Man of Mystery
## 12642                                                                                                                                Men in Black (a.k.a. MIB)
## 12643                                                                                                                                                  Titanic
## 12644                                                                                                                                               Armageddon
## 12645                                                                                                                                  Poseidon Adventure, The
## 12646                                                                                                                                  Gods Must Be Crazy, The
## 12647                                                                                                                                Karate Kid, Part III, The
## 12648                                                                                                                                              Matrix, The
## 12649                                                                                                                Star Wars: Episode I - The Phantom Menace
## 12650                                                                                                                                                 Superman
## 12651                                                                                                                                              Superman II
## 12652                                                                                                                    Austin Powers: The Spy Who Shagged Me
## 12653                                                                                                                                 Ferris Bueller's Day Off
## 12654                                                                                                                                                Bamba, La
## 12655                                                                                                                                                Gladiator
## 12656                                                                                                                                               Predator 2
## 12657                                                                                                                                                  Mad Max
## 12658                                                                                                                                                    X-Men
## 12659                                                                                                                  Godzilla 2000 (Gojira ni-sen mireniamu)
## 12660                                                                                                                                                    Shrek
## 12661                                                                                                                                           Monsters, Inc.
## 12662                                                                                                       Lord of the Rings: The Fellowship of the Ring, The
## 12663                                                                                                                                               Spider-Man
## 12664                                                                                                                   Lord of the Rings: The Two Towers, The
## 12665                                                                                                   Pirates of the Caribbean: The Curse of the Black Pearl
## 12666                                                                                                           Lord of the Rings: The Return of the King, The
## 12667                                                                                                                                                   Robots
## 12668                                                                                                                               Good Night, and Good Luck.
## 12669                                                                                                                                    Underworld: Evolution
## 12670                                                                                                                                              Silent Hill
## 12671                                                                                                                                            Blood Diamond
## 12672                                                                                                                                                  Jumanji
## 12673                                                                                                                                                     Heat
## 12674                                                                                                                                                  Sabrina
## 12675                                                                                                                                                GoldenEye
## 12676                                                                                                                                                   Casino
## 12677                                                                                                                                              Money Train
## 12678                                                                                                                                               Get Shorty
## 12679                                                                                                                                        Leaving Las Vegas
## 12680                                                                                                                       Twelve Monkeys (a.k.a. 12 Monkeys)
## 12681                                                                                                                                               To Die For
## 12682                                                                                                                            How to Make an American Quilt
## 12683                                                                                                                                      Usual Suspects, The
## 12684                                                                                                                                          Misérables, Les
## 12685                                                                                                                                             Nick of Time
## 12686                                                                                                                                      Vampire in Brooklyn
## 12687                                                                                                                                             Broken Arrow
## 12688                                                                                                                                                City Hall
## 12689                                                                                                                           Bridges of Madison County, The
## 12690                                                                                                                      Rumble in the Bronx (Hont faan kui)
## 12691                                                                                                                                            Birdcage, The
## 12692                                                                                                                                         Blue in the Face
## 12693                                                                                                                                      Scarlet Letter, The
## 12694                                                                                                                                                    Fargo
## 12695                                                                                                                                              Heavy Metal
## 12696                                                                                                                                          Aristocats, The
## 12697                                                                                                                                James and the Giant Peach
## 12698                                                                                                                  Mystery Science Theater 3000: The Movie
## 12699                                                                                                                          Wallace & Gromit: A Close Shave
## 12700                                                                                                                                               Striptease
## 12701                                                                                                                                            Trainspotting
## 12702                                                                                                                            Independence Day (a.k.a. ID4)
## 12703                                                                                                                             Hunchback of Notre Dame, The
## 12704                                                                                                                                                Lone Star
## 12705                                                                                                                                               Phenomenon
## 12706                                                                                                                                          Time to Kill, A
## 12707                                                                                                                                         Bonnie and Clyde
## 12708                                                                                                                                Streetcar Named Desire, A
## 12709                                                                                                                                              Taxi Driver
## 12710                                                                                                                        Beauty of the Day (Belle de jour)
## 12711                                                                                                                                                     Safe
## 12712                                                                                                                Three Colors: Red (Trois couleurs: Rouge)
## 12713                                                                                                                 Three Colors: White (Trzy kolory: Bialy)
## 12714                                                                                                                                Shawshank Redemption, The
## 12715                                                                                                               In the Realm of the Senses (Ai no corrida)
## 12716                                                                                                                                               Piano, The
## 12717                                                                                                                 Thirty-Two Short Films About Glenn Gould
## 12718                                                                                                                Song of the Little Road (Pather Panchali)
## 12719                                                                                     Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb
## 12720                                                                                                                           Vive L'Amour (Ai qing wan sui)
## 12721                                                                                                                                      Singin' in the Rain
## 12722                                                                                                                                                  Vertigo
## 12723                                                                                                                                              Rear Window
## 12724                                                                                                                                         Some Like It Hot
## 12725                                                                                                                   Sunset Blvd. (a.k.a. Sunset Boulevard)
## 12726                                                                                                                                    2001: A Space Odyssey
## 12727                                                                                                                  Manon of the Spring (Manon des sources)
## 12728                                                                                                                          Monty Python and the Holy Grail
## 12729                                                                                                                 Cook the Thief His Wife & Her Lover, The
## 12730                                                                                              Double Life of Veronique, The (Double Vie de Véronique, La)
## 12731                                                                                                                                                   Brazil
## 12732                                                                                       Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il)
## 12733                                                                                                                                      Clockwork Orange, A
## 12734                                                                                                                                               Goodfellas
## 12735                                                                                                                                                   Psycho
## 12736                                                                                                                                        Full Metal Jacket
## 12737                                                                                                                                               Annie Hall
## 12738                                                                                                                                                  Stalker
## 12739                                                                                                                                               8 1/2 (8½)
## 12740                                                                                                                                             Shining, The
## 12741                                                                                                                       Unbearable Lightness of Being, The
## 12742                                                                                                                                     Pink Floyd: The Wall
## 12743                                                                                                                          Dracula (Bram Stoker's Dracula)
## 12744                                                                                                                                     Sweet Hereafter, The
## 12745                                                                                                                                   Picnic at Hanging Rock
## 12746                                                                                                                                                       Pi
## 12747                                                                                                                                               Metropolis
## 12748                                                                                                                Fanny and Alexander (Fanny och Alexander)
## 12749                                                                                                                              Autumn Sonata (Höstsonaten)
## 12750                                                                                                                                          You've Got Mail
## 12751                                                                                                                                             Dead Ringers
## 12752                                                                                                          Eternity and a Day (Mia aoniotita kai mia mera)
## 12753                                                                                                                                           Eyes Wide Shut
## 12754                                                                                                                                             Barry Lyndon
## 12755                                                                                                                                               Fight Club
## 12756                                                                                                                                     Being John Malkovich
## 12757                                                                                                                        Princess Mononoke (Mononoke-hime)
## 12758                                                                                                                All About My Mother (Todo sobre mi madre)
## 12759                                                                                                                                                 Magnolia
## 12760                                                                                                                                    Mirror, The (Zerkalo)
## 12761                                                                                                                                                Gladiator
## 12762                                                                                                                              Vagabond (Sans toit ni loi)
## 12763                                                                                                                                         Blow-Up (Blowup)
## 12764                                                                                                                                           Love and Death
## 12765                                                                                                                                       Dancer in the Dark
## 12766                                                                                                                                   Stranger Than Paradise
## 12767                                                                                                                                      Requiem for a Dream
## 12768                                                                                                                                             Billy Elliot
## 12769                                                                                                                                                   Quills
## 12770                                                                                                         Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 12771                                                                                                                   In the Mood For Love (Fa yeung nin wa)
## 12772                                                                                                                                          Eureka (Yurîka)
## 12773                                                                                                                Himalaya (Himalaya - l'enfance d'un chef)
## 12774                                                                                                                                                    Yi Yi
## 12775                                                                                                                  Cries and Whispers (Viskningar och rop)
## 12776                                                                                                                                                 Suspiria
## 12777                                                                                                                                                    Ariel
## 12778                                                                                                                                             Santa Sangre
## 12779                                                                                                                                         Mulholland Drive
## 12780                                                                                                                                             Donnie Darko
## 12781                                                                                                That Obscure Object of Desire (Cet obscur objet du désir)
## 12782                                                                                                               What Time Is It There? (Ni neibian jidian)
## 12783                                                                                                                                           Don't Look Now
## 12784                                                                                                                      Wild Strawberries (Smultronstället)
## 12785                                                                                                                         Piano Teacher, The (La pianiste)
## 12786                                                                                                                                          Simone (S1m0ne)
## 12787                                                                                                            Spirited Away (Sen to Chihiro no kamikakushi)
## 12788                                                                                                                                           White Oleander
## 12789                                                                                                                            Russian Ark (Russkiy Kovcheg)
## 12790                                                                                                                    My Neighbor Totoro (Tonari no Totoro)
## 12791                                                                                                                                    Sunless (Sans Soleil)
## 12792                                                                                                                              Irreversible (Irréversible)
## 12793                                                                                                                                               Straw Dogs
## 12794                                                                                                                                              Barton Fink
## 12795                                                                                                          Ali: Fear Eats the Soul (Angst essen Seele auf)
## 12796                                                                                           Code Unknown (Code inconnu: Récit incomplet de divers voyages)
## 12797                                                                                                                           Tokyo Story (Tôkyô monogatari)
## 12798                                                                            Discreet Charm of the Bourgeoisie, The (Charme discret de la bourgeoisie, Le)
## 12799                                                                                                                                      Lost in Translation
## 12800                                                                                                                       Monty Python's The Meaning of Life
## 12801                                                                                                                                   Hannah and Her Sisters
## 12802                                                                                                                                           Distant (Uzak)
## 12803                                                                                                                                            Dreamers, The
## 12804                                                                                                                                         Good bye, Lenin!
## 12805                                                                                                                                                  Persona
## 12806                                                                                                                    Eternal Sunshine of the Spotless Mind
## 12807                                                                                                                                    Coffee and Cigarettes
## 12808                                                                                                                                         Kwaidan (Kaidan)
## 12809                                                                                                                           Maborosi (Maboroshi no hikari)
## 12810                                                                                                                                            Genghis Blues
## 12811                                                                                                                       Virgin Spring, The (Jungfrukällan)
## 12812                                                                                                                         Winter Light (Nattvardsgästerna)
## 12813                                                                                                                                             Monterey Pop
## 12814                                                                        Spring, Summer, Fall, Winter... and Spring (Bom yeoreum gaeul gyeoul geurigo bom)
## 12815                                                                                                                               Ugetsu (Ugetsu monogatari)
## 12816                                                                                                                                                Viridiana
## 12817                                                                                                                                                    Dolls
## 12818                                                                                                                                          Black Narcissus
## 12819                                                                                                                 Time of the Wolf, The (Le temps du loup)
## 12820                                                                                                                                                  Samsara
## 12821                                                                                                                                            Notebook, The
## 12822                                                                                                                                            Before Sunset
## 12823                                                                                                                House of Flying Daggers (Shi mian mai fu)
## 12824                                                                                                                           Andrei Rublev (Andrey Rublyov)
## 12825                                                                                                              Swedish Love Story, A (Kärlekshistoria, En)
## 12826                                                                                                                                                 Topo, El
## 12827                                                                                                      Phantom of Liberty, The (Fantôme de la liberté, Le)
## 12828                                                                                                                 Holy Mountain, The (Montaña sagrada, La)
## 12829                                                                                                                   Sacrifice, The (Offret - Sacraficatio)
## 12830                                                                                                              Kiki's Delivery Service (Majo no takkyûbin)
## 12831                                                                                                                          Nobody Knows (Dare mo shiranai)
## 12832                                                                            Bitter Tears of Petra von Kant, The (bitteren Tränen der Petra von Kant, Die)
## 12833                                                                                                                                         Masculin Féminin
## 12834                                                                                                                            Hidden (a.k.a. Cache) (Caché)
## 12835                                                                                                                Green Street Hooligans (a.k.a. Hooligans)
## 12836                                                                                                         Match Factory Girl, The (Tulitikkutehtaan tyttö)
## 12837                                                                                                                                            Tony Takitani
## 12838                                                                                                                                                   Volver
## 12839                                                                                                                                             Chinoise, La
## 12840                                                                                                                Murmur of the Heart (Le souffle au coeur)
## 12841                                                                                                                                         Illusionist, The
## 12842                                                                                                                                            Fountain, The
## 12843                                                                                                          Seventh Continent, The (Der siebente Kontinent)
## 12844                                                                                                                                                 Tristana
## 12845                                                                                                                    Woman on the Beach (Haebyeonui yeoin)
## 12846                                                                                                                                       Paprika (Papurika)
## 12847                                                                                                                                            Paranoid Park
## 12848                                                                                                                                      There Will Be Blood
## 12849                                                                                                                                                    Heima
## 12850                                                                                                                                 Vicky Cristina Barcelona
## 12851                                                                                                           In the City of Sylvia (En la ciudad de Sylvia)
## 12852                                                                                                  I've Loved You So Long (Il y a longtemps que je t'aime)
## 12853                                                                                                                                       Revolutionary Road
## 12854                                                                                                                                                     Nana
## 12855                                                                                                                           Summer Hours (Heure d'été, L')
## 12856                                                                                                                                   Limits of Control, The
## 12857                                                                                                                                     (500) Days of Summer
## 12858                                                                                                                       White Ribbon, The (Das weiße Band)
## 12859                                                                                                                        Still Walking (Aruitemo aruitemo)
## 12860                                                                                                                                                   Avatar
## 12861                                                                                                                                 Prophet, A (Un Prophète)
## 12862                                                                                                                                           Enter the Void
## 12863                                                                                                                                                Inception
## 12864                                                                                                                                      Social Network, The
## 12865                                                                                                 Love Is Colder Than Death (Liebe ist kälter als der Tod)
## 12866                                                                                                                                               Black Swan
## 12867                                                                                                                          Certified Copy (Copie conforme)
## 12868                                                                                                                                                True Grit
## 12869                                                                                                                                                GoldenEye
## 12870                                                                                                                                               Get Shorty
## 12871                                                                                                                                                     Babe
## 12872                                                                                                                                                 Clueless
## 12873                                                                                                                                     Seven (a.k.a. Se7en)
## 12874                                                                                                                                      Usual Suspects, The
## 12875                                                                                                                                               Braveheart
## 12876                                                                                                                                                Apollo 13
## 12877                                                                                                                                           Batman Forever
## 12878                                                                                                                                                    Congo
## 12879                                                                                                                               Die Hard: With a Vengeance
## 12880                                                                                                                                               Waterworld
## 12881                                                                                                                          Dumb & Dumber (Dumb and Dumber)
## 12882                                                                                                       Interview with the Vampire: The Vampire Chronicles
## 12883                                                                                                                                      Legends of the Fall
## 12884                                                                                                                                     Natural Born Killers
## 12885                                                                                                                                                 Outbreak
## 12886                                                                                                                                             Pulp Fiction
## 12887                                                                                                                                                Quiz Show
## 12888                                                                                                                                                 Stargate
## 12889                                                                                                                                Shawshank Redemption, The
## 12890                                                                                                                                   Star Trek: Generations
## 12891                                                                                                                                  While You Were Sleeping
## 12892                                                                                                                               Ace Ventura: Pet Detective
## 12893                                                                                                                                             Forrest Gump
## 12894                                                                                                                                           Lion King, The
## 12895                                                                                                                                                Mask, The
## 12896                                                                                                                                                True Lies
## 12897                                                                                                                                     Addams Family Values
## 12898                                                                                                                                    Beverly Hills Cop III
## 12899                                                                                                                                              Cliffhanger
## 12900                                                                                                                                                Coneheads
## 12901                                                                                                                                                Firm, The
## 12902                                                                                                                                            Fugitive, The
## 12903                                                                                                                                                  Aladdin
## 12904                                                                                                                                       Dances with Wolves
## 12905                                                                                                                                                   Batman
## 12906                                                                                                                                Silence of the Lambs, The
## 12907                                                                                                                                     Beauty and the Beast
## 12908                                                                                                                                                     Heat
## 12909                                                                                                                                               Get Shorty
## 12910                                                                                                                                                 Clueless
## 12911                                                                                                                                      Usual Suspects, The
## 12912                                                                                                                                                   Friday
## 12913                                                                                                                                            Bottle Rocket
## 12914                                                                                                                                            Birdcage, The
## 12915                                                                                                                                                Apollo 13
## 12916                                                                                                                                                  Rob Roy
## 12917                                                                                                                                          Unstrung Heroes
## 12918                                                                                                                                         Don Juan DeMarco
## 12919                                                                                                                                                  Ed Wood
## 12920                                                                                                                                      Legends of the Fall
## 12921                                                                                                                              Madness of King George, The
## 12922                                                                                                                                         Corrina, Corrina
## 12923                                                                                                                                             Forrest Gump
## 12924                                                                                                                       Naked Gun 33 1/3: The Final Insult
## 12925                                                                                                                                                    Speed
## 12926                                                                                                                                       Dazed and Confused
## 12927                                                                                                                                            Jurassic Park
## 12928                                                                                                                                                 Ref, The
## 12929                                                                                                                                               Serial Mom
## 12930                                                                                                                                                    Fargo
## 12931                                                                                                                            Kids in the Hall: Brain Candy
## 12932                                                                                     Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb
## 12933                                                                                                                                            Trainspotting
## 12934                                                                                                                                         Frighteners, The
## 12935                                                                                                                                              Rear Window
## 12936                                                                                                                                       North by Northwest
## 12937                                                                                                                                             Citizen Kane
## 12938                                                                                                                                                 Swingers
## 12939                                                                                                                                                  Sleeper
## 12940                                                                                                                                                  Bananas
## 12941                                                                                                                                      Princess Bride, The
## 12942                                                                                                                                           Apocalypse Now
## 12943                                                                                                               Star Wars: Episode VI - Return of the Jedi
## 12944                                                                                                                                               Annie Hall
## 12945                                                                                                                                    Boot, Das (Boat, The)
## 12946                                                                                                                                          Terminator, The
## 12947                                                                                                                                            Graduate, The
## 12948                                                                                                                                       Better Off Dead...
## 12949                                                                                                                                              Stand by Me
## 12950                                                                                                                                            Groundhog Day
## 12951                                                                                                                                       Back to the Future
## 12952                                                                                                                                           Cool Hand Luke
## 12953                                                                                                                                       Young Frankenstein
## 12954                                                                                                                                       This Is Spinal Tap
## 12955                                                                                                        Nosferatu (Nosferatu, eine Symphonie des Grauens)
## 12956                                                                                                                                              Sling Blade
## 12957                                                                                                                                          Raising Arizona
## 12958                                                                                                                                            Private Parts
## 12959                                                                                                                                      Grosse Pointe Blank
## 12960                                                                                                                                            Event Horizon
## 12961                                                                                                                                              Chasing Amy
## 12962                                                                                                                                                  Gattaca
## 12963                                                                                                                                        Big Lebowski, The
## 12964                                                                                                                                              Wag the Dog
## 12965                                                                                                                                      Wedding Singer, The
## 12966                                                                                                                                            Suicide Kings
## 12967                                                                                                                                               Armageddon
## 12968                                                                                                                                           Small Soldiers
## 12969                                                                                                                             There's Something About Mary
## 12970                                                                                                                                                 Rain Man
## 12971                                                                                                                                            Lethal Weapon
## 12972                                                                                                                                                Jerk, The
## 12973                                                                                                                              Slums of Beverly Hills, The
## 12974                                                                                                                                      Edward Scissorhands
## 12975                                                                                                                                           Producers, The
## 12976                                                                                                                                          My Cousin Vinny
## 12977                                                                                                                      Life Is Beautiful (La Vita è bella)
## 12978                                                                                                                    Waking Ned Devine (a.k.a. Waking Ned)
## 12979                                                                                                                                                   Fletch
## 12980                                                                                                                                                 Rushmore
## 12981                                                                                                                                      Romancing the Stone
## 12982                                                                                                                                             Office Space
## 12983                                                                                                                                              Matrix, The
## 12984                                                                                                                                                 Election
## 12985                                                                                                                     South Park: Bigger, Longer and Uncut
## 12986                                                                                                                      Ghostbusters (a.k.a. Ghost Busters)
## 12987                                                                                                                                                Airplane!
## 12988                                                                                                                              National Lampoon's Vacation
## 12989                                                                                                                                       Christmas Story, A
## 12990                                                                                                                                          American Beauty
## 12991                                                                                                                                      Hard Day's Night, A
## 12992                                                                                                                                 Ferris Bueller's Day Off
## 12993                                                                                                                                     Being John Malkovich
## 12994                                                                                                                                             General, The
## 12995                                                                                                                                               Spaceballs
## 12996                                                                                                                                           Little Big Man
## 12997                                                                                                                                               Dead Again
## 12998                                                                                                                                                 Scrooged
## 12999                                                                                                                                              Toy Story 2
## 13000                                                                                                                                                 Magnolia
## 13001                                                                                                                                 Talented Mr. Ripley, The
## 13002                                                                                                                                                 Papillon
## 13003                                                                                                                             Fast Times at Ridgemont High
## 13004                                                                                                                                         Scent of a Woman
## 13005                                                                                                                                            Wayne's World
## 13006                                                                                                                                                  Singles
## 13007                                                                                                                                          Ninth Gate, The
## 13008                                                                                                                                            Breaking Away
## 13009                                                                                                                                              Bull Durham
## 13010                                                                                                                                        Dog Day Afternoon
## 13011                                                                                                                                        Muppet Movie, The
## 13012                                                                                                                              Muppets Take Manhattan, The
## 13013                                                                                                                                          Erin Brockovich
## 13014                                                                                                                                             Animal House
## 13015                                                                                                                                           Grumpy Old Men
## 13016                                                                                                                                            High Fidelity
## 13017                                                                                                                                               Caddyshack
## 13018                                                                                                                                          Blazing Saddles
## 13019                                                                                                                                                  Serpico
## 13020                                                                                                                                              Chicken Run
## 13021                                                                                                                                             Patriot, The
## 13022                                                                                                                                          What About Bob?
## 13023                                                                                                                                           Love and Death
## 13024                                                                                                          Naked Gun: From the Files of Police Squad!, The
## 13025                                                                                                                  Naked Gun 2 1/2: The Smell of Fear, The
## 13026                                                                                                                                            Almost Famous
## 13027                                                                                                                                             Best in Show
## 13028                                                                                                                                                Tigerland
## 13029                                                                                                                                        Miss Congeniality
## 13030                                                                                                                               O Brother, Where Art Thou?
## 13031                                                                                                                                                  Traffic
## 13032                                                                                                                                  I'm Gonna Git You Sucka
## 13033                                                                                                                                                   Avalon
## 13034                                                                                                                                      Freddy Got Fingered
## 13035                                                                                                                                            City Slickers
## 13036                                                                                                                                            Eight Men Out
## 13037                                                                                                                                                  Tootsie
## 13038                                                                                                                                            Scary Movie 2
## 13039                                                                                                                                                    Twins
## 13040                                                                                                                         Bill & Ted's Excellent Adventure
## 13041                                                                                                                                               Black Robe
## 13042                                                                                                                                           Monsters, Inc.
## 13043                                                                                                                                                Novocaine
## 13044                                                                                                                                           Ocean's Eleven
## 13045                                                                                                                                              Vanilla Sky
## 13046                                                                                                                                    M*A*S*H (a.k.a. MASH)
## 13047                                                                                                                                             Sandlot, The
## 13048                                                                                                                                          Monsoon Wedding
## 13049                                                                                                                                         We Were Soldiers
## 13050                                                                                                                                              About a Boy
## 13051                                                                                                                                          Minority Report
## 13052                                                                                                                                         Ladykillers, The
## 13053                                                                                                                                             Strange Brew
## 13054                                                                                                                                    Bowling for Columbine
## 13055                                                                                                                                         Punch-Drunk Love
## 13056                                                                                                                                               Adaptation
## 13057                                                                                                                                           Bruce Almighty
## 13058                                                                                                                                                  Tremors
## 13059                                                                                                                                           School of Rock
## 13060                                                                                                          Master and Commander: The Far Side of the World
## 13061                                                                                                                                             Quick Change
## 13062                                                                                                                                        Napoleon Dynamite
## 13063                                                                                                                                            Memphis Belle
## 13064                                                                                                                         Dodgeball: A True Underdog Story
## 13065                                                                                                                                             Garden State
## 13066                                                                                                                      Harold and Kumar Go to White Castle
## 13067                                                                                                                                        Shaun of the Dead
## 13068                                                                                                                                  40-Year-Old Virgin, The
## 13069                                                                                                                                                Toy Story
## 13070                                                                                                                                               Braveheart
## 13071                                                                                                                       Star Wars: Episode IV - A New Hope
## 13072                                                                                                                                             Pulp Fiction
## 13073                                                                                                                                             Forrest Gump
## 13074                                                                                                                               Terminator 2: Judgment Day
## 13075                                                                                                                                                 Die Hard
## 13076                                                                                                           Star Wars: Episode V - The Empire Strikes Back
## 13077                                                                                  Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 13078                                                                                                               Star Wars: Episode VI - Return of the Jedi
## 13079                                                                                                                                Hunt for Red October, The
## 13080                                                                                                                                      Saving Private Ryan
## 13081                                                                                                                                          Few Good Men, A
## 13082                                                                                                                                       American History X
## 13083                                                                                                                                              Matrix, The
## 13084                                                                                                                                          American Beauty
## 13085                                                                                                                                             Total Recall
## 13086                                                                                                                                               Fight Club
## 13087                                                                                                                                              Toy Story 2
## 13088                                                                                                                                    Whole Nine Yards, The
## 13089                                                                                                                                                Gladiator
## 13090                                                                                                                                   Mission: Impossible II
## 13091                                                                                                                                            Shanghai Noon
## 13092                                                                                                                                       Gone in 60 Seconds
## 13093                                                                                                                                       Me, Myself & Irene
## 13094                                                                                                                                             Patriot, The
## 13095                                                                                                                                             Men of Honor
## 13096                                                                                                                                              Unbreakable
## 13097                                                                                                                                          Family Man, The
## 13098                                                                                                                                                 Hannibal
## 13099                                                                                                                                       Mummy Returns, The
## 13100                                                                                                                                                    Shrek
## 13101                                                                                                                                             Pearl Harbor
## 13102                                                                                                                                              Rush Hour 2
## 13103                                                                                                                                              Others, The
## 13104                                                                                                                                             Training Day
## 13105                                                                                                                                           Monsters, Inc.
## 13106                                                                  Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 13107                                                                                                                                           Ocean's Eleven
## 13108                                                                                                       Lord of the Rings: The Fellowship of the Ring, The
## 13109                                                                                                                                        Beautiful Mind, A
## 13110                                                                                                                                          Black Hawk Down
## 13111                                                                                                                                     Bourne Identity, The
## 13112                                                                                                                                          Minority Report
## 13113                                                                                                             Men in Black II (a.k.a. MIIB) (a.k.a. MIB 2)
## 13114                                                                                                                              Austin Powers in Goldmember
## 13115                                                                                                                                               Red Dragon
## 13116                                                                                                                   Lord of the Rings: The Two Towers, The
## 13117                                                                                                                                      Catch Me If You Can
## 13118                                                                                                                             City of God (Cidade de Deus)
## 13119                                                                                                                                         Anger Management
## 13120                                                                                                                                     Matrix Reloaded, The
## 13121                                                                                                                                           Bruce Almighty
## 13122                                                                                                                                             Finding Nemo
## 13123                                                                                                                                         Italian Job, The
## 13124                                                                                                   Pirates of the Caribbean: The Curse of the Black Pearl
## 13125                                                                                                                                        Kill Bill: Vol. 1
## 13126                                                                                                           Lord of the Rings: The Return of the King, The
## 13127                                                                                                                                     The Butterfly Effect
## 13128                                                                                                                                           50 First Dates
## 13129                                                                                                                                        Kill Bill: Vol. 2
## 13130                                                                                                                                                     Troy
## 13131                                                                                                                                  Day After Tomorrow, The
## 13132                                                                                                                 Harry Potter and the Prisoner of Azkaban
## 13133                                                                                                                                             White Chicks
## 13134                                                                                                                                                 I, Robot
## 13135                                                                                                                                    Bourne Supremacy, The
## 13136                                                                                                                                         Incredibles, The
## 13137                                                                                                                                        National Treasure
## 13138                                                                                                                                         Meet the Fockers
## 13139                                                                                                                                              Constantine
## 13140                                                                                                                                                 Sin City
## 13141                                                                                                                                        Longest Yard, The
## 13142                                                                                                                                            Batman Begins
## 13143                                                                                                                                         Wedding Crashers
## 13144                                                                                                                                  40-Year-Old Virgin, The
## 13145                                                                                                                                              Lord of War
## 13146                                                                                                                      Harry Potter and the Goblet of Fire
## 13147                                                                                                                                               Inside Man
## 13148                                                                                                                                       Da Vinci Code, The
## 13149                                                                                                                                    X-Men: The Last Stand
## 13150                                                                                                               Pirates of the Caribbean: Dead Man's Chest
## 13151                                                                                                                 Pirates of the Caribbean: At World's End
## 13152                                                                                                                Harry Potter and the Order of the Phoenix
## 13153                                                                                                                                      Simpsons Movie, The
## 13154                                                                                                                                    Bourne Ultimatum, The
## 13155                                                                                                                                              I Am Legend
## 13156                                                                                                                                         Dark Knight, The
## 13157                                                                                                                                                       21
## 13158                                                                                                                                                 Iron Man
## 13159                                                                                                                                                 Valkyrie
## 13160                                                                                                                                                   Ip Man
## 13161                                                                                                                                     Inglourious Basterds
## 13162                                                                                                                                                Star Trek
## 13163                                                                                                                                            Hangover, The
## 13164                                                                                                                   Harry Potter and the Half-Blood Prince
## 13165                                                                                                                                                   Avatar
## 13166                                                                                                                                           Shutter Island
## 13167                                                                                                                                               Green Zone
## 13168                                                                                                                                 How to Train Your Dragon
## 13169                                                                                                                                                      Red
## 13170                                                                               Elite Squad: The Enemy Within (Tropa de Elite 2 - O Inimigo Agora É Outro)
## 13171                                                                                                                                            Avengers, The
## 13172                                                                                                                                         The Hunger Games
## 13173                                                                                                                                   Dark Knight Rises, The
## 13174                                                                                                                         Girl with the Dragon Tattoo, The
## 13175                                                                                                                                             Intouchables
## 13176                                                                                                                    Men in Black III (M.III.B.) (M.I.B.³)
## 13177                                                                                                                                                  Skyfall
## 13178                                                                                                                                         Django Unchained
## 13179                                                                                                                                               Iron Man 3
## 13180                                                                                                                          The Hunger Games: Catching Fire
## 13181                                                                                                                     Hobbit: The Desolation of Smaug, The
## 13182                                                                                                                      Captain America: The Winter Soldier
## 13183                                                                                                                                       The Imitation Game
## 13184                                                                                                                                 The Theory of Everything
## 13185                                                                                                                                                  Jumanji
## 13186                                                                                                                                         Grumpier Old Men
## 13187                                                                                                                              Father of the Bride Part II
## 13188                                                                                                                                                GoldenEye
## 13189                                                                                                                           Ace Ventura: When Nature Calls
## 13190                                                                                                                                               Get Shorty
## 13191                                                                                                                                                Assassins
## 13192                                                                                                                                            Mortal Kombat
## 13193                                                                                                                               Postman, The (Postino, Il)
## 13194                                                                                                                                               Braveheart
## 13195                                                                                                                                           Batman Forever
## 13196                                                                                                                                                   Casper
## 13197                                                                                                                                                    Congo
## 13198                                                                                                                                             Crimson Tide
## 13199                                                                                                                               Die Hard: With a Vengeance
## 13200                                                                                                                                                  Hackers
## 13201                                                                                                                                          Johnny Mnemonic
## 13202                                                                                                                                              Judge Dredd
## 13203                                                                                                                                        Lord of Illusions
## 13204                                                                                                                  Mighty Morphin Power Rangers: The Movie
## 13205                                                                                                                                                 Net, The
## 13206                                                                                                                                              Nine Months
## 13207                                                                                                                                            Prophecy, The
## 13208                                                                                                                                                  Species
## 13209                                                                                                         To Wong Foo, Thanks for Everything! Julie Newmar
## 13210                                                                                                                                               Waterworld
## 13211                                                                                                                                            Billy Madison
## 13212                                                                                                                                                Drop Zone
## 13213                                                                                                                                        Dolores Claiborne
## 13214                                                                                                                          Dumb & Dumber (Dumb and Dumber)
## 13215                                                                                                                                             Exit to Eden
## 13216                                                                                                                                       Heavenly Creatures
## 13217                                                                                                       Interview with the Vampire: The Vampire Chronicles
## 13218                                                                                                                                          Jerky Boys, The
## 13219                                                                                                                                                   Junior
## 13220                                                                                                                                             Little Women
## 13221                                                                                                                                               Mixed Nuts
## 13222                                                                                                                                   Miracle on 34th Street
## 13223                                                                                                                                                     Nell
## 13224                                                                                                                                     Natural Born Killers
## 13225                                                                                                                                            Poison Ivy II
## 13226                                                                                                                                                 Outbreak
## 13227                                                                                                  Léon: The Professional (a.k.a. The Professional) (Léon)
## 13228                                                                                                                                             Pulp Fiction
## 13229                                                                                                                                          Specialist, The
## 13230                                                                                                                                                 Stargate
## 13231                                                                                                                                        Santa Clause, The
## 13232                                                                                                                                Shawshank Redemption, The
## 13233                                                                                                                                                Tank Girl
## 13234                                                                                                                                   Star Trek: Generations
## 13235                                                                                                                                                Tommy Boy
## 13236                                                                                                                                  While You Were Sleeping
## 13237                                                                                                                               Ace Ventura: Pet Detective
## 13238                                                                                                                                 Clear and Present Danger
## 13239                                                                                                                                              Client, The
## 13240                                                                                                                                         Flintstones, The
## 13241                                                                                                                                             Forrest Gump
## 13242                                                                                                                              Four Weddings and a Funeral
## 13243                                                                                                                                           Lion King, The
## 13244                                                                          Wes Craven's New Nightmare (Nightmare on Elm Street Part 7: Freddy's Finale, A)
## 13245                                                                                                                                                Mask, The
## 13246                                                                                                                                                 Maverick
## 13247                                                                                                                       Naked Gun 33 1/3: The Final Insult
## 13248                                                                                                                                              Richie Rich
## 13249                                                                                                                                                    Speed
## 13250                                                                                                                                                True Lies
## 13251                                                                                    Highlander III: The Sorcerer (a.k.a. Highlander: The Final Dimension)
## 13252                                                                                                                                     Addams Family Values
## 13253                                                                                                                                         Another Stakeout
## 13254                                                                                                                                    Beverly Hills Cop III
## 13255                                                                                                             City Slickers II: The Legend of Curly's Gold
## 13256                                                                                                                                              Cliffhanger
## 13257                                                                                                                                      Cops and Robbersons
## 13258                                                                                                                                           Demolition Man
## 13259                                                                                                                                                Firm, The
## 13260                                                                                                                                            Fugitive, The
## 13261                                                                                                                                     Hot Shots! Part Deux
## 13262                                                                                                                                     Hudsucker Proxy, The
## 13263                                                                                                                                            Jurassic Park
## 13264                                                                                                                                         Last Action Hero
## 13265                                                                                                                                           Mrs. Doubtfire
## 13266                                                                                                                                             Philadelphia
## 13267                                                                                                                                                RoboCop 3
## 13268                                                                                                                                Robin Hood: Men in Tights
## 13269                                                                                                                                         Schindler's List
## 13270                                                                                                                             So I Married an Axe Murderer
## 13271                                                                                                                                        Super Mario Bros.
## 13272                                                                                                                                        Terminal Velocity
## 13273                                                                                                                          Nightmare Before Christmas, The
## 13274                                                                                                                                                Tombstone
## 13275                                                                                                                                             True Romance
## 13276                                                                                                                                               Home Alone
## 13277                                                                                                                                                    Ghost
## 13278                                                                                                                                                  Aladdin
## 13279                                                                                                                               Terminator 2: Judgment Day
## 13280                                                                                                                                       Dances with Wolves
## 13281                                                                                                                                                   Batman
## 13282                                                                                                                                Silence of the Lambs, The
## 13283                                                                                                                          Snow White and the Seven Dwarfs
## 13284                                                                                                                                     Beauty and the Beast
## 13285                                                                                                                                             Pretty Woman
## 13286                                                                                                                                              Heavy Metal
## 13287                                                                                                                                          Aristocats, The
## 13288                                                                                                                                      Mission: Impossible
## 13289                                                                                                                                     Operation Dumbo Drop
## 13290                                                                                                                                         Oliver & Company
## 13291                                                                                                                                                Rock, The
## 13292                                                                                                                                                Toy Story
## 13293                                                                                                                                  American President, The
## 13294                                                                                                                                                    Nixon
## 13295                                                                                                                                    Sense and Sensibility
## 13296                                                                                                                                               Four Rooms
## 13297                                                                                                                           Ace Ventura: When Nature Calls
## 13298                                                                                                                                               Get Shorty
## 13299                                                                                                                                        Leaving Las Vegas
## 13300                                                                                                                                                  Othello
## 13301                                                                                                                                               Persuasion
## 13302                                                                                                 City of Lost Children, The (Cité des enfants perdus, La)
## 13303                                                                                                            Shanghai Triad (Yao a yao yao dao waipo qiao)
## 13304                                                                                                                       Twelve Monkeys (a.k.a. 12 Monkeys)
## 13305                                                                                                                                                     Babe
## 13306                                                                                                                                               Carrington
## 13307                                                                                                                                         Dead Man Walking
## 13308                                                                                                                                                 Clueless
## 13309                                                                                                                                              Richard III
## 13310                                                                                                                            How to Make an American Quilt
## 13311                                                                                                                                     Seven (a.k.a. Se7en)
## 13312                                                                                                                               Postman, The (Postino, Il)
## 13313                                                                                                                                       Mr. Holland's Opus
## 13314                                                                                                                              French Twist (Gazon maudit)
## 13315                                                                                                                                    Kicking and Screaming
## 13316                                                                                                                                          Misérables, Les
## 13317                                                                                                                  Things to Do in Denver When You're Dead
## 13318                                                                                                                                 Antonia's Line (Antonia)
## 13319                                                                                                                                       Angels and Insects
## 13320                                                                                                                                         Hate (Haine, La)
## 13321                                                                                                                           Bridges of Madison County, The
## 13322                                                                                                                                               Braveheart
## 13323                                                                                                                                    Anne Frank Remembered
## 13324                                                                                                                                 Boys of St. Vincent, The
## 13325                                                                                                                  Star Maker, The (Uomo delle stelle, L')
## 13326                                                                                                                               NeverEnding Story III, The
## 13327                                                                                                                                            Birdcage, The
## 13328                                                                                                                                   Brothers McMullen, The
## 13329                                                                                                                                  Basketball Diaries, The
## 13330                                                                                                                                                Apollo 13
## 13331                                                                                                                                                  Rob Roy
## 13332                                                                                                                        Beauty of the Day (Belle de jour)
## 13333                                                                                                                                                 Clockers
## 13334                                                                                                                                                    Congo
## 13335                                                                                                                                                    Crumb
## 13336                                                                                                                                                  Jeffrey
## 13337                                                                                                                                          Johnny Mnemonic
## 13338                                                                                                                                     Love & Human Remains
## 13339                                                                                                                                                 Mallrats
## 13340                                                                                                                                              Nine Months
## 13341                                                                                                                                                    Smoke
## 13342                                                                                                                                             Strange Days
## 13343                                                                                                         To Wong Foo, Thanks for Everything! Julie Newmar
## 13344                                                                                                                                               Waterworld
## 13345                                                                                                                  Burnt by the Sun (Utomlyonnye solntsem)
## 13346                                                                                                                                         Boys on the Side
## 13347                                                                                                                                                   Clerks
## 13348                                                                                                                                         Don Juan DeMarco
## 13349                                                                                                                                     Death and the Maiden
## 13350                                                                                                                          Dumb & Dumber (Dumb and Dumber)
## 13351                                                                                                                     Eat Drink Man Woman (Yin shi nan nu)
## 13352                                                                                                                                                  Ed Wood
## 13353                                                                                                                                   Farinelli: il castrato
## 13354                                                                                                                                              Hoop Dreams
## 13355                                                                                                                                       Heavenly Creatures
## 13356                                                                                                                                         Immortal Beloved
## 13357                                                                                                                                                     I.Q.
## 13358                                                                                                       Interview with the Vampire: The Vampire Chronicles
## 13359                                                                                                                                       Jefferson in Paris
## 13360                                                                                                                       Star Wars: Episode IV - A New Hope
## 13361                                                                                                                                             Little Women
## 13362                                                                                                                                        Ladybird Ladybird
## 13363                                                                                                      Like Water for Chocolate (Como agua para chocolate)
## 13364                                                                                                                                      Legends of the Fall
## 13365                                                                                                                             My Crazy Life (Mi vida loca)
## 13366                                                                                                                              Madness of King George, The
## 13367                                                                                                               Mary Shelley's Frankenstein (Frankenstein)
## 13368                                                                                                                                                     Nell
## 13369                                                                                                                                       Nina Takes a Lover
## 13370                                                                                                                                     Natural Born Killers
## 13371                                                                                                                                       Once Were Warriors
## 13372                                                                                                                                                 Outbreak
## 13373                                                                                                                                             Pulp Fiction
## 13374                                                                                                                                                   Priest
## 13375                                                                                                                                                Quiz Show
## 13376                                                                                                                          Queen Margot (Reine Margot, La)
## 13377                                                                                                                            Ready to Wear (Pret-A-Porter)
## 13378                                                                                                                Three Colors: Red (Trois couleurs: Rouge)
## 13379                                                                                                                Three Colors: Blue (Trois couleurs: Bleu)
## 13380                                                                                                                 Three Colors: White (Trzy kolory: Bialy)
## 13381                                                                                                                                Secret of Roan Inish, The
## 13382                                                                                                                                                 Stargate
## 13383                                                                                                                                Shawshank Redemption, The
## 13384                                                                                                                                            Shallow Grave
## 13385                                                                                                             Strawberry and Chocolate (Fresa y chocolate)
## 13386                                                                                                                                           Sum of Us, The
## 13387                                                                                                                                   Star Trek: Generations
## 13388                                                                                                                                                Tom & Viv
## 13389                                                                                                                                    Village of the Damned
## 13390                                                                                                                              What's Eating Gilbert Grape
## 13391                                                                                                                                         Muriel's Wedding
## 13392                                                                                                        Adventures of Priscilla, Queen of the Desert, The
## 13393                                                                                                                                    Bullets Over Broadway
## 13394                                                                                                                              Four Weddings and a Funeral
## 13395                                                                                                                                         Jungle Book, The
## 13396                                                                                                                                           Lion King, The
## 13397                                                                                                                                            Little Buddha
## 13398                                                                                                                       Mrs. Parker and the Vicious Circle
## 13399                                                                                                                                            Reality Bites
## 13400                                                                                    Highlander III: The Sorcerer (a.k.a. Highlander: The Final Dimension)
## 13401                                                                                                                                 Beverly Hillbillies, The
## 13402                                                                                                                                            Boxing Helena
## 13403                                                                                                                                                Coneheads
## 13404                                                                                                                              Even Cowgirls Get the Blues
## 13405                                                                                                                   Farewell My Concubine (Ba wang bie ji)
## 13406                                                                                                                                                Firm, The
## 13407                                                                                                                                                  Go Fish
## 13408                                                                                              Englishman Who Went Up a Hill But Came Down a Mountain, The
## 13409                                                                                                                                House of the Spirits, The
## 13410                                                                                                                                     Hudsucker Proxy, The
## 13411                                                                                                                                In the Name of the Father
## 13412                                                                                                                           What's Love Got to Do with It?
## 13413                                                                                                                                            Jurassic Park
## 13414                                                                                                                                               Kalifornia
## 13415                                                                                                                                              Killing Zoe
## 13416                                                                                                                                   Much Ado About Nothing
## 13417                                                                                                                                           Mrs. Doubtfire
## 13418                                                                                                                                                    Naked
## 13419                                                                                                                                             Philadelphia
## 13420                                                                                                                                               Piano, The
## 13421                                                                                                                                  Remains of the Day, The
## 13422                                                                                                                                         Schindler's List
## 13423                                                                                                                                       Secret Garden, The
## 13424                                                                                                                                              Shadowlands
## 13425                                                                                                                                               Short Cuts
## 13426                                                                                                                                Six Degrees of Separation
## 13427                                                                                                                                     Sleepless in Seattle
## 13428                                                                                                                                             Blade Runner
## 13429                                                                                                                                                Threesome
## 13430                                                                                                                          Nightmare Before Christmas, The
## 13431                                                                                                                                             True Romance
## 13432                                                                                                                                       Bhaji on the Beach
## 13433                                                                                                                                   Brady Bunch Movie, The
## 13434                                                                                                                                               Home Alone
## 13435                                                                                                                                                    Ghost
## 13436                                                                                                                                                  Aladdin
## 13437                                                                                                                               Terminator 2: Judgment Day
## 13438                                                                                                                                       Dances with Wolves
## 13439                                                                                                                                                   Batman
## 13440                                                                                                                                Silence of the Lambs, The
## 13441                                                                                                                          Snow White and the Seven Dwarfs
## 13442                                                                                                                                     Beauty and the Beast
## 13443                                                                                                                                                Pinocchio
## 13444                                                                                                                                             Pretty Woman
## 13445                                                                                                                                                    Fargo
## 13446                                                                                                                                                Jane Eyre
## 13447                                                                                                                                          Aristocats, The
## 13448                                                                                                                                          Denise Calls Up
## 13449                                                                                                                                               Diabolique
## 13450                                                                                                                                            Moll Flanders
## 13451                                                                                                                                James and the Giant Peach
## 13452                                                                                                                                              Underground
## 13453                                                                                                                  Mystery Science Theater 3000: The Movie
## 13454                                                                                                                             Truth About Cats & Dogs, The
## 13455                                                                                                          Wallace & Gromit: The Best of Aardman Animation
## 13456                                                                                                                                               Craft, The
## 13457                                                                                                                                        Cold Comfort Farm
## 13458                                                                                                                                     Month by the Lake, A
## 13459                                                                                                                   Carmen Miranda: Bananas Is My Business
## 13460                                                                                                                                       I Shot Andy Warhol
## 13461                                                                                                                                            Trainspotting
## 13462                                                                                                                            Independence Day (a.k.a. ID4)
## 13463                                                                                                                             Hunchback of Notre Dame, The
## 13464                                                                                                                                           Cable Guy, The
## 13465                                                                                                                             Adventures of Pinocchio, The
## 13466                                                                                                                                    First Wives Club, The
## 13467                                                                                                             Story of Xinghua, The (Xinghua san yue tian)
## 13468                                                                                                                                            Twelfth Night
## 13469                                                                                                                                      Sound of Music, The
## 13470                                                                                                                                                 Die Hard
## 13471                                                                                                                                           Secrets & Lies
## 13472                                                                                                                                          Beautiful Thing
## 13473                                                                                                                     William Shakespeare's Romeo + Juliet
## 13474                                                                                                                      Willy Wonka & the Chocolate Factory
## 13475                                                                                                                                     Fish Called Wanda, A
## 13476                                                                                                                                         Bonnie and Clyde
## 13477                                                                                                                     Wallace & Gromit: The Wrong Trousers
## 13478                                                                                                                        Tin Drum, The (Blechtrommel, Die)
## 13479                                                                                                                                          Mina Tannenbaum
## 13480                                                                                                                                       Breaking the Waves
## 13481                                                                                                                                                    Shine
## 13482                                                                                                                                                Toy Story
## 13483                                                                                                                                                  Sabrina
## 13484                                                                                                                                        Leaving Las Vegas
## 13485                                                                                                                       Twelve Monkeys (a.k.a. 12 Monkeys)
## 13486                                                                                                                                         Mighty Aphrodite
## 13487                                                                                                                                       Mr. Holland's Opus
## 13488                                                                                                                                              Black Sheep
## 13489                                                                                                                                             Broken Arrow
## 13490                                                                                                                                            Happy Gilmore
## 13491                                                                                                                      Rumble in the Bronx (Hont faan kui)
## 13492                                                                                                                                            Birdcage, The
## 13493                                                                                                                       Star Wars: Episode IV - A New Hope
## 13494                                                                                                  Léon: The Professional (a.k.a. The Professional) (Léon)
## 13495                                                                                                                                       Executive Decision
## 13496                                                                                                                                                    Fargo
## 13497                                                                                                                                      Mission: Impossible
## 13498                                                                                                                            Kids in the Hall: Brain Candy
## 13499                                                                                                                                        Cold Comfort Farm
## 13500                                                                                                                                                Rock, The
## 13501                                                                                                                                                  Twister
## 13502                                                                                                                                               Striptease
## 13503                                                                                                                                            Trainspotting
## 13504                                                                                                                            Independence Day (a.k.a. ID4)
## 13505                                                                                                                                                  Kingpin
## 13506                                                                                                                                                   Eraser
## 13507                                                                                                                                               Phenomenon
## 13508                                                                                                                                                  Tin Cup
## 13509                                                                                                                      Willy Wonka & the Chocolate Factory
## 13510                                                                                                               Star Wars: Episode VI - Return of the Jedi
## 13511                                                                                                                                                    Shine
## 13512                                                                                                                          Beavis and Butt-Head Do America
## 13513                                                                                                                                                  Jumanji
## 13514                                                                                                                                                  Sabrina
## 13515                                                                                                                                  American President, The
## 13516                                                                                                                                               Get Shorty
## 13517                                                                                                                                          Dangerous Minds
## 13518                                                                                                                                         Dead Man Walking
## 13519                                                                                                                                                 Clueless
## 13520                                                                                                                                     Seven (a.k.a. Se7en)
## 13521                                                                                                                                       Mr. Holland's Opus
## 13522                                                                                                                                             Broken Arrow
## 13523                                                                                                                                            Happy Gilmore
## 13524                                                                                                                                            Birdcage, The
## 13525                                                                                                                                                Apollo 13
## 13526                                                                                                                                           Batman Forever
## 13527                                                                                                                                                    Congo
## 13528                                                                                                                                                Desperado
## 13529                                                                                                                               Die Hard: With a Vengeance
## 13530                                                                                                                                                 Net, The
## 13531                                                                                                                                                   Clerks
## 13532                                                                                                                          Dumb & Dumber (Dumb and Dumber)
## 13533                                                                                                       Interview with the Vampire: The Vampire Chronicles
## 13534                                                                                                                                                   Junior
## 13535                                                                                                                       Star Wars: Episode IV - A New Hope
## 13536                                                                                                                                             Little Women
## 13537                                                                                                                                     Natural Born Killers
## 13538                                                                                                                                             Pulp Fiction
## 13539                                                                                                                                                 Stargate
## 13540                                                                                                                                Shawshank Redemption, The
## 13541                                                                                                                              What's Eating Gilbert Grape
## 13542                                                                                                                                  While You Were Sleeping
## 13543                                                                                                                               Ace Ventura: Pet Detective
## 13544                                                                                                        Adventures of Priscilla, Queen of the Desert, The
## 13545                                                                                                                                              Client, The
## 13546                                                                                                                                                Crow, The
## 13547                                                                                                                                             Forrest Gump
## 13548                                                                                                                              Four Weddings and a Funeral
## 13549                                                                                                                                           Lion King, The
## 13550                                                                                                                                                    Speed
## 13551                                                                                                                                                True Lies
## 13552                                                                                                                                                Coneheads
## 13553                                                                                                                                                     Dave
## 13554                                                                                                                                                Firm, The
## 13555                                                                                                                                            Fugitive, The
## 13556                                                                                                                                            Jurassic Park
## 13557                                                                                                                                   Much Ado About Nothing
## 13558                                                                                                                                           Mrs. Doubtfire
## 13559                                                                                                                                             Philadelphia
## 13560                                                                                                                                               Piano, The
## 13561                                                                                                                                Robin Hood: Men in Tights
## 13562                                                                                                                                         Schindler's List
## 13563                                                                                                                                     Sleepless in Seattle
## 13564                                                                                                                                             Blade Runner
## 13565                                                                                                                          Nightmare Before Christmas, The
## 13566                                                                                                                                    Three Musketeers, The
## 13567                                                                                                                                                Tombstone
## 13568                                                                                                                                               Home Alone
## 13569                                                                                                                                                  Aladdin
## 13570                                                                                                                                                   Batman
## 13571                                                                                                                                Silence of the Lambs, The
## 13572                                                                                                                          Snow White and the Seven Dwarfs
## 13573                                                                                                                                     Beauty and the Beast
## 13574                                                                                                                                                Pinocchio
## 13575                                                                                                                                                    Fargo
## 13576                                                                                                                                      Mission: Impossible
## 13577                                                                                                                             Truth About Cats & Dogs, The
## 13578                                                                                                                                                Rock, The
## 13579                                                                                                                                                  Twister
## 13580                                                                                                                          Wallace & Gromit: A Close Shave
## 13581                                                                                                                                            Trainspotting
## 13582                                                                                                                            Independence Day (a.k.a. ID4)
## 13583                                                                                                                                               Phenomenon
## 13584                                                                                                                                      Maltese Falcon, The
## 13585                                                                                                                                             My Fair Lady
## 13586                                                                                                                                        Wizard of Oz, The
## 13587                                                                                                                                    2001: A Space Odyssey
## 13588                                                                                                                                             Mary Poppins
## 13589                                                                                                                      Willy Wonka & the Chocolate Factory
## 13590                                                                                                                                     Fish Called Wanda, A
## 13591                                                                                                                             Monty Python's Life of Brian
## 13592                                                                                                                               E.T. the Extra-Terrestrial
## 13593                                                                                                                                                  Top Gun
## 13594                                                                                                                          Monty Python and the Holy Grail
## 13595                                                                                                                                     English Patient, The
## 13596                                                                                                                          One Flew Over the Cuckoo's Nest
## 13597                                                                                                           Star Wars: Episode V - The Empire Strikes Back
## 13598                                                                                                                                      Princess Bride, The
## 13599                                                                                                                                    To Kill a Mockingbird
## 13600                                                                                                                                                  Amadeus
## 13601                                                                                                                                       Dead Poets Society
## 13602                                                                                                                                             Shining, The
## 13603                                                                                                                                              Stand by Me
## 13604                                                                                                                                            Groundhog Day
## 13605                                                                                                                                       Back to the Future
## 13606                                                                                                                                       Young Frankenstein
## 13607                                                                                                                                                 Fantasia
## 13608                                                                                                                       Indiana Jones and the Last Crusade
## 13609                                                                                                                                                   Gandhi
## 13610                                                                                                                                          Field of Dreams
## 13611                                                                                                                                  When Harry Met Sally...
## 13612                                                                                                                                                   Grease
## 13613                                                                                                                                            Mars Attacks!
## 13614                                                                                                                                            Jerry Maguire
## 13615                                                                                                                                          Raising Arizona
## 13616                                                                                                                                                   Scream
## 13617                                                                                                                                                Liar Liar
## 13618                                                                                                                                      Grosse Pointe Blank
## 13619                                                                                                              Austin Powers: International Man of Mystery
## 13620                                                                                                                                       Fifth Element, The
## 13621                                                                                                                                                 Face/Off
## 13622                                                                                                                                Men in Black (a.k.a. MIB)
## 13623                                                                                                                                              Chasing Amy
## 13624                                                                                                                                          Full Monty, The
## 13625                                                                                                                                                  Witness
## 13626                                                                                                                                        Good Will Hunting
## 13627                                                                                                                                        Big Lebowski, The
## 13628                                                                                                                                      Wedding Singer, The
## 13629                                                                                                                                       As Good as It Gets
## 13630                                                                                                                           X-Files: Fight the Future, The
## 13631                                                                                                                                               Armageddon
## 13632                                                                                                                                                 Rain Man
## 13633                                                                                                                                      Breakfast Club, The
## 13634                                                                                                                               Back to the Future Part II
## 13635                                                                                                                                 Honey, I Shrunk the Kids
## 13636                                                                                                                                                   Splash
## 13637                                                                                                                     Indiana Jones and the Temple of Doom
## 13638                                                                                                                                              Beetlejuice
## 13639                                                                                                                                          Few Good Men, A
## 13640                                                                                                                                      Edward Scissorhands
## 13641                                                                                                                                          My Cousin Vinny
## 13642                                                                                                                                            Pleasantville
## 13643                                                                                                                                       American History X
## 13644                                                                                                                                       Enemy of the State
## 13645                                                                                                                                            Bug's Life, A
## 13646                                                                                                                                      Shakespeare in Love
## 13647                                                                                                                                             Office Space
## 13648                                                                                                                                              Matrix, The
## 13649                                                                                                                                                 Election
## 13650                                                                                                                                               Mummy, The
## 13651                                                                                                                Star Wars: Episode I - The Phantom Menace
## 13652                                                                                                                                                 Superman
## 13653                                                                                                                                             Notting Hill
## 13654                                                                                                                                Run Lola Run (Lola rennt)
## 13655                                                                                                                                 Blair Witch Project, The
## 13656                                                                                                                                           Eyes Wide Shut
## 13657                                                                                                                      Ghostbusters (a.k.a. Ghost Busters)
## 13658                                                                                                                                         Sixth Sense, The
## 13659                                                                                                                                 Thomas Crown Affair, The
## 13660                                                                                                                                                Airplane!
## 13661                                                                                                                                                      Big
## 13662                                                                                                                                          American Beauty
## 13663                                                                                                                                               Fight Club
## 13664                                                                                                                                              Fever Pitch
## 13665                                                                                                                                     Being John Malkovich
## 13666                                                                                                                                                    Dogma
## 13667                                                                                                                                            Sleepy Hollow
## 13668                                                                                                                                          Green Mile, The
## 13669                                                                                                                                                 Magnolia
## 13670                                                                                                                                   League of Their Own, A
## 13671                                                                                                                                          Erin Brockovich
## 13672                                                                                                                                          Thelma & Louise
## 13673                                                                                                                                         Double Indemnity
## 13674                                                                                                                                    Good Morning, Vietnam
## 13675                                                                                                                                            High Fidelity
## 13676                                                                                                                                                Gladiator
## 13677                                                                                                                                              Chicken Run
## 13678                                                                                                                                             Patriot, The
## 13679                                                                                                                                       Perfect Storm, The
## 13680                                                                                                                                                    X-Men
## 13681                                                                                                                                            Almost Famous
## 13682                                                                                                         Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 13683                                                                                                                                                  Pollock
## 13684                                                                                                                                                Cast Away
## 13685                                                                                                                               O Brother, Where Art Thou?
## 13686                                                                                                                                                  Traffic
## 13687                                                                                                                                                  Memento
## 13688                                                                                                                                    Bridget Jones's Diary
## 13689                                                                                                                                             Moulin Rouge
## 13690                                                                                                                                              Others, The
## 13691                                                                                                                                           Monsters, Inc.
## 13692                                                                  Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 13693                                                                                                                                           Ocean's Eleven
## 13694                                                                                                            Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 13695                                                                                                                                    Royal Tenenbaums, The
## 13696                                                                                                       Lord of the Rings: The Fellowship of the Ring, The
## 13697                                                                                                                                        Beautiful Mind, A
## 13698                                                                                                                                                  Ice Age
## 13699                                                                                                                                 My Big Fat Greek Wedding
## 13700                                                                                                                                               Spider-Man
## 13701                                                                                                                                              About a Boy
## 13702                                                                                                             Star Wars: Episode II - Attack of the Clones
## 13703                                                                                                                                     Bourne Identity, The
## 13704                                                                                                                                          Minority Report
## 13705                                                                                                             Men in Black II (a.k.a. MIIB) (a.k.a. MIB 2)
## 13706                                                                                                            Spirited Away (Sen to Chihiro no kamikakushi)
## 13707                                                                                                                                                Ring, The
## 13708                                                                                                                   Lord of the Rings: The Two Towers, The
## 13709                                                                                                                                                  Chicago
## 13710                                                                                                                                             Pianist, The
## 13711                                                                                                                             City of God (Cidade de Deus)
## 13712                                                                                                                                           Bruce Almighty
## 13713                                                                                                                                             Finding Nemo
## 13714                                                                                                   Pirates of the Caribbean: The Curse of the Black Pearl
## 13715                                                                                                                                      Lost in Translation
## 13716                                                                                                                       Monty Python's The Meaning of Life
## 13717                                                                                                                                           School of Rock
## 13718                                                                                                                                      Intolerable Cruelty
## 13719                                                                                                                                        Kill Bill: Vol. 1
## 13720                                                                                                                                          Pieces of April
## 13721                                                                                                                                            Love Actually
## 13722                                                                                                                                                 Big Fish
## 13723                                                                                                           Lord of the Rings: The Return of the King, The
## 13724                                                                                                                                                 Thirteen
## 13725                                                                                                                    Eternal Sunshine of the Spotless Mind
## 13726                                                                                                                                        Kill Bill: Vol. 2
## 13727                                                                                                            Maltese Falcon, The (a.k.a. Dangerous Female)
## 13728                                                                                                                 Harry Potter and the Prisoner of Azkaban
## 13729                                                                                                                                             Spider-Man 2
## 13730                                                                                                                                                 I, Robot
## 13731                                                                                                                                    Bourne Supremacy, The
## 13732                                                                                                                                             Garden State
## 13733                                                                                                                                        Shaun of the Dead
## 13734                                                                                                                                      Million Dollar Baby
## 13735                                                                                                                        Charlie and the Chocolate Factory
## 13736                                                                                                                                                 Sin City
## 13737                                                                                                                                              Fever Pitch
## 13738                                                                                                                                            Batman Begins
## 13739                                                                                                                                                 Serenity
## 13740                                                                                                                                  40-Year-Old Virgin, The
## 13741                                                                                                                                   Constant Gardener, The
## 13742                                                                                                                      Harry Potter and the Goblet of Fire
## 13743                                                                                                                                            Walk the Line
## 13744                                                                                          Chronicles of Narnia: The Lion, the Witch and the Wardrobe, The
## 13745                                                                                                                                       Da Vinci Code, The
## 13746                                                                                                                                    Stranger than Fiction
## 13747                                                                                                                                              Ratatouille
## 13748                                                                                                                                 Priceless (Hors de prix)
## 13749                                                                                                                                     In the Land of Women
## 13750                                                                                                                                               Knocked Up
## 13751                                                                                                                Harry Potter and the Order of the Phoenix
## 13752                                                                                                                                  Darjeeling Limited, The
## 13753                                                                                                                                                     Juno
## 13754                                                                                                                                                In Bruges
## 13755                                                                                                       Indiana Jones and the Kingdom of the Crystal Skull
## 13756                                                                                                                                                 Watchmen
## 13757                                                                                                                                   Rachel Getting Married
## 13758                                                                                                                                               The Island
## 13759                                                                                                                                                     Milk
## 13760                                                                                                                              Ponyo (Gake no ue no Ponyo)
## 13761                                                                                                                                                 Coraline
## 13762                                                                                                                                       International, The
## 13763                                                                                                                                                Duplicity
## 13764                                                                                                                      The Butterfly Effect 3: Revelations
## 13765                                                                                                                                                       Up
## 13766                                                                                                                   Harry Potter and the Half-Blood Prince
## 13767                                                                                                                                            Julie & Julia
## 13768                                                                                                                                                Toy Story
## 13769                                                                                                                                   Muppet Treasure Island
## 13770                                                                                                                                               Braveheart
## 13771                                                                                                                               Die Hard: With a Vengeance
## 13772                                                                                                                          Dumb & Dumber (Dumb and Dumber)
## 13773                                                                                                                       Star Wars: Episode IV - A New Hope
## 13774                                                                                                                                             Pulp Fiction
## 13775                                                                                                                                  Quick and the Dead, The
## 13776                                                                                                                                                 Stargate
## 13777                                                                                                                                Shawshank Redemption, The
## 13778                                                                                                                                                Tank Girl
## 13779                                                                                                                               Ace Ventura: Pet Detective
## 13780                                                                                                                                           Lion King, The
## 13781                                                                                                                                            Bronx Tale, A
## 13782                                                                                                                                            Jurassic Park
## 13783                                                                                                                                           Mrs. Doubtfire
## 13784                                                                                                                                                  Aladdin
## 13785                                                                                                                               Terminator 2: Judgment Day
## 13786                                                                                                                                       Dances with Wolves
## 13787                                                                                                                                      Mission: Impossible
## 13788                                                                                                                            Independence Day (a.k.a. ID4)
## 13789                                                                                                                             20,000 Leagues Under the Sea
## 13790                                                                                                                      Willy Wonka & the Chocolate Factory
## 13791                                                                                                                                                    Alien
## 13792                                                                                                                                          Terminator, The
## 13793                                                                                                                                            Groundhog Day
## 13794                                                                                                                                              Under Siege
## 13795                                                                                                                                        L.A. Confidential
## 13796                                                                                                                                      Blues Brothers 2000
## 13797                                                                                                                                      Saving Private Ryan
## 13798                                                                                                                                           Police Academy
## 13799                                                                                                                                              Matrix, The
## 13800                                                                                                                Star Wars: Episode I - The Phantom Menace
## 13801                                                                                                                    Austin Powers: The Spy Who Shagged Me
## 13802                                                                                                                                             American Pie
## 13803                                                                                                                                         Sixth Sense, The
## 13804                                                                                                          Fistful of Dollars, A (Per un pugno di dollari)
## 13805                                                                                                                                               Fight Club
## 13806                                                                                                                                 Who Framed Roger Rabbit?
## 13807                                                                                                                                         Live and Let Die
## 13808                                                                                                                                              Toy Story 2
## 13809                                                                                                                                          Wayne's World 2
## 13810                                                                                                                                                Gladiator
## 13811                                                                                                                                                Moonraker
## 13812                                                                                                                                                    X-Men
## 13813                                                                                                                                           Monsters, Inc.
## 13814                                                                  Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 13815                                                                                                                                           Ocean's Eleven
## 13816                                                                                                                                            Resident Evil
## 13817                                                                                                                                               Spider-Man
## 13818                                                                                                                                     Bourne Identity, The
## 13819                                                                                                                   Lord of the Rings: The Two Towers, The
## 13820                                                                                                                                     Matrix Reloaded, The
## 13821                                                                                                   Pirates of the Caribbean: The Curse of the Black Pearl
## 13822                                                                                                                                        Kill Bill: Vol. 1
## 13823                                                                                                           Lord of the Rings: The Return of the King, The
## 13824                                                                                                                                        Kill Bill: Vol. 2
## 13825                                                                                                                                              Van Helsing
## 13826                                                                                                                         Dodgeball: A True Underdog Story
## 13827                                                                                                                                            Batman Begins
## 13828                                                                                                               Pirates of the Caribbean: Dead Man's Chest
## 13829                                                                                                                                            Departed, The
## 13830                                                                                                                                            Casino Royale
## 13831                                                                                                                                                      300
## 13832                                                                                                                                         Dark Knight, The
## 13833                                                                                                                                                 Iron Man
## 13834                                                                                                                                                Toy Story
## 13835                                                                                                                                                     Heat
## 13836                                                                                                                                        Leaving Las Vegas
## 13837                                                                                                 City of Lost Children, The (Cité des enfants perdus, La)
## 13838                                                                                                                       Twelve Monkeys (a.k.a. 12 Monkeys)
## 13839                                                                                                                                         Dead Man Walking
## 13840                                                                                                                                               Juror, The
## 13841                                                                                                                  Things to Do in Denver When You're Dead
## 13842                                                                                                                                            Birdcage, The
## 13843                                                                                                                       Star Wars: Episode IV - A New Hope
## 13844                                                                                                                                                    Fargo
## 13845                                                                                                                                      Mission: Impossible
## 13846                                                                                                                                James and the Giant Peach
## 13847                                                                                                                                                Rock, The
## 13848                                                                                                                                                  Twister
## 13849                                                                                                                                       I Shot Andy Warhol
## 13850                                                                                                                                            Trainspotting
## 13851                                                                                                                            Independence Day (a.k.a. ID4)
## 13852                                                                                                                             Hunchback of Notre Dame, The
## 13853                                                                                                                                                Lone Star
## 13854                                                                                                                                               Phenomenon
## 13855                                                                                                                                    First Wives Club, The
## 13856                                                                                                                                                   Ransom
## 13857                                                                                                                                                  Matilda
## 13858                                                                                                                                                    Bound
## 13859                                                                                                                                            Fly Away Home
## 13860                                                                                                                                 Long Kiss Goodnight, The
## 13861                                                                                                                                                 Sleepers
## 13862                                                                                                                      Willy Wonka & the Chocolate Factory
## 13863                                                                                                                                     English Patient, The
## 13864                                                                                                                            Blood and Wine (Blood & Wine)
## 13865                                                                                                                                 Star Trek: First Contact
## 13866                                                                                                                                           101 Dalmatians
## 13867                                                                                                                                                   Scream
## 13868                                                                                                                                           Murder at 1600
## 13869                                                                                                                                             Dante's Peak
## 13870                                                                                                                                         City of Industry
## 13871                                                                                                                                               Saint, The
## 13872                                                                                                                                      Grosse Pointe Blank
## 13873                                                                                                                   Romy and Michele's High School Reunion
## 13874                                                                                                                                                  Volcano
## 13875                                                                                                                                       Fifth Element, The
## 13876                                                                                                                                                  Con Air
## 13877                                                                                                                                         Pillow Book, The
## 13878                                                                                                                                 My Best Friend's Wedding
## 13879                                                                                                                                Men in Black (a.k.a. MIB)
## 13880                                                                                                                                                  Contact
## 13881                                                                                                                                            Event Horizon
## 13882                                                                                                                                        Conspiracy Theory
## 13883                                                                                                                                            Air Force One
## 13884                                                                                                                                                Toy Story
## 13885                                                                                                                              Dracula: Dead and Loving It
## 13886                                                                                                                           Ace Ventura: When Nature Calls
## 13887                                                                                                                                                Assassins
## 13888                                                                                                                                                     Babe
## 13889                                                                                                                                            Happy Gilmore
## 13890                                                                                                                                               Braveheart
## 13891                                                                                                                                            Billy Madison
## 13892                                                                                                                          Dumb & Dumber (Dumb and Dumber)
## 13893                                                                                                                       Star Wars: Episode IV - A New Hope
## 13894                                                                                                                                              Major Payne
## 13895                                                                                                                                Shawshank Redemption, The
## 13896                                                                                                                                             Forrest Gump
## 13897                                                                                                                       Naked Gun 33 1/3: The Final Insult
## 13898                                                                                                                                                True Lies
## 13899                                                                                                                                     Hot Shots! Part Deux
## 13900                                                                                                                                         Schindler's List
## 13901                                                                                                                                                  Aladdin
## 13902                                                                                                                               Terminator 2: Judgment Day
## 13903                                                                                                                                             Stupids, The
## 13904                                                                                                                                                 Die Hard
## 13905                                                                                                                                 Long Kiss Goodnight, The
## 13906                                                                                                                               E.T. the Extra-Terrestrial
## 13907                                                                                                           Star Wars: Episode V - The Empire Strikes Back
## 13908                                                                                  Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 13909                                                                                                                                                   Aliens
## 13910                                                                                                               Star Wars: Episode VI - Return of the Jedi
## 13911                                                                                                                                                    Alien
## 13912                                                                                                                                          Terminator, The
## 13913                                                                                                                                            Groundhog Day
## 13914                                                                                                                                       Back to the Future
## 13915                                                                                                                       Indiana Jones and the Last Crusade
## 13916                                                                                                                                                 Face/Off
## 13917                                                                                                                                         Truman Show, The
## 13918                                                                                                                                      Saving Private Ryan
## 13919                                                                                                                                            Waterboy, The
## 13920                                                                                                                 Police Academy 2: Their First Assignment
## 13921                                                                                                                       Police Academy 3: Back in Training
## 13922                                                                                                                     Police Academy 4: Citizens on Patrol
## 13923                                                                                                                Police Academy 5: Assignment: Miami Beach
## 13924                                                                                                                                              Matrix, The
## 13925                                                                                                                                             American Pie
## 13926                                                                                                                                                Airplane!
## 13927                                                                                                                                    From Russia with Love
## 13928                                                                                                                                              Toy Story 2
## 13929                                                                                                                               Deuce Bigalow: Male Gigolo
## 13930                                                                                                                                       Who's Harry Crumb?
## 13931                                                                                                                                                Gladiator
## 13932                                                                                                                                   Mission: Impossible II
## 13933                                                                                                                           Nutty Professor II: The Klumps
## 13934                                                                                                                  Naked Gun 2 1/2: The Smell of Fear, The
## 13935                                                                                                                                             Little Nicky
## 13936                                                                                                         Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 13937                                                                                                                                    Dude, Where's My Car?
## 13938                                                                                                                                     Beverly Hills Cop II
## 13939                                                                                                                                                    Shrek
## 13940                                                                                                                                              Animal, The
## 13941                                                                                                                                           American Pie 2
## 13942                                                                                                                                           Monsters, Inc.
## 13943                                                                                                            Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 13944                                                                                                       Lord of the Rings: The Fellowship of the Ring, The
## 13945                                                                                                                                                  Ice Age
## 13946                                                                                                                                     Bourne Identity, The
## 13947                                                                                                                   Lord of the Rings: The Two Towers, The
## 13948                                                                                                                  Dumb and Dumberer: When Harry Met Lloyd
## 13949                                                                                                                                           Johnny English
## 13950                                                                                                                                                   Duplex
## 13951                                                                                                           Lord of the Rings: The Return of the King, The
## 13952                                                                                                                                                 EuroTrip
## 13953                                                                                                                                      Girl Next Door, The
## 13954                                                                                                                                                  Shrek 2
## 13955                                                                                                                                             White Chicks
## 13956                                                                                                                                         Meet the Fockers
## 13957                                                                                                                                         Mr. & Mrs. Smith
## 13958                                                                                                                                            Batman Begins
## 13959                                                                                                                                         Wedding Crashers
## 13960                                                                                                                                  40-Year-Old Virgin, The
## 13961                                                                                                                                        Pink Panther, The
## 13962                                                                                                                                  Ice Age 2: The Meltdown
## 13963                                                                                                                                           V for Vendetta
## 13964                                                                                                                                            Scary Movie 4
## 13965                                                                                                                                  Mission: Impossible III
## 13966                                                                                                                                               Little Man
## 13967                                                                                                                                                   Norbit
## 13968                                                                                                                                       Mr. Bean's Holiday
## 13969                                                                                                                                      Simpsons Movie, The
## 13970                                                                                                                                    Bourne Ultimatum, The
## 13971                                                                                                                                                 Superbad
## 13972                                                                                                                                            Balls of Fury
## 13973                                                                                                                                        Meet the Spartans
## 13974                                                                                                                                         Dark Knight, The
## 13975                                                                                                                                          Superhero Movie
## 13976                                                                                                                                                 Iron Man
## 13977                                                                                                                                                    Taken
## 13978                                                                                                                            You Don't Mess with the Zohan
## 13979                                                                                                                                      Pink Panther 2, The
## 13980                                                                                                                                                Star Trek
## 13981                                                                                                                                                       Up
## 13982                                                                                                                                            Hangover, The
## 13983                                                                                                                                               Zombieland
## 13984                                                                                                                                          Sherlock Holmes
## 13985                                                                                                                                     From Paris with Love
## 13986                                                                                                                                 How to Train Your Dragon
## 13987                                                                                                                                                  Killers
## 13988                                                                                                                                              Toy Story 3
## 13989                                                                                                                                                Inception
## 13990                                                                                                                                           Knight and Day
## 13991                                                                                                                                                     Salt
## 13992                                                                                                                                      Dinner for Schmucks
## 13993                                                                                                                                                   Easy A
## 13994                                                                                                                                                      Red
## 13995                                                                                                                                                 Megamind
## 13996                                                                                                                                           Little Fockers
## 13997                                                                                                                                              Source Code
## 13998                                                                                                                                       X-Men: First Class
## 13999                                                                                                                                            Avengers, The
## 14000                                                                                                                                         The Hunger Games
## 14001                                                                                                                       Sherlock Holmes: A Game of Shadows
## 14002                                                                                                                     Mission: Impossible - Ghost Protocol
## 14003                                                                                                                                             Intouchables
## 14004                                                                                                                                               Safe House
## 14005                                                                                                                                           This Means War
## 14006                                                                                                                                           21 Jump Street
## 14007                                                                                                                                             Black Mirror
## 14008                                                                                                                                                   Looper
## 14009                                                                                                                                            That's My Boy
## 14010                                                                                                                                           Wreck-It Ralph
## 14011                                                                                                                       Hobbit: An Unexpected Journey, The
## 14012                                                                                                                                          Despicable Me 2
## 14013                                                                                                                                         World's End, The
## 14014                                                                                                                                                    Red 2
## 14015                                                                                                                                                   2 Guns
## 14016                                                                                                                                              Grown Ups 2
## 14017                                                                                                                                               About Time
## 14018                                                                                                                          The Hunger Games: Catching Fire
## 14019                                                                                                                     Hobbit: The Desolation of Smaug, The
## 14020                                                                                                                                 Wolf of Wall Street, The
## 14021                                                                                                                                Grand Budapest Hotel, The
## 14022                                                                                                                      Captain America: The Winter Soldier
## 14023                                                                                                                       Mission: Impossible - Rogue Nation
## 14024                                                                                                                                           22 Jump Street
## 14025                                                                                                                               How to Train Your Dragon 2
## 14026                                                                                                                           Dawn of the Planet of the Apes
## 14027                                                                                                                                  Guardians of the Galaxy
## 14028                                                                                                                                               Big Hero 6
## 14029                                                                                                                                       Dumb and Dumber To
## 14030                                                                                                                                   Paul Blart: Mall Cop 2
## 14031                                                                                                                                                      Spy
## 14032                                                                                                                                               Inside Out
## 14033                                                                                                                                  The Man from U.N.C.L.E.
## 14034                                                                                                                                                Toy Story
## 14035                                                                                                                                                  Jumanji
## 14036                                                                                                                                                     Heat
## 14037                                                                                                                                                GoldenEye
## 14038                                                                                                                                  American President, The
## 14039                                                                                                                           Ace Ventura: When Nature Calls
## 14040                                                                                                                                               Get Shorty
## 14041                                                                                                                       Twelve Monkeys (a.k.a. 12 Monkeys)
## 14042                                                                                                                                                     Babe
## 14043                                                                                                                                                 Clueless
## 14044                                                                                                                                            Mortal Kombat
## 14045                                                                                                                                               To Die For
## 14046                                                                                                                                     Seven (a.k.a. Se7en)
## 14047                                                                                                                                      Usual Suspects, The
## 14048                                                                                                                                       Mr. Holland's Opus
## 14049                                                                                                                                                Screamers
## 14050                                                                                                                                             Broken Arrow
## 14051                                                                                                                                               Braveheart
## 14052                                                                                                                      Rumble in the Bronx (Hont faan kui)
## 14053                                                                                                                                            Birdcage, The
## 14054                                                                                                                                                 Bad Boys
## 14055                                                                                                                                                Apollo 13
## 14056                                                                                                                                                  Rob Roy
## 14057                                                                                                                                           Batman Forever
## 14058                                                                                                                                                    Congo
## 14059                                                                                                                                             Crimson Tide
## 14060                                                                                                                                                Desperado
## 14061                                                                                                                               Die Hard: With a Vengeance
## 14062                                                                                                                                          Johnny Mnemonic
## 14063                                                                                                                                              Judge Dredd
## 14064                                                                                                                                        Lord of Illusions
## 14065                                                                                                                  Mighty Morphin Power Rangers: The Movie
## 14066                                                                                                                                              Nine Months
## 14067                                                                                                                                            Prophecy, The
## 14068                                                                                                                                                Showgirls
## 14069                                                                                                                                                  Species
## 14070                                                                                                                            Under Siege 2: Dark Territory
## 14071                                                                                                                                               Waterworld
## 14072                                                                                                                                                   Clerks
## 14073                                                                                                                                         Don Juan DeMarco
## 14074                                                                                                                          Dumb & Dumber (Dumb and Dumber)
## 14075                                                                                                                                                  Ed Wood
## 14076                                                                                                                                             Forget Paris
## 14077                                                                                                                                       Heavenly Creatures
## 14078                                                                                                                                                     I.Q.
## 14079                                                                                                       Interview with the Vampire: The Vampire Chronicles
## 14080                                                                                                                                      Legends of the Fall
## 14081                                                                                                               Mary Shelley's Frankenstein (Frankenstein)
## 14082                                                                                                                                     Natural Born Killers
## 14083                                                                                                                                                 Outbreak
## 14084                                                                                                  Léon: The Professional (a.k.a. The Professional) (Léon)
## 14085                                                                                                                                             Pulp Fiction
## 14086                                                                                                                                                Quiz Show
## 14087                                                                                                                                          Specialist, The
## 14088                                                                                                                                                 Stargate
## 14089                                                                                                                                        Santa Clause, The
## 14090                                                                                                                                Shawshank Redemption, The
## 14091                                                                                                                                            Shallow Grave
## 14092                                                                                                              Tales from the Crypt Presents: Demon Knight
## 14093                                                                                                                                   Star Trek: Generations
## 14094                                                                                                                                      Tales from the Hood
## 14095                                                                                                                                    Village of the Damned
## 14096                                                                                                                                                Tommy Boy
## 14097                                                                                                                                  While You Were Sleeping
## 14098                                                                                                                               Ace Ventura: Pet Detective
## 14099                                                                                                                                 Clear and Present Danger
## 14100                                                                                                                                              Client, The
## 14101                                                                                                                                                Crow, The
## 14102                                                                                                                                         Flintstones, The
## 14103                                                                                                                                             Forrest Gump
## 14104                                                                                                                              Four Weddings and a Funeral
## 14105                                                                                                                                         Jungle Book, The
## 14106                                                                                                                                           Lion King, The
## 14107                                                                          Wes Craven's New Nightmare (Nightmare on Elm Street Part 7: Freddy's Finale, A)
## 14108                                                                                                                                                Mask, The
## 14109                                                                                                                                                 Maverick
## 14110                                                                                                                       Naked Gun 33 1/3: The Final Insult
## 14111                                                                                                                                                    Speed
## 14112                                                                                                                                                True Lies
## 14113                                                                                                                                                 Airheads
## 14114                                                                                                                                    Beverly Hills Cop III
## 14115                                                                                                                                           Body Snatchers
## 14116                                                                                                             City Slickers II: The Legend of Curly's Gold
## 14117                                                                                                                                              Cliffhanger
## 14118                                                                                                                                                Coneheads
## 14119                                                                                                                                                     Dave
## 14120                                                                                                                                           Demolition Man
## 14121                                                                                                                                                Firm, The
## 14122                                                                                                                                               Free Willy
## 14123                                                                                                                                            Fugitive, The
## 14124                                                                                                                                     Hot Shots! Part Deux
## 14125                                                                                                                                     Hudsucker Proxy, The
## 14126                                                                                                                                      In the Line of Fire
## 14127                                                                                                                                            Jurassic Park
## 14128                                                                                                                                         Last Action Hero
## 14129                                                                                                                                   Much Ado About Nothing
## 14130                                                                                                                                           Mrs. Doubtfire
## 14131                                                                                                                                             Philadelphia
## 14132                                                                                                                                               Piano, The
## 14133                                                                                                                                Robin Hood: Men in Tights
## 14134                                                                                                                                         Schindler's List
## 14135                                                                                                                              Searching for Bobby Fischer
## 14136                                                                                                                                               Serial Mom
## 14137                                                                                                                                     Sleepless in Seattle
## 14138                                                                                                                             So I Married an Axe Murderer
## 14139                                                                                                                          Nightmare Before Christmas, The
## 14140                                                                                                                                    Three Musketeers, The
## 14141                                                                                                                                                Tombstone
## 14142                                                                                                                                             True Romance
## 14143                                                                                                                                                    Ghost
## 14144                                                                                                                                                  Aladdin
## 14145                                                                                                                               Terminator 2: Judgment Day
## 14146                                                                                                                                       Dances with Wolves
## 14147                                                                                                                                                   Batman
## 14148                                                                                                                                     Beauty and the Beast
## 14149                                                                                                                                             Pretty Woman
## 14150                                                                                                                          Candyman: Farewell to the Flesh
## 14151                                                                                                                                                    Fargo
## 14152                                                                                                                                              Heavy Metal
## 14153                                                                                                                                      Mission: Impossible
## 14154                                                                                                                                                  Twister
## 14155                                                                                                                                            Trainspotting
## 14156                                                                                                                            Independence Day (a.k.a. ID4)
## 14157                                                                                                                                                Toy Story
## 14158                                                                                                                                  American President, The
## 14159                                                                                                                                    Sense and Sensibility
## 14160                                                                                                                                               Get Shorty
## 14161                                                                                                                                        Leaving Las Vegas
## 14162                                                                                                                                                     Babe
## 14163                                                                                                                                                 Clueless
## 14164                                                                                                                                       Mr. Holland's Opus
## 14165                                                                                                                                                Apollo 13
## 14166                                                                                                                                               Waterworld
## 14167                                                                                                                       Star Wars: Episode IV - A New Hope
## 14168                                                                                                      Like Water for Chocolate (Como agua para chocolate)
## 14169                                                                                                                                      Legends of the Fall
## 14170                                                                                                                              What's Eating Gilbert Grape
## 14171                                                                                                                                  While You Were Sleeping
## 14172                                                                                                                                         Muriel's Wedding
## 14173                                                                                                                              Four Weddings and a Funeral
## 14174                                                                                                                                           Lion King, The
## 14175                                                                                                                                                 Maverick
## 14176                                                                                                                                                    Speed
## 14177                                                                                                                                            Fugitive, The
## 14178                                                                                                                                             Philadelphia
## 14179                                                                                                                                  Remains of the Day, The
## 14180                                                                                                                              Searching for Bobby Fischer
## 14181                                                                                                                                     Sleepless in Seattle
## 14182                                                                                                                                               Home Alone
## 14183                                                                                                                                                    Ghost
## 14184                                                                                                                                                  Aladdin
## 14185                                                                                                                                       Dances with Wolves
## 14186                                                                                                                                                   Batman
## 14187                                                                                                                                     Beauty and the Beast
## 14188                                                                                                                                             Pretty Woman
## 14189                                                                                                                                      Mission: Impossible
## 14190                                                                                                                                                Rock, The
## 14191                                                                                                                                           Godfather, The
## 14192                                                                                                                                  Philadelphia Story, The
## 14193                                                                                                                                   Breakfast at Tiffany's
## 14194                                                                                                                                              Rear Window
## 14195                                                                                                                                       North by Northwest
## 14196                                                                                                                                         Some Like It Hot
## 14197                                                                                                                                               Casablanca
## 14198                                                                                                                                             My Fair Lady
## 14199                                                                                                                                        Wizard of Oz, The
## 14200                                                                                                                                       Gone with the Wind
## 14201                                                                                                                                             Citizen Kane
## 14202                                                                                                                      Willy Wonka & the Chocolate Factory
## 14203                                                                                                                                     Fish Called Wanda, A
## 14204                                                                                                                               E.T. the Extra-Terrestrial
## 14205                                                                                                                          One Flew Over the Cuckoo's Nest
## 14206                                                                                                                                      Princess Bride, The
## 14207                                                                                  Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 14208                                                                                                                                                  Amadeus
## 14209                                                                                                                                               Sting, The
## 14210                                                                                                                                          Terminator, The
## 14211                                                                                                                                                    Glory
## 14212                                                                                                                                       Dead Poets Society
## 14213                                                                                                                                            Graduate, The
## 14214                                                                                                                                              Stand by Me
## 14215                                                                                                                                            Groundhog Day
## 14216                                                                                                                                       Back to the Future
## 14217                                                                                                                                       Young Frankenstein
## 14218                                                                                                                       Indiana Jones and the Last Crusade
## 14219                                                                                                                       Butch Cassidy and the Sundance Kid
## 14220                                                                                                                                  When Harry Met Sally...
## 14221                                                                                                                                                   Grease
## 14222                                                                                                                                                     Jaws
## 14223                                                                                                                                            Jerry Maguire
## 14224                                                                                                                                          Raising Arizona
## 14225                                                                                                                                Men in Black (a.k.a. MIB)
## 14226                                                                                                                                Hunt for Red October, The
## 14227                                                                                                                                          Full Monty, The
## 14228                                                                                                                                         Truman Show, The
## 14229                                                                                                                                        Good Will Hunting
## 14230                                                                                                                                                  Titanic
## 14231                                                                                                                                              Wag the Dog
## 14232                                                                                                                                       As Good as It Gets
## 14233                                                                                                                                             Out of Sight
## 14234                                                                                                                             There's Something About Mary
## 14235                                                                                                                                                 Rain Man
## 14236                                                                                                                                      Breakfast Club, The
## 14237                                                                                                                               Back to the Future Part II
## 14238                                                                                                                                      Little Mermaid, The
## 14239                                                                                                                                                   Splash
## 14240                                                                                                                     Indiana Jones and the Temple of Doom
## 14241                                                                                                                                        Untouchables, The
## 14242                                                                                                                                          Few Good Men, A
## 14243                                                                                                                                      Edward Scissorhands
## 14244                                                                                                                                          My Cousin Vinny
## 14245                                                                                                                                            Pleasantville
## 14246                                                                                                                                            Bug's Life, A
## 14247                                                                                                                                      Shakespeare in Love
## 14248                                                                                                                                      Romancing the Stone
## 14249                                                                                                                                         Crocodile Dundee
## 14250                                                                                                                                                 Election
## 14251                                                                                                                           Rocky Horror Picture Show, The
## 14252                                                                                                                      Ghostbusters (a.k.a. Ghost Busters)
## 14253                                                                                                                                                      Big
## 14254                                                                                                                                 Ferris Bueller's Day Off
## 14255                                                                                                                                               Moonstruck
## 14256                                                                                                                                         Fatal Attraction
## 14257                                                                                                                                              Toy Story 2
## 14258                                                                                                                                 Talented Mr. Ripley, The
## 14259                                                                                                                                   League of Their Own, A
## 14260                                                                                                                                            Patriot Games
## 14261                                                                                                                                              Wonder Boys
## 14262                                                                                                                                          Erin Brockovich
## 14263                                                                                                                       Close Encounters of the Third Kind
## 14264                                                                                                                                              Chicken Run
## 14265                                                                                                                                            Almost Famous
## 14266                                                                                                                                                 Chocolat
## 14267                                                                                                                                                Cast Away
## 14268                                                                                                                               O Brother, Where Art Thou?
## 14269                                                                                                                                           State and Main
## 14270                                                                                                                                        Beverly Hills Cop
## 14271                                                                                                                                    Bridget Jones's Diary
## 14272                                                                                                                                                    Shrek
## 14273                                                                                                                                                  Tootsie
## 14274                                                                                                                                           Monsters, Inc.
## 14275                                                                                                                                           Ocean's Eleven
## 14276                                                                                                                                    Royal Tenenbaums, The
## 14277                                                                                                       Lord of the Rings: The Fellowship of the Ring, The
## 14278                                                                                                                                        Beautiful Mind, A
## 14279                                                                                                                                 My Big Fat Greek Wedding
## 14280                                                                                                                                              About a Boy
## 14281                                                                                                                   Lord of the Rings: The Two Towers, The
## 14282                                                                                                                                      Catch Me If You Can
## 14283                                                                                                                                             Finding Nemo
## 14284                                                                                                                                      Lost in Translation
## 14285                                                                                                                                           School of Rock
##         timestamp
## 1      1260759144
## 2      1260759179
## 3      1260759182
## 4      1260759185
## 5      1260759205
## 6      1260759151
## 7      1260759187
## 8      1260759148
## 9      1260759125
## 10     1260759131
## 11     1260759135
## 12     1260759203
## 13     1260759191
## 14     1260759139
## 15     1260759194
## 16     1260759198
## 17     1260759108
## 18     1260759113
## 19     1260759200
## 20     1260759117
## 21      835355493
## 22      835355681
## 23      835355604
## 24      835355552
## 25      835355586
## 26      835356031
## 27      835355749
## 28      835355532
## 29      835356016
## 30      835355395
## 31      835355441
## 32      835355493
## 33      835355441
## 34      835355710
## 35      835355511
## 36      835355664
## 37      835355511
## 38      835355840
## 39      835355749
## 40      835355552
## 41      835355664
## 42      835355896
## 43      835355511
## 44      835355681
## 45      835355697
## 46      835355586
## 47      835355767
## 48      835355779
## 49      835355492
## 50      835355395
## 51      835355532
## 52      835356044
## 53      835355551
## 54      835355918
## 55      835355492
## 56      835355441
## 57      835355697
## 58      835355628
## 59      835355749
## 60      835355604
## 61      835355619
## 62      835355932
## 63      835355968
## 64      835356094
## 65      835355710
## 66      835356165
## 67      835356246
## 68      835355532
## 69      835355604
## 70      835355511
## 71      835355790
## 72      835355828
## 73      835355643
## 74      835355918
## 75      835355880
## 76      835355731
## 77      835355860
## 78      835355719
## 79      835355817
## 80      835355731
## 81      835356199
## 82      835355767
## 83      835356109
## 84      835355767
## 85      835355860
## 86      835355817
## 87      835355790
## 88      835355779
## 89      835355441
## 90      835355697
## 91      835355395
## 92      835355395
## 93      835355511
## 94      835355932
## 95      835356141
## 96      835355978
## 97     1298861675
## 98     1298922049
## 99     1298861637
## 100    1298861761
## 101    1298862418
## 102    1298862121
## 103    1298861589
## 104    1298862167
## 105    1298923242
## 106    1298862528
## 107    1298922100
## 108    1298923247
## 109    1298921840
## 110    1298923260
## 111    1298932787
## 112    1298863157
## 113    1298861687
## 114    1298932770
## 115    1298921795
## 116    1298861628
## 117    1298861605
## 118    1298861658
## 119    1298922089
## 120    1298923236
## 121    1298863143
## 122    1298921862
## 123    1298861753
## 124    1298861789
## 125    1298862710
## 126    1298861796
## 127    1298924017
## 128    1298922057
## 129    1298861733
## 130    1298921825
## 131    1298862874
## 132    1298861968
## 133    1298861633
## 134    1298863174
## 135    1298923266
## 136    1298862672
## 137    1298922080
## 138    1298921787
## 139    1298922065
## 140    1298861650
## 141    1298932766
## 142    1298862555
## 143    1298932740
## 144    1298862361
## 145    1298862467
## 146    1298922071
## 147    1298922130
## 148     949810645
## 149     949919556
## 150     949810582
## 151     949919681
## 152     949811346
## 153     949811346
## 154     949920047
## 155     949779042
## 156     949778802
## 157     949895708
## 158     949810618
## 159     949810582
## 160     949919763
## 161     949919681
## 162     949949538
## 163     949895887
## 164     949810534
## 165     949919883
## 166     949895772
## 167     949810688
## 168     949920135
## 169     949919802
## 170     949920028
## 171     949811315
## 172     949810582
## 173     949779091
## 174     949949486
## 175     949919938
## 176     949810534
## 177     949949538
## 178     949949638
## 179     949982238
## 180     949949444
## 181     949779022
## 182     949919189
## 183     949919306
## 184     949919247
## 185     949949396
## 186     949919454
## 187     949919322
## 188     949949638
## 189     949949638
## 190     949896377
## 191     949896377
## 192     949949538
## 193     949949638
## 194     949896244
## 195     949919372
## 196     949811523
## 197     949895732
## 198     949778771
## 199     949919399
## 200     949896275
## 201     949919372
## 202     949919419
## 203     949779173
## 204     949811490
## 205     949779173
## 206     949896244
## 207     949896159
## 208     949779173
## 209     949778714
## 210     949895708
## 211     949810261
## 212     949779173
## 213     949811523
## 214     949918693
## 215     949779173
## 216     949919372
## 217     949896244
## 218     949919519
## 219     949811602
## 220     949918743
## 221     949811559
## 222     949919591
## 223     949811523
## 224     949919372
## 225     949949396
## 226     949811559
## 227     949811490
## 228     949918743
## 229     949918927
## 230     949811602
## 231     949896275
## 232     949982274
## 233     949919247
## 234     949810582
## 235     949810302
## 236     949920004
## 237     949918787
## 238     949918904
## 239     949810688
## 240     949896377
## 241     949810261
## 242     949810302
## 243     949895772
## 244     949811230
## 245     949919978
## 246     949811559
## 247     949896244
## 248     949895864
## 249     949919738
## 250     949810688
## 251     949895956
## 252     949810261
## 253     949810261
## 254     949918743
## 255     949949538
## 256     949811559
## 257     949896309
## 258     949811602
## 259     949895907
## 260     949918970
## 261     949896070
## 262     949919454
## 263     949778771
## 264     949811738
## 265     949896114
## 266     949982239
## 267     949896183
## 268     949810618
## 269     949896114
## 270     949918648
## 271     949949444
## 272     949919306
## 273     949982239
## 274     949949444
## 275     949896114
## 276     949949638
## 277     949896183
## 278     949920028
## 279     949949538
## 280     949896114
## 281     949949396
## 282     949896114
## 283     949919399
## 284     949896309
## 285     949918927
## 286     949918994
## 287     949919763
## 288     949896070
## 289     949982239
## 290     949896114
## 291     949811603
## 292     949896070
## 293     949896070
## 294     949896070
## 295     949918764
## 296     949811559
## 297     949896309
## 298     949895772
## 299     949919556
## 300     949918927
## 301     949811603
## 302     949918994
## 303     949918994
## 304     949810302
## 305     949982274
## 306     949918875
## 307     949896275
## 308     949895993
## 309     949810582
## 310     949810261
## 311     949918671
## 312     949896497
## 313     949896497
## 314     949811523
## 315     949810582
## 316     949778714
## 317     949896521
## 318     949919399
## 319     949811490
## 320     949811603
## 321     949896070
## 322     949811738
## 323     949811230
## 324     949918875
## 325     949896114
## 326     949896377
## 327     949896309
## 328     949896309
## 329     949810534
## 330     949811559
## 331     949896070
## 332     949896015
## 333     949918807
## 334     949810261
## 335     949896543
## 336     949949444
## 337     949811559
## 338     949919419
## 339     949919656
## 340     949918715
## 341     949896275
## 342     949811603
## 343     949919738
## 344     949918904
## 345     949778946
## 346     949811523
## 347     949918970
## 348     949919738
## 349     949919845
## 350     949895732
## 351     949982238
## 352    1163374957
## 353    1163374952
## 354    1163374639
## 355    1163374242
## 356    1163374404
## 357    1163373762
## 358    1163373208
## 359    1163373636
## 360    1163374152
## 361    1163373752
## 362    1163373755
## 363    1163373610
## 364    1163374477
## 365    1163373718
## 366    1163374392
## 367    1163373551
## 368    1163374190
## 369    1163373711
## 370    1163374993
## 371    1163373651
## 372    1163373135
## 373    1163374286
## 374    1163373316
## 375    1163373103
## 376    1163374173
## 377    1163374239
## 378    1163374582
## 379    1163374495
## 380    1163373044
## 381    1163374165
## 382    1163374608
## 383    1163374562
## 384    1163374214
## 385    1163373744
## 386    1163374601
## 387    1163374251
## 388    1163373726
## 389    1163373675
## 390    1163374324
## 391    1163374593
## 392    1163373188
## 393    1163373109
## 394    1163373276
## 395    1163373251
## 396    1163374184
## 397    1163373193
## 398    1163374290
## 399    1163373679
## 400    1163373293
## 401    1163374246
## 402    1163373743
## 403    1163374947
## 404    1163374278
## 405    1163374127
## 406    1163374263
## 407    1163374408
## 408    1163374137
## 409    1163373148
## 410    1163374235
## 411    1163374198
## 412    1163373273
## 413    1163375025
## 414    1163373696
## 415    1163375145
## 416    1163374103
## 417    1163374354
## 418    1163375033
## 419    1163375131
## 420    1163373548
## 421    1163373616
## 422    1163374995
## 423    1163373299
## 424    1163373606
## 425    1163374443
## 426    1163374206
## 427    1163374389
## 428    1163373688
## 429    1163374533
## 430    1163374491
## 431    1163374572
## 432    1163373626
## 433    1163374455
## 434    1163373238
## 435    1163374511
## 436    1163374742
## 437    1163374381
## 438    1163374118
## 439    1163373593
## 440    1163374426
## 441    1163374340
## 442    1163374702
## 443    1163374177
## 444    1163374211
## 445    1163374517
## 446    1163374227
## 447    1163374275
## 448    1163374283
## 449    1163374144
## 450    1163374167
## 451    1163374357
## 452    1109258212
## 453    1108134263
## 454    1109258228
## 455    1108134539
## 456    1108134269
## 457    1108134299
## 458    1108134266
## 459    1108134284
## 460    1109258196
## 461    1108134309
## 462    1108134339
## 463    1109258181
## 464    1109258179
## 465    1109258281
## 466    1109258194
## 467    1108134334
## 468    1108134344
## 469    1108134289
## 470    1109258270
## 471    1109258285
## 472    1109258175
## 473    1108134291
## 474    1109258245
## 475    1108134293
## 476    1109258202
## 477    1108134271
## 478    1108134274
## 479    1109258257
## 480    1108134545
## 481    1109258199
## 482    1108134337
## 483    1109258183
## 484    1109258250
## 485    1109258190
## 486    1109258217
## 487    1109258226
## 488    1108134311
## 489    1108134534
## 490    1108134519
## 491    1108134524
## 492    1108134526
## 493    1108134537
## 494    1108134531
## 495    1108134521
## 496     851866703
## 497     851869035
## 498     851867289
## 499     851868750
## 500     851867861
## 501     851866901
## 502     851866744
## 503     851868188
## 504     851866720
## 505     851866704
## 506     851868206
## 507     851868704
## 508     851868705
## 509     851869062
## 510     851868188
## 511     851869161
## 512     851868187
## 513     851868524
## 514     851867345
## 515     851867621
## 516     851867941
## 517     851868188
## 518     851867436
## 519     851868020
## 520     851867790
## 521     851869291
## 522     851869291
## 523     851869161
## 524     851867669
## 525     851868246
## 526     851867688
## 527     851869035
## 528     851868019
## 529     851868044
## 530     851869140
## 531     851868186
## 532     851868863
## 533     851868020
## 534     851868044
## 535     851868074
## 536     851866806
## 537     851866744
## 538     851868019
## 539     851866784
## 540     851866704
## 541     851866763
## 542     851868020
## 543     851866703
## 544     851866744
## 545     851868289
## 546     851869102
## 547     851866744
## 548     851867320
## 549     851867289
## 550     851868308
## 551     851867553
## 552     851869103
## 553     851867289
## 554     851868019
## 555     851869034
## 556     851867289
## 557     851869035
## 558     851869034
## 559     851867379
## 560     851868044
## 561     851868246
## 562     851868321
## 563     851869062
## 564     851868289
## 565     851867436
## 566     851869080
## 567     851867436
## 568     851868332
## 569     851867401
## 570     851867320
## 571     851868471
## 572     851868471
## 573     851867401
## 574     851866935
## 575     851869160
## 576     851869102
## 577     851869230
## 578     851869035
## 579     851869140
## 580     851869062
## 581     851867688
## 582     851866978
## 583     851869140
## 584    1154465405
## 585    1154389572
## 586    1154464836
## 587    1154400173
## 588    1154473268
## 589    1154464829
## 590    1154389420
## 591    1154465380
## 592    1154464714
## 593    1154400390
## 594    1154400475
## 595    1154389356
## 596    1154400357
## 597    1154400170
## 598    1154389386
## 599    1154464853
## 600    1154464833
## 601    1154400284
## 602    1154389432
## 603    1154400181
## 604    1154464841
## 605    1154464887
## 606    1154464730
## 607    1154464769
## 608    1154465573
## 609    1154465394
## 610    1154465555
## 611    1154464811
## 612    1154465230
## 613    1154464747
## 614    1154464720
## 615    1154400465
## 616    1154474527
## 617    1154465285
## 618    1154400324
## 619    1154465235
## 620    1154389408
## 621    1154464990
## 622    1154389385
## 623    1154389491
## 624    1154473252
## 625    1154400308
## 626    1154400458
## 627    1154389528
## 628    1154473322
## 629    1154473259
## 630    1154389460
## 631    1154465222
## 632    1154464735
## 633    1154400414
## 634    1154464850
## 635    1154473217
## 636    1154389340
## 637    1154400351
## 638    1154464889
## 639    1154464738
## 640    1154464944
## 641    1154464717
## 642    1154389541
## 643    1154465558
## 644    1154400340
## 645    1154473419
## 646    1154400360
## 647    1154464950
## 648    1154473364
## 649    1154464901
## 650    1154400266
## 651    1154400441
## 652    1154400198
## 653    1154389482
## 654    1154465526
## 655    1154464873
## 656    1154400245
## 657    1154465279
## 658    1154464905
## 659    1154464915
## 660    1154400334
## 661    1154464808
## 662    1154400398
## 663    1154400383
## 664    1154465373
## 665    1154464819
## 666    1154389449
## 667    1154400236
## 668    1154389552
## 669    1154400449
## 670    1154464756
## 671    1154400407
## 672    1154465399
## 673    1154465385
## 674    1154464762
## 675    1154400444
## 676    1154389474
## 677    1154400191
## 678    1154464895
## 679    1154465296
## 680    1154400253
## 681    1154400294
## 682    1154464753
## 683    1154465367
## 684    1154464994
## 685    1154400471
## 686    1154464868
## 687    1154465499
## 688    1154465548
## 689    1154465243
## 690    1154473310
## 691    1154400263
## 692    1154464726
## 693    1154400423
## 694    1154473088
## 695    1154473264
## 696    1154473042
## 697    1154473022
## 698    1154473014
## 699    1154473017
## 700     938629179
## 701     938628337
## 702     938628655
## 703     938629110
## 704     938628897
## 705     938628966
## 706     938628777
## 707     938628577
## 708     938628843
## 709     938628337
## 710     938628843
## 711     938628843
## 712     938628337
## 713     938629250
## 714     938629470
## 715     938628655
## 716     938628450
## 717     938628655
## 718     938628777
## 719     938629341
## 720     938629054
## 721     938628690
## 722     938628966
## 723     938629470
## 724     938628966
## 725     938629341
## 726     938629522
## 727     938629747
## 728     938629053
## 729     938629053
## 730     938628777
## 731     938628897
## 732     938629341
## 733     938629250
## 734     938628843
## 735     939122916
## 736     938628577
## 737     938629681
## 738     938629681
## 739     938628966
## 740     938629341
## 741     938628450
## 742     938628843
## 743     938627748
## 744     938629681
## 745     942766420
## 746     942766793
## 747     942766515
## 748     942766603
## 749     942766603
## 750     942767328
## 751     942766974
## 752     942767258
## 753     942766420
## 754     942767328
## 755     942767328
## 756     942767258
## 757     942767258
## 758     942767258
## 759     942767258
## 760     942767258
## 761     942767328
## 762     942767258
## 763     942767258
## 764     942766420
## 765     942766420
## 766     942766725
## 767     942766845
## 768     942767029
## 769     942766679
## 770     942766472
## 771     942766472
## 772     942766845
## 773     942766515
## 774     942766472
## 775     942766991
## 776     942767328
## 777     942767328
## 778     942766845
## 779     942766515
## 780     942766109
## 781     942766251
## 782     942766213
## 783     942766029
## 784     942766164
## 785     942765978
## 786     942766213
## 787     942767121
## 788     942766251
## 789     942766059
## 790     942767571
## 791    1391658537
## 792    1391656827
## 793    1391657561
## 794    1391657297
## 795    1391658423
## 796    1391658505
## 797    1391656845
## 798    1391658556
## 799    1391658634
## 800    1391658440
## 801    1391658667
## 802    1391657062
## 803    1391657376
## 804    1391657543
## 805    1391658583
## 806    1391657112
## 807    1391658601
## 808    1391657861
## 809    1391658574
## 810    1391658450
## 811    1391657605
## 812    1391657459
## 813    1391657720
## 814    1391658141
## 815    1391658115
## 816    1391658399
## 817    1391658137
## 818    1391658210
## 819    1391658218
## 820    1391658385
## 821    1391658311
## 822    1391658125
## 823    1391658270
## 824    1391658186
## 825    1391657924
## 826    1391657610
## 827    1391658157
## 828    1391657798
## 829     968045587
## 830     968045407
## 831     968045438
## 832     968045353
## 833     968045732
## 834     968045680
## 835     968045764
## 836     968045500
## 837     968045561
## 838     968045500
## 839     955407153
## 840     968045353
## 841     955407153
## 842     968045354
## 843     968045354
## 844     955407153
## 845     968045475
## 846     968045475
## 847     968045438
## 848     968045529
## 849     955407153
## 850     968045475
## 851     968045680
## 852     968045475
## 853     968045764
## 854     968045407
## 855     968045732
## 856     968045379
## 857     968045649
## 858     968045354
## 859     968045529
## 860     968045732
## 861     968045379
## 862     955407153
## 863     968045619
## 864     968045680
## 865     968045619
## 866     968045232
## 867     968045232
## 868     968045232
## 869     968045232
## 870     968045198
## 871     968045198
## 872     968045172
## 873     968045142
## 874     968045142
## 875     968045106
## 876     968045106
## 877     968045074
## 878     968045074
## 879     968045015
## 880     968045015
## 881     968045015
## 882     968045015
## 883     968044981
## 884     968044981
## 885     968044981
## 886     968044949
## 887     968044949
## 888     968044949
## 889     968045173
## 890    1331380058
## 891    1331380914
## 892    1331380038
## 893    1331379348
## 894    1331380895
## 895    1331380029
## 896    1331380018
## 897    1331379479
## 898    1331380025
## 899    1331379485
## 900    1331380901
## 901    1331379483
## 902    1331380851
## 903    1331380062
## 904    1331379366
## 905    1331380871
## 906    1331379520
## 907    1331380814
## 908    1331380845
## 909    1331379386
## 910    1331380745
## 911    1331380741
## 912    1331380888
## 913    1331379777
## 914    1331379470
## 915    1331380765
## 916    1331380731
## 917    1331379494
## 918    1331380761
## 919    1331380738
## 920    1331380752
## 921    1331379342
## 922    1331379599
## 923    1331379574
## 924    1331380721
## 925    1331379506
## 926    1331379589
## 927    1331379530
## 928    1331380145
## 929    1331380834
## 930    1331380883
## 931    1331380785
## 932    1331380734
## 933    1331380159
## 934    1331380306
## 935    1331380782
## 936    1331380873
## 937    1331380830
## 938    1331379748
## 939    1331380725
## 940    1331380387
## 941    1331380390
## 942    1331379985
## 943     976243997
## 944     976243997
## 945     976243912
## 946     976244179
## 947     976244179
## 948     976244471
## 949     976243933
## 950     976244131
## 951     976244313
## 952     976244367
## 953     976244524
## 954     976244287
## 955     976244591
## 956     976244564
## 957     976244313
## 958     976243997
## 959     976244423
## 960     976244205
## 961     976244107
## 962     976244343
## 963     997938310
## 964    1134521380
## 965    1093070098
## 966    1040205753
## 967    1093028290
## 968    1093028381
## 969    1166586286
## 970    1093070150
## 971     997939404
## 972    1093028409
## 973    1058249528
## 974    1093070415
## 975    1033345172
## 976     997938466
## 977     997938310
## 978    1033345287
## 979    1093028334
## 980    1122576665
## 981    1054449816
## 982     997938500
## 983    1093070271
## 984    1093028336
## 985    1093070467
## 986    1044220302
## 987    1166587063
## 988    1093028331
## 989    1134522072
## 990    1093070113
## 991    1166586594
## 992    1040205792
## 993     997938500
## 994    1093070156
## 995     997938358
## 996    1245362506
## 997    1134521543
## 998    1075142933
## 999     997939380
## 1000   1128274517
## 1001   1052896975
## 1002   1093028411
## 1003   1093028319
## 1004    997938676
## 1005   1166586021
## 1006    997938413
## 1007   1093028183
## 1008   1166586376
## 1009   1093070329
## 1010   1166587180
## 1011   1046209579
## 1012   1166586276
## 1013   1052896916
## 1014   1193435347
## 1015   1093070170
## 1016   1134521967
## 1017   1193435482
## 1018   1033345241
## 1019   1054449903
## 1020   1349622582
## 1021    997939415
## 1022   1134521432
## 1023   1033345068
## 1024   1093028308
## 1025   1033345227
## 1026   1033344772
## 1027    997939415
## 1028   1166586251
## 1029    997938656
## 1030    997938567
## 1031   1093070318
## 1032   1093028328
## 1033    997938437
## 1034   1058250479
## 1035   1093028372
## 1036   1093028298
## 1037    997938567
## 1038    997938771
## 1039   1054449869
## 1040    997938737
## 1041    997938894
## 1042   1052897100
## 1043   1052896866
## 1044   1093028399
## 1045    997938727
## 1046   1120209787
## 1047   1093028255
## 1048    997938391
## 1049   1122576622
## 1050   1058250589
## 1051   1093028220
## 1052    997939193
## 1053   1093070088
## 1054   1122576667
## 1055   1058250631
## 1056   1058250490
## 1057    997939065
## 1058   1374637824
## 1059   1122576670
## 1060   1443385370
## 1061   1465793100
## 1062   1054449871
## 1063   1033344267
## 1064    997939179
## 1065   1166586661
## 1066   1465955324
## 1067   1132469126
## 1068   1093028320
## 1069   1093070102
## 1070   1058250627
## 1071    997938322
## 1072   1193435522
## 1073   1093028323
## 1074    997938567
## 1075   1134521456
## 1076   1166586067
## 1077   1093028384
## 1078    997939193
## 1079   1166586748
## 1080    997938905
## 1081   1093070332
## 1082   1093028414
## 1083   1035258747
## 1084   1093028394
## 1085   1093028389
## 1086   1443384915
## 1087   1166586387
## 1088    997937239
## 1089   1033345148
## 1090   1093028325
## 1091   1240203835
## 1092    997938438
## 1093   1093070381
## 1094    997938676
## 1095    997939055
## 1096   1033344257
## 1097   1361078504
## 1098   1166586512
## 1099   1141391972
## 1100   1093028377
## 1101   1093028322
## 1102   1093028161
## 1103    997938451
## 1104   1093028142
## 1105    997939162
## 1106    997938500
## 1107   1245021392
## 1108   1093028267
## 1109    997938500
## 1110   1052896916
## 1111   1093070326
## 1112   1134521628
## 1113   1093028231
## 1114   1035258608
## 1115    997939348
## 1116   1052896916
## 1117   1052896867
## 1118   1093028406
## 1119   1033345122
## 1120   1166586237
## 1121   1093028260
## 1122   1093028237
## 1123    997938288
## 1124   1166586565
## 1125    997938438
## 1126   1093070454
## 1127   1054450167
## 1128   1093028151
## 1129   1093070207
## 1130   1033344834
## 1131   1093028395
## 1132   1134521382
## 1133   1136904835
## 1134    997938391
## 1135   1128274713
## 1136   1054450008
## 1137   1134522085
## 1138   1166586002
## 1139   1166586995
## 1140   1035258747
## 1141    997938703
## 1142    997938567
## 1143   1058250570
## 1144    997938346
## 1145    997938346
## 1146    997938500
## 1147    997939604
## 1148   1122576681
## 1149   1058250459
## 1150    997938140
## 1151   1416119525
## 1152   1058250501
## 1153   1128274460
## 1154    997938737
## 1155   1093070090
## 1156   1040205624
## 1157    997938727
## 1158    997938358
## 1159   1044219825
## 1160   1058250466
## 1161    997938800
## 1162    997939453
## 1163   1166586619
## 1164   1034544304
## 1165    997938528
## 1166    997938905
## 1167   1348976598
## 1168   1166586136
## 1169   1054450184
## 1170    997938603
## 1171    997937239
## 1172    997938787
## 1173   1122576683
## 1174    997938528
## 1175   1193436089
## 1176   1166586415
## 1177   1033345199
## 1178   1040205624
## 1179    997938466
## 1180   1458506296
## 1181   1093070163
## 1182   1055439464
## 1183    997939162
## 1184   1345397949
## 1185   1128274586
## 1186   1386368101
## 1187    997938288
## 1188   1054449673
## 1189   1193435335
## 1190    997938862
## 1191    997938771
## 1192   1033344257
## 1193   1443384910
## 1194   1166586456
## 1195   1361078481
## 1196    997938760
## 1197    997938438
## 1198   1040205753
## 1199    997939111
## 1200   1093070386
## 1201    997938528
## 1202   1345398232
## 1203    997938784
## 1204    997939111
## 1205    997938438
## 1206   1044347743
## 1207    997938822
## 1208   1345398245
## 1209    997938466
## 1210   1058250487
## 1211   1166586696
## 1212    997938749
## 1213    997938203
## 1214   1054271469
## 1215   1055439440
## 1216    997939207
## 1217    997938203
## 1218   1093070109
## 1219    997938712
## 1220    997939614
## 1221    997938288
## 1222   1034544304
## 1223    997938800
## 1224   1044347881
## 1225   1054450216
## 1226    997938727
## 1227   1054450238
## 1228   1166586368
## 1229    997938451
## 1230   1033345172
## 1231    997938151
## 1232   1093070174
## 1233    997938171
## 1234    997938509
## 1235    997938500
## 1236    997938760
## 1237    997938749
## 1238    997938346
## 1239   1345398347
## 1240    997938219
## 1241    997938917
## 1242    997938981
## 1243   1134521651
## 1244   1120208625
## 1245    997938162
## 1246    997938171
## 1247    997939360
## 1248    997938500
## 1249    997938451
## 1250   1054450246
## 1251   1054450208
## 1252    997938941
## 1253   1063565335
## 1254   1416120074
## 1255   1345397986
## 1256   1033345087
## 1257   1163876491
## 1258   1465793922
## 1259   1035258608
## 1260    997939144
## 1261    997938894
## 1262   1166587005
## 1263   1093070459
## 1264   1054450251
## 1265   1040205753
## 1266    997938162
## 1267   1134521497
## 1268    997938219
## 1269   1052896916
## 1270   1134521654
## 1271   1033345050
## 1272   1052896819
## 1273    997938500
## 1274   1361078494
## 1275   1093070198
## 1276   1093070479
## 1277   1166586012
## 1278   1458506268
## 1279   1040205754
## 1280   1093070145
## 1281   1058250612
## 1282    997939021
## 1283   1055439459
## 1284   1052897043
## 1285    997938219
## 1286    997939358
## 1287    997938391
## 1288    997939439
## 1289   1134522057
## 1290   1338699256
## 1291   1193435343
## 1292    997938358
## 1293   1093070397
## 1294   1093070210
## 1295   1425876701
## 1296   1035258747
## 1297   1033344937
## 1298    997939453
## 1299   1052896819
## 1300    997939393
## 1301   1093070319
## 1302    997938322
## 1303   1134521507
## 1304   1166587010
## 1305   1166586212
## 1306   1134521624
## 1307    997938476
## 1308    997939179
## 1309   1052896685
## 1310   1093028013
## 1311   1134521585
## 1312   1093070221
## 1313   1040205754
## 1314    997939193
## 1315   1166587214
## 1316    997938346
## 1317    997938391
## 1318   1033345134
## 1319   1054449877
## 1320   1166586517
## 1321    997938413
## 1322    997938647
## 1323   1052896685
## 1324   1058250115
## 1325   1033345299
## 1326   1052896916
## 1327   1166586583
## 1328    997939424
## 1329   1465880892
## 1330   1134521603
## 1331    997938879
## 1332   1033345148
## 1333   1166586533
## 1334    997938931
## 1335   1093028339
## 1336   1134521534
## 1337   1033344286
## 1338   1054449676
## 1339   1166981862
## 1340   1134521589
## 1341    997938451
## 1342   1469330699
## 1343   1349622617
## 1344   1460076717
## 1345   1134521514
## 1346   1166586707
## 1347   1033345287
## 1348   1458506454
## 1349    997938391
## 1350   1093028022
## 1351   1166587162
## 1352   1465881179
## 1353    997938676
## 1354   1166586439
## 1355   1058250734
## 1356   1469330727
## 1357   1052897012
## 1358    997938834
## 1359    997939439
## 1360   1469330647
## 1361   1134521539
## 1362   1166586478
## 1363   1052897043
## 1364   1054449827
## 1365   1469330584
## 1366   1054450597
## 1367   1075142949
## 1368   1052896819
## 1369   1033345241
## 1370   1054449899
## 1371   1052896916
## 1372   1052896819
## 1373   1054449908
## 1374    997938954
## 1375   1058249502
## 1376    997938810
## 1377    997938528
## 1378   1040205792
## 1379   1338698424
## 1380   1166587036
## 1381   1093028404
## 1382   1033345068
## 1383    997938372
## 1384   1052897128
## 1385   1166586228
## 1386    997938255
## 1387   1052896975
## 1388   1034544351
## 1389    997938630
## 1390   1035258747
## 1391   1052896685
## 1392   1044219825
## 1393   1046209705
## 1394   1044347881
## 1395   1134521638
## 1396   1379040745
## 1397   1465881239
## 1398    997938784
## 1399   1033344732
## 1400    997938630
## 1401   1166586203
## 1402   1052896975
## 1403   1338698431
## 1404    997938413
## 1405    997938603
## 1406   1052896867
## 1407   1058250482
## 1408   1193435562
## 1409   1033345050
## 1410   1166587068
## 1411   1166587080
## 1412   1122576686
## 1413   1052896819
## 1414   1034544351
## 1415    997937311
## 1416   1166586521
## 1417    997938630
## 1418    997939162
## 1419    997938603
## 1420    997938528
## 1421   1040205754
## 1422   1052897043
## 1423    997938466
## 1424   1128274472
## 1425   1054449665
## 1426   1093070270
## 1427   1465881227
## 1428   1166586189
## 1429   1134521675
## 1430   1469330645
## 1431   1052896740
## 1432    997938322
## 1433    997939439
## 1434   1052897012
## 1435   1093070399
## 1436    997938931
## 1437   1052896916
## 1438   1345397769
## 1439   1054449678
## 1440   1122576690
## 1441    997939328
## 1442   1054450149
## 1443   1033344795
## 1444   1469330601
## 1445   1033344772
## 1446   1134522028
## 1447   1044347881
## 1448   1134521484
## 1449    997939055
## 1450    997938834
## 1451    997937311
## 1452   1040205792
## 1453   1033344752
## 1454   1166586655
## 1455    997937311
## 1456   1465880711
## 1457    997938567
## 1458    997939404
## 1459    997938162
## 1460   1052897012
## 1461   1458506447
## 1462   1052896819
## 1463   1425875796
## 1464   1134521618
## 1465   1040205754
## 1466   1033344782
## 1467    997939328
## 1468   1122576697
## 1469   1166586146
## 1470    997938413
## 1471   1122576699
## 1472   1033344906
## 1473    997938760
## 1474   1033344897
## 1475   1122576701
## 1476   1347937598
## 1477   1465880194
## 1478   1033344732
## 1479    997939415
## 1480   1033344917
## 1481   1469330735
## 1482    997938438
## 1483   1033344641
## 1484   1033344897
## 1485   1033344772
## 1486   1054449822
## 1487    997939393
## 1488   1033344897
## 1489   1033344865
## 1490    997938466
## 1491   1166587193
## 1492    997939021
## 1493   1033344995
## 1494   1033344772
## 1495   1093070339
## 1496    997939255
## 1497   1093028374
## 1498    997939179
## 1499    997938219
## 1500   1052896819
## 1501    997939653
## 1502   1033344752
## 1503   1033344657
## 1504    997938372
## 1505    997938151
## 1506   1033345068
## 1507   1033344958
## 1508   1245361903
## 1509   1122576707
## 1510   1033344657
## 1511   1033344663
## 1512   1033344878
## 1513   1033344702
## 1514    997939623
## 1515   1033344834
## 1516    997938219
## 1517   1465793437
## 1518   1469330590
## 1519   1033344732
## 1520   1033344897
## 1521   1054450195
## 1522    997939653
## 1523   1033344752
## 1524    997939037
## 1525    997938500
## 1526   1033344970
## 1527    997937762
## 1528   1033344702
## 1529    997939008
## 1530   1065197456
## 1531    997938603
## 1532   1166587203
## 1533    997938567
## 1534   1033344958
## 1535   1033344958
## 1536    997938310
## 1537    997939144
## 1538   1033344752
## 1539   1054450160
## 1540   1040205754
## 1541    997938879
## 1542   1040205754
## 1543   1345397822
## 1544    997938466
## 1545   1054449710
## 1546   1166585692
## 1547   1040205655
## 1548   1040205655
## 1549   1054449851
## 1550    997938894
## 1551    997939623
## 1552   1469330578
## 1553    997938576
## 1554   1052896740
## 1555    997939144
## 1556   1345398317
## 1557   1345381197
## 1558    997938310
## 1559    997939086
## 1560   1033344685
## 1561   1033344702
## 1562    997938800
## 1563   1361078485
## 1564   1033344865
## 1565    997938727
## 1566    997938954
## 1567   1166586681
## 1568    997939021
## 1569   1052896867
## 1570   1033344267
## 1571   1058250603
## 1572    997939653
## 1573   1052896975
## 1574   1033345241
## 1575   1033344958
## 1576   1166586269
## 1577    997938310
## 1578    997938895
## 1579    997937311
## 1580   1040205792
## 1581   1316395917
## 1582    997939453
## 1583   1166587025
## 1584   1033344983
## 1585    997938931
## 1586   1054449917
## 1587   1044347881
## 1588   1460076724
## 1589    997939415
## 1590   1134521933
## 1591   1245361773
## 1592    997938931
## 1593   1033344970
## 1594    997938941
## 1595   1338698402
## 1596   1122576723
## 1597   1033344865
## 1598    997939162
## 1599    997938413
## 1600    997939393
## 1601    997937726
## 1602   1033344958
## 1603   1054449670
## 1604   1033344897
## 1605    997938046
## 1606   1033345148
## 1607   1034544351
## 1608    997939639
## 1609   1134521644
## 1610   1361831567
## 1611   1058250521
## 1612    997938391
## 1613   1345397753
## 1614   1034544304
## 1615   1063565307
## 1616   1033345227
## 1617    997937890
## 1618   1347936677
## 1619   1416119608
## 1620    997937999
## 1621   1033344702
## 1622    997937876
## 1623   1044348420
## 1624   1082220247
## 1625   1416119948
## 1626    997937786
## 1627    997937986
## 1628   1040205943
## 1629    997937748
## 1630   1096005300
## 1631   1054449689
## 1632   1120209453
## 1633    997938391
## 1634    997937239
## 1635   1033344772
## 1636    997937902
## 1637   1040205754
## 1638   1063565279
## 1639    997938310
## 1640   1054450188
## 1641   1193436085
## 1642    997939144
## 1643   1063565329
## 1644   1034544304
## 1645   1465881233
## 1646   1093028035
## 1647    997937748
## 1648   1465880417
## 1649   1166586405
## 1650    997938242
## 1651    997938810
## 1652   1134521930
## 1653   1033344795
## 1654    997937926
## 1655   1052896819
## 1656    997937935
## 1657    997937822
## 1658    997937808
## 1659   1096005190
## 1660   1033344752
## 1661   1465880183
## 1662   1166586553
## 1663    997937786
## 1664    997937902
## 1665    997937682
## 1666    997937848
## 1667   1465954636
## 1668   1033344795
## 1669    997937762
## 1670    997937822
## 1671    997937876
## 1672   1033344878
## 1673   1122576735
## 1674    997937961
## 1675   1345381200
## 1676   1044347881
## 1677   1345397811
## 1678   1345398289
## 1679   1345397721
## 1680   1166586157
## 1681    997938800
## 1682   1465881231
## 1683   1163876415
## 1684   1443385280
## 1685    997938346
## 1686    997938822
## 1687   1082220261
## 1688    997937836
## 1689    997937700
## 1690    997937726
## 1691    997937971
## 1692   1416119541
## 1693   1122576740
## 1694    997937700
## 1695    997937822
## 1696   1033344712
## 1697    997937795
## 1698    997938391
## 1699    997937808
## 1700    997937914
## 1701    997937999
## 1702   1039243666
## 1703    997938372
## 1704    997937726
## 1705    997938015
## 1706    997938035
## 1707   1134522068
## 1708   1044348420
## 1709   1240203682
## 1710   1044348492
## 1711    997937860
## 1712   1134521920
## 1713    997937890
## 1714   1039243705
## 1715    997937860
## 1716    997937890
## 1717    997937700
## 1718    997937848
## 1719    997937427
## 1720    997937700
## 1721    997937860
## 1722   1044348382
## 1723    997937413
## 1724    997937890
## 1725    997937986
## 1726    997937762
## 1727   1425876021
## 1728    997937459
## 1729    997937848
## 1730    997938035
## 1731   1033344924
## 1732    997937413
## 1733   1338698406
## 1734    997937926
## 1735    997937961
## 1736   1166587057
## 1737    997937700
## 1738    997937999
## 1739    997937902
## 1740    997937442
## 1741    997937413
## 1742    997937614
## 1743    997937459
## 1744   1345398275
## 1745   1052896916
## 1746   1426110367
## 1747   1033345087
## 1748    997937606
## 1749   1044348492
## 1750    997937442
## 1751    997937413
## 1752   1044348492
## 1753   1416119589
## 1754    997937442
## 1755    997937427
## 1756    997937413
## 1757    997937442
## 1758   1044348492
## 1759    997937606
## 1760   1033343955
## 1761    997937459
## 1762   1084489330
## 1763    997937413
## 1764    997937427
## 1765    997938372
## 1766    997937442
## 1767   1033344023
## 1768    997937442
## 1769    997938994
## 1770   1052896685
## 1771   1034544351
## 1772   1345398332
## 1773   1033344307
## 1774    997937700
## 1775    997938035
## 1776   1349622626
## 1777    997937459
## 1778    997937914
## 1779    997937986
## 1780   1040205943
## 1781   1061496845
## 1782    997937775
## 1783    997937762
## 1784    997937682
## 1785    997939162
## 1786    997937713
## 1787    997937986
## 1788    997937808
## 1789    997937713
## 1790   1349622526
## 1791   1120209753
## 1792   1166586578
## 1793    997937762
## 1794   1374637769
## 1795    997937808
## 1796   1033343955
## 1797   1033343955
## 1798    997937366
## 1799    997939193
## 1800   1345397847
## 1801    997937949
## 1802    997937334
## 1803   1349048073
## 1804    997938151
## 1805    997937374
## 1806    997937366
## 1807    997937822
## 1808   1039243666
## 1809   1033343955
## 1810   1033345068
## 1811    997937346
## 1812    997937775
## 1813    997937384
## 1814   1416119736
## 1815    997939653
## 1816    997937334
## 1817   1096005216
## 1818    997937822
## 1819   1054774846
## 1820   1075143282
## 1821   1345397842
## 1822    997938203
## 1823    997938617
## 1824    997937575
## 1825    997937575
## 1826    997937346
## 1827   1033344625
## 1828   1033343955
## 1829   1469330631
## 1830    997937346
## 1831    997937551
## 1832    997937544
## 1833    997937539
## 1834    997937530
## 1835    997937519
## 1836    997937519
## 1837    997937366
## 1838    997937366
## 1839    997937494
## 1840   1044348492
## 1841   1374637779
## 1842   1039243705
## 1843   1054449465
## 1844   1052896975
## 1845   1044348492
## 1846   1033344023
## 1847   1044348420
## 1848   1075143297
## 1849   1039243705
## 1850   1054449369
## 1851   1166586875
## 1852   1416119762
## 1853   1044348492
## 1854   1054449351
## 1855   1040206368
## 1856   1039243666
## 1857   1054449340
## 1858   1033344055
## 1859   1054449355
## 1860   1033343866
## 1861   1040206325
## 1862   1054449484
## 1863   1033343828
## 1864   1033939395
## 1865   1465880321
## 1866   1469330599
## 1867   1044348382
## 1868   1033343815
## 1869   1349622574
## 1870   1040205965
## 1871   1033343841
## 1872   1425876112
## 1873   1033343815
## 1874   1033343815
## 1875   1443385401
## 1876   1120209745
## 1877   1054449333
## 1878   1033343815
## 1879   1033344055
## 1880   1041532617
## 1881   1054450221
## 1882   1033343866
## 1883   1044348382
## 1884   1096005077
## 1885   1033344006
## 1886   1416119882
## 1887   1345397962
## 1888   1033343934
## 1889   1044348382
## 1890   1033343901
## 1891   1416119747
## 1892   1033344044
## 1893   1033343934
## 1894   1033343919
## 1895   1122925555
## 1896   1075143288
## 1897   1033343866
## 1898   1033344286
## 1899   1240203827
## 1900   1054449705
## 1901   1033343934
## 1902   1416120007
## 1903   1033343841
## 1904   1465880704
## 1905   1367800223
## 1906   1416119542
## 1907   1465794274
## 1908   1033343919
## 1909   1054449455
## 1910   1345397799
## 1911   1465954627
## 1912   1039243048
## 1913   1033343901
## 1914   1465881201
## 1915   1096005096
## 1916   1039243048
## 1917   1166586831
## 1918   1367800228
## 1919   1039243048
## 1920   1052896740
## 1921   1096005195
## 1922   1033344065
## 1923   1039243069
## 1924   1040205624
## 1925   1033344034
## 1926   1033344188
## 1927   1033344374
## 1928   1033344188
## 1929   1033344188
## 1930   1166586482
## 1931   1033344357
## 1932   1052896819
## 1933   1033344374
## 1934   1033344296
## 1935   1033344129
## 1936   1033344119
## 1937   1033344145
## 1938   1054503542
## 1939   1033344401
## 1940   1033344137
## 1941   1033344334
## 1942   1035258747
## 1943   1035258747
## 1944   1035258747
## 1945   1054513297
## 1946   1222576379
## 1947   1084489317
## 1948   1425876082
## 1949   1055439475
## 1950   1034544351
## 1951   1035258564
## 1952   1046209630
## 1953   1075142963
## 1954   1035258362
## 1955   1039242955
## 1956   1054449327
## 1957   1052906939
## 1958   1416119666
## 1959   1166587383
## 1960   1066591270
## 1961   1040205624
## 1962   1044220069
## 1963   1357110234
## 1964   1096005087
## 1965   1096005111
## 1966   1040448133
## 1967   1084489297
## 1968   1163876422
## 1969   1075143302
## 1970   1443385275
## 1971   1040205624
## 1972   1134521661
## 1973   1096005123
## 1974   1120209437
## 1975   1096005130
## 1976   1093027992
## 1977   1046209643
## 1978   1465954655
## 1979   1416119908
## 1980   1416119753
## 1981   1416119690
## 1982   1046209705
## 1983   1416119611
## 1984   1046209705
## 1985   1096005101
## 1986   1052897100
## 1987   1163876393
## 1988   1416119893
## 1989   1425876025
## 1990   1096005116
## 1991   1075142952
## 1992   1055439424
## 1993   1084489307
## 1994   1120208617
## 1995   1052896685
## 1996   1054271424
## 1997   1134522002
## 1998   1061496771
## 1999   1122576748
## 2000   1166585438
## 2001   1084489293
## 2002   1465793939
## 2003   1054449659
## 2004   1055439392
## 2005   1056617566
## 2006   1058249439
## 2007   1134521973
## 2008   1061496778
## 2009   1058249457
## 2010   1061496766
## 2011   1061496761
## 2012   1082220233
## 2013   1416119958
## 2014   1096005208
## 2015   1082220241
## 2016   1093028561
## 2017   1120209771
## 2018   1082220217
## 2019   1065197251
## 2020   1425876028
## 2021   1465881072
## 2022   1082220258
## 2023   1120209297
## 2024   1096005320
## 2025   1067797435
## 2026   1082220208
## 2027   1093981691
## 2028   1068955127
## 2029   1096005187
## 2030   1067797349
## 2031   1096005180
## 2032   1416119807
## 2033   1465954640
## 2034   1075142920
## 2035   1338699263
## 2036   1075142924
## 2037   1088621558
## 2038   1465794270
## 2039   1347936706
## 2040   1083003232
## 2041   1222576385
## 2042   1240203829
## 2043   1093028559
## 2044   1097770851
## 2045   1257734253
## 2046   1348976559
## 2047   1367800233
## 2048   1374637760
## 2049   1240203970
## 2050   1465954687
## 2051   1132469120
## 2052   1443384409
## 2053   1120209290
## 2054   1347936794
## 2055   1096005056
## 2056   1088621554
## 2057   1088621484
## 2058   1075142916
## 2059   1120209458
## 2060   1075142909
## 2061   1416119886
## 2062   1096005109
## 2063   1166587408
## 2064   1193435338
## 2065   1093028019
## 2066   1082220195
## 2067   1222576372
## 2068   1416119755
## 2069   1082220223
## 2070   1465954961
## 2071   1093028001
## 2072   1082220175
## 2073   1097770844
## 2074   1134521979
## 2075   1093981610
## 2076   1425876074
## 2077   1416119694
## 2078   1416119705
## 2079   1166587430
## 2080   1338698422
## 2081   1240203696
## 2082   1093070784
## 2083   1345397687
## 2084   1345398305
## 2085   1345381192
## 2086   1345397672
## 2087   1096005042
## 2088   1093027976
## 2089   1465793979
## 2090   1134522006
## 2091   1093027865
## 2092   1088621517
## 2093   1163876352
## 2094   1166587363
## 2095   1416119547
## 2096   1122576284
## 2097   1257734240
## 2098   1465880288
## 2099   1361078268
## 2100   1120209740
## 2101   1163876408
## 2102   1096005049
## 2103   1093027850
## 2104   1128274489
## 2105   1349622612
## 2106   1163876378
## 2107   1120210020
## 2108   1093027853
## 2109   1416119915
## 2110   1134521997
## 2111   1166586987
## 2112   1349622634
## 2113   1166981777
## 2114   1122925517
## 2115   1120210034
## 2116   1101423864
## 2117   1465880526
## 2118   1166585434
## 2119   1166981765
## 2120   1120209300
## 2121   1357110243
## 2122   1134522096
## 2123   1134522079
## 2124   1101423869
## 2125   1163876370
## 2126   1374637712
## 2127   1374637844
## 2128   1166981834
## 2129   1222575895
## 2130   1134521251
## 2131   1416120087
## 2132   1166585398
## 2133   1166587331
## 2134   1240203954
## 2135   1349622724
## 2136   1166587397
## 2137   1134521148
## 2138   1348976609
## 2139   1120209293
## 2140   1347936774
## 2141   1127035004
## 2142   1120208607
## 2143   1136904803
## 2144   1416119604
## 2145   1416119717
## 2146   1361831527
## 2147   1127035028
## 2148   1136087271
## 2149   1127035016
## 2150   1338702522
## 2151   1132469115
## 2152   1132469077
## 2153   1136904851
## 2154   1120208603
## 2155   1316395912
## 2156   1361078474
## 2157   1416119744
## 2158   1141391741
## 2159   1316395893
## 2160   1367765144
## 2161   1357110418
## 2162   1141391837
## 2163   1135737540
## 2164   1141391844
## 2165   1138537176
## 2166   1416119600
## 2167   1465954599
## 2168   1141391812
## 2169   1425876066
## 2170   1222576339
## 2171   1338698465
## 2172   1166587434
## 2173   1416119810
## 2174   1416119662
## 2175   1258259502
## 2176   1348976510
## 2177   1465880318
## 2178   1240211404
## 2179   1222576358
## 2180   1222575879
## 2181   1465794625
## 2182   1316408165
## 2183   1240211399
## 2184   1357109999
## 2185   1465793925
## 2186   1316396016
## 2187   1425876007
## 2188   1338698829
## 2189   1416119707
## 2190   1374637848
## 2191   1465794277
## 2192   1416119790
## 2193   1416120304
## 2194   1416119889
## 2195   1169616283
## 2196   1338699292
## 2197   1338702417
## 2198   1367800237
## 2199   1416119963
## 2200   1374637631
## 2201   1222576367
## 2202   1245382906
## 2203   1465793916
## 2204   1416119898
## 2205   1347937644
## 2206   1257734226
## 2207   1348976680
## 2208   1222575856
## 2209   1240211394
## 2210   1222578045
## 2211   1222578063
## 2212   1316395906
## 2213   1465880683
## 2214   1443384396
## 2215   1245361883
## 2216   1222578101
## 2217   1222576350
## 2218   1222578057
## 2219   1347936470
## 2220   1349622540
## 2221   1347936786
## 2222   1443384826
## 2223   1338699286
## 2224   1349622826
## 2225   1425876037
## 2226   1443385025
## 2227   1338702524
## 2228   1338698806
## 2229   1257734285
## 2230   1416119677
## 2231   1425875994
## 2232   1258259468
## 2233   1238804101
## 2234   1338698617
## 2235   1361078498
## 2236   1416120041
## 2237   1374638435
## 2238   1222578076
## 2239   1416119972
## 2240   1361078252
## 2241   1338698362
## 2242   1443384839
## 2243   1416119594
## 2244   1374638451
## 2245   1465793961
## 2246   1443385030
## 2247   1416119686
## 2248   1425876060
## 2249   1216576560
## 2250   1338702423
## 2251   1338698854
## 2252   1347936713
## 2253   1222024895
## 2254   1240203919
## 2255   1465793918
## 2256   1216576545
## 2257   1347936669
## 2258   1216576555
## 2259   1338698814
## 2260   1357110059
## 2261   1349622715
## 2262   1216576611
## 2263   1216576596
## 2264   1216576570
## 2265   1316396154
## 2266   1416119795
## 2267   1361831545
## 2268   1316395628
## 2269   1238801478
## 2270   1240211388
## 2271   1357110065
## 2272   1222024906
## 2273   1257734243
## 2274   1349622731
## 2275   1367764780
## 2276   1443384812
## 2277   1367800217
## 2278   1357110411
## 2279   1245309336
## 2280   1338698608
## 2281   1348976367
## 2282   1245021120
## 2283   1416119731
## 2284   1416119711
## 2285   1357110430
## 2286   1465880993
## 2287   1238804089
## 2288   1240202854
## 2289   1465880257
## 2290   1465880651
## 2291   1257733143
## 2292   1338698623
## 2293   1426110601
## 2294   1257733150
## 2295   1245021164
## 2296   1374638441
## 2297   1338702402
## 2298   1338698899
## 2299   1245021148
## 2300   1338698337
## 2301   1316396161
## 2302   1465954712
## 2303   1245021136
## 2304   1316396225
## 2305   1374637633
## 2306   1338698886
## 2307   1338702414
## 2308   1389440855
## 2309   1361831532
## 2310   1465880996
## 2311   1338698471
## 2312   1458506351
## 2313   1257733119
## 2314   1257734187
## 2315   1261945002
## 2316   1316395878
## 2317   1374637773
## 2318   1465793997
## 2319   1257734180
## 2320   1465794388
## 2321   1465793912
## 2322   1465793920
## 2323   1257735545
## 2324   1425876002
## 2325   1465880969
## 2326   1338702430
## 2327   1338698882
## 2328   1357110070
## 2329   1261944230
## 2330   1273090173
## 2331   1316395633
## 2332   1338698316
## 2333   1338702442
## 2334   1367764758
## 2335   1361831555
## 2336   1458506610
## 2337   1273090169
## 2338   1273090163
## 2339   1361831522
## 2340   1379040852
## 2341   1367765175
## 2342   1367801385
## 2343   1316395588
## 2344   1458506646
## 2345   1316395983
## 2346   1338698896
## 2347   1443384445
## 2348   1367765128
## 2349   1316395554
## 2350   1458506381
## 2351   1465880302
## 2352   1349048062
## 2353   1349622587
## 2354   1367765181
## 2355   1338698870
## 2356   1465794431
## 2357   1374638009
## 2358   1361078260
## 2359   1316395567
## 2360   1465793930
## 2361   1361078281
## 2362   1367801466
## 2363   1374638035
## 2364   1348976539
## 2365   1338698369
## 2366   1316395900
## 2367   1458506571
## 2368   1367801474
## 2369   1338698918
## 2370   1338698461
## 2371   1316396252
## 2372   1465880518
## 2373   1361078285
## 2374   1367801456
## 2375   1316396136
## 2376   1367765123
## 2377   1425875865
## 2378   1345381190
## 2379   1465880243
## 2380   1367801369
## 2381   1347936749
## 2382   1316395607
## 2383   1367801387
## 2384   1348976211
## 2385   1316395573
## 2386   1338698824
## 2387   1316395597
## 2388   1458506593
## 2389   1458506580
## 2390   1458507263
## 2391   1458505901
## 2392   1458506624
## 2393   1316395580
## 2394   1374638031
## 2395   1347936763
## 2396   1338698810
## 2397   1458507259
## 2398   1316396021
## 2399   1458506136
## 2400   1443385461
## 2401   1416120053
## 2402   1338698356
## 2403   1348976202
## 2404   1386367929
## 2405   1316408269
## 2406   1316395487
## 2407   1316395783
## 2408   1367801460
## 2409   1374638024
## 2410   1458506641
## 2411   1361078138
## 2412   1338697857
## 2413   1349048081
## 2414   1338698848
## 2415   1367801470
## 2416   1348977157
## 2417   1361078276
## 2418   1338698144
## 2419   1367801363
## 2420   1348976195
## 2421   1374637765
## 2422   1338698014
## 2423   1338698247
## 2424   1465880427
## 2425   1338697915
## 2426   1347936860
## 2427   1345350956
## 2428   1348979143
## 2429   1348976183
## 2430   1338698134
## 2431   1338698154
## 2432   1338698344
## 2433   1338698158
## 2434   1338697924
## 2435   1465880962
## 2436   1338698152
## 2437   1361831455
## 2438   1338699137
## 2439   1338697920
## 2440   1458507291
## 2441   1338697984
## 2442   1338697905
## 2443   1338697996
## 2444   1338698001
## 2445   1338698006
## 2446   1338697991
## 2447   1338697968
## 2448   1345351002
## 2449   1338697964
## 2450   1345350968
## 2451   1374638428
## 2452   1345350979
## 2453   1345350959
## 2454   1465880715
## 2455   1347937652
## 2456   1357109952
## 2457   1345350961
## 2458   1357109941
## 2459   1345350995
## 2460   1361831420
## 2461   1345350973
## 2462   1361076608
## 2463   1374637996
## 2464   1357109969
## 2465   1458506349
## 2466   1367764836
## 2467   1386368013
## 2468   1361076604
## 2469   1426110392
## 2470   1386367936
## 2471   1389482906
## 2472   1465793928
## 2473   1425876388
## 2474   1416119923
## 2475   1367764716
## 2476   1465880234
## 2477   1458506339
## 2478   1425876390
## 2479   1357109923
## 2480   1386368031
## 2481   1361831110
## 2482   1361076617
## 2483   1465880648
## 2484   1361831156
## 2485   1400818425
## 2486   1381534422
## 2487   1374638046
## 2488   1465793952
## 2489   1386367955
## 2490   1367764695
## 2491   1367764864
## 2492   1465880292
## 2493   1465880371
## 2494   1400818444
## 2495   1386367999
## 2496   1458506656
## 2497   1389482894
## 2498   1386367981
## 2499   1386367968
## 2500   1400818394
## 2501   1458506599
## 2502   1386367923
## 2503   1379040901
## 2504   1465794267
## 2505   1465954520
## 2506   1465880282
## 2507   1465880264
## 2508   1458506673
## 2509   1458506703
## 2510   1425875562
## 2511   1381534394
## 2512   1386367735
## 2513   1381534447
## 2514   1425875553
## 2515   1443384429
## 2516   1386367830
## 2517   1386367813
## 2518   1389440765
## 2519   1416120264
## 2520   1416120141
## 2521   1416119571
## 2522   1465881258
## 2523   1425875579
## 2524   1426110023
## 2525   1416120159
## 2526   1458506323
## 2527   1465954590
## 2528   1465954969
## 2529   1407125286
## 2530   1458506369
## 2531   1465794437
## 2532   1416119568
## 2533   1425875392
## 2534   1416120169
## 2535   1465793948
## 2536   1425875503
## 2537   1416120131
## 2538   1416120162
## 2539   1416120149
## 2540   1416120159
## 2541   1465880696
## 2542   1443385454
## 2543   1425875482
## 2544   1416120099
## 2545   1400818348
## 2546   1407125275
## 2547   1425875435
## 2548   1416120100
## 2549   1443384269
## 2550   1407125270
## 2551   1425875460
## 2552   1426110071
## 2553   1416120171
## 2554   1443384078
## 2555   1425875403
## 2556   1407125273
## 2557   1465880699
## 2558   1416119564
## 2559   1425875476
## 2560   1465794105
## 2561   1425875488
## 2562   1425875497
## 2563   1425875574
## 2564   1465793290
## 2565   1416120202
## 2566   1425875463
## 2567   1443384500
## 2568   1425875406
## 2569   1425875413
## 2570   1443384091
## 2571   1425875458
## 2572   1425875401
## 2573   1465794406
## 2574   1425875449
## 2575   1443384373
## 2576   1425875426
## 2577   1443384296
## 2578   1443384084
## 2579   1443384307
## 2580   1443384336
## 2581   1425875443
## 2582   1443384294
## 2583   1443384317
## 2584   1465793971
## 2585   1458507341
## 2586   1443384389
## 2587   1458505928
## 2588   1466051442
## 2589   1443384000
## 2590   1443384283
## 2591   1443384352
## 2592   1458505916
## 2593   1465793115
## 2594   1465793601
## 2595   1443385387
## 2596   1458505982
## 2597   1443384322
## 2598   1458506093
## 2599   1465794100
## 2600   1465793706
## 2601   1458506081
## 2602   1443384337
## 2603   1465794103
## 2604   1458506026
## 2605   1443384330
## 2606   1458507347
## 2607   1458505912
## 2608   1443384275
## 2609   1458506097
## 2610   1458505921
## 2611   1465794150
## 2612   1469330276
## 2613   1467259301
## 2614   1469330245
## 2615   1458506089
## 2616   1458506078
## 2617   1465793719
## 2618   1458505989
## 2619   1465793116
## 2620   1443384531
## 2621   1458505973
## 2622   1458505986
## 2623   1465793975
## 2624   1458506009
## 2625   1465956541
## 2626   1458505917
## 2627   1465793185
## 2628   1443384516
## 2629   1465793205
## 2630   1458505911
## 2631   1465793179
## 2632   1458506017
## 2633   1465793183
## 2634   1465793201
## 2635   1458506016
## 2636   1458505924
## 2637   1465793208
## 2638   1458506107
## 2639   1465793192
## 2640   1465793700
## 2641   1465793170
## 2642   1465880375
## 2643   1460076733
## 2644   1465793639
## 2645   1465793691
## 2646   1465793621
## 2647   1465793612
## 2648   1467259316
## 2649   1465793630
## 2650   1465794051
## 2651   1467259294
## 2652   1465793091
## 2653   1465880080
## 2654   1465793093
## 2655   1466802910
## 2656   1469330481
## 2657   1469330238
## 2658   1466802905
## 2659   1469330270
## 2660   1469330266
## 2661   1469330242
## 2662   1469330307
## 2663   1178364904
## 2664   1178364881
## 2665   1137577638
## 2666   1178364921
## 2667   1137577630
## 2668   1137577694
## 2669   1178363907
## 2670   1178364916
## 2671   1137577687
## 2672   1137577912
## 2673   1137577918
## 2674   1137577616
## 2675   1137577645
## 2676   1148214528
## 2677   1137577753
## 2678   1137577979
## 2679   1148214227
## 2680   1137577889
## 2681   1148214543
## 2682   1148214272
## 2683   1148214289
## 2684   1148214251
## 2685   1178364909
## 2686   1137577776
## 2687   1137577730
## 2688   1178364961
## 2689   1137578034
## 2690   1137577905
## 2691   1148214661
## 2692   1127469542
## 2693   1127469531
## 2694   1127470880
## 2695   1127469436
## 2696   1127469535
## 2697   1127469246
## 2698   1127469450
## 2699   1127469023
## 2700   1127470242
## 2701   1127468646
## 2702   1127469509
## 2703   1127470280
## 2704   1127468896
## 2705   1127469577
## 2706   1127469684
## 2707   1127471027
## 2708   1127474688
## 2709   1127469552
## 2710   1127469604
## 2711   1127469297
## 2712   1127471192
## 2713   1127469420
## 2714   1127470013
## 2715   1127469401
## 2716   1127469444
## 2717   1127471468
## 2718   1127469407
## 2719   1127475344
## 2720   1127472949
## 2721   1127469434
## 2722   1127469561
## 2723   1127469779
## 2724   1127469416
## 2725   1127469396
## 2726   1127469440
## 2727   1127472555
## 2728   1127473893
## 2729   1127469466
## 2730   1127469230
## 2731   1127469000
## 2732   1127470263
## 2733   1127468839
## 2734   1127468627
## 2735   1127468595
## 2736   1127470036
## 2737   1127471471
## 2738   1127468808
## 2739   1127468822
## 2740   1127469756
## 2741   1127469594
## 2742   1127471079
## 2743   1127472146
## 2744   1127474822
## 2745   1127470622
## 2746   1127470607
## 2747   1127473110
## 2748   1127473686
## 2749   1127469628
## 2750   1127469308
## 2751   1127469973
## 2752   1127471148
## 2753   1127470400
## 2754   1127469568
## 2755   1127472932
## 2756   1127470987
## 2757   1127469556
## 2758   1127469923
## 2759   1127469650
## 2760   1127473503
## 2761   1127468800
## 2762   1127469622
## 2763   1127474633
## 2764   1127469667
## 2765   1127469002
## 2766   1127469749
## 2767   1127471445
## 2768   1127470230
## 2769   1127469169
## 2770   1127474779
## 2771   1127472490
## 2772   1127470206
## 2773   1127470820
## 2774   1127469721
## 2775   1127468791
## 2776   1127470114
## 2777   1127470489
## 2778   1127468638
## 2779   1127472442
## 2780   1127469694
## 2781   1127470072
## 2782   1127469234
## 2783   1127470095
## 2784   1127469473
## 2785   1127473670
## 2786   1127470062
## 2787   1127470930
## 2788   1127468688
## 2789   1127473298
## 2790   1127468930
## 2791   1127469223
## 2792   1127469661
## 2793   1127475516
## 2794   1127469521
## 2795   1127469976
## 2796   1127469527
## 2797   1127469905
## 2798   1127471602
## 2799   1127469988
## 2800   1127468587
## 2801   1127469912
## 2802   1127474863
## 2803   1127469601
## 2804   1127472770
## 2805   1127470069
## 2806   1127468617
## 2807   1127470043
## 2808   1127469129
## 2809   1127471258
## 2810   1127472570
## 2811   1127470262
## 2812   1127469612
## 2813   1127469217
## 2814   1127470918
## 2815   1127469773
## 2816   1127469738
## 2817   1127473090
## 2818   1127469006
## 2819   1127469494
## 2820   1127468880
## 2821   1127470656
## 2822   1127468938
## 2823   1127475491
## 2824   1127474890
## 2825   1127472523
## 2826   1127473955
## 2827   1127469357
## 2828   1127470030
## 2829   1127474873
## 2830   1127474381
## 2831   1127470130
## 2832   1127469815
## 2833   1127469961
## 2834   1127468671
## 2835   1127469563
## 2836   1127470079
## 2837   1127469379
## 2838   1127470158
## 2839   1127469848
## 2840   1127470166
## 2841   1127472530
## 2842   1127469486
## 2843   1127470677
## 2844   1127470875
## 2845   1127468906
## 2846   1127472715
## 2847   1127469890
## 2848   1127473623
## 2849   1127473860
## 2850   1127469619
## 2851   1127469870
## 2852   1127473627
## 2853   1127469711
## 2854   1127469824
## 2855   1127474088
## 2856   1127469504
## 2857   1127469746
## 2858   1127469479
## 2859   1127469374
## 2860   1127469652
## 2861   1127469690
## 2862   1127472212
## 2863   1127469609
## 2864   1127471286
## 2865   1127469583
## 2866   1127476640
## 2867   1127471284
## 2868   1127469868
## 2869   1127470023
## 2870   1127469202
## 2871   1127472389
## 2872   1127474810
## 2873   1127469266
## 2874   1127473609
## 2875   1127469817
## 2876   1127468813
## 2877   1127473589
## 2878   1127471452
## 2879   1127470537
## 2880   1127470423
## 2881   1127469591
## 2882   1127473228
## 2883   1127472406
## 2884   1127472085
## 2885   1127470532
## 2886   1127468949
## 2887   1127470327
## 2888   1127470461
## 2889   1127470285
## 2890   1127470334
## 2891   1127468701
## 2892   1127469984
## 2893   1127469664
## 2894   1127469852
## 2895   1127468683
## 2896   1127471074
## 2897   1127475013
## 2898   1127469783
## 2899   1127470473
## 2900   1127470119
## 2901   1127470830
## 2902   1127471221
## 2903   1127471153
## 2904   1127469334
## 2905   1127470728
## 2906   1127474968
## 2907   1127474815
## 2908   1127475151
## 2909   1127468922
## 2910   1127470287
## 2911   1127473495
## 2912   1127470004
## 2913   1127471176
## 2914   1127469940
## 2915   1127470007
## 2916   1127475485
## 2917   1127469643
## 2918   1127473364
## 2919   1127473564
## 2920   1127470960
## 2921   1127475207
## 2922   1127469827
## 2923   1127472353
## 2924   1127474324
## 2925   1127475000
## 2926   1127471041
## 2927   1127473845
## 2928   1127475457
## 2929   1127470247
## 2930   1127475188
## 2931   1127469195
## 2932   1127473818
## 2933   1127470134
## 2934   1127468673
## 2935   1127471240
## 2936   1127470299
## 2937   1127473010
## 2938   1127470799
## 2939   1127475183
## 2940   1127470238
## 2941   1127472858
## 2942   1127475440
## 2943   1127470685
## 2944   1127473119
## 2945   1127472423
## 2946   1127471265
## 2947   1127471454
## 2948   1127471062
## 2949   1127475067
## 2950   1127474818
## 2951   1127469753
## 2952   1127470498
## 2953   1127474362
## 2954   1127474765
## 2955   1127475051
## 2956   1127474841
## 2957   1127472872
## 2958   1127475334
## 2959   1127472991
## 2960   1127472976
## 2961   1127475308
## 2962   1127473829
## 2963   1127470144
## 2964   1127472896
## 2965   1127472979
## 2966   1127470895
## 2967   1127469259
## 2968   1127473548
## 2969   1127474791
## 2970   1127474916
## 2971   1127475452
## 2972   1127468985
## 2973   1127474277
## 2974   1127471196
## 2975   1127470254
## 2976   1127473461
## 2977   1127472413
## 2978   1127472303
## 2979   1127475092
## 2980   1127471327
## 2981   1127470187
## 2982   1127471166
## 2983   1127475055
## 2984   1127473832
## 2985   1127470752
## 2986   1127471083
## 2987   1127475101
## 2988   1127470546
## 2989   1127470734
## 2990   1127474852
## 2991   1127474908
## 2992   1127470872
## 2993   1127471213
## 2994   1127472094
## 2995   1127469062
## 2996   1127470554
## 2997   1127474398
## 2998   1127471109
## 2999   1127470693
## 3000   1127473904
## 3001   1127470592
## 3002   1127473557
## 3003   1127470361
## 3004   1127473913
## 3005   1127470380
## 3006   1127475148
## 3007   1127470520
## 3008   1127469051
## 3009   1127471038
## 3010   1127473707
## 3011   1127472156
## 3012   1127474420
## 3013   1127470503
## 3014   1127471336
## 3015   1127475448
## 3016   1127474877
## 3017   1127470713
## 3018   1127472844
## 3019   1127470866
## 3020   1127474727
## 3021   1127472266
## 3022   1127471100
## 3023   1127473138
## 3024   1127473808
## 3025   1127472829
## 3026   1127471144
## 3027   1127473772
## 3028   1127473349
## 3029   1127472292
## 3030   1127475524
## 3031   1127470706
## 3032   1127470716
## 3033   1127475246
## 3034   1127470724
## 3035   1127471549
## 3036   1127470911
## 3037   1127470788
## 3038   1127471208
## 3039   1127468773
## 3040   1127471031
## 3041   1127475110
## 3042   1127470792
## 3043   1127469035
## 3044   1127475574
## 3045   1127471248
## 3046   1127469049
## 3047   1127472057
## 3048   1127474893
## 3049   1127470680
## 3050   1127475161
## 3051   1127473991
## 3052   1127475261
## 3053   1127475175
## 3054   1127470435
## 3055    856006982
## 3056    856006982
## 3057    856006982
## 3058    856007219
## 3059    856007147
## 3060    856006886
## 3061    856007359
## 3062    856006886
## 3063    856006885
## 3064    856006982
## 3065    856007075
## 3066    856006886
## 3067    856007279
## 3068    856007359
## 3069    856007147
## 3070    856007495
## 3071    856007495
## 3072    856007409
## 3073    856007409
## 3074    856006886
## 3075    856007279
## 3076    856007147
## 3077    856006885
## 3078    856007075
## 3079    856007075
## 3080    856006982
## 3081    856006982
## 3082    856007147
## 3083    856007359
## 3084    856006886
## 3085    856007075
## 3086    856007279
## 3087    856007075
## 3088    856007219
## 3089    856006982
## 3090    856006885
## 3091    856007219
## 3092    856007359
## 3093    856007147
## 3094    856007587
## 3095    856006885
## 3096    856007495
## 3097    856006982
## 3098    856007075
## 3099    856007219
## 3100    856007147
## 3101    856092135
## 3102    856007219
## 3103    856007587
## 3104    856007279
## 3105    856007587
## 3106    855190091
## 3107    855194773
## 3108    855194718
## 3109    855192868
## 3110    855190128
## 3111    855190128
## 3112    855190232
## 3113    855192496
## 3114    855192773
## 3115    855190167
## 3116    855191930
## 3117    855193244
## 3118    855192868
## 3119    855194301
## 3120    855190091
## 3121    855190349
## 3122    855190091
## 3123    855191622
## 3124    855192496
## 3125    855190954
## 3126    855193076
## 3127    855192210
## 3128    855191478
## 3129    855191517
## 3130    855193488
## 3131    855192835
## 3132    855190167
## 3133    855192717
## 3134    855190167
## 3135    855190349
## 3136    855193770
## 3137    855191324
## 3138    855190261
## 3139    855193220
## 3140    855190290
## 3141    855190091
## 3142    855190550
## 3143    855190531
## 3144    855192656
## 3145    855193530
## 3146    855191324
## 3147    855190128
## 3148    855194378
## 3149    855191429
## 3150    855190091
## 3151    855193720
## 3152    855191289
## 3153    855193751
## 3154    855191383
## 3155    855191775
## 3156    855194718
## 3157    855191226
## 3158    855191227
## 3159    855194264
## 3160    855194345
## 3161    855191383
## 3162    855192496
## 3163    855193865
## 3164    855192957
## 3165    855191383
## 3166    855193806
## 3167    855191478
## 3168    855193054
## 3169    855192120
## 3170    855194790
## 3171    855193510
## 3172    855191324
## 3173    855191622
## 3174    855191701
## 3175    855192308
## 3176    855194087
## 3177    855191324
## 3178    855191478
## 3179    855191430
## 3180    855193530
## 3181    855191430
## 3182    855190199
## 3183    855194216
## 3184    855193220
## 3185    855194773
## 3186    855191882
## 3187    855194605
## 3188    855192982
## 3189    855192910
## 3190    855191383
## 3191    855193465
## 3192    855194693
## 3193    855191226
## 3194    855193220
## 3195    855191584
## 3196    855191622
## 3197    855191654
## 3198    855194824
## 3199    855195189
## 3200    855191383
## 3201    855192210
## 3202    855192814
## 3203    855193274
## 3204    855194773
## 3205    855191846
## 3206    855193643
## 3207    855193599
## 3208    855193404
## 3209    855194560
## 3210    855191289
## 3211    855192910
## 3212    855191622
## 3213    855193558
## 3214    855193864
## 3215    855192868
## 3216    855192178
## 3217    855192120
## 3218    855193770
## 3219    855193330
## 3220    855195078
## 3221    855192385
## 3222    855192254
## 3223    855194531
## 3224    855192636
## 3225    855193244
## 3226    855192254
## 3227    855191816
## 3228    855190166
## 3229    855191289
## 3230    855193845
## 3231    855191228
## 3232    855192120
## 3233    855193914
## 3234    855193558
## 3235    855192605
## 3236    855193488
## 3237    855191701
## 3238    855194419
## 3239    855192210
## 3240    855194301
## 3241    855193330
## 3242    855192455
## 3243    855193404
## 3244    855192001
## 3245    855194345
## 3246    855193700
## 3247    855193599
## 3248    855192910
## 3249    855192385
## 3250    855193488
## 3251    855193892
## 3252    855194397
## 3253    855192558
## 3254    855192419
## 3255    855191654
## 3256    855193806
## 3257    855192279
## 3258    855192308
## 3259    855192940
## 3260    855193330
## 3261    855193449
## 3262    855191517
## 3263    855190128
## 3264    855194264
## 3265    855191228
## 3266    855193845
## 3267    855192558
## 3268    855192061
## 3269    855194216
## 3270    855193700
## 3271    855193012
## 3272    855193301
## 3273    855194590
## 3274    855193449
## 3275    855193301
## 3276    855191478
## 3277    855192717
## 3278    855193358
## 3279    855192910
## 3280    855191324
## 3281    855192688
## 3282    855191622
## 3283    855194419
## 3284    855192254
## 3285    855192419
## 3286    855192033
## 3287    855190447
## 3288    855194052
## 3289    855194743
## 3290    855195077
## 3291    855191383
## 3292    855191289
## 3293    855191964
## 3294    855191229
## 3295    855191383
## 3296    855195077
## 3297    855191553
## 3298    855193530
## 3299    855192636
## 3300    855190128
## 3301    855192688
## 3302    855190427
## 3303    855190199
## 3304    855190091
## 3305    855190167
## 3306    855190199
## 3307    855190382
## 3308    855190349
## 3309    855194072
## 3310    855190606
## 3311    855193404
## 3312    855190128
## 3313    855190091
## 3314    855190290
## 3315    855191289
## 3316    855190091
## 3317    855190167
## 3318    855190349
## 3319    855191702
## 3320    855190167
## 3321    855190382
## 3322    855191324
## 3323    855190232
## 3324    855190199
## 3325    855191478
## 3326    855190382
## 3327    855194072
## 3328    855192178
## 3329    855192496
## 3330    855191622
## 3331    855191430
## 3332    855191553
## 3333    855192582
## 3334    855191552
## 3335    855191654
## 3336    855193012
## 3337    855192740
## 3338    855192773
## 3339    855193358
## 3340    855192717
## 3341    855191517
## 3342    855191289
## 3343    855192419
## 3344    855193274
## 3345    855192210
## 3346    855192814
## 3347    855192582
## 3348    855192033
## 3349    855192419
## 3350    855192279
## 3351    855192178
## 3352    855192385
## 3353    855192090
## 3354    855192061
## 3355    855194498
## 3356    855192582
## 3357    855192254
## 3358    855193628
## 3359    855193700
## 3360    855192120
## 3361    855195136
## 3362    855192347
## 3363    855192347
## 3364    855192033
## 3365    855193194
## 3366    855191324
## 3367    855190467
## 3368    855192178
## 3369    855190606
## 3370    855190382
## 3371    855190128
## 3372    855191775
## 3373    855191701
## 3374    855191289
## 3375    855195268
## 3376    855191324
## 3377    855191517
## 3378    855193599
## 3379    855191228
## 3380    855191584
## 3381    855194052
## 3382    855192773
## 3383    855192910
## 3384    855191816
## 3385    855192001
## 3386    855191517
## 3387    855193194
## 3388    855191882
## 3389    855191584
## 3390    855192940
## 3391    855194282
## 3392    855195373
## 3393    855193275
## 3394    855192347
## 3395    855192910
## 3396    855191430
## 3397    855191228
## 3398    855192254
## 3399    855192740
## 3400    855191882
## 3401    855193194
## 3402    855192496
## 3403    855192717
## 3404    855190427
## 3405    855192496
## 3406    855191478
## 3407    855191622
## 3408    855191701
## 3409    855191430
## 3410    855191701
## 3411    855191553
## 3412    855191654
## 3413    855191702
## 3414    855191964
## 3415    855191478
## 3416    855191775
## 3417    855191478
## 3418    855191882
## 3419    855192454
## 3420    855191740
## 3421    855191553
## 3422    855191584
## 3423    855192419
## 3424    855192814
## 3425    855192090
## 3426    855192385
## 3427    855191517
## 3428    855192558
## 3429    855191584
## 3430    855191740
## 3431    855191846
## 3432    855192517
## 3433    855191882
## 3434    855191622
## 3435    855192061
## 3436    855191740
## 3437    855192419
## 3438    855192347
## 3439    855191383
## 3440    855191882
## 3441    855192001
## 3442    855192868
## 3443    855191702
## 3444    855192347
## 3445    855191816
## 3446    855191882
## 3447    855191816
## 3448    855191930
## 3449    855192033
## 3450    855192279
## 3451    855192033
## 3452    855192061
## 3453    855192001
## 3454    855192347
## 3455    855191930
## 3456    855191775
## 3457    855192773
## 3458    855191930
## 3459    855191740
## 3460    855192688
## 3461    855192033
## 3462    855192178
## 3463    855192455
## 3464    855191964
## 3465    855192636
## 3466    855192605
## 3467    855191930
## 3468    855191654
## 3469    855191846
## 3470    855192120
## 3471    855191930
## 3472    855191846
## 3473    855193358
## 3474    855192517
## 3475    855191816
## 3476    855193035
## 3477    855192090
## 3478    855192255
## 3479    855192717
## 3480    855192455
## 3481    855192308
## 3482    855192210
## 3483    855192120
## 3484    855193274
## 3485    855192558
## 3486    855193628
## 3487    855192308
## 3488    855193806
## 3489    855193932
## 3490    855192090
## 3491    855193599
## 3492    855194641
## 3493    855192773
## 3494    855193358
## 3495    855192558
## 3496    855192636
## 3497    855192605
## 3498    855192835
## 3499    855192496
## 3500    855192814
## 3501    855190606
## 3502    855190199
## 3503    855190571
## 3504    855192636
## 3505    855193404
## 3506    855193035
## 3507    855193845
## 3508    855192496
## 3509    855193244
## 3510    855192740
## 3511    855193700
## 3512    855193244
## 3513    855193194
## 3514    855194670
## 3515    855194188
## 3516    855193076
## 3517    855192033
## 3518    855193946
## 3519    855194693
## 3520    855190404
## 3521    855190404
## 3522    855192061
## 3523    855193012
## 3524    855190404
## 3525    855192910
## 3526    855192982
## 3527    855192254
## 3528    855193274
## 3529   1238729767
## 3530   1238729782
## 3531   1238729861
## 3532   1224042765
## 3533   1238729747
## 3534   1238729755
## 3535   1238729818
## 3536   1224042795
## 3537   1238729849
## 3538   1224043057
## 3539   1238729735
## 3540   1238729834
## 3541   1224043037
## 3542   1238729802
## 3543   1238729739
## 3544   1238729826
## 3545   1238729854
## 3546   1238729779
## 3547   1238729750
## 3548   1238729744
## 3549   1238731010
## 3550   1238729842
## 3551   1224043054
## 3552   1238729785
## 3553   1238729764
## 3554   1238729759
## 3555   1238729741
## 3556   1238729816
## 3557   1238729844
## 3558   1238729789
## 3559   1224042769
## 3560   1224043166
## 3561   1238729831
## 3562   1224043160
## 3563   1224043081
## 3564   1238729772
## 3565   1238729822
## 3566   1224043134
## 3567   1238729311
## 3568   1224043067
## 3569   1224042752
## 3570   1238729863
## 3571   1224042813
## 3572   1224043119
## 3573   1224043170
## 3574   1238729793
## 3575   1238729807
## 3576   1238729342
## 3577   1224043156
## 3578   1238729777
## 3579   1238730775
## 3580   1238730754
## 3581   1238729811
## 3582   1238730771
## 3583   1224042777
## 3584   1224042802
## 3585   1238729865
## 3586   1224042771
## 3587   1224042740
## 3588   1224042737
## 3589   1224042811
## 3590   1224042788
## 3591   1238729799
## 3592   1238731025
## 3593   1238729839
## 3594   1238731034
## 3595   1224043052
## 3596   1224042755
## 3597   1238729331
## 3598   1238731020
## 3599   1224042780
## 3600   1224042827
## 3601   1224043029
## 3602   1238729247
## 3603   1224043145
## 3604   1238729389
## 3605   1224043219
## 3606   1238730960
## 3607   1224043284
## 3608   1224043266
## 3609   1224043033
## 3610   1224043242
## 3611   1224043213
## 3612   1224043180
## 3613   1224043257
## 3614   1224043185
## 3615   1224043294
## 3616   1238729255
## 3617   1224043273
## 3618   1224043282
## 3619   1238730751
## 3620   1238729405
## 3621   1224043232
## 3622   1238730925
## 3623   1224043238
## 3624   1224043018
## 3625   1238731039
## 3626   1238731016
## 3627    853846478
## 3628    853846669
## 3629    853157476
## 3630    853846442
## 3631    853157544
## 3632    853846547
## 3633    853846400
## 3634    853157476
## 3635    853157544
## 3636    853846547
## 3637    853846288
## 3638    853847536
## 3639    853846511
## 3640    853846669
## 3641    853846207
## 3642    853847723
## 3643    853857742
## 3644    853846400
## 3645    853847574
## 3646    853846400
## 3647    853846752
## 3648    853847612
## 3649    853846443
## 3650    853846511
## 3651    853852608
## 3652    853846783
## 3653    853856221
## 3654    853846579
## 3655    853846443
## 3656    853846873
## 3657    853846511
## 3658    853847574
## 3659    853846612
## 3660    853846400
## 3661    853846813
## 3662    853847688
## 3663    853846443
## 3664    853846547
## 3665    853847813
## 3666    853846400
## 3667    853846443
## 3668    853846639
## 3669    853846400
## 3670    853846612
## 3671    853846511
## 3672    853846723
## 3673    853846511
## 3674    853157476
## 3675    853157544
## 3676    853848506
## 3677    853157476
## 3678    853845946
## 3679    853850728
## 3680    853850791
## 3681    853850699
## 3682    853850791
## 3683    853848342
## 3684    853850728
## 3685    853850835
## 3686    853852058
## 3687    853850874
## 3688    853851052
## 3689    853849142
## 3690    853850699
## 3691    853848314
## 3692    853851841
## 3693    853851861
## 3694    853851892
## 3695    853850752
## 3696    853850874
## 3697    853850728
## 3698    853849003
## 3699    853848034
## 3700    853851203
## 3701    853848062
## 3702    853852140
## 3703    853848342
## 3704    853848002
## 3705    853846443
## 3706    853846752
## 3707    853846723
## 3708    853853701
## 3709    853847910
## 3710    853848134
## 3711    853853956
## 3712    853847780
## 3713    853847910
## 3714    853852079
## 3715    853851156
## 3716    853851608
## 3717    853848738
## 3718    853852316
## 3719    853847612
## 3720    853846639
## 3721    853852208
## 3722    853851089
## 3723    853850791
## 3724    853847910
## 3725    853847813
## 3726    853848156
## 3727    853848507
## 3728    853850791
## 3729    853851732
## 3730    853851052
## 3731    853848134
## 3732    853849211
## 3733    853851024
## 3734    853850905
## 3735    853851222
## 3736    853850791
## 3737    853850728
## 3738    853851024
## 3739    853850752
## 3740    853850874
## 3741    853848082
## 3742    853852020
## 3743    853850728
## 3744    853850835
## 3745    853850835
## 3746    853850835
## 3747    853850968
## 3748    853851113
## 3749    853851203
## 3750    853851052
## 3751    853850874
## 3752    853849003
## 3753    853848737
## 3754    853850997
## 3755    853850933
## 3756    853850874
## 3757    853850791
## 3758    853850835
## 3759    853848558
## 3760    853851174
## 3761    853852020
## 3762    853851089
## 3763    853851203
## 3764    853852097
## 3765    853850968
## 3766    853851113
## 3767    853850997
## 3768    853853496
## 3769    853851156
## 3770    853853725
## 3771    853852524
## 3772    853852058
## 3773    853853473
## 3774    853852140
## 3775    853851257
## 3776    853852263
## 3777    853851257
## 3778    853853545
## 3779    853849676
## 3780    853851841
## 3781    853850905
## 3782    853852501
## 3783    853850968
## 3784    853854148
## 3785    853851089
## 3786    853853593
## 3787    854522908
## 3788    853850933
## 3789   1131662086
## 3790   1131662481
## 3791   1131662466
## 3792   1131661907
## 3793   1131661969
## 3794   1131662452
## 3795   1131661890
## 3796   1131664404
## 3797   1131662930
## 3798   1131664520
## 3799   1131662440
## 3800   1131662423
## 3801   1131662653
## 3802   1131663354
## 3803   1131663069
## 3804   1131664320
## 3805   1131662435
## 3806   1131753358
## 3807   1131663409
## 3808   1131662387
## 3809   1131662090
## 3810   1131662100
## 3811   1131753373
## 3812   1131664363
## 3813   1131663387
## 3814   1131661923
## 3815   1131663369
## 3816   1131664533
## 3817   1131662084
## 3818   1131663268
## 3819   1131663223
## 3820   1131723291
## 3821   1131663139
## 3822   1131662400
## 3823   1131662414
## 3824   1131662354
## 3825   1131662357
## 3826   1131662364
## 3827   1131723086
## 3828   1131662346
## 3829   1131661960
## 3830   1131663322
## 3831   1131663397
## 3832   1131663177
## 3833   1131662370
## 3834   1131662293
## 3835   1131662093
## 3836   1131663188
## 3837   1131753179
## 3838   1131662287
## 3839   1131663479
## 3840   1131753381
## 3841   1131663366
## 3842   1131663232
## 3843   1131661937
## 3844   1131663305
## 3845   1131662309
## 3846   1131662302
## 3847   1131662635
## 3848   1131662312
## 3849   1131662317
## 3850   1131661918
## 3851   1131662328
## 3852   1131662323
## 3853   1131662334
## 3854   1131663284
## 3855   1131663044
## 3856   1131664393
## 3857   1131662271
## 3858   1131663328
## 3859   1131662659
## 3860   1131662268
## 3861   1131663443
## 3862   1131664773
## 3863   1131662252
## 3864   1131662000
## 3865   1131723166
## 3866   1131663219
## 3867   1131661994
## 3868   1131663032
## 3869   1131663020
## 3870   1131664489
## 3871   1131662243
## 3872   1131662014
## 3873   1131661978
## 3874   1131723076
## 3875   1131662226
## 3876   1131661945
## 3877   1131662232
## 3878   1131662911
## 3879   1131663357
## 3880   1131664741
## 3881   1131663683
## 3882   1131664754
## 3883   1131664719
## 3884   1131723151
## 3885   1131663013
## 3886   1131664733
## 3887   1131663552
## 3888   1131664217
## 3889   1131662900
## 3890   1131723146
## 3891   1131664710
## 3892   1131723065
## 3893   1131661911
## 3894   1131664699
## 3895   1131662202
## 3896   1131662216
## 3897   1131662209
## 3898   1131662220
## 3899   1131664480
## 3900   1131662152
## 3901   1131662710
## 3902   1131663006
## 3903   1131663393
## 3904   1131662185
## 3905   1131662179
## 3906   1131664676
## 3907   1131664687
## 3908   1131663892
## 3909   1131662174
## 3910   1131662150
## 3911   1131662717
## 3912   1131664474
## 3913   1131663311
## 3914   1131662155
## 3915   1131723124
## 3916   1131662169
## 3917   1131662162
## 3918   1131664330
## 3919   1131662194
## 3920   1131723135
## 3921   1131662989
## 3922   1131662687
## 3923   1131662678
## 3924   1131662190
## 3925   1131664651
## 3926   1131753186
## 3927   1131662694
## 3928   1131663515
## 3929   1131661897
## 3930   1131664627
## 3931   1131662894
## 3932   1131663506
## 3933   1131662700
## 3934   1131723113
## 3935   1131664598
## 3936   1131753363
## 3937   1131663359
## 3938   1131662121
## 3939   1131664612
## 3940   1131663886
## 3941   1131664618
## 3942   1131723071
## 3943   1131662565
## 3944   1131662110
## 3945   1131664374
## 3946   1131663472
## 3947   1131664226
## 3948   1131664587
## 3949   1131663565
## 3950   1131663696
## 3951   1131662966
## 3952   1131663383
## 3953   1131663420
## 3954   1131661901
## 3955   1131662103
## 3956   1131662107
## 3957   1131662960
## 3958   1131662640
## 3959   1131662670
## 3960   1131663341
## 3961   1131662525
## 3962   1131664572
## 3963   1131662096
## 3964   1131664567
## 3965   1131662075
## 3966   1131662534
## 3967   1131663373
## 3968   1131663277
## 3969   1131663330
## 3970   1131663263
## 3971   1131662504
## 3972   1131663118
## 3973   1131662637
## 3974   1131663453
## 3975   1131662846
## 3976   1131663238
## 3977   1131663156
## 3978   1131662491
## 3979   1131662517
## 3980   1131663881
## 3981   1131662684
## 3982   1131723215
## 3983   1131663918
## 3984   1131664302
## 3985   1131663158
## 3986   1131663528
## 3987   1131663431
## 3988   1131662007
## 3989   1131663298
## 3990   1131662518
## 3991   1131663403
## 3992   1131663081
## 3993   1131664239
## 3994   1131662473
## 3995   1131662938
## 3996   1131663248
## 3997   1131663440
## 3998   1131663094
## 3999   1131663467
## 4000   1131663282
## 4001   1131663378
## 4002   1131663273
## 4003   1131753070
## 4004   1131663089
## 4005   1131663293
## 4006   1131663228
## 4007   1131662462
## 4008   1131663664
## 4009   1148729853
## 4010   1148730128
## 4011   1166728170
## 4012   1148672550
## 4013   1148669114
## 4014   1148720884
## 4015   1148673467
## 4016   1148730400
## 4017   1166728173
## 4018   1148669590
## 4019   1148670466
## 4020   1148672099
## 4021   1166728220
## 4022   1148669357
## 4023   1148730116
## 4024   1148669588
## 4025   1148671365
## 4026   1148672933
## 4027   1148720873
## 4028   1148672842
## 4029   1148386188
## 4030   1148778581
## 4031   1148729797
## 4032   1148729698
## 4033   1148386155
## 4034   1148729570
## 4035   1148673304
## 4036   1148669102
## 4037   1148668973
## 4038   1148668970
## 4039   1148728957
## 4040   1148673465
## 4041   1148720795
## 4042   1148672319
## 4043   1148671517
## 4044   1149868544
## 4045   1148777951
## 4046   1148777966
## 4047   1148668967
## 4048   1148668964
## 4049   1148669351
## 4050   1148672736
## 4051   1148668961
## 4052   1148673085
## 4053   1148728785
## 4054   1148673420
## 4055   1148669891
## 4056   1148730048
## 4057   1148720861
## 4058   1148673418
## 4059   1148669887
## 4060   1148730134
## 4061   1148729018
## 4062   1148720907
## 4063   1148669346
## 4064   1148669881
## 4065   1148669092
## 4066   1148672198
## 4067   1148729022
## 4068   1148720627
## 4069   1166036040
## 4070   1148729848
## 4071   1148668958
## 4072   1166728142
## 4073   1166728178
## 4074   1149868397
## 4075   1148728787
## 4076   1148670328
## 4077   1148671818
## 4078   1148672375
## 4079   1149868548
## 4080   1148669338
## 4081   1148669574
## 4082   1148672950
## 4083   1148669090
## 4084   1148669877
## 4085   1166035850
## 4086   1148669873
## 4087   1148670499
## 4088   1148669858
## 4089   1148673415
## 4090   1148669865
## 4091   1148669863
## 4092   1148669087
## 4093   1148729708
## 4094   1148670263
## 4095   1148671970
## 4096   1148671949
## 4097   1148728764
## 4098   1148671779
## 4099   1148729610
## 4100   1148728730
## 4101   1148669850
## 4102   1148730009
## 4103   1148777884
## 4104   1148671953
## 4105   1148669852
## 4106   1148670548
## 4107   1148673452
## 4108   1148778793
## 4109   1148671777
## 4110   1148669082
## 4111   1148729982
## 4112   1148729661
## 4113   1148671884
## 4114   1148671832
## 4115   1148672493
## 4116   1148671931
## 4117   1148669571
## 4118   1148721097
## 4119   1148721092
## 4120   1148728814
## 4121   1148670154
## 4122   1148669329
## 4123   1148669327
## 4124   1148729987
## 4125   1148669080
## 4126   1148721086
## 4127   1148728784
## 4128   1148668956
## 4129   1148672085
## 4130   1148672402
## 4131   1148673456
## 4132   1148669318
## 4133   1148778808
## 4134   1166728186
## 4135   1148729677
## 4136   1148671525
## 4137   1148669833
## 4138   1148669302
## 4139   1148671542
## 4140   1148673102
## 4141   1148721090
## 4142   1148721053
## 4143   1148672286
## 4144   1148670101
## 4145   1148669299
## 4146   1148670388
## 4147   1148671770
## 4148   1148728807
## 4149   1149868223
## 4150   1148669075
## 4151   1148670482
## 4152   1148670884
## 4153   1148670172
## 4154   1148670494
## 4155   1148730030
## 4156   1148669828
## 4157   1148671384
## 4158   1148669826
## 4159   1148669072
## 4160   1148669820
## 4161   1148670496
## 4162   1148670275
## 4163   1148670888
## 4164   1148670960
## 4165   1148671412
## 4166   1148669055
## 4167   1148672270
## 4168   1148672325
## 4169   1148669822
## 4170   1148670266
## 4171   1148671596
## 4172   1148671816
## 4173   1149868188
## 4174   1148671814
## 4175   1148673449
## 4176   1166036046
## 4177   1166035984
## 4178   1148778850
## 4179   1148386185
## 4180   1148669296
## 4181   1148729642
## 4182   1148730410
## 4183   1148720563
## 4184   1148672048
## 4185   1148671992
## 4186   1166036059
## 4187   1148671859
## 4188   1148671856
## 4189   1148671782
## 4190   1148671642
## 4191   1148386150
## 4192   1148777838
## 4193   1148730086
## 4194   1148671587
## 4195   1148671822
## 4196   1148778812
## 4197   1148778787
## 4198   1148730406
## 4199   1148728732
## 4200   1148671808
## 4201   1148669291
## 4202   1148729820
## 4203   1148670285
## 4204   1148720736
## 4205   1148670134
## 4206   1148777902
## 4207   1148671835
## 4208   1148669816
## 4209   1148386142
## 4210   1148730139
## 4211   1148728738
## 4212   1148728856
## 4213   1148670953
## 4214   1148669057
## 4215   1148672025
## 4216   1148672530
## 4217   1148777918
## 4218   1148669286
## 4219   1148669063
## 4220   1148670340
## 4221   1166728237
## 4222   1148669051
## 4223   1148730168
## 4224   1148729341
## 4225   1148669808
## 4226   1148720760
## 4227   1148669282
## 4228   1148720878
## 4229   1149868079
## 4230   1148720958
## 4231   1148386128
## 4232   1148720919
## 4233   1166728241
## 4234   1148720846
## 4235   1148669048
## 4236   1148778558
## 4237   1148670343
## 4238   1148668953
## 4239   1148669800
## 4240   1148669045
## 4241   1148670522
## 4242   1148671498
## 4243   1148671436
## 4244   1148670981
## 4245   1148669270
## 4246   1148729054
## 4247   1148670121
## 4248   1148669792
## 4249   1148669789
## 4250   1148728970
## 4251   1148669787
## 4252   1148669267
## 4253   1148728611
## 4254   1148670970
## 4255   1148671375
## 4256   1148730178
## 4257   1148673442
## 4258   1148730066
## 4259   1148669265
## 4260   1148720837
## 4261   1148728727
## 4262   1148669541
## 4263   1148728810
## 4264   1148672116
## 4265   1148728751
## 4266   1148721075
## 4267   1148672322
## 4268   1148669538
## 4269   1148728761
## 4270   1148730162
## 4271   1148728725
## 4272   1148728794
## 4273   1148673306
## 4274   1148671908
## 4275   1148728778
## 4276   1148728759
## 4277   1148728746
## 4278   1148728769
## 4279   1148728790
## 4280   1148728802
## 4281   1148728736
## 4282   1148728753
## 4283   1148728767
## 4284   1148728429
## 4285   1148669764
## 4286   1148669261
## 4287   1148729668
## 4288   1148673438
## 4289   1148669760
## 4290   1148672527
## 4291   1148669036
## 4292   1148669531
## 4293   1148671551
## 4294   1148728867
## 4295   1148671632
## 4296   1148670901
## 4297   1148720894
## 4298   1148729968
## 4299   1148669258
## 4300   1166728231
## 4301   1148672486
## 4302   1148730098
## 4303   1148672510
## 4304   1148672500
## 4305   1148671801
## 4306   1148386163
## 4307   1148671878
## 4308   1148672515
## 4309   1148669228
## 4310   1148729360
## 4311   1148669739
## 4312   1148669751
## 4313   1148671976
## 4314   1148672768
## 4315   1148673578
## 4316   1148669024
## 4317   1148730155
## 4318   1148669021
## 4319   1148669225
## 4320   1148669239
## 4321   1148671939
## 4322   1148671652
## 4323   1148386176
## 4324   1148729689
## 4325   1148730053
## 4326   1148720603
## 4327   1148778590
## 4328   1148728756
## 4329   1148669018
## 4330   1148729858
## 4331   1149868383
## 4332   1148669219
## 4333   1148669215
## 4334   1149868257
## 4335   1149868567
## 4336   1149868269
## 4337   1149868185
## 4338   1148672184
## 4339   1148669719
## 4340   1148730088
## 4341   1148729974
## 4342   1166728248
## 4343   1148670873
## 4344   1148669716
## 4345   1148671340
## 4346   1148671324
## 4347   1148669012
## 4348   1148670082
## 4349   1148386172
## 4350   1148669210
## 4351   1148669709
## 4352   1166036066
## 4353   1148673094
## 4354   1148669714
## 4355   1148671845
## 4356   1148728854
## 4357   1149868713
## 4358   1148671606
## 4359   1148672620
## 4360   1148729011
## 4361   1149867815
## 4362   1149868231
## 4363   1148669200
## 4364   1148669501
## 4365   1148672034
## 4366   1148729102
## 4367   1148672294
## 4368   1148673075
## 4369   1148671999
## 4370   1148672683
## 4371   1148669008
## 4372   1148730113
## 4373   1148669191
## 4374   1148778865
## 4375   1148729713
## 4376   1148672556
## 4377   1149868562
## 4378   1148671474
## 4379   1148670519
## 4380   1148778622
## 4381   1148720744
## 4382   1148669706
## 4383   1148669188
## 4384   1148673055
## 4385   1148672778
## 4386   1148720826
## 4387   1148670143
## 4388   1148671916
## 4389   1148671881
## 4390   1148673280
## 4391   1148728895
## 4392   1148669703
## 4393   1148729851
## 4394   1148728701
## 4395   1148669181
## 4396   1148728602
## 4397   1148669695
## 4398   1148672142
## 4399   1148672449
## 4400   1148672101
## 4401   1148671428
## 4402   1148671904
## 4403   1148669488
## 4404   1148729808
## 4405   1148730163
## 4406   1148670551
## 4407   1148671686
## 4408   1148671963
## 4409   1148721061
## 4410   1148728891
## 4411   1148728875
## 4412   1148721102
## 4413   1148386153
## 4414   1166035912
## 4415   1148673292
## 4416   1148670554
## 4417   1149868559
## 4418   1148669482
## 4419   1148669175
## 4420   1148669004
## 4421   1148721082
## 4422   1148729373
## 4423   1148671696
## 4424   1148671997
## 4425   1148669480
## 4426   1148669173
## 4427   1148730416
## 4428   1148670362
## 4429   1148669470
## 4430   1148721157
## 4431   1148669685
## 4432   1148728779
## 4433   1148669465
## 4434   1148386159
## 4435   1148672311
## 4436   1148669458
## 4437   1149868554
## 4438   1148669165
## 4439   1148730072
## 4440   1148671793
## 4441   1148777893
## 4442   1148386124
## 4443   1148669688
## 4444   1148729675
## 4445   1148671784
## 4446   1148669156
## 4447   1148721105
## 4448   1148669002
## 4449   1148672113
## 4450   1148673043
## 4451   1148671887
## 4452   1148777876
## 4453   1148729496
## 4454   1148669000
## 4455   1148670535
## 4456   1148670060
## 4457   1166036125
## 4458   1149868172
## 4459   1148672776
## 4460   1148729830
## 4461   1148728652
## 4462   1148386146
## 4463   1148669449
## 4464   1148671975
## 4465   1149868599
## 4466   1148669447
## 4467   1148670048
## 4468   1148669443
## 4469   1148670464
## 4470   1148671013
## 4471   1148778637
## 4472   1148670046
## 4473   1148670035
## 4474   1148672150
## 4475   1148672412
## 4476   1148778542
## 4477   1148670033
## 4478   1148670029
## 4479   1148669153
## 4480   1148672030
## 4481   1148672429
## 4482   1148672167
## 4483   1148672010
## 4484   1148669150
## 4485   1148730000
## 4486   1148729027
## 4487   1148670025
## 4488   1148671968
## 4489   1148673475
## 4490   1148670015
## 4491   1148669432
## 4492   1149868082
## 4493   1148669430
## 4494   1148669145
## 4495   1148730080
## 4496   1148669142
## 4497   1148730186
## 4498   1148673770
## 4499   1148670011
## 4500   1148669659
## 4501   1148673020
## 4502   1148673264
## 4503   1148668997
## 4504   1148729348
## 4505   1148730142
## 4506   1148730339
## 4507   1148672064
## 4508   1148670407
## 4509   1148668988
## 4510   1148671395
## 4511   1148669423
## 4512   1148671310
## 4513   1148668984
## 4514   1149868375
## 4515   1148670003
## 4516   1148672017
## 4517   1148669420
## 4518   1148721046
## 4519   1148669995
## 4520   1149868484
## 4521   1148671005
## 4522   1148669126
## 4523   1148669408
## 4524   1166728155
## 4525   1148777819
## 4526   1148669987
## 4527   1148670299
## 4528   1148673117
## 4529   1148721129
## 4530   1148729991
## 4531   1148668981
## 4532   1148669651
## 4533   1148730375
## 4534   1148671569
## 4535   1148671806
## 4536   1148669404
## 4537   1148728872
## 4538   1148669643
## 4539   1148729764
## 4540   1166728165
## 4541   1148728844
## 4542   1148670503
## 4543   1148670377
## 4544   1148729681
## 4545   1148729615
## 4546   1148728452
## 4547   1148672044
## 4548   1148669981
## 4549   1148668978
## 4550   1148671891
## 4551   1148778680
## 4552   1148728632
## 4553   1148671465
## 4554   1148728401
## 4555   1148730381
## 4556   1148670412
## 4557   1148729985
## 4558   1148672553
## 4559   1148728488
## 4560   1148669635
## 4561   1148728773
## 4562   1148671728
## 4563   1148670480
## 4564   1148671984
## 4565   1166035845
## 4566   1148670462
## 4567   1148673567
## 4568   1149868386
## 4569   1148730363
## 4570   1148673695
## 4571   1148671914
## 4572   1148669973
## 4573   1149868589
## 4574   1148673429
## 4575   1148729589
## 4576   1148670511
## 4577   1148777788
## 4578   1148671670
## 4579   1148728655
## 4580   1148730486
## 4581   1148729602
## 4582   1148730325
## 4583   1148729489
## 4584   1166728191
## 4585   1148672103
## 4586   1148777833
## 4587   1149868022
## 4588   1148673277
## 4589   1148672862
## 4590   1148669957
## 4591   1148672069
## 4592   1148669388
## 4593   1148672708
## 4594   1148671403
## 4595   1148670473
## 4596   1148777887
## 4597   1148669120
## 4598   1148670540
## 4599   1148671873
## 4600   1148728657
## 4601   1148673160
## 4602   1148729597
## 4603   1148729704
## 4604   1148721147
## 4605   1148673289
## 4606   1148669952
## 4607   1149867788
## 4608   1148669950
## 4609   1148673142
## 4610   1148777906
## 4611   1149868005
## 4612   1148721109
## 4613   1148721080
## 4614   1148669947
## 4615   1148669620
## 4616   1148671989
## 4617   1148720869
## 4618   1148673512
## 4619   1148721066
## 4620   1148778107
## 4621   1148672120
## 4622   1148729768
## 4623   1148672289
## 4624   1148729652
## 4625   1148721133
## 4626   1148729574
## 4627   1148729032
## 4628   1148671849
## 4629   1148672629
## 4630   1148672333
## 4631   1166728160
## 4632   1148386181
## 4633   1148671300
## 4634   1149867747
## 4635   1148669384
## 4636   1148669943
## 4637   1148673554
## 4638   1148777881
## 4639   1148669381
## 4640   1148670469
## 4641   1148730359
## 4642   1148671745
## 4643   1148673159
## 4644   1148673729
## 4645   1166036074
## 4646   1148672248
## 4647   1148671356
## 4648   1148672143
## 4649   1166035969
## 4650   1148670517
## 4651   1148728880
## 4652   1148729504
## 4653   1148728467
## 4654   1148669605
## 4655   1148728849
## 4656   1148673274
## 4657   1148672148
## 4658   1148672825
## 4659   1148728858
## 4660   1148673762
## 4661   1148673478
## 4662   1148671852
## 4663   1148777848
## 4664   1148729024
## 4665   1148670303
## 4666   1148777970
## 4667   1148669373
## 4668   1148778304
## 4669   1148673283
## 4670   1148671738
## 4671   1148671289
## 4672   1148730147
## 4673   1148672765
## 4674   1148673065
## 4675   1148673032
## 4676   1148730109
## 4677   1148672235
## 4678   1148777777
## 4679   1148672082
## 4680   1148670559
## 4681   1148672259
## 4682   1166035835
## 4683   1148669930
## 4684   1148730354
## 4685   1148672301
## 4686   1148672274
## 4687   1148672278
## 4688   1148670456
## 4689   1148730062
## 4690   1148669374
## 4691   1148669926
## 4692   1149867880
## 4693   1148728505
## 4694   1149868226
## 4695   1166035981
## 4696   1148673735
## 4697   1148728740
## 4698   1148670866
## 4699   1148730017
## 4700   1148673299
## 4701   1148671579
## 4702   1148728469
## 4703   1148673587
## 4704   1148672716
## 4705   1148730328
## 4706   1148730343
## 4707   1148728385
## 4708   1148730331
## 4709   1148670189
## 4710   1148670454
## 4711   1148670525
## 4712   1148671229
## 4713   1148673719
## 4714   1148670458
## 4715   1149867915
## 4716   1148671243
## 4717   1148729077
## 4718   1148671251
## 4719   1148673758
## 4720   1148671278
## 4721   1148729584
## 4722   1148720535
## 4723   1148728902
## 4724   1148777867
## 4725   1148671219
## 4726   1149867706
## 4727   1148671236
## 4728   1148778653
## 4729   1148669596
## 4730   1148670935
## 4731   1148672962
## 4732   1149867891
## 4733   1166728253
## 4734   1166728226
## 4735    849321588
## 4736    849321616
## 4737    849321769
## 4738    849321588
## 4739    849282414
## 4740    849282506
## 4741    849282414
## 4742    849282540
## 4743    849282540
## 4744    849282414
## 4745    849282507
## 4746    849282506
## 4747    849282414
## 4748    849282414
## 4749    849321669
## 4750    849321569
## 4751    849321569
## 4752    849282720
## 4753    849321569
## 4754    849321955
## 4755    849321826
## 4756    859625254
## 4757    859625180
## 4758    859625874
## 4759    859625336
## 4760    859625336
## 4761    859625254
## 4762    859625254
## 4763    859625336
## 4764    859625772
## 4765    859625553
## 4766    859625495
## 4767    859625180
## 4768    859625336
## 4769    859625254
## 4770    859625336
## 4771    859625442
## 4772    859625495
## 4773    859625824
## 4774    859625254
## 4775    859625931
## 4776    859625442
## 4777    859625974
## 4778    859625669
## 4779    859625669
## 4780    859625845
## 4781    859626258
## 4782   1360087980
## 4783   1354313537
## 4784   1360088070
## 4785   1360088047
## 4786   1351544773
## 4787   1351544454
## 4788   1360088114
## 4789   1360088108
## 4790   1360087975
## 4791   1360087955
## 4792   1360088129
## 4793   1360087964
## 4794   1360088074
## 4795   1352058551
## 4796   1360088133
## 4797   1360088079
## 4798   1360088041
## 4799   1360088007
## 4800   1360087958
## 4801   1360088125
## 4802   1352636797
## 4803   1360088014
## 4804   1354752756
## 4805   1360088060
## 4806   1360088081
## 4807   1351544331
## 4808   1360088143
## 4809   1354313990
## 4810   1360088024
## 4811   1360088089
## 4812   1352058567
## 4813   1371811577
## 4814   1360088053
## 4815   1360088064
## 4816   1352058572
## 4817   1351544316
## 4818   1352636822
## 4819   1360088119
## 4820   1371811514
## 4821   1351544445
## 4822   1354752882
## 4823   1351544792
## 4824   1351544355
## 4825   1352636799
## 4826   1352058527
## 4827   1371811575
## 4828   1363376250
## 4829   1352058619
## 4830   1354752806
## 4831   1354752751
## 4832   1360088058
## 4833   1354752886
## 4834   1351544362
## 4835   1371811559
## 4836   1352058543
## 4837   1352597810
## 4838   1353708984
## 4839   1352058529
## 4840   1351544464
## 4841   1351545050
## 4842   1351544397
## 4843   1351545093
## 4844   1351544451
## 4845   1353708990
## 4846   1354752813
## 4847   1351545101
## 4848   1352058758
## 4849   1351544780
## 4850   1351544467
## 4851   1352058557
## 4852   1351545042
## 4853   1353344972
## 4854   1352058609
## 4855   1352597808
## 4856   1353345028
## 4857   1353344992
## 4858   1352058538
## 4859   1364420293
## 4860   1353708976
## 4861   1352058766
## 4862   1360088161
## 4863   1352058603
## 4864   1352921335
## 4865   1352597728
## 4866   1357253672
## 4867   1357253678
## 4868   1353344968
## 4869   1351545056
## 4870   1352921346
## 4871   1352597710
## 4872   1363810269
## 4873   1365194619
## 4874   1352838248
## 4875   1352058756
## 4876   1352058778
## 4877   1352058548
## 4878   1351545109
## 4879   1352058660
## 4880   1351545104
## 4881   1351545119
## 4882   1357253708
## 4883   1351544753
## 4884   1353708965
## 4885   1352838206
## 4886   1353344939
## 4887   1352058784
## 4888   1352921319
## 4889   1353344981
## 4890   1352058516
## 4891   1357253700
## 4892   1352921338
## 4893   1361215024
## 4894   1351545085
## 4895   1352597707
## 4896   1353708699
## 4897   1351545082
## 4898   1352058510
## 4899   1352058533
## 4900   1351545138
## 4901   1352058666
## 4902   1352921298
## 4903   1353797039
## 4904   1352921315
## 4905   1352597697
## 4906   1353962805
## 4907   1352058503
## 4908   1353868066
## 4909   1352597714
## 4910   1351545097
## 4911   1352838254
## 4912   1352920880
## 4913   1353709027
## 4914   1365194986
## 4915   1352058770
## 4916   1352058561
## 4917   1353344881
## 4918   1352921375
## 4919   1357253685
## 4920   1352838245
## 4921   1352838242
## 4922   1361215017
## 4923   1352058524
## 4924   1353708936
## 4925   1351544480
## 4926   1351545114
## 4927   1352597791
## 4928   1352597733
## 4929   1352058657
## 4930   1353868028
## 4931   1352597790
## 4932   1352838257
## 4933   1352920912
## 4934   1353345002
## 4935   1353345011
## 4936   1357253777
## 4937   1352838237
## 4938   1352597777
## 4939   1353709018
## 4940   1352597735
## 4941   1353797029
## 4942   1351545047
## 4943   1352838229
## 4944   1357253681
## 4945   1353345007
## 4946   1352597807
## 4947   1352597692
## 4948   1353344976
## 4949   1354313972
## 4950   1354313516
## 4951   1351544798
## 4952   1351545019
## 4953   1354313566
## 4954    939077258
## 4955    939079553
## 4956    939076893
## 4957    939077164
## 4958    939079002
## 4959    939076893
## 4960    939080935
## 4961    939078921
## 4962    939079553
## 4963    939080148
## 4964    939079118
## 4965    939080090
## 4966    939079855
## 4967    939079553
## 4968    939082326
## 4969    939078921
## 4970    939077258
## 4971    939079779
## 4972    939082276
## 4973    939076569
## 4974    939076677
## 4975    939076519
## 4976    939076519
## 4977    938942396
## 4978    938944078
## 4979    938944407
## 4980    938944923
## 4981    938944407
## 4982    938944744
## 4983    938944550
## 4984    938944636
## 4985    938942682
## 4986    938944975
## 4987    938944975
## 4988    938943150
## 4989    938942682
## 4990    938942755
## 4991    938942821
## 4992    938944683
## 4993    938944139
## 4994    938944408
## 4995    938943028
## 4996    938942614
## 4997    938943524
## 4998    938944744
## 4999    938943150
## 5000    938944457
## 5001    938943202
## 5002    938944923
## 5003    938943028
## 5004    938944505
## 5005    938944139
## 5006    938944636
## 5007    938943245
## 5008    938942458
## 5009    938944683
## 5010    938942755
## 5011    938944505
## 5012    938943202
## 5013    938944407
## 5014    938943150
## 5015    938942821
## 5016    938942529
## 5017    938944457
## 5018    938943408
## 5019    938943524
## 5020    938944975
## 5021    938944237
## 5022    938944923
## 5023    938943150
## 5024    938944505
## 5025    938943879
## 5026    938943976
## 5027   1313927169
## 5028   1313925564
## 5029   1313925259
## 5030   1313925074
## 5031   1313925699
## 5032   1313925185
## 5033   1313925639
## 5034   1313924474
## 5035   1313924446
## 5036   1313927206
## 5037   1313925688
## 5038   1313925589
## 5039   1313925693
## 5040   1313924856
## 5041   1313925220
## 5042   1313927224
## 5043   1313927249
## 5044   1313927226
## 5045   1313925421
## 5046   1313927193
## 5047   1313927309
## 5048   1313924902
## 5049    944943070
## 5050    945277634
## 5051    945276746
## 5052    968786809
## 5053    948141296
## 5054    945276564
## 5055    945115684
## 5056    945277971
## 5057    945276705
## 5058    945278756
## 5059    945115684
## 5060    945122277
## 5061   1039067883
## 5062    945278415
## 5063   1060795346
## 5064    986745716
## 5065    945113887
## 5066    945122740
## 5067    945277094
## 5068   1007352836
## 5069    945706968
## 5070    945277812
## 5071    945122218
## 5072    945113485
## 5073    994458116
## 5074    951010161
## 5075    945122277
## 5076    945277588
## 5077    948166619
## 5078    945113597
## 5079    948141601
## 5080    994458393
## 5081    999626484
## 5082    994458432
## 5083    945278527
## 5084    945277654
## 5085    996057525
## 5086    945279013
## 5087    986009538
## 5088    945114746
## 5089    948141681
## 5090    945276587
## 5091    948167472
## 5092    951008613
## 5093    996883776
## 5094    945115182
## 5095    964459362
## 5096    952884892
## 5097    994439589
## 5098    945122065
## 5099    945277330
## 5100    945112993
## 5101    945121922
## 5102    994458003
## 5103    945114800
## 5104    945277064
## 5105    960819270
## 5106    945122709
## 5107    945122526
## 5108    945276685
## 5109    945277588
## 5110    945277422
## 5111    945277277
## 5112    945276660
## 5113    945277224
## 5114    945277520
## 5115    948165514
## 5116    945114031
## 5117    995228802
## 5118    945278777
## 5119    946161737
## 5120    945114071
## 5121    945277698
## 5122    945115767
## 5123    954818652
## 5124    945277634
## 5125    945122305
## 5126    986009342
## 5127    945277919
## 5128    945276439
## 5129    945122219
## 5130    944943155
## 5131    945277405
## 5132    945112993
## 5133    945278328
## 5134    945115411
## 5135    945114453
## 5136    948140634
## 5137    945278179
## 5138    945276493
## 5139    945277277
## 5140    968786739
## 5141    945122127
## 5142    945122648
## 5143    945114031
## 5144    945278094
## 5145    945277535
## 5146    945116219
## 5147    945121654
## 5148    945122884
## 5149    945277742
## 5150    946161937
## 5151    945115684
## 5152    945115018
## 5153    945276726
## 5154    960820031
## 5155    948166511
## 5156    948140535
## 5157    945115684
## 5158    945113656
## 5159    945276726
## 5160    945278021
## 5161    945277405
## 5162    945276393
## 5163    948140376
## 5164    945115727
## 5165    945294508
## 5166    945114031
## 5167    945116219
## 5168    945122884
## 5169    960918653
## 5170    945122819
## 5171    945121703
## 5172    946162223
## 5173    951009961
## 5174    945276778
## 5175    945277181
## 5176    945278043
## 5177    945277145
## 5178    945277919
## 5179    945112993
## 5180    945278328
## 5181    951009383
## 5182    990239999
## 5183    945277224
## 5184    945276900
## 5185    945115105
## 5186    945277026
## 5187    945278630
## 5188    945276918
## 5189    945113250
## 5190    960819972
## 5191    945123379
## 5192    945280609
## 5193    948167638
## 5194    948167359
## 5195    948167200
## 5196    945113329
## 5197    945113429
## 5198    945115727
## 5199    952885624
## 5200    945114843
## 5201    945115217
## 5202    945280543
## 5203    945123035
## 5204    945114984
## 5205    945123334
## 5206    945114585
## 5207    961353806
## 5208    945123629
## 5209    945115133
## 5210    948166413
## 5211    945116296
## 5212    986009052
## 5213    960819546
## 5214    945295766
## 5215    945295955
## 5216    945295766
## 5217    945295766
## 5218    945295766
## 5219    945295766
## 5220    945278498
## 5221    945295702
## 5222    968785945
## 5223    945115767
## 5224    945116137
## 5225    946162006
## 5226    945295466
## 5227    945114585
## 5228    945294292
## 5229    945294437
## 5230    945114495
## 5231    945113844
## 5232    948166679
## 5233    945294811
## 5234    948167359
## 5235    945294381
## 5236    945295052
## 5237    948141124
## 5238    945115105
## 5239    945121755
## 5240    945113694
## 5241    945294381
## 5242    945115628
## 5243    960917771
## 5244    952885531
## 5245   1039068134
## 5246    945116296
## 5247    945115411
## 5248    960819766
## 5249    945294508
## 5250    945294700
## 5251    945122605
## 5252    945114819
## 5253    968786007
## 5254    945294437
## 5255    945114638
## 5256    944943070
## 5257    945123680
## 5258    945114495
## 5259    945294292
## 5260    948166414
## 5261    945114673
## 5262    945113377
## 5263    945123246
## 5264    945294508
## 5265    951007847
## 5266    945114231
## 5267    945295323
## 5268    952884971
## 5269    945294381
## 5270    945123035
## 5271    945115684
## 5272    948166414
## 5273    945296019
## 5274    945294292
## 5275    945123065
## 5276    945114800
## 5277    945123522
## 5278    945114453
## 5279    945116137
## 5280    945114495
## 5281    945114271
## 5282    945122127
## 5283    945294508
## 5284    952885104
## 5285    945123210
## 5286    945123065
## 5287    945114365
## 5288    945123827
## 5289    945114843
## 5290    945121960
## 5291    945115218
## 5292    945112993
## 5293    951010688
## 5294    945115293
## 5295    945123246
## 5296    945114271
## 5297    945122526
## 5298    945113844
## 5299    948166855
## 5300    945880277
## 5301    945294811
## 5302    945294509
## 5303    945123170
## 5304    945115684
## 5305    945115218
## 5306    944943155
## 5307    952885624
## 5308    951009284
## 5309    945294509
## 5310    945295543
## 5311    960917865
## 5312    945295702
## 5313    945296019
## 5314    945121560
## 5315    945122846
## 5316    945115456
## 5317    945295052
## 5318    945115807
## 5319    945879533
## 5320    945113981
## 5321    945277990
## 5322    945277207
## 5323    945277674
## 5324    945295052
## 5325    945295543
## 5326    945277556
## 5327    945280937
## 5328    960918255
## 5329    945278359
## 5330    994439147
## 5331    945114495
## 5332    945294509
## 5333    945277002
## 5334    945115018
## 5335    945278156
## 5336    945277760
## 5337    960819894
## 5338    948142097
## 5339    945278857
## 5340    945114724
## 5341    945277520
## 5342    945278415
## 5343    945277797
## 5344   1011327941
## 5345    980135256
## 5346    945278003
## 5347    945278893
## 5348    948165379
## 5349    945880463
## 5350    946162247
## 5351    945277026
## 5352    945122819
## 5353    945277971
## 5354    945276984
## 5355    945276587
## 5356    945123592
## 5357    945276660
## 5358    945113887
## 5359    968786680
## 5360    948140224
## 5361    945276960
## 5362    945116175
## 5363    945276439
## 5364    945122330
## 5365    945123741
## 5366    946162223
## 5367    946161879
## 5368    948142097
## 5369    945114071
## 5370    945115767
## 5371    945121832
## 5372    945277361
## 5373    945277460
## 5374    945122710
## 5375    945116296
## 5376    945122710
## 5377    945115933
## 5378    994439516
## 5379    951010688
## 5380    986008828
## 5381    945278540
## 5382    945279033
## 5383    948141222
## 5384    945276705
## 5385    949977510
## 5386    945279097
## 5387    945122010
## 5388    948141904
## 5389   1030334513
## 5390    948165859
## 5391    945122605
## 5392    945276249
## 5393    945278278
## 5394    945115864
## 5395    945296041
## 5396    945114192
## 5397    945123854
## 5398    945113057
## 5399    948167081
## 5400    952885034
## 5401    945114883
## 5402    945114961
## 5403    945113844
## 5404    945123497
## 5405    945115767
## 5406    945114800
## 5407    945294381
## 5408    945114883
## 5409    986738498
## 5410    945294381
## 5411    945116252
## 5412    945294641
## 5413    945123317
## 5414    945294641
## 5415    945294764
## 5416    945278278
## 5417    994457962
## 5418    948167472
## 5419    945294811
## 5420    945278244
## 5421    948167277
## 5422    952884997
## 5423   1039070774
## 5424    945115480
## 5425    945115548
## 5426    945113656
## 5427    944943070
## 5428    945113775
## 5429    945294381
## 5430    945123718
## 5431    951008775
## 5432    948166931
## 5433    986735779
## 5434    945277311
## 5435    960818505
## 5436    945295156
## 5437    945277405
## 5438    994439964
## 5439    945276856
## 5440    945295466
## 5441    945276493
## 5442    945294437
## 5443    945294811
## 5444    952744480
## 5445    945294641
## 5446    948166679
## 5447    948141369
## 5448    968788273
## 5449    945295156
## 5450    945276960
## 5451    945116219
## 5452    945295766
## 5453    945116220
## 5454    945294700
## 5455    945295052
## 5456    945294872
## 5457    945113656
## 5458    945280501
## 5459    946162071
## 5460    945294381
## 5461    952743252
## 5462    945295955
## 5463    968787840
## 5464    945294700
## 5465    945114961
## 5466    945276882
## 5467    945276439
## 5468    945294641
## 5469    945115900
## 5470    948167638
## 5471    945294764
## 5472    945276685
## 5473    951009217
## 5474    945277634
## 5475    960917865
## 5476    948165999
## 5477    945294858
## 5478    945295069
## 5479    945277094
## 5480   1037583956
## 5481    945278188
## 5482    945277113
## 5483    945295214
## 5484    945114406
## 5485    945122526
## 5486    945278963
## 5487    945115512
## 5488    945294509
## 5489    945276393
## 5490    948069839
## 5491    945294811
## 5492    945114453
## 5493    945277718
## 5494    945122794
## 5495    945115512
## 5496    945277654
## 5497    945115270
## 5498    960918218
## 5499    945295543
## 5500    948070285
## 5501    945276439
## 5502    948166591
## 5503    945295588
## 5504    945294811
## 5505    945294509
## 5506    945880314
## 5507    945295052
## 5508    945117801
## 5509    948167472
## 5510    945117110
## 5511    945296110
## 5512    954818726
## 5513    948141433
## 5514    945294700
## 5515    945295588
## 5516    945295156
## 5517    945295214
## 5518    945278718
## 5519    945880314
## 5520    945294912
## 5521    945294912
## 5522    945277094
## 5523    945116330
## 5524    945122740
## 5525    946161981
## 5526    945122356
## 5527    945296019
## 5528    945294437
## 5529    945294641
## 5530    945295214
## 5531    945294764
## 5532    945294381
## 5533    945115345
## 5534    945117685
## 5535    945295052
## 5536    945294858
## 5537    945294764
## 5538    945295543
## 5539    968788273
## 5540    945295466
## 5541    945295543
## 5542    945295543
## 5543    945295703
## 5544    945295588
## 5545    945295543
## 5546    945295543
## 5547    994438963
## 5548    945295543
## 5549    945117600
## 5550    945294641
## 5551    945117751
## 5552    945117284
## 5553    945117855
## 5554    986009301
## 5555    945118444
## 5556    945113775
## 5557    945118833
## 5558    949984748
## 5559    945278292
## 5560   1012830681
## 5561    945294641
## 5562    948167578
## 5563    945294764
## 5564    945295156
## 5565    945115326
## 5566    946161135
## 5567    945118470
## 5568    945118833
## 5569    945117855
## 5570    945114316
## 5571    945117685
## 5572    945118444
## 5573    945294437
## 5574    945114961
## 5575    945295323
## 5576    945116067
## 5577    948166619
## 5578    945294976
## 5579    948141418
## 5580    960917771
## 5581    986738419
## 5582    945294700
## 5583    945118236
## 5584    945118516
## 5585    945118400
## 5586   1002769837
## 5587    945294764
## 5588    945113125
## 5589    945113981
## 5590    945278645
## 5591    945295156
## 5592    945294437
## 5593    951010736
## 5594    945294912
## 5595    945277046
## 5596    945117941
## 5597    947306097
## 5598    948140044
## 5599    945118685
## 5600    945118578
## 5601    945295588
## 5602    945115018
## 5603    945295797
## 5604    945118093
## 5605    961265714
## 5606    945114365
## 5607    945277277
## 5608    945118754
## 5609    945115242
## 5610    945277046
## 5611    960715669
## 5612   1010373507
## 5613    945116175
## 5614    945113844
## 5615    945115548
## 5616    945123854
## 5617    945295052
## 5618    945295703
## 5619    948140634
## 5620    951162572
## 5621    945115628
## 5622    945294811
## 5623    945118444
## 5624    960658881
## 5625    945296019
## 5626    945115990
## 5627    945123170
## 5628    945118516
## 5629    945118906
## 5630    945294641
## 5631    945294641
## 5632    945294858
## 5633    945295466
## 5634    945113775
## 5635    945295466
## 5636    945123497
## 5637    951008850
## 5638    945295466
## 5639    952885177
## 5640   1014613565
## 5641    945115864
## 5642    945276778
## 5643    948167081
## 5644    945277311
## 5645    945113694
## 5646    954815132
## 5647    948167200
## 5648    948141681
## 5649    945118516
## 5650   1033398031
## 5651    945294811
## 5652    945113597
## 5653    951008931
## 5654    945115727
## 5655    945294641
## 5656    945115767
## 5657    948140431
## 5658   1039070693
## 5659    945116137
## 5660    945113057
## 5661    948069950
## 5662    951009217
## 5663    945278929
## 5664    986738761
## 5665    952885578
## 5666    945295766
## 5667    946590784
## 5668    945115767
## 5669    968785158
## 5670    949713340
## 5671    960918160
## 5672    945117941
## 5673    948595947
## 5674    996708747
## 5675    949275887
## 5676    950389052
## 5677    951162481
## 5678    948070040
## 5679    951010161
## 5680    951162533
## 5681    951008022
## 5682    952744452
## 5683    948142236
## 5684    948165577
## 5685    948164324
## 5686    951009046
## 5687    948141904
## 5688    952059599
## 5689    948070151
## 5690    948140634
## 5691    952884934
## 5692    960819766
## 5693    960819374
## 5694    948070151
## 5695    951009046
## 5696    951009251
## 5697    952224346
## 5698    954816853
## 5699    951007880
## 5700    951009217
## 5701    994439603
## 5702    960918606
## 5703    953426082
## 5704    986008589
## 5705    954814831
## 5706    952743252
## 5707    952743110
## 5708    952742834
## 5709    952743008
## 5710    960917657
## 5711    954818846
## 5712    952059512
## 5713    968788547
## 5714    954818365
## 5715    986748223
## 5716    952742981
## 5717    960918160
## 5718   1039070693
## 5719    954816853
## 5720    952744582
## 5721    960917865
## 5722    954818149
## 5723    954816853
## 5724    960918381
## 5725    960918333
## 5726    960819182
## 5727    954816963
## 5728    955926108
## 5729    960819851
## 5730    960918425
## 5731    954816242
## 5732    960818935
## 5733    954818244
## 5734    954814782
## 5735    954815298
## 5736    960918218
## 5737    954816963
## 5738    956970748
## 5739    960917702
## 5740    960917609
## 5741    960819512
## 5742    954818365
## 5743    957052972
## 5744    986011269
## 5745    957566237
## 5746    954814639
## 5747    960918106
## 5748    954815680
## 5749    960918499
## 5750    954815132
## 5751    960918106
## 5752    994279619
## 5753    960819972
## 5754    986008334
## 5755    976597909
## 5756    960917528
## 5757    986738498
## 5758    960819270
## 5759    994279649
## 5760    960918218
## 5761    960917771
## 5762    960918106
## 5763    960917558
## 5764    960917609
## 5765    960917609
## 5766    968787368
## 5767    960917865
## 5768    960917657
## 5769    960918106
## 5770    960917771
## 5771    960818505
## 5772    960818373
## 5773    960918160
## 5774    960917609
## 5775    986739028
## 5776    986008260
## 5777    963756658
## 5778    986745621
## 5779    996418263
## 5780    968787421
## 5781    968788764
## 5782   1039065693
## 5783    965514373
## 5784    986738865
## 5785    968787159
## 5786    994457359
## 5787    994455829
## 5788    968786587
## 5789   1055788141
## 5790    986739319
## 5791    986008295
## 5792    986008260
## 5793    994438640
## 5794    997488960
## 5795    995850415
## 5796    994279539
## 5797    986738419
## 5798    986738498
## 5799    994457943
## 5800    986738419
## 5801    996950355
## 5802   1015714238
## 5803   1001961206
## 5804   1017012514
## 5805   1055788174
## 5806   1009341085
## 5807    994439405
## 5808    994279539
## 5809    980135286
## 5810    980818214
## 5811    986735749
## 5812    986738661
## 5813    986738559
## 5814    994289229
## 5815    986008739
## 5816    986738559
## 5817    994459012
## 5818    986738419
## 5819    986738419
## 5820   1002769931
## 5821    986738661
## 5822    986738559
## 5823    985829845
## 5824   1039066670
## 5825    986738613
## 5826    986738559
## 5827    986738761
## 5828   1039070344
## 5829    994457943
## 5830    986008184
## 5831    986739319
## 5832    986008618
## 5833    986738613
## 5834   1055785445
## 5835    986008121
## 5836    990924261
## 5837    993305342
## 5838    994456359
## 5839    994456480
## 5840    994457484
## 5841    994456957
## 5842    994457827
## 5843    990239709
## 5844   1006149047
## 5845    993305296
## 5846    990924190
## 5847    994458606
## 5848    994458330
## 5849    994457641
## 5850   1039066094
## 5851    990239742
## 5852   1039066739
## 5853    993305401
## 5854    998109431
## 5855   1039067403
## 5856   1039069100
## 5857    994456359
## 5858    995253235
## 5859    999310004
## 5860   1039067528
## 5861    994474005
## 5862   1039069165
## 5863   1039066447
## 5864   1000003813
## 5865    994458116
## 5866    994456957
## 5867    994457142
## 5868   1039067222
## 5869    994457417
## 5870   1039067434
## 5871    994440115
## 5872   1039066779
## 5873   1039066699
## 5874    994457641
## 5875   1002770429
## 5876   1039066447
## 5877   1009340636
## 5878   1039066670
## 5879    994456213
## 5880    994458764
## 5881   1039067528
## 5882   1002770641
## 5883    994457057
## 5884   1039066538
## 5885   1039066094
## 5886   1039067284
## 5887    994458546
## 5888    994458003
## 5889    994456213
## 5890    994457962
## 5891    996950674
## 5892    994456636
## 5893    996950674
## 5894    997064028
## 5895    996939545
## 5896    996950608
## 5897    996950542
## 5898   1009339092
## 5899    996950542
## 5900    996950542
## 5901    996950542
## 5902    996950542
## 5903   1014533110
## 5904   1021348160
## 5905   1039066923
## 5906   1039070065
## 5907   1002769606
## 5908   1002769606
## 5909   1001732228
## 5910   1003621148
## 5911   1002769561
## 5912   1002769561
## 5913   1030333611
## 5914   1004923866
## 5915   1006148969
## 5916   1006492881
## 5917   1009935138
## 5918   1055788107
## 5919   1006492955
## 5920   1006492955
## 5921   1006492955
## 5922   1009340636
## 5923   1008086617
## 5924   1020575100
## 5925   1009695904
## 5926   1009340636
## 5927   1017556925
## 5928   1012097954
## 5929   1010289168
## 5930   1019362987
## 5931   1015738983
## 5932   1011328056
## 5933   1009937419
## 5934   1011328004
## 5935    945114153
## 5936   1011328004
## 5937   1012169711
## 5938   1014004783
## 5939   1055791286
## 5940   1014004783
## 5941   1012830712
## 5942   1016419671
## 5943   1020056483
## 5944   1014004730
## 5945   1030933052
## 5946   1015205545
## 5947   1014613681
## 5948   1014613681
## 5949   1014613681
## 5950   1039065866
## 5951   1015713629
## 5952   1015205474
## 5953   1015205474
## 5954   1036123436
## 5955   1019363280
## 5956   1019363280
## 5957   1033397995
## 5958   1037686951
## 5959   1031799237
## 5960   1019363219
## 5961   1019363219
## 5962   1020056776
## 5963   1020056776
## 5964   1019363168
## 5965   1019363168
## 5966   1019363168
## 5967   1020056711
## 5968   1060013900
## 5969   1020056711
## 5970   1021348305
## 5971   1022478671
## 5972   1029558644
## 5973   1023517288
## 5974   1024891611
## 5975   1024891677
## 5976   1027051203
## 5977   1027051268
## 5978   1046105730
## 5979   1030232314
## 5980   1029516219
## 5981   1029516219
## 5982   1029516219
## 5983   1030232487
## 5984   1035175467
## 5985   1031799315
## 5986   1033944353
## 5987   1033879863
## 5988   1039067403
## 5989   1060013921
## 5990   1036367646
## 5991   1036984289
## 5992   1033880299
## 5993   1033880299
## 5994   1033880299
## 5995   1033880299
## 5996   1033880263
## 5997   1033880263
## 5998   1033880263
## 5999   1039066538
## 6000   1033880263
## 6001   1039067617
## 6002   1033880263
## 6003   1033880263
## 6004   1033879938
## 6005   1035175594
## 6006   1042494862
## 6007   1036367914
## 6008   1036367914
## 6009   1036367914
## 6010   1039070904
## 6011   1036367914
## 6012   1036367914
## 6013   1036367914
## 6014   1060013944
## 6015   1045502600
## 6016   1038203534
## 6017   1038203534
## 6018   1038203534
## 6019   1038203534
## 6020   1038203534
## 6021   1039066739
## 6022   1046106724
## 6023   1041284839
## 6024   1060736279
## 6025   1040659215
## 6026   1041284839
## 6027   1040659215
## 6028   1041284839
## 6029   1041284703
## 6030   1043686934
## 6031   1040659119
## 6032   1042495022
## 6033   1043687080
## 6034   1043687080
## 6035   1043687080
## 6036   1043687080
## 6037   1043687014
## 6038   1043687015
## 6039   1055798065
## 6040   1046106675
## 6041   1049142071
## 6042   1048704049
## 6043   1048704049
## 6044   1055798009
## 6045   1049142167
## 6046   1049142157
## 6047   1049142105
## 6048   1049749056
## 6049   1049749117
## 6050   1049749117
## 6051   1055797910
## 6052   1055797818
## 6053   1055788249
## 6054   1055797845
## 6055   1055788276
## 6056   1055797723
## 6057   1055788246
## 6058   1055797789
## 6059   1060013871
## 6060   1273541953
## 6061   1273720546
## 6062   1273633559
## 6063   1273714533
## 6064   1273720416
## 6065   1273714417
## 6066   1273542992
## 6067   1273541973
## 6068   1273542073
## 6069   1273543009
## 6070   1273720299
## 6071   1273720368
## 6072   1273720163
## 6073   1273714421
## 6074   1273714480
## 6075   1273542081
## 6076   1273542019
## 6077   1273542870
## 6078   1273720435
## 6079   1273542817
## 6080   1273714380
## 6081   1273714490
## 6082   1273542012
## 6083   1273542028
## 6084   1273542066
## 6085   1273542033
## 6086   1273541999
## 6087   1273542882
## 6088   1273541967
## 6089   1273542808
## 6090   1273720582
## 6091   1273720348
## 6092   1273542879
## 6093   1273542969
## 6094   1273720551
## 6095   1273541964
## 6096   1273542085
## 6097   1273542046
## 6098   1273541939
## 6099   1274150193
## 6100   1273541943
## 6101   1274150314
## 6102   1274150321
## 6103   1273720397
## 6104   1274150200
## 6105   1274149537
## 6106   1273553986
## 6107   1274150289
## 6108   1274150179
## 6109   1273720461
## 6110   1273542961
## 6111   1274150085
## 6112   1274149939
## 6113   1274149910
## 6114   1274150249
## 6115   1273720591
## 6116   1274149580
## 6117   1274150130
## 6118   1274157016
## 6119   1274150341
## 6120   1273720255
## 6121   1273542984
## 6122   1274150005
## 6123   1273720384
## 6124   1273720329
## 6125   1274150047
## 6126   1273542596
## 6127   1273720454
## 6128   1273897820
## 6129    834828285
## 6130    834828185
## 6131    834828440
## 6132    834828337
## 6133    834828155
## 6134    834828059
## 6135    834828085
## 6136    834828318
## 6137    834828085
## 6138    834828318
## 6139    834828227
## 6140    834828285
## 6141    834828137
## 6142    834828168
## 6143    834828108
## 6144    834828268
## 6145    834828302
## 6146    834828185
## 6147    834828123
## 6148    834828059
## 6149    834828155
## 6150    834828108
## 6151    834828168
## 6152    834828337
## 6153    834828248
## 6154    834828085
## 6155    834828084
## 6156    834828337
## 6157    834828248
## 6158    834828227
## 6159    834828248
## 6160    834828361
## 6161    834828059
## 6162    834828155
## 6163    834828185
## 6164    834828632
## 6165    834828199
## 6166    834828123
## 6167    834828302
## 6168    834828361
## 6169    834828155
## 6170    834828286
## 6171    834828248
## 6172    834828085
## 6173    834828337
## 6174    834828059
## 6175    834828059
## 6176    834828108
## 6177   1032769612
## 6178   1032678367
## 6179   1033543456
## 6180   1032769595
## 6181   1032769612
## 6182   1032676906
## 6183   1032768899
## 6184   1032859878
## 6185   1033604138
## 6186   1032678174
## 6187   1032676906
## 6188   1032859767
## 6189   1032772901
## 6190   1032766375
## 6191   1032679370
## 6192   1032679359
## 6193   1032679865
## 6194   1032679359
## 6195   1032676887
## 6196   1032679331
## 6197   1032679449
## 6198   1032679577
## 6199   1032679682
## 6200   1032679990
## 6201   1032859220
## 6202   1032679469
## 6203   1032769282
## 6204   1032769282
## 6205   1032859270
## 6206   1033604541
## 6207   1032679534
## 6208   1032680083
## 6209   1032766234
## 6210   1032766234
## 6211   1032766234
## 6212   1032679707
## 6213   1032679843
## 6214   1032678268
## 6215   1032860971
## 6216   1032679359
## 6217   1032680420
## 6218   1032676887
## 6219   1032678268
## 6220   1032860951
## 6221   1032680004
## 6222   1032766347
## 6223   1032679978
## 6224   1033192223
## 6225   1032680420
## 6226   1032858907
## 6227   1032766463
## 6228   1032766168
## 6229   1032859343
## 6230   1032859504
## 6231   1032766852
## 6232   1032858995
## 6233   1032680233
## 6234   1032768775
## 6235   1032859847
## 6236   1032859012
## 6237   1032859119
## 6238   1032679534
## 6239   1032679449
## 6240   1032679887
## 6241   1032678153
## 6242   1033604225
## 6243   1032859587
## 6244   1032859389
## 6245   1032769282
## 6246   1032677550
## 6247   1032859878
## 6248   1032677405
## 6249   1032769523
## 6250   1032769002
## 6251   1032677594
## 6252   1032677740
## 6253   1032679682
## 6254   1034930027
## 6255   1032677346
## 6256   1034930090
## 6257   1032769237
## 6258   1032677485
## 6259   1032859750
## 6260   1032859050
## 6261   1032766929
## 6262   1032860933
## 6263   1032769543
## 6264   1032859587
## 6265   1032677362
## 6266   1032769506
## 6267   1032769543
## 6268   1032677266
## 6269   1032676888
## 6270   1032680097
## 6271   1034930190
## 6272   1032859254
## 6273   1032677507
## 6274   1032679936
## 6275   1034930133
## 6276   1032677333
## 6277   1032769250
## 6278   1033604248
## 6279   1032677313
## 6280   1034929996
## 6281   1032676888
## 6282   1032679865
## 6283   1032678282
## 6284   1032680097
## 6285   1032680212
## 6286   1032680375
## 6287   1032767204
## 6288   1033604322
## 6289   1032677637
## 6290   1032859151
## 6291   1032676792
## 6292   1032676888
## 6293   1032678352
## 6294   1032679978
## 6295   1032768802
## 6296   1034930125
## 6297   1032679488
## 6298   1032677282
## 6299   1032678268
## 6300   1034930060
## 6301   1032680332
## 6302   1032858930
## 6303   1032769523
## 6304   1032858979
## 6305   1032677541
## 6306   1032859878
## 6307   1032676999
## 6308   1032677012
## 6309   1032678432
## 6310   1032678324
## 6311   1035340620
## 6312   1032677082
## 6313   1037009003
## 6314   1037008981
## 6315    973747402
## 6316    973748254
## 6317    973747284
## 6318    973747340
## 6319    973747188
## 6320    973748491
## 6321    973746231
## 6322    973747427
## 6323    973746527
## 6324    973747709
## 6325    973747949
## 6326    973747559
## 6327    973746243
## 6328    973748543
## 6329    973746450
## 6330    973747797
## 6331    973746864
## 6332    973748307
## 6333    973747985
## 6334    973747797
## 6335    973747271
## 6336    973746450
## 6337    973747459
## 6338    973746273
## 6339    973747188
## 6340    973747258
## 6341    973747385
## 6342    973747591
## 6343    973746494
## 6344    973746365
## 6345    973748336
## 6346    973746527
## 6347    973747740
## 6348    973746450
## 6349    973747985
## 6350    973746814
## 6351    973746463
## 6352    973746569
## 6353    973747459
## 6354    973748587
## 6355    973748034
## 6356    973747559
## 6357    973748614
## 6358    973748413
## 6359    973748196
## 6360    973747315
## 6361    973748508
## 6362    973746543
## 6363    973749001
## 6364    973747591
## 6365    973748111
## 6366    973746681
## 6367    973747156
## 6368    973747643
## 6369    973747911
## 6370    973747105
## 6371    973746655
## 6372    973747354
## 6373    973746231
## 6374    973748587
## 6375    973748163
## 6376    973748196
## 6377    973748228
## 6378    973748401
## 6379    973747591
## 6380    973746527
## 6381    973748045
## 6382    973747188
## 6383    973747848
## 6384    973747591
## 6385    973747848
## 6386    973748787
## 6387    973748676
## 6388    973748069
## 6389    973746476
## 6390    973747017
## 6391    973747559
## 6392    973748112
## 6393    973746543
## 6394    973747459
## 6395    973746707
## 6396    973748587
## 6397    973747877
## 6398    973746961
## 6399    973748587
## 6400    973748427
## 6401    973747459
## 6402    973747017
## 6403    973748427
## 6404    973746569
## 6405    973748228
## 6406    973748443
## 6407    973746569
## 6408    973747797
## 6409    973747895
## 6410    973747964
## 6411    973747877
## 6412    973746613
## 6413    973748196
## 6414    973747658
## 6415    973747924
## 6416    973748964
## 6417    973747685
## 6418    973747621
## 6419    973748979
## 6420    973749013
## 6421    973748228
## 6422    973746214
## 6423    973748979
## 6424    973747685
## 6425    973747777
## 6426    973747797
## 6427    973749026
## 6428    973747327
## 6429    973748614
## 6430    973746627
## 6431    973748277
## 6432    973747591
## 6433    973747911
## 6434    973747643
## 6435    973746494
## 6436    973746961
## 6437    973748919
## 6438    973747765
## 6439    973747609
## 6440    973746929
## 6441    973747752
## 6442    973749049
## 6443    973748307
## 6444    973747877
## 6445    973747245
## 6446    973747685
## 6447    973747697
## 6448    973747723
## 6449    973747643
## 6450    973747609
## 6451    973747559
## 6452    973746995
## 6453    973747877
## 6454    973747848
## 6455    973747723
## 6456    973747591
## 6457    973747877
## 6458    973748508
## 6459    973747985
## 6460    973748713
## 6461    973746365
## 6462    973748787
## 6463    973748523
## 6464    973747740
## 6465    973746655
## 6466    973747658
## 6467    973748350
## 6468    973748196
## 6469    973748228
## 6470    973748254
## 6471    973748809
## 6472    973747643
## 6473    973748598
## 6474    973747740
## 6475    973746668
## 6476    973748228
## 6477    973746214
## 6478    973748361
## 6479    973748614
## 6480    973746655
## 6481    973747385
## 6482    973746896
## 6483    973746974
## 6484    973748941
## 6485    973748196
## 6486    973748336
## 6487    973746707
## 6488    973747591
## 6489    973746668
## 6490    973748350
## 6491    973747658
## 6492    973748523
## 6493    973746734
## 6494    973747591
## 6495    973747539
## 6496    973747482
## 6497    973746760
## 6498    973746597
## 6499    973747938
## 6500    973747685
## 6501    973747017
## 6502   1174450075
## 6503   1174450069
## 6504   1174450074
## 6505   1174450073
## 6506   1174450068
## 6507   1174450072
## 6508   1174450057
## 6509   1174450070
## 6510   1174450053
## 6511   1174450079
## 6512   1174450076
## 6513   1174450052
## 6514   1174450054
## 6515   1174450064
## 6516   1174450063
## 6517   1174450061
## 6518   1174450051
## 6519   1174450080
## 6520   1174450056
## 6521   1174450059
## 6522    847057147
## 6523    847057223
## 6524    847058210
## 6525    847056854
## 6526    847057119
## 6527    847057202
## 6528    847056901
## 6529    853005249
## 6530    847057696
## 6531    847057256
## 6532    847056901
## 6533    847057520
## 6534    853005393
## 6535    847057727
## 6536    847057363
## 6537    847058235
## 6538    847057202
## 6539    847057626
## 6540    847057301
## 6541    847057765
## 6542    847058110
## 6543    847056547
## 6544    847057385
## 6545    847057223
## 6546    847057504
## 6547    847057018
## 6548    847058186
## 6549    847057256
## 6550    847057444
## 6551    847057471
## 6552    847057061
## 6553    847056783
## 6554    847057136
## 6555    847057564
## 6556    847057120
## 6557    847057136
## 6558    847057240
## 6559    847057240
## 6560    847057202
## 6561    847056984
## 6562    847056803
## 6563    847057094
## 6564    847056510
## 6565    847056819
## 6566    847057482
## 6567    847057520
## 6568    847057594
## 6569    847057827
## 6570    847056984
## 6571    847056636
## 6572    847058110
## 6573    847058173
## 6574    847057385
## 6575    847057278
## 6576    847056948
## 6577    847056636
## 6578    847056901
## 6579    847057314
## 6580    847057119
## 6581    847057444
## 6582    847057328
## 6583    847057520
## 6584    847057626
## 6585    847056926
## 6586    847057363
## 6587    847056948
## 6588    847056636
## 6589    847056926
## 6590    847056783
## 6591    847056547
## 6592    847058159
## 6593    847057363
## 6594    847056636
## 6595    847057626
## 6596    847057385
## 6597    847057047
## 6598    847057018
## 6599    847057179
## 6600    847057776
## 6601    847057575
## 6602    847056901
## 6603    847057444
## 6604    847057415
## 6605    847057552
## 6606    847056854
## 6607    847057363
## 6608    847057328
## 6609    847057094
## 6610    847056854
## 6611    847056854
## 6612    847056547
## 6613    847056510
## 6614    847056510
## 6615    847056670
## 6616    847056819
## 6617    853005492
## 6618    847057827
## 6619    847058362
## 6620    853005800
## 6621    847058174
## 6622    847057696
## 6623    847057928
## 6624    853005393
## 6625    853005621
## 6626    981308121
## 6627    981308154
## 6628    981308140
## 6629    981308246
## 6630    981308213
## 6631    981308224
## 6632    981308294
## 6633    981304357
## 6634    981308309
## 6635    981304357
## 6636    981308234
## 6637    981308177
## 6638    981304316
## 6639    981308154
## 6640    981308140
## 6641    981304291
## 6642    981308009
## 6643    981304887
## 6644    981307942
## 6645    981307942
## 6646    981304357
## 6647    981307942
## 6648    981307968
## 6649    981307838
## 6650    981304524
## 6651    981304524
## 6652    981304557
## 6653    981304635
## 6654    981304606
## 6655    981307823
## 6656    981307823
## 6657    981304524
## 6658   1389771630
## 6659   1416075134
## 6660   1390332781
## 6661   1389806635
## 6662   1389730389
## 6663   1389721577
## 6664   1389722765
## 6665   1390465407
## 6666   1389806534
## 6667   1389721943
## 6668   1416075151
## 6669   1392361524
## 6670   1389806512
## 6671   1389806500
## 6672   1392361495
## 6673   1389806694
## 6674   1389721548
## 6675   1389722583
## 6676   1416074954
## 6677   1389721750
## 6678   1389806738
## 6679   1389722713
## 6680   1389867840
## 6681   1416075195
## 6682   1389722598
## 6683   1389721555
## 6684   1389723752
## 6685   1416075214
## 6686   1416075186
## 6687   1416075336
## 6688   1389721837
## 6689   1389722661
## 6690   1389722398
## 6691   1389721935
## 6692   1389771994
## 6693   1416075365
## 6694   1389723398
## 6695   1416075122
## 6696   1389721528
## 6697   1389721611
## 6698   1389721880
## 6699   1389722718
## 6700   1389722656
## 6701   1389721692
## 6702   1416075166
## 6703   1389723727
## 6704   1389772593
## 6705   1389722696
## 6706   1389727818
## 6707   1390248633
## 6708   1389722066
## 6709   1389722650
## 6710   1389806551
## 6711   1416075239
## 6712   1416075232
## 6713   1416075296
## 6714   1416075161
## 6715   1389772624
## 6716   1416075350
## 6717   1416075210
## 6718   1389771156
## 6719   1416075281
## 6720   1390248823
## 6721   1389724072
## 6722   1389722376
## 6723   1389722731
## 6724   1416074901
## 6725   1389727905
## 6726   1389771972
## 6727   1416075321
## 6728   1389727866
## 6729   1389727843
## 6730   1416074904
## 6731   1389727922
## 6732   1389727802
## 6733   1389770804
## 6734   1389722725
## 6735   1416075331
## 6736   1389722602
## 6737   1389723788
## 6738   1449693140
## 6739   1389771542
## 6740   1449693163
## 6741   1389722628
## 6742   1389772590
## 6743   1389721498
## 6744   1449693148
## 6745   1389723595
## 6746   1389772585
## 6747   1389727890
## 6748   1389723643
## 6749   1389722704
## 6750   1390248771
## 6751   1389723529
## 6752   1404126075
## 6753   1389723592
## 6754   1389772588
## 6755   1390150283
## 6756   1416074797
## 6757   1389723691
## 6758   1390151672
## 6759   1416074943
## 6760   1404126065
## 6761   1394397488
## 6762   1392238405
## 6763   1392124587
## 6764   1389723664
## 6765   1416074859
## 6766   1413132672
## 6767   1413132591
## 6768   1445451791
## 6769    832523607
## 6770    832523129
## 6771    832525129
## 6772    833532967
## 6773    832523361
## 6774    832525157
## 6775    832523229
## 6776    832523307
## 6777    832523276
## 6778    832523201
## 6779    833532967
## 6780    832523411
## 6781    832523550
## 6782    832523738
## 6783    832523013
## 6784    832523045
## 6785    832523339
## 6786    832525181
## 6787    832523045
## 6788    832525093
## 6789    832525181
## 6790    833534728
## 6791    832523386
## 6792    832523276
## 6793    832523411
## 6794    832523229
## 6795    832523478
## 6796    832523276
## 6797    832523082
## 6798    832523151
## 6799    832523340
## 6800    832523436
## 6801    832523339
## 6802    832523276
## 6803    832523013
## 6804    832525157
## 6805    832523082
## 6806    832523229
## 6807    832523386
## 6808    832523386
## 6809    832523307
## 6810    832525157
## 6811    832523045
## 6812    832523201
## 6813    832523411
## 6814    832523013
## 6815    832523386
## 6816    832523129
## 6817    832523550
## 6818    832525093
## 6819    832525157
## 6820    832523045
## 6821    832523013
## 6822    832523013
## 6823    832523340
## 6824    832523082
## 6825    832523411
## 6826    832523386
## 6827    833532966
## 6828    833534266
## 6829    833534728
## 6830    833533335
## 6831   1466993349
## 6832   1466993118
## 6833   1466993530
## 6834   1466993354
## 6835   1466993529
## 6836   1466993346
## 6837   1466993115
## 6838   1466993204
## 6839   1466993344
## 6840   1466993342
## 6841   1466993378
## 6842   1466993229
## 6843   1466993276
## 6844   1466993488
## 6845   1466993335
## 6846   1466993481
## 6847   1466993384
## 6848   1466993158
## 6849   1466993190
## 6850   1466993355
## 6851   1466993234
## 6852   1466993333
## 6853   1466993372
## 6854   1466993341
## 6855   1466993490
## 6856   1466993381
## 6857   1466993409
## 6858   1466993382
## 6859   1466993111
## 6860   1466993067
## 6861   1466993225
## 6862   1466993108
## 6863   1466993170
## 6864   1466993210
## 6865   1466993109
## 6866   1466993120
## 6867   1466993261
## 6868   1466993084
## 6869   1466993083
## 6870   1466993138
## 6871   1466993078
## 6872   1466993247
## 6873   1466993080
## 6874   1093888283
## 6875   1109812071
## 6876   1107100653
## 6877   1093889645
## 6878   1093889934
## 6879   1093886586
## 6880   1093887939
## 6881   1107100488
## 6882   1093889464
## 6883   1093889445
## 6884   1093889592
## 6885   1093886942
## 6886   1093888245
## 6887   1093887342
## 6888   1093887872
## 6889   1093887332
## 6890   1093887890
## 6891   1093889723
## 6892   1109811944
## 6893   1093889928
## 6894   1093889918
## 6895   1093887714
## 6896   1107100407
## 6897   1093887565
## 6898   1109812244
## 6899   1093886954
## 6900   1109816473
## 6901   1093886809
## 6902   1093889939
## 6903   1093886816
## 6904   1093889943
## 6905   1093889745
## 6906   1093889923
## 6907   1093887933
## 6908   1093888232
## 6909   1093888563
## 6910   1093886949
## 6911   1093888257
## 6912   1093887515
## 6913   1093888221
## 6914   1093886957
## 6915   1093887808
## 6916   1093887255
## 6917   1093887235
## 6918   1093886850
## 6919   1093887592
## 6920   1093886864
## 6921   1109812957
## 6922   1093886842
## 6923   1093888517
## 6924   1109812135
## 6925   1093886838
## 6926   1093887801
## 6927   1097643542
## 6928   1093886607
## 6929   1093886800
## 6930   1093886688
## 6931   1093887320
## 6932   1093886662
## 6933   1093887228
## 6934   1093887305
## 6935   1093887459
## 6936   1093886628
## 6937   1093887310
## 6938   1093888850
## 6939   1093887546
## 6940   1093889656
## 6941   1109816599
## 6942   1093887797
## 6943   1109817081
## 6944   1107100370
## 6945   1093886682
## 6946   1093889432
## 6947   1093886675
## 6948   1093886696
## 6949   1093888605
## 6950   1109816608
## 6951   1093887570
## 6952   1093889528
## 6953   1093887494
## 6954   1093887748
## 6955   1093886646
## 6956   1093886639
## 6957   1093886710
## 6958   1093887358
## 6959   1093886978
## 6960   1093887247
## 6961   1093888806
## 6962   1093886731
## 6963   1093887657
## 6964   1093889070
## 6965   1093887225
## 6966   1093887270
## 6967   1093887900
## 6968   1093887778
## 6969   1093886717
## 6970   1093889767
## 6971   1093889882
## 6972   1093889880
## 6973   1093886794
## 6974   1093887555
## 6975   1093887368
## 6976   1093887455
## 6977   1093887370
## 6978   1093889776
## 6979   1093887787
## 6980   1093886846
## 6981   1093887446
## 6982   1093887000
## 6983   1093886996
## 6984   1093887641
## 6985   1093888808
## 6986   1093888619
## 6987   1109813581
## 6988   1093889955
## 6989   1093888474
## 6990   1093887350
## 6991   1107100646
## 6992   1093889376
## 6993   1093886735
## 6994   1093887653
## 6995   1107100458
## 6996   1093886668
## 6997   1109812788
## 6998   1107102322
## 6999   1093887804
## 7000   1093889047
## 7001   1093889492
## 7002   1093888032
## 7003   1093887254
## 7004   1093887241
## 7005   1109816504
## 7006   1093887379
## 7007   1093887539
## 7008   1093887217
## 7009   1093886835
## 7010   1109812900
## 7011   1093887961
## 7012   1093886804
## 7013   1093888544
## 7014   1093887835
## 7015   1107100521
## 7016   1093888299
## 7017   1109815125
## 7018   1093888109
## 7019   1093887385
## 7020   1109812764
## 7021   1093886811
## 7022   1107100717
## 7023   1109814401
## 7024   1097643815
## 7025   1107100577
## 7026   1093888629
## 7027   1093888505
## 7028   1093887686
## 7029   1093888656
## 7030   1109814362
## 7031   1107100440
## 7032   1093887670
## 7033   1093887634
## 7034   1093887667
## 7035   1093889755
## 7036   1093888754
## 7037   1093887626
## 7038   1093889018
## 7039   1093888602
## 7040   1093888574
## 7041   1107100419
## 7042   1093887315
## 7043   1093887680
## 7044   1107100678
## 7045   1109816658
## 7046   1093887841
## 7047   1093887726
## 7048   1093889299
## 7049   1109812953
## 7050   1093887300
## 7051   1093889479
## 7052   1109813193
## 7053   1093887324
## 7054   1107100382
## 7055   1093887757
## 7056   1093887605
## 7057   1107100700
## 7058   1093889696
## 7059   1093887354
## 7060   1093888293
## 7061   1093887507
## 7062   1093887733
## 7063   1093888481
## 7064   1109814931
## 7065   1107100536
## 7066   1093887692
## 7067   1093887208
## 7068   1107101191
## 7069   1093888986
## 7070   1093886983
## 7071   1109816462
## 7072   1109814414
## 7073   1473258241
## 7074   1473258327
## 7075   1473258165
## 7076   1473258343
## 7077   1473258147
## 7078   1473258352
## 7079   1473258274
## 7080   1473258331
## 7081   1473258276
## 7082   1473258322
## 7083   1473258311
## 7084   1473258231
## 7085   1473258320
## 7086   1473258239
## 7087   1473258424
## 7088   1473258305
## 7089   1473258392
## 7090   1473258238
## 7091   1473258304
## 7092   1473258161
## 7093   1473258167
## 7094   1473258283
## 7095   1473258220
## 7096   1473258209
## 7097   1473258445
## 7098   1473258346
## 7099   1473258360
## 7100   1473258409
## 7101   1473258315
## 7102   1473258371
## 7103   1473258242
## 7104   1473258169
## 7105   1473258329
## 7106   1473258309
## 7107   1473258388
## 7108   1473258340
## 7109   1473258318
## 7110   1473258228
## 7111   1473258373
## 7112   1473258214
## 7113   1473258181
## 7114   1473258230
## 7115   1473258386
## 7116   1473258362
## 7117   1473258269
## 7118   1473258378
## 7119   1473258374
## 7120   1473258404
## 7121   1473258313
## 7122   1473258226
## 7123   1473258244
## 7124   1473258337
## 7125   1473258248
## 7126   1473258403
## 7127   1473258440
## 7128   1473258450
## 7129   1473258356
## 7130   1473258438
## 7131   1473258272
## 7132   1473258436
## 7133   1473258396
## 7134   1473258383
## 7135   1473258427
## 7136   1473258421
## 7137   1473258369
## 7138   1473258348
## 7139   1473258291
## 7140   1473258281
## 7141   1473258287
## 7142   1473258334
## 7143    974768260
## 7144    974768402
## 7145    974768903
## 7146    974767953
## 7147    974769666
## 7148    974767808
## 7149    974770180
## 7150    974768430
## 7151    974769902
## 7152    974769935
## 7153    974768654
## 7154    974767808
## 7155    974769730
## 7156    974767845
## 7157    974756704
## 7158    974770079
## 7159    974768798
## 7160    974767746
## 7161    974770589
## 7162    974769370
## 7163    974768872
## 7164    974767808
## 7165    974756766
## 7166    974770180
## 7167    974770325
## 7168    974769818
## 7169    974770137
## 7170    974769125
## 7171    974768022
## 7172    974769863
## 7173    974767917
## 7174    974769312
## 7175    974767879
## 7176    974770474
## 7177    974769125
## 7178    974769482
## 7179    974769561
## 7180    974768903
## 7181    974769902
## 7182    974756766
## 7183    974769253
## 7184    974768604
## 7185    974770536
## 7186    974768471
## 7187    974769658
## 7188    974770180
## 7189    974770079
## 7190    974768965
## 7191    974770281
## 7192    974770104
## 7193    974768999
## 7194    974769207
## 7195    974767879
## 7196    974767845
## 7197    974768632
## 7198    974768632
## 7199    974768872
## 7200    974768285
## 7201    974768834
## 7202    974768225
## 7203    974769843
## 7204    974767917
## 7205    974767845
## 7206    974769730
## 7207    974769659
## 7208    974770360
## 7209    974769586
## 7210    974770325
## 7211    974756704
## 7212    974769370
## 7213    974768402
## 7214    974768903
## 7215    974770104
## 7216    974769963
## 7217    974767746
## 7218    974768367
## 7219    974769659
## 7220    974768349
## 7221    974769561
## 7222    974770180
## 7223    974768604
## 7224    974756766
## 7225    974769253
## 7226    974768260
## 7227    974770248
## 7228    974756976
## 7229    974767983
## 7230    974769843
## 7231    974769963
## 7232    974770007
## 7233    974769034
## 7234    974767808
## 7235    974770281
## 7236    974757072
## 7237    974767953
## 7238    974756976
## 7239    974756976
## 7240    974756976
## 7241    974769561
## 7242    974757072
## 7243    974757005
## 7244    974757005
## 7245    974769818
## 7246    974756976
## 7247    974770227
## 7248    974768834
## 7249    974769902
## 7250    974767809
## 7251    974768798
## 7252    974768104
## 7253    858707138
## 7254    858707194
## 7255    858707194
## 7256    858707194
## 7257    858707139
## 7258    858707139
## 7259    858707138
## 7260    858707138
## 7261    858707138
## 7262    858707248
## 7263    858707310
## 7264    858707138
## 7265    858707247
## 7266    858707194
## 7267    858707310
## 7268    858707310
## 7269    858707138
## 7270    858707194
## 7271    858707138
## 7272    858707138
## 7273    858707194
## 7274    858707248
## 7275    858707310
## 7276    858707310
## 7277    858707464
## 7278   1140202251
## 7279   1140202396
## 7280   1140202299
## 7281   1140202319
## 7282   1140202390
## 7283   1140202266
## 7284   1140202294
## 7285   1140202371
## 7286   1140202408
## 7287   1140202246
## 7288   1140202271
## 7289   1140202307
## 7290   1140202374
## 7291   1140202850
## 7292   1140202339
## 7293   1140202705
## 7294   1140202402
## 7295   1140202334
## 7296   1140202838
## 7297   1140202700
## 7298   1140202636
## 7299   1366389910
## 7300   1366392410
## 7301   1366389683
## 7302   1366392989
## 7303   1366389877
## 7304   1366389853
## 7305   1366392466
## 7306   1366389759
## 7307   1366390158
## 7308   1366389889
## 7309   1366390952
## 7310   1366390956
## 7311   1366389797
## 7312   1366389671
## 7313   1366389694
## 7314   1366389699
## 7315   1366391610
## 7316   1366389806
## 7317   1366389728
## 7318   1366389737
## 7319   1366390915
## 7320   1366391137
## 7321   1366389915
## 7322   1366390910
## 7323   1366390963
## 7324   1366391584
## 7325   1366389926
## 7326   1366392529
## 7327   1366393248
## 7328   1366393308
## 7329   1366390187
## 7330   1366393234
## 7331   1366390899
## 7332   1366393535
## 7333   1366393591
## 7334   1366392165
## 7335   1366391603
## 7336   1366391663
## 7337   1366390127
## 7338    832228931
## 7339    832229657
## 7340    832228931
## 7341    832229007
## 7342    832229039
## 7343    832229039
## 7344    832229161
## 7345    832228979
## 7346    832228796
## 7347    832228859
## 7348    832229039
## 7349    832228931
## 7350    832228859
## 7351    832229561
## 7352    832228958
## 7353    832228906
## 7354    832229068
## 7355    832228958
## 7356    832229007
## 7357    832228979
## 7358    832228958
## 7359    832228796
## 7360    832228958
## 7361    832229068
## 7362    832228906
## 7363    832228906
## 7364    832228859
## 7365    832228859
## 7366    832228796
## 7367    832228979
## 7368    832229068
## 7369    832228931
## 7370    832229985
## 7371    832229879
## 7372    832228859
## 7373    832228796
## 7374    832229879
## 7375    832228906
## 7376   1318796720
## 7377   1322169967
## 7378   1322169717
## 7379   1319746142
## 7380   1439687078
## 7381   1322170542
## 7382   1322170475
## 7383   1322169932
## 7384   1322169695
## 7385   1319744320
## 7386   1305605384
## 7387   1410971707
## 7388   1322169641
## 7389   1319744507
## 7390   1319745852
## 7391   1322169697
## 7392   1322167325
## 7393   1367466511
## 7394   1305604773
## 7395   1322719227
## 7396   1368072767
## 7397   1322169588
## 7398   1322169669
## 7399   1322169653
## 7400   1322170930
## 7401   1414562221
## 7402   1305605614
## 7403   1419495810
## 7404   1367729182
## 7405   1425959805
## 7406   1322169711
## 7407   1319745467
## 7408   1318721589
## 7409   1305602381
## 7410   1303371127
## 7411   1316496812
## 7412   1322169763
## 7413   1322167612
## 7414   1410971787
## 7415   1322169973
## 7416   1322169645
## 7417   1318721485
## 7418   1412452845
## 7419   1412457717
## 7420   1322170149
## 7421   1412471587
## 7422   1322169801
## 7423   1322167341
## 7424   1322167292
## 7425   1322171839
## 7426   1419495799
## 7427   1322169947
## 7428   1322169693
## 7429   1318725610
## 7430   1305604618
## 7431   1322171335
## 7432   1305605225
## 7433   1322169954
## 7434   1305604875
## 7435   1319744666
## 7436   1322167149
## 7437   1322170564
## 7438   1322170785
## 7439   1415258524
## 7440   1412321963
## 7441   1322170045
## 7442   1322170922
## 7443   1324101279
## 7444   1319746801
## 7445   1305605468
## 7446   1318835468
## 7447   1412471207
## 7448   1322170518
## 7449   1322167116
## 7450   1322167802
## 7451   1322170331
## 7452   1322170196
## 7453   1322169924
## 7454   1322170066
## 7455   1412470814
## 7456   1367729581
## 7457   1412471725
## 7458   1305604734
## 7459   1318835841
## 7460   1319744255
## 7461   1305605572
## 7462   1318797469
## 7463   1319746199
## 7464   1322170644
## 7465   1305605670
## 7466   1367466490
## 7467   1322171045
## 7468   1322173362
## 7469   1316922546
## 7470   1410971832
## 7471   1305604501
## 7472   1319748211
## 7473   1318725545
## 7474   1318835610
## 7475   1322167231
## 7476   1405181557
## 7477   1322167807
## 7478   1305604576
## 7479   1303371101
## 7480   1322171604
## 7481   1319745406
## 7482   1305605359
## 7483   1318796382
## 7484   1425960044
## 7485   1305605431
## 7486   1305602329
## 7487   1319748409
## 7488   1322168606
## 7489   1322170988
## 7490   1318724175
## 7491   1317417327
## 7492   1322169255
## 7493   1322167657
## 7494   1322167294
## 7495   1322167764
## 7496   1322167056
## 7497   1316394238
## 7498   1318694896
## 7499   1322167180
## 7500   1305605593
## 7501   1317612908
## 7502   1320820975
## 7503   1319748416
## 7504   1305606854
## 7505   1316535850
## 7506   1305606326
## 7507   1319744880
## 7508   1320505613
## 7509   1412478838
## 7510   1317277244
## 7511   1367774627
## 7512   1316394075
## 7513   1322167119
## 7514   1319744628
## 7515   1317413795
## 7516   1319745991
## 7517   1317612608
## 7518   1318796409
## 7519   1322871160
## 7520   1322167122
## 7521   1322174318
## 7522   1318721568
## 7523   1322170898
## 7524   1319748414
## 7525   1368072937
## 7526   1319744413
## 7527   1412154802
## 7528   1414562338
## 7529   1305605332
## 7530   1322167707
## 7531   1368060971
## 7532   1320701272
## 7533   1356760541
## 7534   1333323786
## 7535   1317417331
## 7536   1322171670
## 7537   1405650065
## 7538   1322167658
## 7539   1341268936
## 7540   1305604460
## 7541   1319746322
## 7542   1305605527
## 7543   1319744919
## 7544   1339446902
## 7545   1305605199
## 7546   1367968341
## 7547   1317413816
## 7548   1339447083
## 7549   1318721824
## 7550   1316409175
## 7551   1414850854
## 7552   1319743664
## 7553   1425960095
## 7554   1319744848
## 7555   1325534468
## 7556   1318750105
## 7557   1316416730
## 7558   1318796541
## 7559   1341268726
## 7560   1367794617
## 7561   1305603014
## 7562   1320128368
## 7563   1316537666
## 7564   1319744696
## 7565   1369722162
## 7566   1322719969
## 7567   1305603880
## 7568   1316416643
## 7569   1341268857
## 7570   1339446959
## 7571   1319743714
## 7572   1316535636
## 7573   1305605408
## 7574   1316536060
## 7575   1322167635
## 7576   1322167363
## 7577   1319744759
## 7578   1414562300
## 7579   1319745276
## 7580   1414561763
## 7581   1317613176
## 7582   1333324895
## 7583   1317417268
## 7584   1303371215
## 7585   1305604971
## 7586   1322174118
## 7587   1320505644
## 7588   1367968282
## 7589   1322167429
## 7590   1319745902
## 7591   1367968590
## 7592   1305604909
## 7593   1316491569
## 7594   1414561107
## 7595   1319745453
## 7596   1317417313
## 7597   1317417295
## 7598   1322168181
## 7599   1367729197
## 7600   1317612663
## 7601   1317415599
## 7602   1415388297
## 7603   1322168130
## 7604   1339447216
## 7605   1316922590
## 7606   1319745108
## 7607   1322167913
## 7608   1322167725
## 7609   1305605032
## 7610   1319745148
## 7611   1316495346
## 7612   1339447153
## 7613   1322171427
## 7614   1322171197
## 7615   1317415398
## 7616   1322167204
## 7617   1322167397
## 7618   1369722178
## 7619   1305605741
## 7620   1309052092
## 7621   1317612601
## 7622   1319745336
## 7623   1322171094
## 7624   1371359811
## 7625   1339446347
## 7626   1319745882
## 7627   1415388549
## 7628   1322167257
## 7629   1322167662
## 7630   1339447162
## 7631   1414561720
## 7632   1333325498
## 7633   1428727629
## 7634   1322169136
## 7635   1305602945
## 7636   1322167586
## 7637   1317417320
## 7638   1319746126
## 7639   1412478977
## 7640   1305604999
## 7641   1305604648
## 7642   1305605708
## 7643   1305605690
## 7644   1339447164
## 7645   1316494426
## 7646   1319745424
## 7647   1339447168
## 7648   1414561470
## 7649   1322967502
## 7650   1319743116
## 7651   1412471624
## 7652   1319747802
## 7653   1320709035
## 7654   1319748038
## 7655   1412457389
## 7656   1319747076
## 7657   1319746579
## 7658   1405916134
## 7659   1305605784
## 7660   1319743302
## 7661   1317413827
## 7662   1322167708
## 7663   1322719278
## 7664   1322165598
## 7665   1319746873
## 7666   1319744824
## 7667   1317621831
## 7668   1316536208
## 7669   1305605159
## 7670   1369880284
## 7671   1322167983
## 7672   1322276523
## 7673   1305605115
## 7674   1318796568
## 7675   1316496606
## 7676   1305603027
## 7677   1317414089
## 7678   1367774333
## 7679   1322167566
## 7680   1371359903
## 7681   1305605640
## 7682   1319744734
## 7683   1305605093
## 7684   1322966900
## 7685   1305603309
## 7686   1322167367
## 7687   1322167677
## 7688   1368412407
## 7689   1322719467
## 7690   1305603082
## 7691   1319746554
## 7692   1319747765
## 7693   1319746373
## 7694   1322168337
## 7695   1305603272
## 7696   1317405562
## 7697   1305603894
## 7698   1316539661
## 7699   1305603793
## 7700   1317405737
## 7701   1316494407
## 7702   1322167931
## 7703   1305605077
## 7704   1339446804
## 7705   1322167961
## 7706   1305605254
## 7707   1316495274
## 7708   1414850769
## 7709   1405650223
## 7710   1316537546
## 7711   1305605932
## 7712   1305603095
## 7713   1322167425
## 7714   1319748155
## 7715   1305605276
## 7716   1319746947
## 7717   1305605762
## 7718   1318721876
## 7719   1305603934
## 7720   1316493344
## 7721   1317417335
## 7722   1317414139
## 7723   1371530476
## 7724   1305605834
## 7725   1316416612
## 7726   1322167866
## 7727   1305603492
## 7728   1319746905
## 7729   1319745128
## 7730   1305605866
## 7731   1414850946
## 7732   1339446991
## 7733   1319745750
## 7734   1414562131
## 7735   1324101310
## 7736   1305605907
## 7737   1319745634
## 7738   1305603556
## 7739   1319745660
## 7740   1316539530
## 7741   1317415585
## 7742   1317277178
## 7743   1428726464
## 7744   1320128370
## 7745   1319745518
## 7746   1305604944
## 7747   1368249994
## 7748   1319744484
## 7749   1319745178
## 7750   1341268695
## 7751   1322167990
## 7752   1305604806
## 7753   1318721995
## 7754   1318694932
## 7755   1319743447
## 7756   1305604858
## 7757   1320700986
## 7758   1309051349
## 7759   1319745212
## 7760   1305604694
## 7761   1368483486
## 7762   1412309172
## 7763   1321425442
## 7764   1316416681
## 7765   1318796373
## 7766   1322167089
## 7767   1318742711
## 7768   1367475412
## 7769   1415388786
## 7770   1318796556
## 7771   1305603954
## 7772   1341268645
## 7773   1368499219
## 7774   1368250070
## 7775   1414850824
## 7776   1341268624
## 7777   1367774277
## 7778   1414851036
## 7779   1318796696
## 7780   1320907274
## 7781   1319744151
## 7782   1317277376
## 7783   1319743782
## 7784   1305606322
## 7785   1367724708
## 7786   1319743415
## 7787   1369722191
## 7788   1319744439
## 7789   1317277357
## 7790   1322169386
## 7791   1368499410
## 7792   1318721576
## 7793   1319744187
## 7794   1415388667
## 7795   1317277197
## 7796   1317277220
## 7797   1410972161
## 7798   1316907766
## 7799   1414851073
## 7800   1414849679
## 7801   1329101733
## 7802   1368483363
## 7803   1368249365
## 7804   1331430993
## 7805   1368499298
## 7806   1371530093
## 7807   1371360050
## 7808   1341268688
## 7809   1415388593
## 7810   1341268657
## 7811   1414562176
## 7812   1414562366
## 7813   1368499305
## 7814   1367774366
## 7815   1414850934
## 7816   1410972137
## 7817   1368499835
## 7818   1412494161
## 7819   1356760463
## 7820   1368499321
## 7821   1415388917
## 7822   1371530088
## 7823   1356760430
## 7824   1355724506
## 7825   1410972337
## 7826   1367725555
## 7827   1356760414
## 7828   1368483794
## 7829   1367725590
## 7830   1367786421
## 7831   1414839828
## 7832   1371530237
## 7833   1412497730
## 7834   1367728315
## 7835   1405916092
## 7836   1367725833
## 7837   1410972561
## 7838   1368499380
## 7839   1428726967
## 7840   1414562096
## 7841   1410972280
## 7842   1412570841
## 7843   1412570882
## 7844   1412570808
## 7845   1414561040
## 7846   1414850862
## 7847   1410972358
## 7848   1415388310
## 7849   1412554038
## 7850   1412561078
## 7851   1405181551
## 7852   1404110083
## 7853   1410972517
## 7854   1412570817
## 7855   1410972202
## 7856   1412583710
## 7857   1410972239
## 7858   1410972320
## 7859   1425960344
## 7860   1412553084
## 7861   1410972264
## 7862   1412553201
## 7863   1428726440
## 7864   1412553055
## 7865   1410972164
## 7866   1410972074
## 7867   1419495256
## 7868   1410972132
## 7869   1405181398
## 7870   1412553003
## 7871   1410972058
## 7872   1405649924
## 7873   1410972102
## 7874   1412552876
## 7875   1410972752
## 7876   1412552728
## 7877   1412552534
## 7878   1428726233
## 7879   1425960080
## 7880   1412550699
## 7881   1415388454
## 7882   1428726245
## 7883   1428726219
## 7884   1428727019
## 7885   1428726405
## 7886   1428726202
## 7887   1414562891
## 7888   1428726241
## 7889    978040739
## 7890    978039958
## 7891    978041312
## 7892    978040891
## 7893    978040922
## 7894    978040023
## 7895    978039850
## 7896    978041224
## 7897    978039693
## 7898    978041370
## 7899    978039301
## 7900    978039629
## 7901    978039693
## 7902    978040023
## 7903    978039922
## 7904    978040871
## 7905    978039850
## 7906    978040768
## 7907    978041037
## 7908    978041342
## 7909    978041189
## 7910    978041037
## 7911    978039514
## 7912    978039263
## 7913    978039654
## 7914    978039514
## 7915    978041189
## 7916    978039693
## 7917    978039629
## 7918    978039693
## 7919    978039584
## 7920    978039819
## 7921    978039557
## 7922    978039557
## 7923    978039514
## 7924    978039514
## 7925    978041091
## 7926    978039301
## 7927    978041122
## 7928    978039557
## 7929    978039514
## 7930    978041122
## 7931    978039584
## 7932    978039584
## 7933    978039753
## 7934    978039922
## 7935    978039795
## 7936    978041342
## 7937    978039714
## 7938    978041312
## 7939    978041037
## 7940    978039958
## 7941    978039891
## 7942    978040828
## 7943    978040023
## 7944    978039891
## 7945    978039753
## 7946    978039850
## 7947    978041152
## 7948    978041250
## 7949    978039557
## 7950    978041370
## 7951    978039753
## 7952    978039795
## 7953    978039753
## 7954    978040828
## 7955    978039263
## 7956    978040922
## 7957    978041189
## 7958    978041224
## 7959    978040922
## 7960    978041370
## 7961    978041398
## 7962    978041398
## 7963    978039629
## 7964    978041279
## 7965    978041152
## 7966    978039629
## 7967    978039629
## 7968    978041224
## 7969    978041312
## 7970    978041064
## 7971    978039301
## 7972    978039988
## 7973    978041189
## 7974    978039891
## 7975    978039795
## 7976    978041342
## 7977    978039629
## 7978    978041312
## 7979    978041224
## 7980    978041279
## 7981    978039891
## 7982    978041189
## 7983    978039693
## 7984    978039557
## 7985    978041224
## 7986    978041122
## 7987    978041091
## 7988    847412607
## 7989    847412676
## 7990    847412692
## 7991    847412643
## 7992    847412837
## 7993    847412607
## 7994    847412515
## 7995    847412712
## 7996    847412607
## 7997    847412543
## 7998    847412606
## 7999    847412606
## 8000    847412567
## 8001    847412628
## 8002    847412811
## 8003    847412586
## 8004    847412515
## 8005    847412812
## 8006    847412567
## 8007    847412859
## 8008    847412628
## 8009    847412544
## 8010    847412567
## 8011    847412567
## 8012    847412692
## 8013    847412643
## 8014    847413071
## 8015    847412643
## 8016    847412515
## 8017    847412692
## 8018    847412586
## 8019    847412711
## 8020    847412812
## 8021    847412628
## 8022    847413020
## 8023    847412586
## 8024    847412812
## 8025    847412676
## 8026    847412676
## 8027    847413043
## 8028    847412659
## 8029    847412628
## 8030    847412515
## 8031    847412659
## 8032    847412879
## 8033    847413043
## 8034    974729137
## 8035    974728763
## 8036    974728763
## 8037    974728763
## 8038    974729199
## 8039    974728763
## 8040    974728999
## 8041    974729270
## 8042    974729067
## 8043    974729270
## 8044    974728936
## 8045    974729067
## 8046    974728936
## 8047    974729345
## 8048    974729137
## 8049    974728999
## 8050    974729270
## 8051    974729165
## 8052    974729105
## 8053    974729315
## 8054    974728936
## 8055    974728936
## 8056    974729270
## 8057    974729270
## 8058    974729032
## 8059    974729315
## 8060    974729270
## 8061    974729067
## 8062    974729199
## 8063    974728763
## 8064    974729032
## 8065   1231766465
## 8066   1231763607
## 8067   1231770596
## 8068   1231767051
## 8069   1231766626
## 8070   1231766951
## 8071   1231763120
## 8072   1231770503
## 8073   1231766895
## 8074   1231763493
## 8075   1231766853
## 8076   1231766442
## 8077   1231763521
## 8078   1231763632
## 8079   1231767339
## 8080   1231763213
## 8081   1231766571
## 8082   1231766114
## 8083   1231769875
## 8084   1231767802
## 8085   1231763560
## 8086   1231769199
## 8087   1231769672
## 8088   1231763745
## 8089   1231769802
## 8090   1231767951
## 8091   1231767291
## 8092   1231770278
## 8093   1231763949
## 8094   1231763660
## 8095   1231769598
## 8096   1231769623
## 8097   1231769923
## 8098   1231767944
## 8099   1231766768
## 8100   1231769951
## 8101   1231763805
## 8102   1231769685
## 8103   1231769942
## 8104   1231769278
## 8105   1231769628
## 8106   1231766495
## 8107   1231769696
## 8108   1231766735
## 8109   1231767245
## 8110   1231767956
## 8111   1231763467
## 8112   1231770591
## 8113   1231767125
## 8114   1231769937
## 8115   1231770554
## 8116   1231769580
## 8117   1231766722
## 8118   1231769751
## 8119   1231763882
## 8120   1231763840
## 8121   1231769880
## 8122   1231766690
## 8123   1231767136
## 8124   1231770409
## 8125   1231767111
## 8126   1231766676
## 8127   1231769289
## 8128   1231770833
## 8129   1231770796
## 8130   1231763293
## 8131   1231770565
## 8132   1231769833
## 8133    955192120
## 8134    955193387
## 8135    955192933
## 8136    955192933
## 8137    955193660
## 8138    955192933
## 8139    955192933
## 8140    955192636
## 8141    955192140
## 8142    955193310
## 8143    955193387
## 8144    955193310
## 8145    955193660
## 8146    955192367
## 8147    955193078
## 8148    955191985
## 8149    955193468
## 8150    955192692
## 8151    955192388
## 8152    955193256
## 8153    955192663
## 8154    955192739
## 8155    955193574
## 8156    955192345
## 8157    955193224
## 8158    955192491
## 8159    955192282
## 8160    955192739
## 8161    955192603
## 8162    955192307
## 8163    955192417
## 8164    955192010
## 8165    955192491
## 8166    955192571
## 8167    955192739
## 8168    955192739
## 8169    955193387
## 8170    955193724
## 8171    955192779
## 8172    955192307
## 8173    955193337
## 8174    955192760
## 8175    955192571
## 8176    955192100
## 8177    955193433
## 8178    955193724
## 8179   1352835937
## 8180   1352835615
## 8181   1352836913
## 8182   1352835880
## 8183   1352835987
## 8184   1352836775
## 8185   1352836714
## 8186   1352835557
## 8187   1352832722
## 8188   1352836545
## 8189   1352835678
## 8190   1352832850
## 8191   1352837063
## 8192   1352832755
## 8193   1352836272
## 8194   1352832871
## 8195   1352836371
## 8196   1352836374
## 8197   1352837049
## 8198   1352836618
## 8199   1352836376
## 8200   1352834428
## 8201   1352837008
## 8202   1352836442
## 8203   1352836450
## 8204   1352833560
## 8205   1352835951
## 8206   1352836485
## 8207   1352834067
## 8208   1352836366
## 8209   1352833048
## 8210   1352836377
## 8211   1352836517
## 8212   1352836738
## 8213   1352836666
## 8214   1352836154
## 8215   1352836322
## 8216   1352833131
## 8217   1352836290
## 8218   1352835980
## 8219   1352832825
## 8220   1352836507
## 8221   1352834483
## 8222   1352834564
## 8223    855926941
## 8224    855926988
## 8225    855926988
## 8226    855926988
## 8227    855927315
## 8228    855926941
## 8229    855927315
## 8230    855927438
## 8231    855927172
## 8232    855926941
## 8233    855927437
## 8234    855927131
## 8235    855927131
## 8236    855926941
## 8237    855927131
## 8238    855927131
## 8239    855926988
## 8240    855926988
## 8241    855927438
## 8242    855927172
## 8243    855926941
## 8244    855927131
## 8245    855927438
## 8246    855927131
## 8247    855927315
## 8248    855927438
## 8249    855926988
## 8250    855926941
## 8251    855927315
## 8252    855927438
## 8253    855926941
## 8254    855927131
## 8255    855926988
## 8256    855927131
## 8257    855927315
## 8258    855927172
## 8259    855927315
## 8260    855926988
## 8261   1467004817
## 8262   1467008381
## 8263   1467004892
## 8264   1470350794
## 8265   1467004961
## 8266   1467003294
## 8267   1467004867
## 8268   1467004833
## 8269   1467007782
## 8270   1467005618
## 8271   1467005298
## 8272   1467003504
## 8273   1467004905
## 8274   1467005072
## 8275   1467004949
## 8276   1467004879
## 8277   1470350790
## 8278   1467004938
## 8279   1467005164
## 8280   1470350831
## 8281   1467006124
## 8282   1467002990
## 8283   1467003119
## 8284   1473803992
## 8285   1470350811
## 8286   1468471074
## 8287   1467004922
## 8288   1467002971
## 8289   1473801974
## 8290   1469033808
## 8291   1470350967
## 8292   1467005160
## 8293   1467004832
## 8294   1467004830
## 8295   1467002940
## 8296   1467007127
## 8297   1467006388
## 8298   1467008357
## 8299   1467002950
## 8300   1467005800
## 8301   1467003164
## 8302   1467005324
## 8303   1467006035
## 8304   1467005569
## 8305   1467005986
## 8306   1467005564
## 8307   1467005377
## 8308   1470350981
## 8309   1470351101
## 8310   1467008836
## 8311   1467005515
## 8312   1467003129
## 8313   1467006650
## 8314   1467005708
## 8315   1467003138
## 8316   1470351007
## 8317   1467004984
## 8318   1467005425
## 8319   1470350746
## 8320   1467005321
## 8321   1470350810
## 8322   1467003136
## 8323   1470350743
## 8324   1467002983
## 8325   1467004101
## 8326   1467006449
## 8327   1467006407
## 8328   1467003288
## 8329   1467005413
## 8330   1467006798
## 8331   1467005230
## 8332   1467003139
## 8333   1467006447
## 8334   1467003994
## 8335   1467006765
## 8336   1467005790
## 8337   1470350796
## 8338   1467003378
## 8339   1467006386
## 8340   1470350740
## 8341   1470351006
## 8342   1467004757
## 8343   1467003285
## 8344   1467009159
## 8345   1467005320
## 8346   1467003265
## 8347   1470351002
## 8348   1467004858
## 8349   1467004906
## 8350   1473792749
## 8351   1467006781
## 8352   1467003397
## 8353   1467873409
## 8354   1467005259
## 8355   1467006163
## 8356   1470350881
## 8357   1470350949
## 8358   1467006852
## 8359   1467004019
## 8360   1467005541
## 8361   1467006556
## 8362   1467006334
## 8363   1467005889
## 8364   1467094780
## 8365   1467005534
## 8366   1467005939
## 8367   1470350880
## 8368   1467003127
## 8369   1467002948
## 8370   1467003158
## 8371   1470350964
## 8372   1470350958
## 8373   1467005607
## 8374   1467006553
## 8375   1467003819
## 8376   1470350857
## 8377   1467008994
## 8378   1467004796
## 8379   1467093986
## 8380   1470350850
## 8381   1470350848
## 8382   1467003201
## 8383   1469031525
## 8384   1467005771
## 8385   1467094778
## 8386   1470352143
## 8387   1467002969
## 8388   1470350841
## 8389   1470350988
## 8390   1467092609
## 8391   1470352155
## 8392   1470350839
## 8393   1467006461
## 8394   1468471176
## 8395   1467866328
## 8396   1470350837
## 8397   1467007881
## 8398   1467005018
## 8399   1467009172
## 8400   1467003359
## 8401   1470351704
## 8402   1467002977
## 8403   1467004735
## 8404   1470350864
## 8405   1467006343
## 8406   1467005428
## 8407   1475110909
## 8408   1467008130
## 8409   1467005498
## 8410   1470351102
## 8411   1469152877
## 8412   1470351096
## 8413   1467003490
## 8414   1469031599
## 8415   1467005598
## 8416   1467005707
## 8417   1467007025
## 8418   1467002981
## 8419   1467009270
## 8420   1467006448
## 8421   1467006816
## 8422   1467005813
## 8423   1470351099
## 8424   1467004973
## 8425   1467002942
## 8426   1467693193
## 8427   1467006042
## 8428   1467009823
## 8429   1474815098
## 8430   1467007108
## 8431   1467006194
## 8432   1470350837
## 8433   1470351801
## 8434   1467005380
## 8435   1470351097
## 8436   1467005729
## 8437   1470350982
## 8438   1467005793
## 8439   1470351095
## 8440   1467005081
## 8441   1467004784
## 8442   1467009601
## 8443   1467006773
## 8444   1467006182
## 8445   1467003514
## 8446   1470350862
## 8447   1467007890
## 8448   1467005858
## 8449   1467008829
## 8450   1467006160
## 8451   1467004029
## 8452   1470351118
## 8453   1467003934
## 8454   1467003357
## 8455   1467007203
## 8456   1472582918
## 8457   1467093364
## 8458   1475567060
## 8459   1470355329
## 8460   1470350976
## 8461   1470350951
## 8462   1470350879
## 8463   1470350876
## 8464   1469152869
## 8465   1467006603
## 8466   1467005394
## 8467   1467006723
## 8468   1474700994
## 8469   1467005824
## 8470   1467008072
## 8471   1470355415
## 8472   1467005242
## 8473   1470350975
## 8474   1467005239
## 8475   1467005492
## 8476   1470351000
## 8477   1470968633
## 8478   1467006150
## 8479   1473802057
## 8480   1467004075
## 8481   1470351001
## 8482   1470350956
## 8483   1467005527
## 8484   1467003134
## 8485   1470350834
## 8486   1467005245
## 8487   1467005287
## 8488   1467002978
## 8489   1467004098
## 8490   1467004067
## 8491   1467003300
## 8492   1467092617
## 8493   1467005258
## 8494   1467005284
## 8495   1467003858
## 8496   1473794542
## 8497   1467005307
## 8498   1467005692
## 8499   1467004100
## 8500   1470350980
## 8501   1471104320
## 8502   1470350814
## 8503   1467002967
## 8504   1470350817
## 8505   1467005360
## 8506   1467005252
## 8507   1470350824
## 8508   1473791601
## 8509   1467008087
## 8510   1467005390
## 8511   1467006262
## 8512   1467003213
## 8513   1470350961
## 8514   1467005226
## 8515   1467094542
## 8516   1467006226
## 8517   1470350791
## 8518   1470351794
## 8519   1470350792
## 8520   1472530513
## 8521   1470352323
## 8522   1470350806
## 8523   1467093079
## 8524   1467003174
## 8525   1467004099
## 8526   1467004794
## 8527   1467002992
## 8528   1467006373
## 8529   1467005463
## 8530   1467005331
## 8531   1467005270
## 8532   1467005493
## 8533   1470350829
## 8534   1467005485
## 8535   1467006393
## 8536   1470350939
## 8537   1467006247
## 8538   1467003155
## 8539   1469228080
## 8540   1468470510
## 8541   1467006577
## 8542   1470351983
## 8543   1467691652
## 8544   1467009198
## 8545   1467095130
## 8546   1467004058
## 8547   1469154890
## 8548   1467009678
## 8549   1470350835
## 8550   1469033593
## 8551   1467003331
## 8552   1470350738
## 8553   1467007232
## 8554   1475557281
## 8555   1467007629
## 8556   1467005373
## 8557   1470350809
## 8558   1467005838
## 8559   1467003299
## 8560   1467006300
## 8561   1467006253
## 8562   1467003268
## 8563   1467005282
## 8564   1470350742
## 8565   1470350803
## 8566   1467005523
## 8567   1467003146
## 8568   1467693406
## 8569   1467006275
## 8570   1470350985
## 8571   1469073222
## 8572   1467005248
## 8573   1467692413
## 8574   1467693415
## 8575   1467005267
## 8576   1467007522
## 8577   1467006583
## 8578   1467003975
## 8579   1467005548
## 8580   1470351003
## 8581   1467005933
## 8582   1469073419
## 8583   1470350872
## 8584   1467005359
## 8585   1467005323
## 8586   1467004082
## 8587   1467006368
## 8588   1467003951
## 8589   1467009669
## 8590   1467006058
## 8591   1470350855
## 8592   1470350851
## 8593   1467005604
## 8594   1467003527
## 8595   1471306371
## 8596   1470350845
## 8597   1467007605
## 8598   1467003152
## 8599   1475479127
## 8600   1467003185
## 8601   1467095936
## 8602   1467003176
## 8603   1467005673
## 8604   1467004094
## 8605   1467007569
## 8606   1467005222
## 8607   1467005342
## 8608   1470350978
## 8609   1467005703
## 8610   1467005747
## 8611   1467006547
## 8612   1467865426
## 8613   1467006376
## 8614   1470350955
## 8615   1467003348
## 8616   1470350987
## 8617   1470350986
## 8618   1467092809
## 8619   1467003336
## 8620   1467004345
## 8621   1469031507
## 8622   1467004172
## 8623   1467004170
## 8624   1467004173
## 8625   1470350866
## 8626   1467004200
## 8627   1467003125
## 8628   1467003364
## 8629   1470968850
## 8630   1467005726
## 8631   1467003698
## 8632   1467005198
## 8633   1467004387
## 8634   1467004221
## 8635   1467004584
## 8636   1467004119
## 8637   1467004435
## 8638   1467009351
## 8639   1467004483
## 8640   1467004574
## 8641   1467864303
## 8642   1467007601
## 8643   1467092846
## 8644   1467004204
## 8645   1467004183
## 8646   1467006409
## 8647   1467002965
## 8648   1467004374
## 8649   1467093107
## 8650   1467005411
## 8651   1467004187
## 8652   1467004158
## 8653   1473794395
## 8654   1467003210
## 8655   1467003145
## 8656   1467004198
## 8657   1467004629
## 8658   1467004653
## 8659   1469153655
## 8660   1467005355
## 8661   1467004005
## 8662   1467003897
## 8663   1469032461
## 8664   1470350858
## 8665   1470350948
## 8666   1467004505
## 8667   1473791535
## 8668   1470350973
## 8669   1467004197
## 8670   1467004315
## 8671   1470350882
## 8672   1467004552
## 8673   1467004122
## 8674   1467003383
## 8675   1467004613
## 8676   1468910117
## 8677   1467003420
## 8678   1469031965
## 8679   1467092472
## 8680   1470350873
## 8681   1467004382
## 8682   1467004544
## 8683   1467007093
## 8684   1467004638
## 8685   1467004161
## 8686   1467004619
## 8687   1467004448
## 8688   1467004582
## 8689   1473802027
## 8690   1467003376
## 8691   1470350788
## 8692   1470350782
## 8693   1467005316
## 8694   1467004530
## 8695   1467003873
## 8696   1467003849
## 8697   1467003292
## 8698   1467864500
## 8699   1467004379
## 8700   1467092453
## 8701   1467092369
## 8702   1467004218
## 8703   1470350802
## 8704   1467004316
## 8705   1467002988
## 8706   1467004578
## 8707   1467863402
## 8708   1470350983
## 8709   1469154665
## 8710   1467003946
## 8711   1467092392
## 8712   1467005764
## 8713   1467007575
## 8714   1467007838
## 8715   1470350830
## 8716   1468546977
## 8717   1467009440
## 8718   1470350793
## 8719   1467006050
## 8720   1467007684
## 8721   1468546294
## 8722   1474953835
## 8723   1467005461
## 8724   1471306876
## 8725   1467003177
## 8726   1467094125
## 8727   1469845528
## 8728   1467003435
## 8729   1470351005
## 8730   1467003149
## 8731   1470351004
## 8732   1467006008
## 8733   1467003921
## 8734   1467092461
## 8735   1467003191
## 8736   1467003769
## 8737   1467005297
## 8738   1467003517
## 8739   1467005656
## 8740   1467006422
## 8741   1467692116
## 8742   1470025110
## 8743   1467006371
## 8744   1470350815
## 8745   1467005244
## 8746   1469228067
## 8747   1470355990
## 8748   1470350818
## 8749   1467007253
## 8750   1473791593
## 8751   1470352041
## 8752   1473804166
## 8753   1467092891
## 8754   1467006430
## 8755   1467002982
## 8756   1467004819
## 8757   1470350977
## 8758   1467006119
## 8759   1467094604
## 8760   1467006189
## 8761   1470350833
## 8762   1467005444
## 8763   1467003913
## 8764   1469228116
## 8765   1467691835
## 8766   1469152845
## 8767   1472582666
## 8768   1467005931
## 8769   1467093091
## 8770   1467005204
## 8771   1467862484
## 8772   1470350745
## 8773   1467095329
## 8774   1468548012
## 8775   1467004133
## 8776   1467005847
## 8777   1470350805
## 8778   1467007293
## 8779   1474951858
## 8780   1467008759
## 8781   1474989255
## 8782   1467095789
## 8783    907763065
## 8784    907763245
## 8785    907763141
## 8786    907763018
## 8787    907762500
## 8788    907763808
## 8789    907763847
## 8790    907762733
## 8791    907765902
## 8792    907763245
## 8793    907763847
## 8794    907762409
## 8795    907763101
## 8796    907762795
## 8797    907763065
## 8798    907763324
## 8799    907763283
## 8800    907763283
## 8801    907763141
## 8802    907763018
## 8803    907763283
## 8804    907762409
## 8805    907763765
## 8806    907762795
## 8807    907763283
## 8808    907762565
## 8809    907764831
## 8810    907762501
## 8811    907763101
## 8812    907762795
## 8813    907763141
## 8814    907762733
## 8815    907765902
## 8816    907765600
## 8817    907764874
## 8818    907766060
## 8819    907766060
## 8820    907765600
## 8821    907765600
## 8822    907764507
## 8823    907766060
## 8824    907764779
## 8825    907766022
## 8826    907764935
## 8827    907764935
## 8828    907765142
## 8829    907762832
## 8830    907763847
## 8831    907764507
## 8832    907765008
## 8833    907764779
## 8834    907766060
## 8835    907765059
## 8836    907765142
## 8837    907765059
## 8838    907765142
## 8839    907765059
## 8840    907765978
## 8841    907762969
## 8842    907764470
## 8843    907765059
## 8844    907765902
## 8845    907766121
## 8846    907764507
## 8847    907764470
## 8848    907764431
## 8849    907764544
## 8850    907765939
## 8851    907765939
## 8852    907764779
## 8853    907765939
## 8854    907764625
## 8855    907764544
## 8856    907764310
## 8857    907765142
## 8858    907765939
## 8859    907764544
## 8860    907764470
## 8861    907763018
## 8862    907764779
## 8863    907765786
## 8864    907764723
## 8865    907764584
## 8866    907765939
## 8867    907763018
## 8868    907764584
## 8869    907765939
## 8870    907764723
## 8871    907765902
## 8872    907765008
## 8873    907764431
## 8874    907764507
## 8875    907764584
## 8876    907764470
## 8877    907764671
## 8878    907764723
## 8879    907764874
## 8880    907765422
## 8881    907765461
## 8882    907766121
## 8883    907766156
## 8884    907765059
## 8885    907765059
## 8886    907766022
## 8887    907763324
## 8888    907762565
## 8889    907764831
## 8890    907765656
## 8891    907766022
## 8892    907763324
## 8893    907764625
## 8894    907763283
## 8895    907762885
## 8896    907762885
## 8897    907763018
## 8898    907765059
## 8899    907762832
## 8900    907762832
## 8901    907762733
## 8902    907762795
## 8903    907763065
## 8904    907762795
## 8905    907764431
## 8906    907764723
## 8907    907762565
## 8908    907762409
## 8909    907763245
## 8910    907762733
## 8911    907762832
## 8912    907762565
## 8913    907762795
## 8914    907762795
## 8915    907762969
## 8916    907761833
## 8917    907761919
## 8918    907761833
## 8919    907765600
## 8920    907765600
## 8921    907766060
## 8922    907765939
## 8923    907766022
## 8924    907764507
## 8925    907764431
## 8926    907764779
## 8927    907764389
## 8928    907764431
## 8929    907765786
## 8930    907764389
## 8931    907764431
## 8932    907765223
## 8933    907765363
## 8934    907765329
## 8935    907765329
## 8936    907765422
## 8937    907765461
## 8938    907766156
## 8939    907765278
## 8940    907765422
## 8941    907765329
## 8942    907764671
## 8943    907765223
## 8944    907765329
## 8945    907765978
## 8946    907764625
## 8947    907764625
## 8948    907765223
## 8949    907764935
## 8950    907761877
## 8951    907765902
## 8952    907766121
## 8953    907764544
## 8954    907762001
## 8955    907761833
## 8956    907766121
## 8957    907765191
## 8958    907765191
## 8959    907764625
## 8960    907765363
## 8961    907765278
## 8962    907764625
## 8963    907765978
## 8964    907765008
## 8965    907765278
## 8966    907764584
## 8967    907765008
## 8968    907764584
## 8969    907765422
## 8970    907765461
## 8971    907761947
## 8972    907764584
## 8973    907765059
## 8974    907764544
## 8975    907762089
## 8976    907764470
## 8977    907765363
## 8978    907764671
## 8979    907766121
## 8980    907764431
## 8981    907764431
## 8982    907764874
## 8983    907764671
## 8984    907762409
## 8985    907764389
## 8986    907763245
## 8987    907765600
## 8988    907765142
## 8989    907762969
## 8990    907764831
## 8991    907765978
## 8992    961127960
## 8993    961127638
## 8994    961128124
## 8995    961127638
## 8996    961127638
## 8997    961128086
## 8998    961128178
## 8999    961128239
## 9000    961128124
## 9001    961127522
## 9002    961127724
## 9003    961128239
## 9004    961127557
## 9005    961127724
## 9006    961127522
## 9007    961128178
## 9008    961127522
## 9009    961128055
## 9010    961127638
## 9011    961127834
## 9012    961127480
## 9013    961127834
## 9014    961127896
## 9015    961127256
## 9016    961128239
## 9017    961127834
## 9018    961127960
## 9019    961127480
## 9020    961127638
## 9021    961128020
## 9022    961128302
## 9023    961127761
## 9024    961127834
## 9025    961128239
## 9026    961128178
## 9027    961127868
## 9028    961127592
## 9029    961128124
## 9030    961127480
## 9031    961127480
## 9032    961127690
## 9033    961127690
## 9034    961128302
## 9035    961128269
## 9036    961127256
## 9037    961127256
## 9038    961127522
## 9039    961127558
## 9040    961127592
## 9041    961127790
## 9042    961127761
## 9043    961127256
## 9044    961128302
## 9045    961128020
## 9046    961127761
## 9047    961127761
## 9048    961127638
## 9049    961128269
## 9050    961127690
## 9051    961127690
## 9052    961127558
## 9053    961127761
## 9054    961127480
## 9055    961128055
## 9056    961127407
## 9057    961128239
## 9058    961127407
## 9059    961127407
## 9060    961127923
## 9061    961127256
## 9062    961127834
## 9063    961128055
## 9064    961127639
## 9065   1144755845
## 9066   1144756065
## 9067   1144756267
## 9068   1144755826
## 9069   1144756061
## 9070   1144755802
## 9071   1144756058
## 9072   1144756054
## 9073   1144756366
## 9074   1144755818
## 9075   1144756299
## 9076   1144756051
## 9077   1144756048
## 9078   1144755842
## 9079   1144756272
## 9080   1144756044
## 9081   1144756394
## 9082   1144756037
## 9083   1144756031
## 9084   1144756028
## 9085   1144756398
## 9086   1144756414
## 9087   1144756328
## 9088   1144756296
## 9089   1144755799
## 9090   1144755833
## 9091   1144756017
## 9092   1144756384
## 9093   1144756013
## 9094   1144755855
## 9095   1144755814
## 9096   1144755869
## 9097   1144756209
## 9098   1144756203
## 9099   1144755873
## 9100   1144755823
## 9101   1144756199
## 9102   1144756004
## 9103   1144756192
## 9104   1144756188
## 9105   1144756184
## 9106   1144756181
## 9107   1144756178
## 9108   1144756175
## 9109   1144756386
## 9110   1144755999
## 9111   1144756164
## 9112   1144756161
## 9113   1144756157
## 9114   1144756153
## 9115   1144756141
## 9116   1144755852
## 9117   1144756137
## 9118   1144755809
## 9119   1144756134
## 9120   1144756128
## 9121   1144755992
## 9122   1144755805
## 9123   1144755795
## 9124   1144756119
## 9125   1144756116
## 9126   1144756112
## 9127   1144756109
## 9128   1144756106
## 9129   1144756094
## 9130   1144755866
## 9131   1144755863
## 9132   1144756101
## 9133   1144756087
## 9134   1144756362
## 9135   1144756343
## 9136   1144756281
## 9137   1144756348
## 9138   1144756082
## 9139   1144756336
## 9140   1144756276
## 9141   1144756332
## 9142   1144756402
## 9143   1125828814
## 9144   1125829035
## 9145   1125829229
## 9146   1125828888
## 9147   1125828860
## 9148   1125829070
## 9149   1125828890
## 9150   1125829154
## 9151   1125829157
## 9152   1125828818
## 9153   1125829203
## 9154   1125829207
## 9155   1125829174
## 9156   1125828831
## 9157   1125828893
## 9158   1125829194
## 9159   1125829215
## 9160   1125829161
## 9161   1125829152
## 9162   1125828900
## 9163   1125828872
## 9164   1125828865
## 9165   1125829038
## 9166   1125829088
## 9167   1125828843
## 9168   1125828850
## 9169   1125828802
## 9170   1125829168
## 9171   1125828876
## 9172   1125828811
## 9173   1125828806
## 9174   1125829108
## 9175   1125829131
## 9176   1125829115
## 9177   1125829042
## 9178   1125829144
## 9179   1125829233
## 9180   1125828895
## 9181   1125829190
## 9182   1125829218
## 9183   1125829124
## 9184   1125828855
## 9185   1125829077
## 9186   1125829169
## 9187   1125829184
## 9188   1125829017
## 9189   1125829047
## 9190   1125829192
## 9191   1125829007
## 9192   1125829249
## 9193   1125829091
## 9194   1125829180
## 9195   1125828995
## 9196   1125829225
## 9197   1125829142
## 9198   1216051639
## 9199   1216050806
## 9200   1216052245
## 9201   1216050620
## 9202   1216051937
## 9203   1216486613
## 9204   1216050783
## 9205   1216052001
## 9206   1216050872
## 9207   1216050755
## 9208   1216052048
## 9209   1216487185
## 9210   1216050910
## 9211   1216050728
## 9212   1216050688
## 9213   1216050426
## 9214   1217176111
## 9215   1216051901
## 9216   1216050607
## 9217   1216486577
## 9218   1216050050
## 9219   1216487081
## 9220   1216487462
## 9221   1216050212
## 9222   1216050981
## 9223   1216052355
## 9224   1216050143
## 9225   1216487383
## 9226   1216052159
## 9227   1216487645
## 9228   1216052131
## 9229   1216486917
## 9230   1216050704
## 9231   1216050633
## 9232   1216050881
## 9233   1216050615
## 9234   1217176086
## 9235   1216051628
## 9236   1216487574
## 9237   1216051765
## 9238   1216051684
## 9239   1216050812
## 9240   1216052066
## 9241   1216487286
## 9242   1216051712
## 9243   1216050874
## 9244   1216487345
## 9245   1216051756
## 9246   1216050040
## 9247   1216052376
## 9248   1216051647
## 9249   1216487259
## 9250   1216487390
## 9251   1216050185
## 9252   1216486970
## 9253   1216486558
## 9254   1216050841
## 9255   1216486754
## 9256   1216487561
## 9257   1216050771
## 9258   1216050083
## 9259   1216050948
## 9260   1216050434
## 9261   1216486568
## 9262   1216050558
## 9263   1216487170
## 9264   1216052021
## 9265   1217175852
## 9266   1216050942
## 9267   1216487450
## 9268   1216050711
## 9269   1216050152
## 9270   1216050859
## 9271   1216487130
## 9272   1216487195
## 9273   1217175695
## 9274   1217175825
## 9275   1216051015
## 9276   1216050580
## 9277   1216050173
## 9278   1216486820
## 9279   1216050489
## 9280   1216487437
## 9281   1216050661
## 9282   1217175635
## 9283   1216051026
## 9284   1216050540
## 9285   1216487083
## 9286   1217175814
## 9287   1216051664
## 9288   1216052029
## 9289   1216051166
## 9290   1216050163
## 9291   1216050722
## 9292   1216050467
## 9293   1217175952
## 9294   1217175803
## 9295   1217175973
## 9296   1216051752
## 9297   1216050500
## 9298   1216050627
## 9299   1216050335
## 9300   1216051105
## 9301   1216486831
## 9302   1216487292
## 9303   1216050411
## 9304   1216050274
## 9305   1216487206
## 9306   1216050747
## 9307   1217175562
## 9308   1216052075
## 9309   1217175793
## 9310   1216486608
## 9311   1216050419
## 9312   1217176199
## 9313   1216050266
## 9314   1216487236
## 9315   1216051039
## 9316   1216052080
## 9317   1216487374
## 9318   1217176162
## 9319   1216051779
## 9320   1216050438
## 9321   1216487036
## 9322   1216051096
## 9323   1216487165
## 9324   1216050749
## 9325   1216051161
## 9326   1216050506
## 9327   1216051092
## 9328   1216050246
## 9329   1216052363
## 9330   1216486888
## 9331   1216051047
## 9332   1216050780
## 9333   1216487176
## 9334   1216487276
## 9335   1216051666
## 9336   1216051984
## 9337   1216050612
## 9338   1216050831
## 9339   1216050762
## 9340   1216051143
## 9341   1216487179
## 9342   1216051188
## 9343   1216052121
## 9344   1216050332
## 9345   1216051618
## 9346   1216051008
## 9347   1216050692
## 9348   1216051650
## 9349   1217424458
## 9350   1216050821
## 9351   1216486738
## 9352   1216050758
## 9353   1216050547
## 9354   1216052146
## 9355   1217175527
## 9356   1216487366
## 9357   1216487091
## 9358   1216487357
## 9359   1216487144
## 9360   1216050264
## 9361   1216487413
## 9362   1216486663
## 9363   1216487141
## 9364   1451708754
## 9365   1451176940
## 9366   1451359418
## 9367   1451176947
## 9368   1451359247
## 9369   1451359277
## 9370   1451359280
## 9371   1470457528
## 9372   1451359348
## 9373   1451359336
## 9374   1449594307
## 9375   1451708492
## 9376   1449594323
## 9377   1453318174
## 9378   1452916989
## 9379   1449594346
## 9380   1475948734
## 9381   1451708722
## 9382   1451708228
## 9383   1451707886
## 9384   1451708064
## 9385   1451708831
## 9386   1451708501
## 9387   1451713153
## 9388   1451707852
## 9389   1451708608
## 9390   1451708709
## 9391   1451708035
## 9392   1451708254
## 9393   1451712467
## 9394   1451708272
## 9395   1451178637
## 9396   1451708082
## 9397   1451707972
## 9398   1451708365
## 9399   1451708125
## 9400   1451708157
## 9401   1451706920
## 9402   1451708301
## 9403   1451708010
## 9404   1451178678
## 9405   1451406848
## 9406   1451706930
## 9407   1449594073
## 9408   1465526836
## 9409   1465535480
## 9410   1448760334
## 9411   1453472303
## 9412   1451407005
## 9413   1455413632
## 9414   1451368688
## 9415   1465279438
## 9416   1470457197
## 9417   1079098216
## 9418   1079098249
## 9419   1075307025
## 9420   1075307034
## 9421   1075307039
## 9422   1079098211
## 9423   1075307036
## 9424   1075307056
## 9425   1078570677
## 9426   1075307064
## 9427   1079098244
## 9428   1079098188
## 9429   1075307028
## 9430   1078570670
## 9431   1078570695
## 9432   1075307062
## 9433   1079098254
## 9434   1079098217
## 9435   1079098263
## 9436   1076323993
## 9437   1075307060
## 9438   1076324016
## 9439   1076324042
## 9440   1075307058
## 9441   1076324074
## 9442   1076324053
## 9443   1079098242
## 9444   1076324064
## 9445   1079098258
## 9446   1075307020
## 9447   1075307065
## 9448   1076324068
## 9449   1075307023
## 9450   1079098251
## 9451   1076324056
## 9452   1076324009
## 9453   1075307043
## 9454   1079098265
## 9455   1079098267
## 9456   1076324059
## 9457   1076324000
## 9458   1075307052
## 9459   1078570732
## 9460   1079098253
## 9461   1078570730
## 9462   1078570723
## 9463   1075307050
## 9464   1078570736
## 9465   1078570725
## 9466   1079098304
## 9467   1079098294
## 9468   1079098501
## 9469   1078570715
## 9470   1078570718
## 9471   1078570716
## 9472   1079098301
## 9473   1076324071
## 9474   1079098213
## 9475   1078570740
## 9476   1078570655
## 9477   1079098201
## 9478   1079098192
## 9479   1079098199
## 9480   1078570652
## 9481   1080482377
## 9482   1079098203
## 9483   1075307030
## 9484   1079098190
## 9485   1078570675
## 9486   1078570660
## 9487   1079098196
## 9488   1079098289
## 9489   1078570684
## 9490   1078570650
## 9491   1078570661
## 9492   1079098194
## 9493   1078570672
## 9494   1078570681
## 9495   1076324022
## 9496   1079098275
## 9497   1078570666
## 9498   1075307054
## 9499   1079098205
## 9500   1078570680
## 9501   1079098272
## 9502   1079098286
## 9503   1079098273
## 9504   1076324027
## 9505   1079098495
## 9506   1079098282
## 9507   1076324012
## 9508   1079098246
## 9509   1076324031
## 9510   1079098406
## 9511   1079098400
## 9512   1076324157
## 9513   1079098342
## 9514    843159967
## 9515    843159644
## 9516    843159716
## 9517    843159716
## 9518    843159967
## 9519    843159770
## 9520    843159967
## 9521    843159967
## 9522    843159644
## 9523    843159871
## 9524    843159770
## 9525    843159716
## 9526    843159716
## 9527    843159871
## 9528    843159645
## 9529    843159871
## 9530    843159770
## 9531    843159644
## 9532    843159644
## 9533    843159770
## 9534    843159967
## 9535    945118587
## 9536    945149894
## 9537    945150424
## 9538    945118660
## 9539    945150571
## 9540    945150514
## 9541    945150514
## 9542    945150037
## 9543    945118792
## 9544    945118614
## 9545    945150175
## 9546    945150351
## 9547    945150351
## 9548    945118543
## 9549    945150424
## 9550    945150278
## 9551    945150473
## 9552    945150037
## 9553    945150395
## 9554    945149894
## 9555    945149834
## 9556    945150395
## 9557    945150395
## 9558    945150351
## 9559    945149894
## 9560    945150011
## 9561    945150351
## 9562    974600703
## 9563    974599486
## 9564    974597659
## 9565    974600526
## 9566    974600461
## 9567    974597735
## 9568    974599725
## 9569    974599773
## 9570    974600656
## 9571    974599725
## 9572    974599725
## 9573    974599074
## 9574    974599923
## 9575    974600461
## 9576    974597684
## 9577    974600526
## 9578    974599834
## 9579    974600198
## 9580    974599434
## 9581    974597627
## 9582    974600461
## 9583    974600108
## 9584    974597659
## 9585    974600108
## 9586    974599773
## 9587    974600108
## 9588    974600728
## 9589    974599861
## 9590    974600572
## 9591    974600012
## 9592    974599543
## 9593    974600600
## 9594    974600491
## 9595    974599923
## 9596    974600198
## 9597    974600526
## 9598    974599074
## 9599    974599434
## 9600    974600144
## 9601    974600286
## 9602    974599773
## 9603    974599597
## 9604    974600366
## 9605    974600526
## 9606    974600198
## 9607    974600703
## 9608    974600656
## 9609    974600626
## 9610    974598446
## 9611    854711770
## 9612    854711804
## 9613    854711916
## 9614    854713177
## 9615    854711772
## 9616    854711941
## 9617    854714394
## 9618    854714246
## 9619    854714498
## 9620    854712006
## 9621    854714394
## 9622    854711772
## 9623    854711958
## 9624    854711958
## 9625    854711941
## 9626    854711771
## 9627    854711830
## 9628    854711884
## 9629    854713313
## 9630    854711804
## 9631    854711771
## 9632    854714367
## 9633    854714394
## 9634    854715870
## 9635    854711862
## 9636    854713313
## 9637    854713176
## 9638    854715905
## 9639    854714200
## 9640    854714227
## 9641    854714471
## 9642    854714367
## 9643    854713176
## 9644    854713245
## 9645    854714394
## 9646    854714282
## 9647    854714201
## 9648    854713245
## 9649    854713313
## 9650    854714201
## 9651    854714421
## 9652    854715906
## 9653    854714498
## 9654    854713245
## 9655    854715906
## 9656    854715869
## 9657    854714302
## 9658    854714283
## 9659    854713245
## 9660    854715870
## 9661    854714498
## 9662    854714246
## 9663    854713245
## 9664    854714439
## 9665    854714227
## 9666    854713313
## 9667    854714315
## 9668    854714246
## 9669    854713245
## 9670    854713177
## 9671    854714302
## 9672    854713177
## 9673    854714282
## 9674    854714201
## 9675    854713176
## 9676    854714282
## 9677    854714470
## 9678    854713175
## 9679    854715905
## 9680    854714246
## 9681    854714421
## 9682    854715870
## 9683    854711916
## 9684    854714367
## 9685    854712026
## 9686    854714201
## 9687    854711862
## 9688    854711941
## 9689    854711862
## 9690    854711771
## 9691    854712060
## 9692    854711830
## 9693    854712785
## 9694    854711978
## 9695    854711916
## 9696    854711830
## 9697    854715869
## 9698    854711916
## 9699    854711884
## 9700    854711916
## 9701    854711804
## 9702    854711770
## 9703    854711884
## 9704    854711770
## 9705    854711830
## 9706    854711830
## 9707    854712006
## 9708    854711916
## 9709    854714367
## 9710    854714227
## 9711    854711804
## 9712    854713313
## 9713    854714302
## 9714   1194741818
## 9715   1249809905
## 9716   1249808221
## 9717   1194743603
## 9718   1219476836
## 9719   1249808197
## 9720   1219476825
## 9721   1194741632
## 9722   1219477266
## 9723   1194741556
## 9724   1249807893
## 9725   1219476842
## 9726   1194740982
## 9727   1219476819
## 9728   1194741805
## 9729   1194741627
## 9730   1219477297
## 9731   1194741800
## 9732   1219477374
## 9733   1194743787
## 9734   1194741795
## 9735   1194741615
## 9736   1249809470
## 9737   1249807905
## 9738   1249809424
## 9739   1202605433
## 9740   1202605475
## 9741   1249807876
## 9742   1219474844
## 9743   1194741164
## 9744   1194741234
## 9745   1194742690
## 9746   1219474919
## 9747   1194743811
## 9748   1194742498
## 9749   1194741096
## 9750   1202605483
## 9751   1194742491
## 9752   1202605399
## 9753   1194741774
## 9754   1194740988
## 9755   1194741536
## 9756   1194742462
## 9757   1202605808
## 9758   1249807861
## 9759   1194741068
## 9760   1249808142
## 9761   1249809645
## 9762   1249807853
## 9763   1194741082
## 9764   1194743774
## 9765   1194743647
## 9766   1249809495
## 9767   1194741764
## 9768   1219474926
## 9769   1219474934
## 9770   1249808034
## 9771   1194741124
## 9772   1249808019
## 9773   1249808396
## 9774   1194741217
## 9775   1219477365
## 9776   1194741010
## 9777   1194742454
## 9778   1249808373
## 9779   1194742620
## 9780   1194742605
## 9781   1249807840
## 9782   1249809623
## 9783   1194740954
## 9784   1249808007
## 9785   1249807997
## 9786   1194741025
## 9787   1194743883
## 9788   1194741198
## 9789   1194740965
## 9790   1194741383
## 9791   1194741735
## 9792   1194741657
## 9793   1194744286
## 9794   1249809788
## 9795   1194741498
## 9796   1219474681
## 9797   1249807965
## 9798   1194744599
## 9799   1194742561
## 9800   1194741843
## 9801   1249807951
## 9802   1194741508
## 9803   1194742532
## 9804   1249807943
## 9805   1194744481
## 9806   1194744514
## 9807   1249807928
## 9808   1194741828
## 9809   1202605771
## 9810   1194744593
## 9811   1194741643
## 9812   1194741823
## 9813   1194741503
## 9814   1194741682
## 9815   1194744465
## 9816   1194742776
## 9817   1249808534
## 9818   1346824858
## 9819   1249808268
## 9820   1194742060
## 9821   1194741870
## 9822   1255153332
## 9823   1194741909
## 9824   1219474832
## 9825   1194742092
## 9826   1194742744
## 9827   1292732192
## 9828   1346824829
## 9829   1194744606
## 9830   1194741316
## 9831   1194744575
## 9832   1194744487
## 9833   1249809801
## 9834   1194744213
## 9835   1202605564
## 9836   1219474721
## 9837   1366831110
## 9838   1366831701
## 9839   1366831985
## 9840   1366831735
## 9841   1366831572
## 9842   1366831626
## 9843   1366831972
## 9844   1366831788
## 9845   1366831962
## 9846   1366831564
## 9847   1348153664
## 9848   1366831100
## 9849   1366830848
## 9850   1366831253
## 9851   1366831102
## 9852   1366831615
## 9853   1366831266
## 9854   1348153638
## 9855   1366831784
## 9856   1366831290
## 9857   1366830854
## 9858   1366831610
## 9859   1366831598
## 9860   1366831275
## 9861   1366831955
## 9862   1366831566
## 9863   1366831769
## 9864   1366831679
## 9865   1348153757
## 9866   1348153603
## 9867   1366831950
## 9868   1366831980
## 9869   1366831595
## 9870   1366830860
## 9871   1366831588
## 9872   1366831245
## 9873   1348153569
## 9874   1366831673
## 9875   1366831619
## 9876   1366831288
## 9877   1366831929
## 9878   1366831711
## 9879   1366831778
## 9880   1366831752
## 9881   1366831268
## 9882   1366831811
## 9883   1348153818
## 9884   1348153829
## 9885   1348153964
## 9886   1366831892
## 9887   1366831968
## 9888   1366831744
## 9889   1348153794
## 9890   1366831662
## 9891   1366831695
## 9892   1366831713
## 9893   1366831681
## 9894   1366832014
## 9895   1348153841
## 9896   1348153799
## 9897   1348153863
## 9898   1366831871
## 9899   1366831839
## 9900   1348153974
## 9901   1366831576
## 9902   1366831823
## 9903   1366831687
## 9904   1366831855
## 9905   1366831289
## 9906   1348153821
## 9907   1366831708
## 9908   1366831993
## 9909   1366831574
## 9910   1366831715
## 9911   1366831670
## 9912   1366831604
## 9913   1366831756
## 9914   1366831801
## 9915   1348154058
## 9916   1348155188
## 9917   1348154113
## 9918    853954235
## 9919    853954323
## 9920    853954323
## 9921    853954323
## 9922    853954486
## 9923    853954577
## 9924    853954402
## 9925    853954235
## 9926    853954235
## 9927    853954729
## 9928    853954234
## 9929    853954322
## 9930    853954401
## 9931    853954401
## 9932    853954813
## 9933    853954235
## 9934    853954893
## 9935    853954577
## 9936    853954729
## 9937    853954485
## 9938    853954893
## 9939    853954893
## 9940    853954813
## 9941    853954814
## 9942    853954814
## 9943    853954235
## 9944    853954577
## 9945    853954401
## 9946    853954577
## 9947    853954323
## 9948    853954485
## 9949    853954235
## 9950    853954323
## 9951    853954323
## 9952    853954322
## 9953    853954656
## 9954    853955020
## 9955    853954485
## 9956    853954656
## 9957    853954485
## 9958    853954656
## 9959    853954235
## 9960    853954402
## 9961    853954485
## 9962    853954814
## 9963    853954729
## 9964    853954729
## 9965    853954814
## 9966    853954893
## 9967    853954893
## 9968    853954656
## 9969    853954401
## 9970    853954656
## 9971    853954577
## 9972    853954577
## 9973    853954323
## 9974    853954235
## 9975    853954485
## 9976    853954577
## 9977    853954813
## 9978    853954729
## 9979    853954656
## 9980    853954485
## 9981    853954234
## 9982    853954402
## 9983    853954893
## 9984    853954401
## 9985    853954401
## 9986    853955020
## 9987    853954577
## 9988    853954577
## 9989    853954814
## 9990    853954656
## 9991    853954813
## 9992    853955020
## 9993    853954656
## 9994    853955020
## 9995    853954893
## 9996    853955020
## 9997    853955020
## 9998    853954401
## 9999    853954485
## 10000   853955020
## 10001   974659023
## 10002   974659502
## 10003   974659502
## 10004   974659646
## 10005   974659502
## 10006   974659502
## 10007   974659023
## 10008   974659502
## 10009   974659023
## 10010   974659408
## 10011   974659023
## 10012   974658951
## 10013   974659408
## 10014   974659023
## 10015   974659502
## 10016   974659408
## 10017   974659502
## 10018   974659646
## 10019   974659408
## 10020   974659593
## 10021   974659408
## 10022   974659696
## 10023   974659408
## 10024  1461778737
## 10025  1461784724
## 10026  1461784392
## 10027  1461778528
## 10028  1461784365
## 10029  1461784569
## 10030  1461778719
## 10031  1461778730
## 10032  1461778524
## 10033  1461778698
## 10034  1461778746
## 10035  1461778534
## 10036  1461784459
## 10037  1461778557
## 10038  1461784432
## 10039  1461784481
## 10040  1461778530
## 10041  1461784591
## 10042  1461784596
## 10043  1461784428
## 10044  1461778739
## 10045  1461784475
## 10046  1461784499
## 10047  1461784671
## 10048  1461778560
## 10049  1461778537
## 10050  1461784640
## 10051  1461784644
## 10052  1461784494
## 10053  1461778751
## 10054  1461784424
## 10055  1461784642
## 10056  1461778617
## 10057  1461784345
## 10058  1461784445
## 10059  1461778611
## 10060  1461778692
## 10061  1461784613
## 10062  1461784742
## 10063  1461784405
## 10064  1461784348
## 10065  1461784637
## 10066  1461778563
## 10067  1461784599
## 10068  1461778600
## 10069  1461778760
## 10070  1461784035
## 10071  1461783967
## 10072  1461783836
## 10073  1461783926
## 10074  1461784442
## 10075  1461783857
## 10076  1461783923
## 10077  1461784071
## 10078  1461783913
## 10079  1461784048
## 10080  1461783915
## 10081  1461783834
## 10082  1461783988
## 10083  1461784652
## 10084  1461784367
## 10085  1461784065
## 10086  1461784011
## 10087  1461783905
## 10088  1461783845
## 10089  1461783869
## 10090  1461783841
## 10091  1461783980
## 10092  1461778717
## 10093  1461783881
## 10094  1461783975
## 10095  1461783872
## 10096  1461784578
## 10097  1461783889
## 10098  1461783865
## 10099  1461784050
## 10100  1461784730
## 10101  1461778734
## 10102  1461783920
## 10103  1461783992
## 10104  1461784606
## 10105  1461783846
## 10106  1461783983
## 10107  1461783838
## 10108  1461784616
## 10109  1461784038
## 10110  1461783871
## 10111  1461783970
## 10112  1461784533
## 10113  1461783960
## 10114  1461778706
## 10115  1461784490
## 10116  1461783867
## 10117  1461783898
## 10118  1461784661
## 10119  1461784505
## 10120  1461784473
## 10121  1461783972
## 10122  1461784759
## 10123  1461783887
## 10124  1461784763
## 10125  1461783896
## 10126  1461784702
## 10127  1461784573
## 10128  1461784364
## 10129  1461784711
## 10130  1461784674
## 10131  1461783948
## 10132  1461784566
## 10133  1461784585
## 10134  1461783951
## 10135  1461784370
## 10136  1461783936
## 10137  1464722870
## 10138  1464722875
## 10139  1464723963
## 10140  1461783977
## 10141  1464723975
## 10142  1464722915
## 10143  1464722908
## 10144  1464723971
## 10145  1464722892
## 10146  1464723952
## 10147  1464723990
## 10148  1464723959
## 10149  1461784655
## 10150  1464723939
## 10151  1464723955
## 10152  1464722900
## 10153  1461783945
## 10154  1461784582
## 10155  1464723948
## 10156  1461784515
## 10157  1464723984
## 10158  1464723945
## 10159  1464722872
## 10160  1464722878
## 10161  1464722868
## 10162  1464723967
## 10163  1461784650
## 10164  1461778714
## 10165  1461784352
## 10166  1461778757
## 10167  1461784770
## 10168  1461784524
## 10169  1461783955
## 10170  1461784744
## 10171  1461784013
## 10172  1461778742
## 10173  1461784029
## 10174  1461783938
## 10175  1461784053
## 10176  1461778701
## 10177  1461784665
## 10178  1461784766
## 10179  1461784449
## 10180  1461784739
## 10181  1461784720
## 10182  1461784574
## 10183  1461784563
## 10184  1461784704
## 10185  1461784358
## 10186  1461778763
## 10187  1461784402
## 10188  1461784545
## 10189  1461784734
## 10190  1461784588
## 10191  1461778748
## 10192  1461784567
## 10193  1461784749
## 10194  1461784700
## 10195  1461784437
## 10196  1461784698
## 10197  1461784548
## 10198  1461784455
## 10199  1461778724
## 10200  1461784387
## 10201  1461784379
## 10202  1461784707
## 10203  1461784342
## 10204  1461778744
## 10205  1461784635
## 10206  1461778755
## 10207  1461778642
## 10208  1461778637
## 10209  1461778586
## 10210  1461778626
## 10211  1461784183
## 10212  1461784683
## 10213  1461778632
## 10214  1461784162
## 10215  1303464840
## 10216  1255595527
## 10217  1337593559
## 10218  1255591764
## 10219  1255593501
## 10220  1255508530
## 10221  1255501766
## 10222  1255597031
## 10223  1337593272
## 10224  1255591860
## 10225  1354676110
## 10226  1255606447
## 10227  1339744008
## 10228  1255505029
## 10229  1255596165
## 10230  1255503386
## 10231  1255608841
## 10232  1255502804
## 10233  1470720095
## 10234  1304411684
## 10235  1255587668
## 10236  1255851405
## 10237  1255596154
## 10238  1406172306
## 10239  1312496282
## 10240  1255843848
## 10241  1255742407
## 10242  1255508598
## 10243  1255502716
## 10244  1348568488
## 10245  1255596442
## 10246  1283940446
## 10247  1286701620
## 10248  1281668214
## 10249  1255608880
## 10250  1255506790
## 10251  1255505013
## 10252  1255608532
## 10253  1256018505
## 10254  1255587428
## 10255  1255503714
## 10256  1255587153
## 10257  1255850905
## 10258  1470720332
## 10259  1255593273
## 10260  1256030057
## 10261  1266049987
## 10262  1406171781
## 10263  1255503373
## 10264  1456039608
## 10265  1304411592
## 10266  1411810971
## 10267  1264835146
## 10268  1406171065
## 10269  1255508717
## 10270  1437711199
## 10271  1255585670
## 10272  1378180010
## 10273  1255506785
## 10274  1369513505
## 10275  1470720392
## 10276  1255508202
## 10277  1398568231
## 10278  1304411765
## 10279  1255844977
## 10280  1255597661
## 10281  1306826434
## 10282  1255502790
## 10283  1290089214
## 10284  1256029728
## 10285  1255502795
## 10286  1260597912
## 10287  1311319243
## 10288  1255849588
## 10289  1255609029
## 10290  1285414310
## 10291  1255593485
## 10292  1255501759
## 10293  1256029720
## 10294  1470720434
## 10295  1255509139
## 10296  1255844449
## 10297  1303464829
## 10298  1255947440
## 10299  1457597096
## 10300  1255597004
## 10301  1256030041
## 10302  1255594331
## 10303  1280749457
## 10304  1255501745
## 10305  1255597090
## 10306  1255596999
## 10307  1311318950
## 10308  1255502945
## 10309  1304412304
## 10310  1255508982
## 10311  1304412090
## 10312  1289377723
## 10313  1261572758
## 10314  1304411724
## 10315  1296460183
## 10316  1255608640
## 10317  1255503366
## 10318  1255507407
## 10319  1429168457
## 10320  1287294447
## 10321  1255503176
## 10322  1255845005
## 10323  1272354528
## 10324  1470720213
## 10325  1470896986
## 10326  1261572653
## 10327  1255593983
## 10328  1470720182
## 10329  1255595145
## 10330  1255850852
## 10331  1255844407
## 10332  1255508022
## 10333  1255844972
## 10334  1311651342
## 10335  1255502930
## 10336  1255596533
## 10337  1470719734
## 10338  1255608112
## 10339  1303464853
## 10340  1255595915
## 10341  1255594321
## 10342  1255504505
## 10343  1281307627
## 10344  1255844780
## 10345  1303464866
## 10346  1255844932
## 10347  1256030046
## 10348  1255502799
## 10349  1398568108
## 10350  1314943073
## 10351  1470720316
## 10352  1255845002
## 10353  1256030164
## 10354  1255506758
## 10355  1470720292
## 10356  1470720380
## 10357  1256018210
## 10358  1422335223
## 10359  1256029754
## 10360  1448953137
## 10361  1255608540
## 10362  1256030591
## 10363  1264405840
## 10364  1470720372
## 10365  1255588345
## 10366  1283940897
## 10367  1470720219
## 10368  1255862403
## 10369  1457596624
## 10370  1255591836
## 10371  1304411666
## 10372  1398568202
## 10373  1255606772
## 10374  1348567967
## 10375  1418785517
## 10376  1256030174
## 10377  1255500962
## 10378  1255584436
## 10379  1255849976
## 10380  1255584412
## 10381  1255608074
## 10382  1315979781
## 10383  1255501638
## 10384  1255501801
## 10385  1255607784
## 10386  1470720223
## 10387  1255594607
## 10388  1303464880
## 10389  1279948049
## 10390  1337594349
## 10391  1256030424
## 10392  1255595609
## 10393  1282638702
## 10394  1255508391
## 10395  1255743474
## 10396  1255609078
## 10397  1255506740
## 10398  1255947496
## 10399  1255608654
## 10400  1255844891
## 10401  1255506732
## 10402  1255595979
## 10403  1411355622
## 10404  1255504951
## 10405  1255595920
## 10406  1255609131
## 10407  1262660448
## 10408  1255502910
## 10409  1255508109
## 10410  1255588350
## 10411  1255596971
## 10412  1280749995
## 10413  1266581514
## 10414  1255503156
## 10415  1255502779
## 10416  1255506722
## 10417  1255508049
## 10418  1428469603
## 10419  1311651122
## 10420  1348568040
## 10421  1255501601
## 10422  1255504946
## 10423  1404370293
## 10424  1255844483
## 10425  1255508757
## 10426  1306826464
## 10427  1326419215
## 10428  1255502137
## 10429  1339744073
## 10430  1270610619
## 10431  1255585464
## 10432  1255506723
## 10433  1255608634
## 10434  1255587798
## 10435  1255596621
## 10436  1464751206
## 10437  1432525150
## 10438  1260977284
## 10439  1256030107
## 10440  1255502888
## 10441  1378180019
## 10442  1296952002
## 10443  1255502784
## 10444  1280749968
## 10445  1268808237
## 10446  1409452810
## 10447  1267705648
## 10448  1255591754
## 10449  1337593473
## 10450  1285479373
## 10451  1302152229
## 10452  1255845402
## 10453  1255606220
## 10454  1312496151
## 10455  1255587965
## 10456  1306826403
## 10457  1255506712
## 10458  1255591944
## 10459  1267705570
## 10460  1255593963
## 10461  1255501914
## 10462  1255501035
## 10463  1255500860
## 10464  1348567962
## 10465  1411355614
## 10466  1255593958
## 10467  1255844967
## 10468  1255608055
## 10469  1437103984
## 10470  1275964521
## 10471  1470720209
## 10472  1470719755
## 10473  1255502875
## 10474  1261667770
## 10475  1350192487
## 10476  1281668223
## 10477  1255594430
## 10478  1255502774
## 10479  1255591429
## 10480  1255596358
## 10481  1296730230
## 10482  1319337546
## 10483  1255500918
## 10484  1464751433
## 10485  1398567944
## 10486  1255501084
## 10487  1255586834
## 10488  1409205998
## 10489  1255508548
## 10490  1255609223
## 10491  1304411853
## 10492  1255502015
## 10493  1369206214
## 10494  1255843935
## 10495  1255591360
## 10496  1255509163
## 10497  1256030207
## 10498  1255597293
## 10499  1255597075
## 10500  1303464772
## 10501  1331374345
## 10502  1255607723
## 10503  1460517728
## 10504  1287294418
## 10505  1406172081
## 10506  1256028479
## 10507  1255586362
## 10508  1255596053
## 10509  1255589046
## 10510  1255597219
## 10511  1255501843
## 10512  1255844622
## 10513  1255591424
## 10514  1311319246
## 10515  1255849480
## 10516  1255609000
## 10517  1295875283
## 10518  1255508776
## 10519  1457597070
## 10520  1255596853
## 10521  1255507319
## 10522  1255509032
## 10523  1255596139
## 10524  1255502769
## 10525  1255845284
## 10526  1256552857
## 10527  1255502846
## 10528  1255584591
## 10529  1354676118
## 10530  1255593683
## 10531  1255844646
## 10532  1255503138
## 10533  1406172191
## 10534  1256030295
## 10535  1257239744
## 10536  1296951840
## 10537  1369514567
## 10538  1255596509
## 10539  1255588837
## 10540  1272354630
## 10541  1470720028
## 10542  1255589167
## 10543  1437709517
## 10544  1255849486
## 10545  1255594560
## 10546  1437709512
## 10547  1411355597
## 10548  1369206547
## 10549  1381126672
## 10550  1255591355
## 10551  1255596503
## 10552  1255591350
## 10553  1272355372
## 10554  1255506671
## 10555  1255584855
## 10556  1431232609
## 10557  1306826395
## 10558  1331019382
## 10559  1255845278
## 10560  1255591608
## 10561  1255742786
## 10562  1464751442
## 10563  1255502851
## 10564  1255608727
## 10565  1262056348
## 10566  1262056355
## 10567  1306826463
## 10568  1437103998
## 10569  1406171880
## 10570  1255502841
## 10571  1255595963
## 10572  1255584964
## 10573  1411452543
## 10574  1255595957
## 10575  1255844560
## 10576  1303464933
## 10577  1470720309
## 10578  1255608711
## 10579  1304412471
## 10580  1304411648
## 10581  1255503604
## 10582  1255502836
## 10583  1378180034
## 10584  1303464871
## 10585  1282545301
## 10586  1255844937
## 10587  1279948023
## 10588  1437711085
## 10589  1406171622
## 10590  1256027987
## 10591  1255500870
## 10592  1306826405
## 10593  1406171334
## 10594  1255506668
## 10595  1261656604
## 10596  1324634524
## 10597  1303464923
## 10598  1456038593
## 10599  1261656636
## 10600  1300947005
## 10601  1364100089
## 10602  1255844084
## 10603  1255596126
## 10604  1418786181
## 10605  1261656735
## 10606  1255589018
## 10607  1256030336
## 10608  1255591395
## 10609  1259037014
## 10610  1255584576
## 10611  1304411810
## 10612  1311318965
## 10613  1267705661
## 10614  1411876538
## 10615  1337593722
## 10616  1348568537
## 10617  1259040565
## 10618  1255502833
## 10619  1267705538
## 10620  1255593907
## 10621  1255502070
## 10622  1255844988
## 10623  1288697512
## 10624  1255587644
## 10625  1430027806
## 10626  1256030202
## 10627  1255608781
## 10628  1441522263
## 10629  1255501972
## 10630  1255502470
## 10631  1256028414
## 10632  1255742368
## 10633  1255594309
## 10634  1430034069
## 10635  1369513448
## 10636  1255504073
## 10637  1454042117
## 10638  1431234283
## 10639  1381126595
## 10640  1255584959
## 10641  1255593426
## 10642  1255593420
## 10643  1255586748
## 10644  1275964632
## 10645  1255608040
## 10646  1255507270
## 10647  1255844856
## 10648  1255844835
## 10649  1255591400
## 10650  1427170335
## 10651  1427170376
## 10652  1255597066
## 10653  1315969124
## 10654  1255850016
## 10655  1255593663
## 10656  1255608035
## 10657  1261487007
## 10658  1266665318
## 10659  1381045859
## 10660  1441522359
## 10661  1369205876
## 10662  1474615000
## 10663  1255844950
## 10664  1274265898
## 10665  1255508410
## 10666  1406171915
## 10667  1406171911
## 10668  1256030469
## 10669  1255508246
## 10670  1469772944
## 10671  1255586425
## 10672  1275964192
## 10673  1282543426
## 10674  1437709524
## 10675  1296460015
## 10676  1427170447
## 10677  1255844787
## 10678  1429168678
## 10679  1256030461
## 10680  1369514518
## 10681  1464751460
## 10682  1255591345
## 10683  1256944354
## 10684  1437709506
## 10685  1255596353
## 10686  1279948065
## 10687  1357552985
## 10688  1255597830
## 10689  1255502120
## 10690  1255844776
## 10691  1255586467
## 10692  1255501979
## 10693  1312496216
## 10694  1255591385
## 10695  1404370203
## 10696  1255947627
## 10697  1282545089
## 10698  1282545112
## 10699  1255587084
## 10700  1472698650
## 10701  1256019289
## 10702  1304412607
## 10703  1411876466
## 10704  1369513635
## 10705  1259325836
## 10706  1257229357
## 10707  1255508479
## 10708  1255591390
## 10709  1255501853
## 10710  1273043702
## 10711  1255844915
## 10712  1255588083
## 10713  1255596937
## 10714  1314942833
## 10715  1255844727
## 10716  1348568560
## 10717  1255506106
## 10718  1303465749
## 10719  1390127454
## 10720  1255849777
## 10721  1348568747
## 10722  1255509017
## 10723  1464508137
## 10724  1456038664
## 10725  1411355584
## 10726  1348568388
## 10727  1296952036
## 10728  1470985538
## 10729  1427170200
## 10730  1369205974
## 10731  1357552974
## 10732  1470729030
## 10733  1431584423
## 10734  1255849720
## 10735  1309081686
## 10736  1432523188
## 10737  1255586415
## 10738  1337593255
## 10739  1255607717
## 10740  1262056591
## 10741  1334396063
## 10742  1406172160
## 10743  1437710007
## 10744  1261487189
## 10745  1475124698
## 10746  1312496325
## 10747  1255596722
## 10748  1303464905
## 10749  1296730204
## 10750  1255509153
## 10751  1337594327
## 10752  1255503566
## 10753  1255500985
## 10754  1256018249
## 10755  1339743989
## 10756  1267705250
## 10757  1474615285
## 10758  1274265884
## 10759  1255743364
## 10760  1257228558
## 10761  1255606347
## 10762  1255845019
## 10763  1255845250
## 10764  1303466268
## 10765  1255608868
## 10766  1255850836
## 10767  1255508823
## 10768  1281668156
## 10769  1267705304
## 10770  1304411787
## 10771  1256028073
## 10772  1255500852
## 10773  1256030417
## 10774  1255505507
## 10775  1331375405
## 10776  1475124680
## 10777  1255607878
## 10778  1255507224
## 10779  1255504005
## 10780  1369514944
## 10781  1355922434
## 10782  1279948734
## 10783  1261572674
## 10784  1255596921
## 10785  1369513307
## 10786  1281668274
## 10787  1255742725
## 10788  1255592969
## 10789  1255586543
## 10790  1255586548
## 10791  1255597612
## 10792  1264493967
## 10793  1264751860
## 10794  1422335547
## 10795  1320810501
## 10796  1255597607
## 10797  1320810452
## 10798  1282543451
## 10799  1395987897
## 10800  1303466242
## 10801  1255506079
## 10802  1255594378
## 10803  1255588774
## 10804  1255588780
## 10805  1255584828
## 10806  1289045177
## 10807  1255588769
## 10808  1255591380
## 10809  1255608746
## 10810  1255595938
## 10811  1470896634
## 10812  1469772991
## 10813  1255844919
## 10814  1466320273
## 10815  1287294312
## 10816  1258367323
## 10817  1258367400
## 10818  1259389532
## 10819  1464750953
## 10820  1370057557
## 10821  1464751470
## 10822  1418461988
## 10823  1343119731
## 10824  1255596218
## 10825  1259325859
## 10826  1255608143
## 10827  1255594368
## 10828  1255597273
## 10829  1255844941
## 10830  1296459580
## 10831  1255591794
## 10832  1255608592
## 10833  1255608249
## 10834  1257229260
## 10835  1435472709
## 10836  1261573299
## 10837  1255596214
## 10838  1255742451
## 10839  1255859036
## 10840  1255844895
## 10841  1262826535
## 10842  1304411842
## 10843  1255504813
## 10844  1312496194
## 10845  1304411604
## 10846  1255742998
## 10847  1255586357
## 10848  1255849638
## 10849  1431234143
## 10850  1427170187
## 10851  1255608483
## 10852  1255503033
## 10853  1369513586
## 10854  1255596840
## 10855  1255591337
## 10856  1257229345
## 10857  1274265922
## 10858  1396156423
## 10859  1255508282
## 10860  1255584991
## 10861  1255742448
## 10862  1255597278
## 10863  1255845245
## 10864  1255594363
## 10865  1256030443
## 10866  1309414189
## 10867  1256029491
## 10868  1255608233
## 10869  1456038994
## 10870  1255609092
## 10871  1283169534
## 10872  1268808234
## 10873  1255845024
## 10874  1437710061
## 10875  1418462162
## 10876  1255844881
## 10877  1255849756
## 10878  1255508007
## 10879  1255596198
## 10880  1255503937
## 10881  1255608478
## 10882  1255592082
## 10883  1255506569
## 10884  1255596703
## 10885  1411452469
## 10886  1256019294
## 10887  1303464731
## 10888  1257228611
## 10889  1255849364
## 10890  1255845363
## 10891  1255596208
## 10892  1255507158
## 10893  1429168542
## 10894  1255502625
## 10895  1257229023
## 10896  1369515350
## 10897  1255609063
## 10898  1255844800
## 10899  1255596203
## 10900  1255506563
## 10901  1457597545
## 10902  1337593133
## 10903  1428469574
## 10904  1457596520
## 10905  1427170203
## 10906  1255608385
## 10907  1456038999
## 10908  1256944285
## 10909  1427168121
## 10910  1370057531
## 10911  1306826427
## 10912  1255593845
## 10913  1441514881
## 10914  1255596109
## 10915  1448953321
## 10916  1427170442
## 10917  1406172273
## 10918  1296952145
## 10919  1255505425
## 10920  1418462025
## 10921  1255594496
## 10922  1282545187
## 10923  1456039121
## 10924  1255742990
## 10925  1448953270
## 10926  1255845239
## 10927  1409205919
## 10928  1255596106
## 10929  1304411492
## 10930  1255608222
## 10931  1255591538
## 10932  1255594879
## 10933  1255606781
## 10934  1255509080
## 10935  1255505417
## 10936  1255594188
## 10937  1255844809
## 10938  1427170169
## 10939  1272355409
## 10940  1352959815
## 10941  1306826998
## 10942  1295875347
## 10943  1259411120
## 10944  1448953284
## 10945  1255608487
## 10946  1255607838
## 10947  1312496381
## 10948  1456039352
## 10949  1331374381
## 10950  1255844964
## 10951  1255844032
## 10952  1272354473
## 10953  1398567966
## 10954  1255591532
## 10955  1406172104
## 10956  1255504768
## 10957  1306826438
## 10958  1255595932
## 10959  1304412210
## 10960  1315969212
## 10961  1256030678
## 10962  1255592071
## 10963  1255742674
## 10964  1264835164
## 10965  1255586200
## 10966  1273217119
## 10967  1255606569
## 10968  1369514322
## 10969  1262569280
## 10970  1256030657
## 10971  1456039054
## 10972  1406171597
## 10973  1441514214
## 10974  1448953334
## 10975  1435472845
## 10976  1304411962
## 10977  1255844887
## 10978  1387082402
## 10979  1448953194
## 10980  1255593557
## 10981  1395987921
## 10982  1460517505
## 10983  1456039090
## 10984  1306065234
## 10985  1348568293
## 10986  1255591376
## 10987  1255591889
## 10988  1304411695
## 10989  1256017396
## 10990  1255503508
## 10991  1255503893
## 10992  1256030597
## 10993  1255608382
## 10994  1456039073
## 10995  1304412191
## 10996  1255849610
## 10997  1255609142
## 10998  1255742979
## 10999  1255503888
## 11000  1456039270
## 11001  1255606114
## 11002  1337594371
## 11003  1257164626
## 11004  1256029172
## 11005  1255587508
## 11006  1431406170
## 11007  1348568766
## 11008  1427170483
## 11009  1255850919
## 11010  1255742663
## 11011  1255584902
## 11012  1337591896
## 11013  1255595533
## 11014  1311653407
## 11015  1255587123
## 11016  1256029535
## 11017  1256029550
## 11018  1255588990
## 11019  1255588995
## 11020  1406172244
## 11021  1255501720
## 11022  1312496408
## 11023  1406172340
## 11024  1338530999
## 11025  1255507053
## 11026  1456039316
## 11027  1456039164
## 11028  1306826436
## 11029  1309761451
## 11030  1279948760
## 11031  1255503878
## 11032  1285311199
## 11033  1266581545
## 11034  1255608120
## 11035  1255503493
## 11036  1406172365
## 11037  1411355691
## 11038  1369513550
## 11039  1255503002
## 11040  1255844960
## 11041  1456039319
## 11042  1456039235
## 11043  1255849679
## 11044  1255504698
## 11045  1432523137
## 11046  1304411827
## 11047  1255586932
## 11048  1255503222
## 11049  1315969183
## 11050  1417081916
## 11051  1369514779
## 11052  1255596285
## 11053  1255591371
## 11054  1255584888
## 11055  1417081929
## 11056  1309414298
## 11057  1369515372
## 11058  1411451683
## 11059  1255501671
## 11060  1255843864
## 11061  1257229292
## 11062  1255503487
## 11063  1255509006
## 11064  1255595377
## 11065  1337594385
## 11066  1369513547
## 11067  1257229160
## 11068  1255589036
## 11069  1427170631
## 11070  1464508095
## 11071  1256029804
## 11072  1256028643
## 11073  1460519359
## 11074  1255742653
## 11075  1255502597
## 11076  1337594381
## 11077  1255587133
## 11078  1348567959
## 11079  1378179956
## 11080  1273216574
## 11081  1471332878
## 11082  1457596987
## 11083  1304411442
## 11084  1289045130
## 11085  1255502997
## 11086  1448953300
## 11087  1255591789
## 11088  1295874873
## 11089  1471332819
## 11090  1264405832
## 11091  1257228185
## 11092  1260877884
## 11093  1384069892
## 11094  1369514741
## 11095  1464508090
## 11096  1257222707
## 11097  1255503478
## 11098  1255596893
## 11099  1441513227
## 11100  1255593542
## 11101  1255588164
## 11102  1255607831
## 11103  1279947114
## 11104  1378179792
## 11105  1429168553
## 11106  1337593385
## 11107  1261656678
## 11108  1454042575
## 11109  1256029303
## 11110  1411451412
## 11111  1337594037
## 11112  1348568786
## 11113  1261486850
## 11114  1311654117
## 11115  1256030436
## 11116  1255594326
## 11117  1255503465
## 11118  1456039242
## 11119  1337593642
## 11120  1255849692
## 11121  1289046716
## 11122  1255594489
## 11123  1474614697
## 11124  1255607425
## 11125  1255591876
## 11126  1257164378
## 11127  1255596889
## 11128  1288095855
## 11129  1255591517
## 11130  1255508137
## 11131  1260977308
## 11132  1304412434
## 11133  1255503212
## 11134  1255844992
## 11135  1411810861
## 11136  1255585779
## 11137  1255606539
## 11138  1255743175
## 11139  1255595662
## 11140  1257418583
## 11141  1255850712
## 11142  1352959898
## 11143  1256559095
## 11144  1279948092
## 11145  1308113349
## 11146  1287575320
## 11147  1441513891
## 11148  1255503838
## 11149  1255586520
## 11150  1423801745
## 11151  1273217198
## 11152  1448953187
## 11153  1435474813
## 11154  1456039436
## 11155  1406172202
## 11156  1303464741
## 11157  1255742433
## 11158  1255589173
## 11159  1312496376
## 11160  1456039039
## 11161  1256029799
## 11162  1256030665
## 11163  1255844984
## 11164  1411451654
## 11165  1427170338
## 11166  1255596174
## 11167  1304412427
## 11168  1456039261
## 11169  1255742327
## 11170  1348568288
## 11171  1398568522
## 11172  1456039172
## 11173  1304411558
## 11174  1255502811
## 11175  1256017177
## 11176  1256019169
## 11177  1381126678
## 11178  1255593134
## 11179  1255608196
## 11180  1255843862
## 11181  1255588939
## 11182  1441522129
## 11183  1255588886
## 11184  1255594684
## 11185  1348568180
## 11186  1464751323
## 11187  1448953173
## 11188  1296460230
## 11189  1255591865
## 11190  1475989020
## 11191  1255592030
## 11192  1304412144
## 11193  1404370289
## 11194  1255844819
## 11195  1255597036
## 11196  1256019079
## 11197  1255742417
## 11198  1255851182
## 11199  1398568001
## 11200  1359617333
## 11201  1406172493
## 11202  1347441796
## 11203  1456038539
## 11204  1469772963
## 11205  1432788454
## 11206  1437710037
## 11207  1317177146
## 11208  1255587770
## 11209  1427170642
## 11210  1427170496
## 11211  1255589582
## 11212  1359974275
## 11213  1427170460
## 11214  1423801920
## 11215  1369206010
## 11216  1255590127
## 11217  1255501883
## 11218  1319337509
## 11219  1474263883
## 11220  1256029681
## 11221  1295874824
## 11222  1282543364
## 11223  1337593382
## 11224  1255596884
## 11225  1456039398
## 11226  1350192496
## 11227  1431234249
## 11228  1255589041
## 11229  1255947240
## 11230  1427170205
## 11231  1427168079
## 11232  1319337521
## 11233  1262838012
## 11234  1422335423
## 11235  1255844444
## 11236  1381126659
## 11237  1457597312
## 11238  1469772912
## 11239  1255596762
## 11240  1406171407
## 11241  1255844160
## 11242  1354679048
## 11243  1255587749
## 11244  1255743146
## 11245  1295591221
## 11246  1255596758
## 11247  1255595655
## 11248  1337593113
## 11249  1289046552
## 11250  1469772672
## 11251  1255508160
## 11252  1255845334
## 11253  1255843857
## 11254  1301481269
## 11255  1255587163
## 11256  1259323569
## 11257  1273217166
## 11258  1255595926
## 11259  1256018225
## 11260  1345798859
## 11261  1255507534
## 11262  1255607814
## 11263  1369513542
## 11264  1257228496
## 11265  1255591870
## 11266  1255844803
## 11267  1309414233
## 11268  1255506326
## 11269  1255596097
## 11270  1255845337
## 11271  1255508666
## 11272  1255592012
## 11273  1255845325
## 11274  1289377714
## 11275  1331809803
## 11276  1256029685
## 11277  1457320124
## 11278  1256028349
## 11279  1369513527
## 11280  1255505821
## 11281  1256029392
## 11282  1348567955
## 11283  1312496387
## 11284  1411355658
## 11285  1417081946
## 11286  1257228521
## 11287  1255503794
## 11288  1255844003
## 11289  1256030828
## 11290  1454043394
## 11291  1304412896
## 11292  1255588757
## 11293  1337593212
## 11294  1256030820
## 11295  1284880889
## 11296  1255502976
## 11297  1315969272
## 11298  1304412870
## 11299  1309414323
## 11300  1302152616
## 11301  1288782721
## 11302  1256559191
## 11303  1288096054
## 11304  1427170230
## 11305  1257229414
## 11306  1454042655
## 11307  1261217204
## 11308  1255742925
## 11309  1255591703
## 11310  1255844928
## 11311  1255742920
## 11312  1255508977
## 11313  1355922906
## 11314  1369515354
## 11315  1255587403
## 11316  1255584710
## 11317  1255586255
## 11318  1454042857
## 11319  1362112175
## 11320  1411355653
## 11321  1418784900
## 11322  1255844905
## 11323  1255593521
## 11324  1303465599
## 11325  1255504580
## 11326  1255586400
## 11327  1256027956
## 11328  1296460156
## 11329  1255502085
## 11330  1255506853
## 11331  1466320346
## 11332  1345798905
## 11333  1255587385
## 11334  1369514062
## 11335  1457597587
## 11336  1354676065
## 11337  1268806416
## 11338  1256030711
## 11339  1354676002
## 11340  1422335258
## 11341  1255586478
## 11342  1259837617
## 11343  1255502965
## 11344  1257164355
## 11345  1256030617
## 11346  1306826934
## 11347  1441514296
## 11348  1286699648
## 11349  1256030870
## 11350  1255588747
## 11351  1255586233
## 11352  1255596877
## 11353  1255845225
## 11354  1337593162
## 11355  1441514086
## 11356  1255501684
## 11357  1337593096
## 11358  1309414319
## 11359  1454042794
## 11360  1255592002
## 11361  1441513955
## 11362  1256029140
## 11363  1255502108
## 11364  1315969200
## 11365  1348568291
## 11366  1255502672
## 11367  1257228572
## 11368  1255591698
## 11369  1255742621
## 11370  1255503784
## 11371  1304411411
## 11372  1256018404
## 11373  1274526720
## 11374  1384070152
## 11375  1311653909
## 11376  1257228718
## 11377  1256018025
## 11378  1312496372
## 11379  1256029937
## 11380  1256017323
## 11381  1255947527
## 11382  1255588933
## 11383  1270610590
## 11384  1260273754
## 11385  1255503405
## 11386  1323247224
## 11387  1255844923
## 11388  1285673360
## 11389  1312496234
## 11390  1312496164
## 11391  1457598523
## 11392  1256030803
## 11393  1369514644
## 11394  1264751836
## 11395  1281668271
## 11396  1302604152
## 11397  1255844816
## 11398  1259837542
## 11399  1255501962
## 11400  1256029998
## 11401  1255508012
## 11402  1255504199
## 11403  1423801583
## 11404  1286794236
## 11405  1464751381
## 11406  1255596747
## 11407  1255505761
## 11408  1255502960
## 11409  1457598052
## 11410  1255596552
## 11411  1473060722
## 11412  1255508166
## 11413  1256559213
## 11414  1255594676
## 11415  1255844900
## 11416  1255586222
## 11417  1255592007
## 11418  1255844632
## 11419  1255596555
## 11420  1255586134
## 11421  1255501589
## 11422  1454042795
## 11423  1471759060
## 11424  1255586976
## 11425  1259837601
## 11426  1345798871
## 11427  1427170416
## 11428  1255501647
## 11429  1435472881
## 11430  1454042671
## 11431  1255589062
## 11432  1454043041
## 11433  1255597366
## 11434  1255596548
## 11435  1255606270
## 11436  1255591493
## 11437  1257228964
## 11438  1454042917
## 11439  1255607031
## 11440  1255503396
## 11441  1255508072
## 11442  1255591693
## 11443  1255593506
## 11444  1255844138
## 11445  1255503392
## 11446  1259323222
## 11447  1437711118
## 11448  1259323854
## 11449  1255505738
## 11450  1288697624
## 11451  1304411580
## 11452  1457597334
## 11453  1255843975
## 11454  1369514646
## 11455  1457318292
## 11456  1255588727
## 11457  1255844953
## 11458  1256559067
## 11459  1430034154
## 11460  1384069863
## 11461  1255587337
## 11462  1255504546
## 11463  1266309913
## 11464  1255587902
## 11465  1256018282
## 11466  1255742863
## 11467  1255586420
## 11468  1337593619
## 11469  1259325788
## 11470  1454042733
## 11471  1441513491
## 11472  1255589051
## 11473  1296209705
## 11474  1312495981
## 11475  1267705501
## 11476  1435472671
## 11477  1255606209
## 11478  1418785824
## 11479  1262826563
## 11480  1406172474
## 11481  1329122482
## 11482  1460517652
## 11483  1255506219
## 11484  1432523734
## 11485  1255851305
## 11486  1255501824
## 11487  1441513660
## 11488  1427170617
## 11489  1334134888
## 11490  1255509258
## 11491  1273231862
## 11492  1423801587
## 11493  1369515334
## 11494  1272351330
## 11495  1259037238
## 11496  1315969142
## 11497  1256944127
## 11498  1454042683
## 11499  1255508067
## 11500  1257228665
## 11501  1454042767
## 11502  1289995423
## 11503  1348567926
## 11504  1284880892
## 11505  1255851331
## 11506  1261217423
## 11507  1255584542
## 11508  1260280418
## 11509  1262471588
## 11510  1256639055
## 11511  1476086345
## 11512  1255850946
## 11513  1275964203
## 11514  1312496413
## 11515  1255505699
## 11516  1319336907
## 11517  1257228032
## 11518  1263197192
## 11519  1312496343
## 11520  1406172090
## 11521  1264835071
## 11522  1268808266
## 11523  1457597657
## 11524  1280749920
## 11525  1262487606
## 11526  1262490949
## 11527  1257418656
## 11528  1369514017
## 11529  1260877856
## 11530  1262660477
## 11531  1441513896
## 11532  1311319024
## 11533  1437711220
## 11534  1279948740
## 11535  1279948672
## 11536  1261487370
## 11537  1331019387
## 11538  1270610716
## 11539  1279948662
## 11540  1273212258
## 11541  1270626393
## 11542  1369205637
## 11543  1284788822
## 11544  1432523566
## 11545  1279947051
## 11546  1288782501
## 11547  1471493475
## 11548  1288697300
## 11549  1277244869
## 11550  1287639123
## 11551  1274171831
## 11552  1279948640
## 11553  1286184933
## 11554  1293747419
## 11555  1293747383
## 11556  1454042956
## 11557  1286699464
## 11558  1295874843
## 11559  1289045492
## 11560  1369514012
## 11561  1290170524
## 11562  1288262844
## 11563  1454041525
## 11564  1280207089
## 11565  1337594376
## 11566  1334134881
## 11567  1354676128
## 11568  1296730408
## 11569  1470450406
## 11570  1281668137
## 11571  1286364707
## 11572  1334396237
## 11573  1337593917
## 11574  1290923031
## 11575  1476081506
## 11576  1457597559
## 11577  1304412705
## 11578  1288095832
## 11579  1295875330
## 11580  1293747396
## 11581  1303283044
## 11582  1320810425
## 11583  1457597487
## 11584  1437709564
## 11585  1300946992
## 11586  1303464661
## 11587  1294806059
## 11588  1406172509
## 11589  1331889469
## 11590  1312496405
## 11591  1301291585
## 11592  1471332805
## 11593  1411355319
## 11594  1311318839
## 11595  1374355498
## 11596  1323226011
## 11597  1411452415
## 11598  1311318846
## 11599  1315968775
## 11600  1311651421
## 11601  1308222797
## 11602  1431584367
## 11603  1315968748
## 11604  1348567976
## 11605  1317176746
## 11606  1384069356
## 11607  1369515303
## 11608  1330240107
## 11609  1348567873
## 11610  1316757783
## 11611  1319336798
## 11612  1457597592
## 11613  1320810413
## 11614  1319336835
## 11615  1317176741
## 11616  1312496402
## 11617  1345798952
## 11618  1357553094
## 11619  1320810254
## 11620  1324634215
## 11621  1325543528
## 11622  1323857570
## 11623  1431406208
## 11624  1329461095
## 11625  1337593575
## 11626  1324634205
## 11627  1329122460
## 11628  1345799028
## 11629  1325685214
## 11630  1329461077
## 11631  1430706568
## 11632  1348568449
## 11633  1337593368
## 11634  1345798866
## 11635  1326315218
## 11636  1334396206
## 11637  1457597425
## 11638  1329986644
## 11639  1448953095
## 11640  1411452403
## 11641  1345799036
## 11642  1334396050
## 11643  1348568088
## 11644  1339743740
## 11645  1348568138
## 11646  1347441732
## 11647  1352959770
## 11648  1350192390
## 11649  1352959766
## 11650  1351406444
## 11651  1339743735
## 11652  1351406414
## 11653  1357552636
## 11654  1437711595
## 11655  1398570058
## 11656  1398570053
## 11657  1355736140
## 11658  1437711059
## 11659  1398570027
## 11660  1398570019
## 11661  1345799054
## 11662  1358144551
## 11663  1437711174
## 11664  1398570077
## 11665  1348568386
## 11666  1398570066
## 11667  1398569999
## 11668  1398569927
## 11669  1437711131
## 11670  1354675993
## 11671  1359358796
## 11672  1348568337
## 11673  1441514105
## 11674  1454043300
## 11675  1354675986
## 11676  1369515292
## 11677  1374355461
## 11678  1374355516
## 11679  1374355492
## 11680  1357552147
## 11681  1357552193
## 11682  1369206362
## 11683  1369205846
## 11684  1374355488
## 11685  1357552149
## 11686  1437710825
## 11687  1355735865
## 11688  1427170660
## 11689  1364009534
## 11690  1357552186
## 11691  1369206612
## 11692  1362112152
## 11693  1370057754
## 11694  1437709595
## 11695  1369205631
## 11696  1437104737
## 11697  1409452760
## 11698  1411452577
## 11699  1378179817
## 11700  1454043331
## 11701  1395986174
## 11702  1427170676
## 11703  1454041530
## 11704  1369205577
## 11705  1374355582
## 11706  1437104788
## 11707  1409452741
## 11708  1437104521
## 11709  1457596601
## 11710  1454042845
## 11711  1406171923
## 11712  1457597113
## 11713  1437104561
## 11714  1418462292
## 11715  1427170398
## 11716  1395986150
## 11717  1395986058
## 11718  1398567572
## 11719  1457597402
## 11720  1395986019
## 11721  1411452394
## 11722  1411355255
## 11723  1398567543
## 11724  1390015641
## 11725  1404370211
## 11726  1427170708
## 11727  1395986157
## 11728  1395986160
## 11729  1404370215
## 11730  1418461939
## 11731  1406172291
## 11732  1457597419
## 11733  1454043018
## 11734  1427170706
## 11735  1398570071
## 11736  1437711587
## 11737  1411452354
## 11738  1435472609
## 11739  1410578415
## 11740  1437104540
## 11741  1427170717
## 11742  1417081790
## 11743  1422335272
## 11744  1411452818
## 11745  1409452259
## 11746  1411452812
## 11747  1432523533
## 11748  1404370180
## 11749  1409452254
## 11750  1457597194
## 11751  1411355333
## 11752  1454043389
## 11753  1423801674
## 11754  1454043328
## 11755  1411355268
## 11756  1454043334
## 11757  1454043365
## 11758  1427168087
## 11759  1423801598
## 11760  1422335674
## 11761  1427168057
## 11762  1422335277
## 11763  1454042867
## 11764  1457597515
## 11765  1409205899
## 11766  1418462083
## 11767  1427170549
## 11768  1457597407
## 11769  1437104690
## 11770  1418462052
## 11771  1431406217
## 11772  1457597605
## 11773  1417081980
## 11774  1448953211
## 11775  1423801646
## 11776  1417593332
## 11777  1423801600
## 11778  1432523152
## 11779  1437711208
## 11780  1437711165
## 11781  1418462066
## 11782  1432788703
## 11783  1454042838
## 11784  1457597665
## 11785  1457597352
## 11786  1454042923
## 11787  1431232449
## 11788  1454042873
## 11789  1454042779
## 11790  1431233322
## 11791  1431233272
## 11792  1435472640
## 11793  1454041548
## 11794  1466320057
## 11795  1466320222
## 11796  1456038880
## 11797  1474255427
## 11798  1437711226
## 11799  1457597882
## 11800  1460517538
## 11801  1437709660
## 11802  1432523179
## 11803  1466320172
## 11804  1448953050
## 11805  1466320258
## 11806  1470720695
## 11807  1437711245
## 11808  1460517533
## 11809  1457597863
## 11810  1456038901
## 11811  1456038576
## 11812  1471332767
## 11813  1469772876
## 11814  1456038516
## 11815  1457332236
## 11816  1466320302
## 11817  1466320393
## 11818  1476080611
## 11819  1460517484
## 11820  1470719796
## 11821  1469772608
## 11822  1473060620
## 11823  1474255459
## 11824  1474255532
## 11825   942704394
## 11826   942705457
## 11827   942705568
## 11828   942703730
## 11829   942705318
## 11830   942703172
## 11831   942705457
## 11832   942705608
## 11833   942705304
## 11834   942703172
## 11835   942703569
## 11836   942705568
## 11837   942703337
## 11838   942703678
## 11839   942705648
## 11840   942703678
## 11841   942705496
## 11842   942705496
## 11843   942705381
## 11844   942705413
## 11845   942703172
## 11846   942703172
## 11847   942705533
## 11848   942705382
## 11849   942705232
## 11850   942704332
## 11851   942704723
## 11852   942702876
## 11853   942703038
## 11854   942705496
## 11855   942705608
## 11856   942703038
## 11857   942703038
## 11858   942703474
## 11859   942705708
## 11860   942704005
## 11861   942704863
## 11862   942704616
## 11863   942703337
## 11864   942705899
## 11865   942704668
## 11866   942704192
## 11867   942705678
## 11868   942705303
## 11869   942703093
## 11870   942705648
## 11871   942702937
## 11872   942702971
## 11873   942703538
## 11874  1165607201
## 11875  1143047700
## 11876  1165607192
## 11877  1143049641
## 11878  1143048074
## 11879  1143049571
## 11880  1165607377
## 11881  1165597501
## 11882  1143047643
## 11883  1143048140
## 11884  1143048117
## 11885  1143047471
## 11886  1143049541
## 11887  1165607346
## 11888  1143047458
## 11889  1143047880
## 11890  1143047478
## 11891  1165596956
## 11892  1143048687
## 11893  1143048797
## 11894  1165607264
## 11895  1143047916
## 11896  1143047668
## 11897  1143047463
## 11898  1143048961
## 11899  1143048947
## 11900  1165596837
## 11901  1143048856
## 11902  1143049098
## 11903  1143049193
## 11904  1143049074
## 11905  1165607749
## 11906  1143048735
## 11907  1165607773
## 11908  1143047705
## 11909  1143047928
## 11910  1143048680
## 11911  1165607559
## 11912  1165607472
## 11913  1143048840
## 11914  1143048887
## 11915  1143048986
## 11916  1143048691
## 11917  1165596756
## 11918  1143048977
## 11919  1143047503
## 11920  1143048836
## 11921  1165607261
## 11922  1165607757
## 11923  1143047710
## 11924  1165607737
## 11925  1165607211
## 11926  1165607206
## 11927  1143048849
## 11928  1165596933
## 11929  1143048844
## 11930  1165607763
## 11931  1143048004
## 11932  1143048064
## 11933  1165607144
## 11934  1143048164
## 11935  1143048156
## 11936  1143047444
## 11937  1143049592
## 11938  1143047448
## 11939  1143048056
## 11940  1165607364
## 11941  1143047624
## 11942  1143048523
## 11943  1143047921
## 11944  1143048053
## 11945  1143048090
## 11946  1143047874
## 11947  1143047679
## 11948  1143047997
## 11949  1143048070
## 11950  1143048175
## 11951  1165607133
## 11952  1143047685
## 11953  1165607636
## 11954  1143048532
## 11955  1165596884
## 11956  1143047960
## 11957  1143048305
## 11958  1143047636
## 11959  1143048520
## 11960  1143048106
## 11961  1143049630
## 11962  1143048615
## 11963  1143049615
## 11964  1165607547
## 11965  1165607066
## 11966  1143048712
## 11967  1143048602
## 11968  1143047691
## 11969  1143047689
## 11970  1165596737
## 11971  1143048020
## 11972  1143048746
## 11973  1143048172
## 11974  1165607415
## 11975  1143048565
## 11976  1143048267
## 11977  1143047896
## 11978  1143049546
## 11979  1143048546
## 11980  1143049565
## 11981  1165607272
## 11982  1165596914
## 11983  1143047490
## 11984  1143047941
## 11985  1165607230
## 11986  1143048203
## 11987  1143048829
## 11988  1143049532
## 11989  1165607291
## 11990  1143048182
## 11991  1143048879
## 11992  1143048866
## 11993  1143048659
## 11994  1165607318
## 11995  1143048707
## 11996  1143048060
## 11997  1165607360
## 11998  1143049523
## 11999  1143048930
## 12000  1143048725
## 12001  1143048192
## 12002  1165607372
## 12003  1165607099
## 12004  1143048765
## 12005  1143048629
## 12006  1143048967
## 12007  1143047861
## 12008  1143048671
## 12009  1143049061
## 12010  1143048646
## 12011  1165607136
## 12012  1165607299
## 12013  1143048773
## 12014  1143048683
## 12015  1165596823
## 12016  1165607919
## 12017  1165596874
## 12018  1165607897
## 12019  1194384499
## 12020  1194384318
## 12021  1194384313
## 12022  1194384411
## 12023  1194384386
## 12024  1194384460
## 12025  1194384373
## 12026  1194384328
## 12027  1194384361
## 12028  1194384299
## 12029  1194384353
## 12030  1194384281
## 12031  1194384341
## 12032  1194384277
## 12033  1194384275
## 12034  1194384399
## 12035  1194384338
## 12036  1194384512
## 12037  1194384470
## 12038  1194384451
## 12039  1163005363
## 12040  1163252774
## 12041  1183844529
## 12042  1163013349
## 12043  1163253023
## 12044  1163253088
## 12045  1163008777
## 12046  1163252918
## 12047  1163004464
## 12048  1163219726
## 12049  1163253105
## 12050  1163013335
## 12051  1183920234
## 12052  1163253085
## 12053  1183844506
## 12054  1163286142
## 12055  1163082488
## 12056  1163219428
## 12057  1163253082
## 12058  1163253079
## 12059  1163004353
## 12060  1163125859
## 12061  1163259531
## 12062  1163006051
## 12063  1163253117
## 12064  1163252922
## 12065  1163012798
## 12066  1163012801
## 12067  1163082508
## 12068  1163006037
## 12069  1163253047
## 12070  1163253104
## 12071  1163082485
## 12072  1163082500
## 12073  1163219321
## 12074  1163006023
## 12075  1163125780
## 12076  1163219373
## 12077  1163013353
## 12078  1163013344
## 12079  1163286164
## 12080  1163277657
## 12081  1163013330
## 12082  1163006020
## 12083  1183920204
## 12084  1163013198
## 12085  1163005103
## 12086  1183920099
## 12087  1163252886
## 12088  1163082479
## 12089  1163013341
## 12090  1163013339
## 12091  1163006012
## 12092  1163013328
## 12093  1163253015
## 12094  1163253037
## 12095  1183844492
## 12096  1163013368
## 12097  1183512581
## 12098  1163253027
## 12099  1163253163
## 12100  1163079173
## 12101  1183512477
## 12102  1163004390
## 12103  1163005369
## 12104  1163219390
## 12105  1163277702
## 12106  1163004359
## 12107  1183920326
## 12108  1163253110
## 12109  1163079436
## 12110  1163252515
## 12111  1163004406
## 12112  1163253049
## 12113  1163277603
## 12114  1163012788
## 12115  1183512491
## 12116  1163013360
## 12117  1163125789
## 12118  1163082497
## 12119  1163219937
## 12120  1163252283
## 12121  1163008790
## 12122  1183920321
## 12123  1163006027
## 12124  1163253113
## 12125  1163005217
## 12126  1163013055
## 12127  1163004386
## 12128  1163012783
## 12129  1183512498
## 12130  1163125801
## 12131  1163252277
## 12132  1163915651
## 12133  1163082678
## 12134  1163006001
## 12135  1163219327
## 12136  1163079424
## 12137  1163004479
## 12138  1163079277
## 12139  1163005225
## 12140  1163252892
## 12141  1183920197
## 12142  1183920089
## 12143  1163125883
## 12144  1163125876
## 12145  1163286102
## 12146  1163253071
## 12147  1183920103
## 12148  1163219409
## 12149  1163082518
## 12150  1163277597
## 12151  1183920299
## 12152  1163915779
## 12153  1183844513
## 12154  1163252930
## 12155  1163079388
## 12156  1163269736
## 12157  1163219656
## 12158  1183844547
## 12159  1163286171
## 12160  1163252812
## 12161  1163253127
## 12162  1166027866
## 12163  1183920347
## 12164  1183920251
## 12165  1183920333
## 12166  1163082649
## 12167  1183844575
## 12168  1163286265
## 12169  1163004544
## 12170  1163915788
## 12171  1183920345
## 12172  1163277609
## 12173  1163915709
## 12174  1166027980
## 12175  1166027880
## 12176  1163219362
## 12177  1163005101
## 12178  1163259483
## 12179  1163005107
## 12180  1163738014
## 12181  1183844537
## 12182  1163252612
## 12183  1163219423
## 12184  1163005196
## 12185  1163277646
## 12186  1163277601
## 12187  1163738035
## 12188  1163004608
## 12189  1163079154
## 12190  1163738031
## 12191  1184948966
## 12192  1163006017
## 12193  1163219366
## 12194  1163219414
## 12195  1163252918
## 12196  1183920219
## 12197  1183844561
## 12198  1163125798
## 12199  1166027951
## 12200  1183844524
## 12201  1163253120
## 12202  1163253062
## 12203  1163219953
## 12204  1163125886
## 12205  1163259854
## 12206  1163013177
## 12207  1163125878
## 12208  1183844565
## 12209  1163005335
## 12210  1163004536
## 12211  1163277606
## 12212  1163277704
## 12213  1183920193
## 12214  1163005456
## 12215  1163004499
## 12216  1183920214
## 12217  1163005080
## 12218  1163259912
## 12219  1163082621
## 12220  1163286260
## 12221  1163738069
## 12222  1183920264
## 12223  1163252250
## 12224  1163219938
## 12225  1163259527
## 12226  1163265784
## 12227  1166027886
## 12228  1166027891
## 12229  1166027895
## 12230  1183844498
## 12231  1183920246
## 12232  1163005031
## 12233  1183512502
## 12234  1163219416
## 12235  1163260803
## 12236  1183920231
## 12237  1183920227
## 12238  1163006008
## 12239  1163915774
## 12240  1163079471
## 12241  1163265859
## 12242  1163265861
## 12243  1163265862
## 12244  1163220288
## 12245  1183920122
## 12246  1163004371
## 12247  1163252840
## 12248  1163252803
## 12249  1163125809
## 12250  1183920274
## 12251  1163004354
## 12252  1163004631
## 12253  1183920127
## 12254  1163346129
## 12255  1163277700
## 12256  1183920136
## 12257  1166027898
## 12258  1163125847
## 12259  1163286177
## 12260  1163252909
## 12261  1163219953
## 12262  1163633273
## 12263  1163005241
## 12264  1163082640
## 12265  1163125785
## 12266  1183920097
## 12267  1183844539
## 12268  1183844467
## 12269  1163005117
## 12270  1183920341
## 12271  1163219308
## 12272  1163125813
## 12273  1163386523
## 12274  1163006045
## 12275  1183920259
## 12276  1163277663
## 12277  1163005522
## 12278  1163004657
## 12279  1183511678
## 12280  1183512622
## 12281  1163125818
## 12282  1163277586
## 12283  1166027993
## 12284  1163219386
## 12285  1163219717
## 12286  1163219638
## 12287  1163277592
## 12288  1163005385
## 12289  1163219317
## 12290  1163005491
## 12291  1183844543
## 12292  1163004453
## 12293  1183920262
## 12294  1163082645
## 12295  1163219402
## 12296  1163277654
## 12297  1163346143
## 12298  1163259669
## 12299  1163079326
## 12300  1163286010
## 12301  1163004488
## 12302  1183844503
## 12303  1163005487
## 12304  1163004783
## 12305  1163005091
## 12306  1163219723
## 12307  1163277648
## 12308  1163005229
## 12309  1163219298
## 12310  1163259811
## 12311  1163004517
## 12312  1166028040
## 12313  1183511703
## 12314  1166028045
## 12315  1166028040
## 12316  1166028010
## 12317  1163346052
## 12318  1163346050
## 12319  1163012825
## 12320  1183844570
## 12321  1163260633
## 12322  1183511682
## 12323  1163219319
## 12324  1183920174
## 12325  1183844557
## 12326  1163259824
## 12327  1163252803
## 12328  1163125836
## 12329  1183511991
## 12330  1183511757
## 12331  1163219241
## 12332  1163004633
## 12333  1183511779
## 12334  1163219395
## 12335  1163005497
## 12336  1163013078
## 12337  1163006062
## 12338  1163386501
## 12339  1163013182
## 12340  1163286160
## 12341  1163008703
## 12342  1163079317
## 12343  1163259890
## 12344  1163219907
## 12345  1163220283
## 12346  1163005991
## 12347  1163737974
## 12348  1163006072
## 12349  1163125866
## 12350  1183511846
## 12351  1163005434
## 12352  1163286001
## 12353  1183511648
## 12354  1274051069
## 12355  1274050854
## 12356  1344470037
## 12357  1274050782
## 12358  1344469842
## 12359  1274050940
## 12360  1344469790
## 12361  1274051508
## 12362  1274050758
## 12363  1274050991
## 12364  1274050945
## 12365  1327289203
## 12366  1274046007
## 12367  1274050942
## 12368  1344470407
## 12369  1274051011
## 12370  1274050895
## 12371  1274050755
## 12372  1274050741
## 12373  1274050827
## 12374  1274050752
## 12375  1274050869
## 12376  1327288678
## 12377  1274051738
## 12378  1274050745
## 12379  1274050816
## 12380  1274050797
## 12381  1274050750
## 12382  1274050831
## 12383  1328636541
## 12384  1344470455
## 12385  1274050785
## 12386  1274050763
## 12387  1274050748
## 12388  1274050801
## 12389  1274050821
## 12390  1274051080
## 12391  1274050766
## 12392  1327289197
## 12393  1327288505
## 12394  1274051063
## 12395  1274051008
## 12396  1274046035
## 12397  1274050989
## 12398  1345676388
## 12399  1274050843
## 12400  1274050885
## 12401  1274050792
## 12402  1274050964
## 12403  1327288495
## 12404  1274051079
## 12405  1274050770
## 12406  1274050993
## 12407  1274050904
## 12408  1327062981
## 12409  1274050852
## 12410  1274050876
## 12411  1274050805
## 12412  1344470536
## 12413  1345676342
## 12414  1327288652
## 12415  1274051262
## 12416  1344470332
## 12417  1344470035
## 12418  1327289353
## 12419  1274045997
## 12420  1344469958
## 12421  1274046052
## 12422  1274051802
## 12423  1274050950
## 12424  1344470497
## 12425  1344469730
## 12426  1274051255
## 12427  1274046079
## 12428  1274051089
## 12429  1344469988
## 12430  1327288610
## 12431  1344469919
## 12432  1356219742
## 12433  1274051084
## 12434  1344470446
## 12435  1274050948
## 12436  1327289341
## 12437  1274050845
## 12438  1344470107
## 12439  1344469830
## 12440  1274046023
## 12441  1274046061
## 12442  1327288604
## 12443  1274051067
## 12444  1274050974
## 12445  1274051253
## 12446  1344470116
## 12447  1344469836
## 12448  1274051275
## 12449  1274050826
## 12450  1344470388
## 12451  1344469948
## 12452  1344470322
## 12453  1274046142
## 12454  1274052026
## 12455  1328046149
## 12456  1274046041
## 12457  1328046208
## 12458  1344470328
## 12459  1274046086
## 12460  1327288596
## 12461  1274051581
## 12462  1274050787
## 12463  1327289320
## 12464  1274050865
## 12465  1274046002
## 12466  1274050967
## 12467  1344469934
## 12468  1274051060
## 12469  1274051281
## 12470  1274050793
## 12471  1327288635
## 12472  1274051279
## 12473  1345676411
## 12474  1274050848
## 12475  1344469750
## 12476  1274046172
## 12477  1344469913
## 12478  1344470523
## 12479  1344470341
## 12480  1274051797
## 12481  1344470469
## 12482  1327288628
## 12483  1274051897
## 12484  1327289236
## 12485  1327288622
## 12486  1274046121
## 12487  1344470577
## 12488  1274050886
## 12489  1344470313
## 12490  1327288585
## 12491  1344469943
## 12492  1327289233
## 12493  1327289228
## 12494  1274050970
## 12495  1274051784
## 12496  1344530161
## 12497  1327063029
## 12498  1344472522
## 12499  1344469805
## 12500  1344471126
## 12501  1333307515
## 12502  1327288577
## 12503  1274050983
## 12504  1344470392
## 12505  1274051829
## 12506  1344470351
## 12507  1344470343
## 12508  1327288572
## 12509  1327288563
## 12510  1274051637
## 12511  1274050984
## 12512  1327288556
## 12513  1327288550
## 12514  1274050890
## 12515  1344469968
## 12516  1344470491
## 12517  1344470449
## 12518  1344470026
## 12519  1344470349
## 12520  1274046093
## 12521  1356229145
## 12522  1327288541
## 12523  1344470443
## 12524  1344530365
## 12525  1274051518
## 12526  1274051757
## 12527  1327063019
## 12528  1333307847
## 12529  1274050863
## 12530  1274051748
## 12531  1344470040
## 12532  1344470309
## 12533  1274051759
## 12534  1274051563
## 12535  1274051086
## 12536  1344530435
## 12537  1344470149
## 12538  1344469825
## 12539  1274046191
## 12540  1344530420
## 12541  1344530381
## 12542  1274050908
## 12543  1274051712
## 12544  1328636458
## 12545  1327062972
## 12546  1333307553
## 12547  1274051783
## 12548  1274051715
## 12549  1327288534
## 12550  1327288529
## 12551  1274051268
## 12552  1346672082
## 12553  1344470357
## 12554  1344518331
## 12555  1274052032
## 12556  1274051752
## 12557  1327288739
## 12558  1274051798
## 12559  1274051633
## 12560  1274050980
## 12561  1344470121
## 12562  1344470372
## 12563  1274051794
## 12564  1344470476
## 12565  1344470545
## 12566  1327288726
## 12567  1274051780
## 12568  1327288523
## 12569  1344518494
## 12570  1327289219
## 12571  1344469996
## 12572  1274051848
## 12573  1327288720
## 12574  1344469894
## 12575  1344530363
## 12576  1344530371
## 12577  1327063041
## 12578  1344518298
## 12579  1327288715
## 12580  1328651648
## 12581  1274051716
## 12582  1327063058
## 12583  1345676370
## 12584  1327288988
## 12585  1328636442
## 12586  1328636566
## 12587  1274051816
## 12588  1344470539
## 12589  1274051721
## 12590  1327063006
## 12591  1363462225
## 12592  1344470740
## 12593  1327289209
## 12594  1344469724
## 12595  1344518302
## 12596  1344518809
## 12597  1344518317
## 12598  1274051823
## 12599  1328046198
## 12600  1344518294
## 12601  1344470834
## 12602  1344470126
## 12603  1344470065
## 12604  1274051523
## 12605  1327288700
## 12606  1274051773
## 12607  1327063126
## 12608  1344469772
## 12609  1344529892
## 12610  1358634080
## 12611  1274051746
## 12612  1327062958
## 12613  1344470051
## 12614  1344469820
## 12615  1344470072
## 12616  1352920811
## 12617  1182994648
## 12618  1182994926
## 12619  1182995062
## 12620  1182994636
## 12621  1182994622
## 12622  1182994728
## 12623  1182994610
## 12624  1182994765
## 12625  1182555848
## 12626  1182994616
## 12627  1182556000
## 12628  1182994781
## 12629  1182994717
## 12630  1182994627
## 12631  1182994732
## 12632  1182994756
## 12633  1182994965
## 12634  1182994653
## 12635  1182994899
## 12636  1182994775
## 12637  1182994952
## 12638  1182994723
## 12639  1182994711
## 12640  1182994818
## 12641  1182994912
## 12642  1182994786
## 12643  1182994791
## 12644  1182994945
## 12645  1182555959
## 12646  1182555847
## 12647  1182556054
## 12648  1182994750
## 12649  1182994807
## 12650  1182995057
## 12651  1182555876
## 12652  1182994878
## 12653  1182994972
## 12654  1182556148
## 12655  1182994834
## 12656  1182555991
## 12657  1182555869
## 12658  1182994903
## 12659  1182556240
## 12660  1182994861
## 12661  1182995029
## 12662  1182994849
## 12663  1182995072
## 12664  1182994884
## 12665  1182995104
## 12666  1182995012
## 12667  1182556308
## 12668  1182556130
## 12669  1182556378
## 12670  1182556482
## 12671  1182556320
## 12672   844860022
## 12673   844860041
## 12674   844860107
## 12675   844860003
## 12676   844860062
## 12677   844860151
## 12678   844860003
## 12679   844860041
## 12680   844860003
## 12681   844860062
## 12682   844860173
## 12683   844860003
## 12684   844860517
## 12685   844860250
## 12686   844860173
## 12687   844860022
## 12688   844860266
## 12689   844860062
## 12690   844860085
## 12691   844860022
## 12692   844861440
## 12693   844860215
## 12694   844860062
## 12695   844860085
## 12696   844860085
## 12697   844860198
## 12698   844860496
## 12699   844861413
## 12700   844860250
## 12701   844860215
## 12702   844860041
## 12703   844860173
## 12704   844861413
## 12705   844860198
## 12706   844860266
## 12707   844861019
## 12708   844861019
## 12709  1307172367
## 12710  1307169402
## 12711  1307179969
## 12712  1307174799
## 12713  1307172938
## 12714  1307171149
## 12715  1307173087
## 12716  1307173089
## 12717  1307172985
## 12718  1307174641
## 12719  1307171452
## 12720  1307172386
## 12721  1307169236
## 12722  1307172383
## 12723  1307172343
## 12724  1307178610
## 12725  1307180667
## 12726  1307171594
## 12727  1307178475
## 12728  1307178724
## 12729  1307173047
## 12730  1307174899
## 12731  1307180625
## 12732  1307175182
## 12733  1307172416
## 12734  1307178374
## 12735  1307172330
## 12736  1307178462
## 12737  1307172514
## 12738  1307172080
## 12739  1307169415
## 12740  1307178606
## 12741  1307172085
## 12742  1307180587
## 12743  1307169246
## 12744  1307172493
## 12745  1307178387
## 12746  1307180647
## 12747  1307174910
## 12748  1307171800
## 12749  1307171603
## 12750  1307169218
## 12751  1307180591
## 12752  1307179973
## 12753  1307180643
## 12754  1307179936
## 12755  1307180621
## 12756  1307172282
## 12757  1307172475
## 12758  1307169335
## 12759  1307179945
## 12760  1307172071
## 12761  1307173783
## 12762  1307179942
## 12763  1307171554
## 12764  1307171816
## 12765  1307169357
## 12766  1307180690
## 12767  1307172357
## 12768  1307169275
## 12769  1307169422
## 12770  1307180985
## 12771  1307172241
## 12772  1307174778
## 12773  1307179931
## 12774  1307171682
## 12775  1307171518
## 12776  1307173092
## 12777  1307171511
## 12778  1307172034
## 12779  1307180444
## 12780  1307180653
## 12781  1307171489
## 12782  1307172908
## 12783  1307171929
## 12784  1307171418
## 12785  1307172978
## 12786  1307169545
## 12787  1307172369
## 12788  1307169589
## 12789  1307173060
## 12790  1307172197
## 12791  1307171746
## 12792  1307180611
## 12793  1307169608
## 12794  1307180639
## 12795  1307171598
## 12796  1307173663
## 12797  1307171752
## 12798  1307171631
## 12799  1307172319
## 12800  1307173007
## 12801  1307172238
## 12802  1307179979
## 12803  1307180420
## 12804  1307172433
## 12805  1307171479
## 12806  1307172154
## 12807  1307180598
## 12808  1307174689
## 12809  1307172961
## 12810  1307178465
## 12811  1307171686
## 12812  1307171420
## 12813  1307178330
## 12814  1307175022
## 12815  1307171680
## 12816  1307171842
## 12817  1307179983
## 12818  1307171907
## 12819  1307173075
## 12820  1307178208
## 12821  1307177440
## 12822  1307172225
## 12823  1307180990
## 12824  1307172805
## 12825  1307172101
## 12826  1307171878
## 12827  1307180149
## 12828  1307180746
## 12829  1307172863
## 12830  1307172450
## 12831  1307171367
## 12832  1307180847
## 12833  1307180362
## 12834  1307174858
## 12835  1307177412
## 12836  1307171356
## 12837  1307178303
## 12838  1307172173
## 12839  1307180335
## 12840  1307172325
## 12841  1307177426
## 12842  1307180145
## 12843  1307172130
## 12844  1307172373
## 12845  1307173112
## 12846  1307180141
## 12847  1307173098
## 12848  1307178621
## 12849  1307172311
## 12850  1307169533
## 12851  1307173763
## 12852  1307172454
## 12853  1307180134
## 12854  1307180237
## 12855  1307172169
## 12856  1307180694
## 12857  1307169383
## 12858  1307171589
## 12859  1307175227
## 12860  1307177375
## 12861  1307172203
## 12862  1307171458
## 12863  1307180634
## 12864  1307172215
## 12865  1307180849
## 12866  1307172182
## 12867  1307171915
## 12868  1307172379
## 12869   835973445
## 12870   835973471
## 12871   835973471
## 12872   835973488
## 12873   835973458
## 12874   835973488
## 12875   835973458
## 12876   835973379
## 12877   835973398
## 12878   835973504
## 12879   835973398
## 12880   835973445
## 12881   835973419
## 12882   835973445
## 12883   835973504
## 12884   835973458
## 12885   835973431
## 12886   835973380
## 12887   835973458
## 12888   835973419
## 12889   835973419
## 12890   835973418
## 12891   835973431
## 12892   835973398
## 12893   835973504
## 12894   835973488
## 12895   835973504
## 12896   835973380
## 12897   835973458
## 12898   835973488
## 12899   835973431
## 12900   835973504
## 12901   835973488
## 12902   835973445
## 12903   835973398
## 12904   835973379
## 12905   835973379
## 12906   835973430
## 12907   835973419
## 12908  1156206916
## 12909  1156206448
## 12910  1156207541
## 12911  1156205258
## 12912  1156207469
## 12913  1156206709
## 12914  1156207607
## 12915  1156206932
## 12916  1156205069
## 12917  1156207528
## 12918  1156205399
## 12919  1156207393
## 12920  1156205395
## 12921  1156206432
## 12922  1156205656
## 12923  1156207431
## 12924  1156205062
## 12925  1156205254
## 12926  1156207404
## 12927  1156205241
## 12928  1156205644
## 12929  1156205647
## 12930  1156206584
## 12931  1156207579
## 12932  1156205385
## 12933  1156206735
## 12934  1156207536
## 12935  1156205103
## 12936  1156205036
## 12937  1156205382
## 12938  1156206581
## 12939  1156206305
## 12940  1156205621
## 12941  1156206554
## 12942  1156205372
## 12943  1156205236
## 12944  1156205012
## 12945  1156205366
## 12946  1156205231
## 12947  1156206232
## 12948  1156205603
## 12949  1156206569
## 12950  1156206193
## 12951  1156206651
## 12952  1156205360
## 12953  1156205116
## 12954  1156205079
## 12955  1156205597
## 12956  1156205108
## 12957  1156206678
## 12958  1156207561
## 12959  1156205057
## 12960  1156205586
## 12961  1156207452
## 12962  1156205019
## 12963  1156205355
## 12964  1156207505
## 12965  1156207576
## 12966  1156207007
## 12967  1156205343
## 12968  1156205568
## 12969  1156206976
## 12970  1156205341
## 12971  1156205337
## 12972  1156205560
## 12973  1156207519
## 12974  1156207407
## 12975  1156206206
## 12976  1156207465
## 12977  1156207385
## 12978  1156206335
## 12979  1156205549
## 12980  1156207378
## 12981  1156205072
## 12982  1156205066
## 12983  1156205227
## 12984  1156205050
## 12985  1156205318
## 12986  1156206687
## 12987  1156205315
## 12988  1156206643
## 12989  1156206109
## 12990  1156206557
## 12991  1156206361
## 12992  1156206548
## 12993  1156206640
## 12994  1156206330
## 12995  1156205312
## 12996  1156206276
## 12997  1156206983
## 12998  1156205522
## 12999  1156205304
## 13000  1156205302
## 13001  1156205298
## 13002  1156205508
## 13003  1156206681
## 13004  1156205515
## 13005  1156206992
## 13006  1156207514
## 13007  1156207276
## 13008  1156205502
## 13009  1156205494
## 13010  1156206161
## 13011  1156206211
## 13012  1156205797
## 13013  1156205095
## 13014  1156206559
## 13015  1156207595
## 13016  1156206178
## 13017  1156206668
## 13018  1156206112
## 13019  1156205479
## 13020  1156206371
## 13021  1156205296
## 13022  1156207556
## 13023  1156206196
## 13024  1156206694
## 13025  1156205474
## 13026  1156206169
## 13027  1156205292
## 13028  1156205780
## 13029  1156205468
## 13030  1156206599
## 13031  1156205085
## 13032  1156205765
## 13033  1156206943
## 13034  1156205759
## 13035  1156207591
## 13036  1156205751
## 13037  1156206364
## 13038  1156205739
## 13039  1156205736
## 13040  1156205449
## 13041  1156206995
## 13042  1156206165
## 13043  1156207279
## 13044  1156205274
## 13045  1156205445
## 13046  1156206253
## 13047  1156206947
## 13048  1156206394
## 13049  1156205729
## 13050  1156206692
## 13051  1156205029
## 13052  1156206308
## 13053  1156206705
## 13054  1156205270
## 13055  1156205435
## 13056  1156206646
## 13057  1156205432
## 13058  1156207498
## 13059  1156206301
## 13060  1156205421
## 13061  1156206134
## 13062  1156205417
## 13063  1156206979
## 13064  1156205409
## 13065  1156206637
## 13066  1156205696
## 13067  1156206118
## 13068  1156206624
## 13069  1429910800
## 13070  1429910930
## 13071  1429910910
## 13072  1429910837
## 13073  1429910797
## 13074  1429910957
## 13075  1429910764
## 13076  1429910902
## 13077  1429910909
## 13078  1429910922
## 13079  1429910906
## 13080  1429910948
## 13081  1429911562
## 13082  1429910790
## 13083  1429712680
## 13084  1429910812
## 13085  1429910913
## 13086  1429910771
## 13087  1429910861
## 13088  1429911170
## 13089  1429910935
## 13090  1429911066
## 13091  1429911144
## 13092  1429911104
## 13093  1429911142
## 13094  1429911073
## 13095  1429911363
## 13096  1429911077
## 13097  1429911265
## 13098  1429911164
## 13099  1429911152
## 13100  1429911006
## 13101  1429911137
## 13102  1429911227
## 13103  1429911106
## 13104  1429911149
## 13105  1429911038
## 13106  1429911063
## 13107  1429911041
## 13108  1429910749
## 13109  1429911049
## 13110  1429911572
## 13111  1429910917
## 13112  1429911017
## 13113  1429911098
## 13114  1429911130
## 13115  1429911247
## 13116  1429910753
## 13117  1429911059
## 13118  1429910831
## 13119  1429911297
## 13120  1429910872
## 13121  1429911118
## 13122  1429911039
## 13123  1429911113
## 13124  1429910932
## 13125  1429911044
## 13126  1429712691
## 13127  1429911126
## 13128  1429911204
## 13129  1429911060
## 13130  1429911207
## 13131  1429911214
## 13132  1429910840
## 13133  1429911525
## 13134  1429911101
## 13135  1429910987
## 13136  1429911051
## 13137  1429911276
## 13138  1429911292
## 13139  1429911295
## 13140  1429910892
## 13141  1429911509
## 13142  1429910927
## 13143  1429911174
## 13144  1429911102
## 13145  1429911221
## 13146  1429910876
## 13147  1429911233
## 13148  1429911253
## 13149  1429911198
## 13150  1429911097
## 13151  1429911229
## 13152  1429911203
## 13153  1429911238
## 13154  1429910996
## 13155  1429911193
## 13156  1429910919
## 13157  1429911340
## 13158  1429910974
## 13159  1429911421
## 13160  1429910960
## 13161  1429910829
## 13162  1429910890
## 13163  1429911154
## 13164  1429910852
## 13165  1429911107
## 13166  1429911208
## 13167  1429911567
## 13168  1429910886
## 13169  1429911541
## 13170  1429910984
## 13171  1429910785
## 13172  1429910849
## 13173  1429911262
## 13174  1429911003
## 13175  1429911538
## 13176  1429910965
## 13177  1429911001
## 13178  1429910808
## 13179  1429910884
## 13180  1429910860
## 13181  1429910856
## 13182  1429910866
## 13183  1429712709
## 13184  1429911324
## 13185   837511784
## 13186   837512420
## 13187   837512493
## 13188   837507143
## 13189   837512280
## 13190   837511743
## 13191   837512169
## 13192   837512134
## 13193   837506990
## 13194   837506903
## 13195   837506803
## 13196   837513025
## 13197   837512403
## 13198   837507117
## 13199   837506796
## 13200   837512681
## 13201   837513025
## 13202   837512148
## 13203   837512454
## 13204   837512701
## 13205   837511998
## 13206   837512987
## 13207   837511493
## 13208   837511986
## 13209   837512599
## 13210   837511797
## 13211   837512325
## 13212   837512325
## 13213   837512519
## 13214   837507101
## 13215   837512212
## 13216   837512599
## 13217   837512030
## 13218   837512635
## 13219   837513025
## 13220   837513012
## 13221   837512134
## 13222   837512482
## 13223   837512962
## 13224   837512114
## 13225   837512611
## 13226   837507117
## 13227   837511431
## 13228   837506719
## 13229   837512200
## 13230   837512888
## 13231   837512236
## 13232   837506848
## 13233   837512249
## 13234   837507101
## 13235   837511448
## 13236   837512763
## 13237   837506801
## 13238   837506799
## 13239   837511838
## 13240   837512312
## 13241   837506902
## 13242   837512561
## 13243   837512169
## 13244   837512580
## 13245   837511809
## 13246   837511822
## 13247   837512403
## 13248   837512723
## 13249   837511771
## 13250   837506726
## 13251   837512599
## 13252   837511784
## 13253   837512420
## 13254   837512433
## 13255   837512344
## 13256   837512015
## 13257   837512344
## 13258   837511349
## 13259   837512191
## 13260   837506903
## 13261   837512312
## 13262   837512312
## 13263   837511743
## 13264   837512225
## 13265   837512181
## 13266   837512648
## 13267   837512249
## 13268   837511838
## 13269   837506847
## 13270   837512561
## 13271   837512482
## 13272   837512388
## 13273   837512648
## 13274   837511743
## 13275   837512114
## 13276   837512268
## 13277   837512325
## 13278   837506797
## 13279   837507044
## 13280   837506714
## 13281   837506709
## 13282   837506876
## 13283   837512504
## 13284   837507101
## 13285   837512519
## 13286   837512225
## 13287   837512681
## 13288   837511448
## 13289   837512681
## 13290   837512723
## 13291   837506902
## 13292   848161799
## 13293   848159306
## 13294   848161252
## 13295   848159382
## 13296   848160301
## 13297   848159249
## 13298   848159249
## 13299   848161123
## 13300   848160245
## 13301   848160132
## 13302   848160311
## 13303   848161285
## 13304   848159270
## 13305   848159230
## 13306   848160169
## 13307   848159467
## 13308   848161788
## 13309   848160022
## 13310   848161443
## 13311   848159211
## 13312   848161091
## 13313   848161498
## 13314   848160534
## 13315   848161284
## 13316   848161182
## 13317   848161391
## 13318   848161091
## 13319   848161221
## 13320   848161123
## 13321   848161330
## 13322   848161539
## 13323   848160534
## 13324   848161182
## 13325   848161391
## 13326   848160230
## 13327   848159382
## 13328   848161353
## 13329   848161267
## 13330   848159074
## 13331   848161799
## 13332   848161123
## 13333   848161454
## 13334   848159289
## 13335   848161091
## 13336   848160273
## 13337   848161811
## 13338   848160534
## 13339   848161507
## 13340   848159406
## 13341   848161090
## 13342   848159752
## 13343   848159634
## 13344   848159167
## 13345   848161123
## 13346   848161454
## 13347   848159545
## 13348   848161373
## 13349   848160081
## 13350   848159117
## 13351   848159826
## 13352   848159429
## 13353   848160360
## 13354   848161252
## 13355   848159905
## 13356   848161208
## 13357   848159406
## 13358   848159191
## 13359   848161465
## 13360   848161982
## 13361   848161454
## 13362   848161149
## 13363   848159467
## 13364   848161787
## 13365   848161199
## 13366   848159608
## 13367   848161308
## 13368   848161308
## 13369   848161343
## 13370   848161773
## 13371   848160119
## 13372   848161773
## 13373   848159074
## 13374   848160039
## 13375   848159230
## 13376   848161134
## 13377   848159765
## 13378   848159807
## 13379   848159845
## 13380   848159932
## 13381   848161182
## 13382   848159117
## 13383   848159148
## 13384   848159779
## 13385   848160389
## 13386   848160729
## 13387   848159148
## 13388   848161199
## 13389   848160081
## 13390   848161104
## 13391   848159621
## 13392   848159719
## 13393   848161134
## 13394   848159270
## 13395   848159654
## 13396   848159211
## 13397   848161330
## 13398   848161149
## 13399   848161404
## 13400   848162010
## 13401   848159719
## 13402   848161443
## 13403   848161788
## 13404   848161353
## 13405   848160066
## 13406   848159191
## 13407   848160573
## 13408   848161491
## 13409   848161343
## 13410   848161161
## 13411   848159706
## 13412   848161443
## 13413   848159148
## 13414   848159932
## 13415   848161465
## 13416   848161123
## 13417   848161773
## 13418   848160301
## 13419   848159361
## 13420   848159326
## 13421   848159503
## 13422   848159249
## 13423   848159779
## 13424   848159856
## 13425   848159932
## 13426   848159989
## 13427   848159249
## 13428   848162072
## 13429   848159949
## 13430   848159429
## 13431   848159503
## 13432   848161252
## 13433   848161811
## 13434   848161788
## 13435   848159230
## 13436   848159093
## 13437   848159191
## 13438   848161161
## 13439   848159074
## 13440   848161773
## 13441   848159503
## 13442   848161267
## 13443   848159689
## 13444   848159230
## 13445   848159590
## 13446   848161360
## 13447   848161308
## 13448   848161343
## 13449   848160245
## 13450   848161481
## 13451   848161221
## 13452   848161149
## 13453   848161330
## 13454   848159794
## 13455   848162097
## 13456   848162119
## 13457   848160360
## 13458   848161237
## 13459   848161539
## 13460   848161161
## 13461   848159975
## 13462   848159406
## 13463   848159949
## 13464   848162010
## 13465   848161481
## 13466   848161528
## 13467   848161552
## 13468   848161552
## 13469   848162129
## 13470   848162026
## 13471   848160714
## 13472   848160865
## 13473   848161267
## 13474   848160039
## 13475   848162144
## 13476   848160211
## 13477   848160625
## 13478   848160729
## 13479   848160993
## 13480   848160983
## 13481   848161044
## 13482   858623186
## 13483   858623219
## 13484   858623186
## 13485   858623186
## 13486   858623240
## 13487   858623186
## 13488   858623319
## 13489   858623186
## 13490   858623240
## 13491   858623240
## 13492   858623186
## 13493   858623240
## 13494   858623456
## 13495   858623219
## 13496   858623219
## 13497   858623186
## 13498   858623335
## 13499   858623364
## 13500   858623219
## 13501   858623186
## 13502   858623257
## 13503   858623270
## 13504   858623186
## 13505   858623319
## 13506   858623219
## 13507   858623257
## 13508   858623283
## 13509   858623219
## 13510   858623299
## 13511   858623403
## 13512   858623335
## 13513  1239773232
## 13514  1239765126
## 13515  1239764623
## 13516  1239764334
## 13517  1239755559
## 13518  1239758454
## 13519  1239764316
## 13520  1239763433
## 13521  1239758460
## 13522  1239764336
## 13523  1239764721
## 13524  1239764330
## 13525  1239763733
## 13526  1239763939
## 13527  1239765071
## 13528  1239766992
## 13529  1239763933
## 13530  1239764312
## 13531  1239764512
## 13532  1239767689
## 13533  1239764173
## 13534  1239755560
## 13535  1239763727
## 13536  1239755456
## 13537  1239758451
## 13538  1239757625
## 13539  1239763984
## 13540  1239757629
## 13541  1239764763
## 13542  1239764337
## 13543  1239763845
## 13544  1239775160
## 13545  1239764885
## 13546  1239764964
## 13547  1239757626
## 13548  1239764169
## 13549  1239763943
## 13550  1239763839
## 13551  1239763826
## 13552  1239766980
## 13553  1239773306
## 13554  1239764176
## 13555  1239763731
## 13556  1239763722
## 13557  1239765126
## 13558  1239772521
## 13559  1239764638
## 13560  1239764747
## 13561  1239766985
## 13562  1239756770
## 13563  1239767724
## 13564  1239758268
## 13565  1239764701
## 13566  1239755377
## 13567  1239765069
## 13568  1239764309
## 13569  1239757679
## 13570  1239772558
## 13571  1239763711
## 13572  1239764749
## 13573  1239763938
## 13574  1239755381
## 13575  1239763830
## 13576  1239763854
## 13577  1239764853
## 13578  1239772575
## 13579  1239763983
## 13580  1239762941
## 13581  1239772824
## 13582  1239757090
## 13583  1239755385
## 13584  1239755437
## 13585  1239755560
## 13586  1239764515
## 13587  1239764492
## 13588  1239775047
## 13589  1239758081
## 13590  1239764641
## 13591  1239764678
## 13592  1239758059
## 13593  1239764609
## 13594  1239758202
## 13595  1239764886
## 13596  1239758210
## 13597  1239757684
## 13598  1239758069
## 13599  1239763265
## 13600  1239764628
## 13601  1239764716
## 13602  1239764604
## 13603  1239764615
## 13604  1239772561
## 13605  1239763858
## 13606  1239766995
## 13607  1239755420
## 13608  1239764173
## 13609  1239755561
## 13610  1239755415
## 13611  1239764516
## 13612  1239765070
## 13613  1239764905
## 13614  1239764514
## 13615  1239765130
## 13616  1239764889
## 13617  1239764845
## 13618  1239765138
## 13619  1239767713
## 13620  1239758428
## 13621  1239764767
## 13622  1239756858
## 13623  1239766989
## 13624  1239764988
## 13625  1239755446
## 13626  1239758442
## 13627  1239764905
## 13628  1239773365
## 13629  1239764518
## 13630  1239755427
## 13631  1239764540
## 13632  1239764341
## 13633  1239772229
## 13634  1239764751
## 13635  1239764896
## 13636  1239774217
## 13637  1239764695
## 13638  1239764636
## 13639  1239765142
## 13640  1239764706
## 13641  1239767000
## 13642  1257010873
## 13643  1239764852
## 13644  1239766983
## 13645  1239764618
## 13646  1239764344
## 13647  1239764770
## 13648  1239763841
## 13649  1239772626
## 13650  1239764978
## 13651  1239758086
## 13652  1239764969
## 13653  1239774709
## 13654  1239763430
## 13655  1239764684
## 13656  1239766975
## 13657  1239767661
## 13658  1239767652
## 13659  1239755416
## 13660  1239764774
## 13661  1239764693
## 13662  1239757873
## 13663  1239758107
## 13664  1239778395
## 13665  1239764339
## 13666  1239765128
## 13667  1239773748
## 13668  1239764794
## 13669  1239774220
## 13670  1239755557
## 13671  1239765070
## 13672  1239775154
## 13673  1239763277
## 13674  1239773739
## 13675  1239765131
## 13676  1239764184
## 13677  1239765070
## 13678  1239773151
## 13679  1239755558
## 13680  1239756814
## 13681  1239764782
## 13682  1239758460
## 13683  1239775449
## 13684  1239764966
## 13685  1239764951
## 13686  1239764957
## 13687  1239762847
## 13688  1239772249
## 13689  1239772623
## 13690  1239773931
## 13691  1239764688
## 13692  1239767658
## 13693  1239764753
## 13694  1239757171
## 13695  1239772946
## 13696  1239756824
## 13697  1239757094
## 13698  1239772461
## 13699  1239772239
## 13700  1239764714
## 13701  1239778184
## 13702  1239767719
## 13703  1239767682
## 13704  1239764608
## 13705  1239773123
## 13706  1239762921
## 13707  1239773937
## 13708  1239756837
## 13709  1239773743
## 13710  1239763309
## 13711  1239762854
## 13712  1239773941
## 13713  1239764786
## 13714  1239764697
## 13715  1239767643
## 13716  1239773949
## 13717  1239772568
## 13718  1239771765
## 13719  1239756823
## 13720  1256960996
## 13721  1239771692
## 13722  1239772247
## 13723  1239757077
## 13724  1239775462
## 13725  1239766978
## 13726  1239767657
## 13727  1239763295
## 13728  1239767702
## 13729  1239772533
## 13730  1239772225
## 13731  1239767646
## 13732  1239772582
## 13733  1239772618
## 13734  1239772528
## 13735  1239772951
## 13736  1239772632
## 13737  1239778397
## 13738  1239755439
## 13739  1239775005
## 13740  1239772928
## 13741  1239778633
## 13742  1239774702
## 13743  1239761146
## 13744  1239772241
## 13745  1239774712
## 13746  1239774126
## 13747  1239772995
## 13748  1251668327
## 13749  1259386770
## 13750  1239773175
## 13751  1239773229
## 13752  1256960930
## 13753  1239757476
## 13754  1256961092
## 13755  1239772235
## 13756  1239758696
## 13757  1239775107
## 13758  1239772923
## 13759  1239775407
## 13760  1251668389
## 13761  1239758693
## 13762  1239759260
## 13763  1239758705
## 13764  1239767650
## 13765  1249886099
## 13766  1249886123
## 13767  1251956371
## 13768  1257620018
## 13769  1257610324
## 13770  1257620127
## 13771  1257620488
## 13772  1257620511
## 13773  1257620279
## 13774  1257620073
## 13775  1257610311
## 13776  1257620499
## 13777  1257620251
## 13778  1257610314
## 13779  1257620122
## 13780  1257620508
## 13781  1257610525
## 13782  1257620110
## 13783  1257620515
## 13784  1257620522
## 13785  1257620040
## 13786  1257620132
## 13787  1257620113
## 13788  1257620045
## 13789  1257610347
## 13790  1257620538
## 13791  1257620544
## 13792  1257620479
## 13793  1257620589
## 13794  1257610479
## 13795  1257620572
## 13796  1257610885
## 13797  1257620592
## 13798  1257610468
## 13799  1257620269
## 13800  1257620129
## 13801  1257620503
## 13802  1257620604
## 13803  1257620518
## 13804  1257610437
## 13805  1257620271
## 13806  1257620535
## 13807  1257610538
## 13808  1257620568
## 13809  1257610494
## 13810  1257620265
## 13811  1257610567
## 13812  1257620282
## 13813  1257620037
## 13814  1257620582
## 13815  1257620117
## 13816  1257610620
## 13817  1257620031
## 13818  1257620554
## 13819  1257620258
## 13820  1257620255
## 13821  1257620050
## 13822  1257620132
## 13823  1257620466
## 13824  1257620454
## 13825  1257610864
## 13826  1257610580
## 13827  1257620448
## 13828  1257620541
## 13829  1257620575
## 13830  1257620285
## 13831  1257620602
## 13832  1257620481
## 13833  1257620457
## 13834   875517174
## 13835   875517954
## 13836   875517624
## 13837   875517306
## 13838   875517953
## 13839   875516371
## 13840   875520648
## 13841   875520409
## 13842   875518226
## 13843   875516370
## 13844   875516370
## 13845   875519306
## 13846   875518088
## 13847   875516731
## 13848   875518345
## 13849   875520264
## 13850   875517233
## 13851   875520463
## 13852   875518641
## 13853   875517174
## 13854   875518088
## 13855   875520464
## 13856   875517754
## 13857   875517233
## 13858   875517953
## 13859   895843258
## 13860   875518345
## 13861   875517306
## 13862   875518016
## 13863   875514792
## 13864   875517306
## 13865   875517233
## 13866   875519306
## 13867   875514792
## 13868   875515203
## 13869   875515203
## 13870   875519715
## 13871   875515030
## 13872   875517174
## 13873   876370672
## 13874   876288277
## 13875   875518289
## 13876   875517306
## 13877   875516370
## 13878   875518088
## 13879   875517358
## 13880   876288017
## 13881   875515956
## 13882   875515902
## 13883   875515030
## 13884  1448798200
## 13885  1448813887
## 13886  1448813534
## 13887  1448798511
## 13888  1448798347
## 13889  1448814310
## 13890  1448798142
## 13891  1448813322
## 13892  1448813386
## 13893  1448798105
## 13894  1448814317
## 13895  1448798101
## 13896  1448798168
## 13897  1448814268
## 13898  1448798508
## 13899  1448814281
## 13900  1448798139
## 13901  1448798326
## 13902  1448798161
## 13903  1448814498
## 13904  1448798146
## 13905  1448798490
## 13906  1448798242
## 13907  1448798104
## 13908  1448798107
## 13909  1448798180
## 13910  1448798136
## 13911  1448798206
## 13912  1448798178
## 13913  1448798300
## 13914  1448798307
## 13915  1448798140
## 13916  1448798532
## 13917  1448798342
## 13918  1448798143
## 13919  1448813382
## 13920  1448814231
## 13921  1448814231
## 13922  1448814230
## 13923  1448814268
## 13924  1448798112
## 13925  1448813169
## 13926  1448814124
## 13927  1448798580
## 13928  1448798200
## 13929  1448813361
## 13930  1448814276
## 13931  1448798170
## 13932  1448798564
## 13933  1448814280
## 13934  1448814228
## 13935  1448814200
## 13936  1448798208
## 13937  1448813368
## 13938  1448814226
## 13939  1448798338
## 13940  1448814412
## 13941  1448813183
## 13942  1448798317
## 13943  1448798341
## 13944  1448798115
## 13945  1448813064
## 13946  1448798216
## 13947  1448798134
## 13948  1448813528
## 13949  1448814312
## 13950  1448814436
## 13951  1448798114
## 13952  1448813185
## 13953  1448813189
## 13954  1448813078
## 13955  1448814393
## 13956  1448814287
## 13957  1448798548
## 13958  1448798175
## 13959  1448813022
## 13960  1448813008
## 13961  1448814434
## 13962  1448813043
## 13963  1448798234
## 13964  1448814469
## 13965  1448798488
## 13966  1448814476
## 13967  1448814443
## 13968  1448814407
## 13969  1448813111
## 13970  1448798163
## 13971  1448813293
## 13972  1448813885
## 13973  1448814418
## 13974  1448798116
## 13975  1448814399
## 13976  1448798230
## 13977  1448798219
## 13978  1448813535
## 13979  1448814401
## 13980  1448798186
## 13981  1448798188
## 13982  1448813028
## 13983  1448798331
## 13984  1448813010
## 13985  1448798475
## 13986  1448798187
## 13987  1448798561
## 13988  1448798300
## 13989  1448798165
## 13990  1448798481
## 13991  1448798492
## 13992  1448814299
## 13993  1448813209
## 13994  1448798482
## 13995  1448813080
## 13996  1448814286
## 13997  1448798233
## 13998  1448798202
## 13999  1448798191
## 14000  1448798222
## 14001  1448798645
## 14002  1448798513
## 14003  1448813059
## 14004  1448798507
## 14005  1448798554
## 14006  1448813012
## 14007  1448798161
## 14008  1448798244
## 14009  1448814395
## 14010  1448798340
## 14011  1448798239
## 14012  1448813040
## 14013  1448813127
## 14014  1448798514
## 14015  1448813037
## 14016  1448814472
## 14017  1448813046
## 14018  1448798204
## 14019  1448798214
## 14020  1448813133
## 14021  1448813013
## 14022  1448798210
## 14023  1448798496
## 14024  1448814302
## 14025  1448813019
## 14026  1448798238
## 14027  1448798144
## 14028  1448798217
## 14029  1448813890
## 14030  1448814423
## 14031  1448798654
## 14032  1448813002
## 14033  1448798537
## 14034   848526251
## 14035   848525932
## 14036   848526431
## 14037   848525661
## 14038   848525903
## 14039   848525799
## 14040   848525799
## 14041   848525833
## 14042   848525764
## 14043   848525833
## 14044   848526389
## 14045   848526550
## 14046   848525730
## 14047   848525799
## 14048   848526334
## 14049   848526084
## 14050   848525971
## 14051   848525661
## 14052   848526594
## 14053   848526274
## 14054   848526572
## 14055   848525510
## 14056   848526334
## 14057   848525554
## 14058   848525873
## 14059   848525661
## 14060   848526550
## 14061   848525554
## 14062   848526406
## 14063   848525932
## 14064   848526037
## 14065   848526572
## 14066   848526334
## 14067   848526060
## 14068   848526484
## 14069   848526274
## 14070   848526363
## 14071   848525661
## 14072   848526508
## 14073   848526484
## 14074   848525589
## 14075   848526363
## 14076   848526529
## 14077   848526037
## 14078   848526334
## 14079   848525694
## 14080   848525873
## 14081   848526005
## 14082   848525694
## 14083   848525624
## 14084   848526363
## 14085   848525510
## 14086   848525764
## 14087   848525932
## 14088   848525589
## 14089   848525873
## 14090   848525624
## 14091   848526711
## 14092   848526037
## 14093   848525624
## 14094   848526061
## 14095   848526061
## 14096   848526431
## 14097   848525694
## 14098   848525554
## 14099   848525589
## 14100   848525873
## 14101   848526389
## 14102   848526484
## 14103   848525589
## 14104   848525833
## 14105   848526594
## 14106   848525730
## 14107   848526037
## 14108   848525730
## 14109   848526363
## 14110   848526431
## 14111   848525730
## 14112   848525510
## 14113   848526671
## 14114   848525833
## 14115   848526037
## 14116   848525903
## 14117   848525624
## 14118   848525903
## 14119   848525873
## 14120   848525971
## 14121   848525694
## 14122   848526615
## 14123   848525554
## 14124   848526508
## 14125   848526594
## 14126   848525932
## 14127   848525624
## 14128   848526431
## 14129   848526484
## 14130   848525730
## 14131   848526251
## 14132   848525932
## 14133   848526508
## 14134   848525799
## 14135   848526615
## 14136   848526005
## 14137   848525799
## 14138   848526632
## 14139   848526363
## 14140   848526529
## 14141   848525971
## 14142   848526458
## 14143   848525764
## 14144   848525554
## 14145   848525694
## 14146   848525510
## 14147   848525510
## 14148   848525589
## 14149   848525764
## 14150   848526061
## 14151   848526005
## 14152   848526615
## 14153   848526431
## 14154   848526274
## 14155   848526711
## 14156   848526334
## 14157  1304992014
## 14158  1304992956
## 14159  1304992470
## 14160  1304992496
## 14161  1304992612
## 14162  1304992044
## 14163  1304992650
## 14164  1304992545
## 14165  1304992002
## 14166  1304992201
## 14167  1304991771
## 14168  1304729472
## 14169  1304993113
## 14170  1304993047
## 14171  1304992536
## 14172  1304729463
## 14173  1304992467
## 14174  1304991727
## 14175  1304993029
## 14176  1304991695
## 14177  1304991813
## 14178  1304992794
## 14179  1304729519
## 14180  1304729511
## 14181  1304992253
## 14182  1304992362
## 14183  1304992164
## 14184  1304991715
## 14185  1304991644
## 14186  1304992145
## 14187  1304991672
## 14188  1304991976
## 14189  1304992476
## 14190  1304992157
## 14191  1304991806
## 14192  1304730634
## 14193  1304729528
## 14194  1304993084
## 14195  1304993135
## 14196  1304729500
## 14197  1304992427
## 14198  1304729546
## 14199  1304992912
## 14200  1304993128
## 14201  1304993105
## 14202  1304991872
## 14203  1304993056
## 14204  1304991877
## 14205  1304992150
## 14206  1304992131
## 14207  1304991788
## 14208  1304992590
## 14209  1304993139
## 14210  1304991885
## 14211  1304729440
## 14212  1304992621
## 14213  1304992965
## 14214  1304992601
## 14215  1304991801
## 14216  1304992197
## 14217  1304993180
## 14218  1304992081
## 14219  1304992945
## 14220  1304992566
## 14221  1304992785
## 14222  1304992367
## 14223  1304992382
## 14224  1304992980
## 14225  1304992244
## 14226  1304992258
## 14227  1304992689
## 14228  1304992372
## 14229  1304992435
## 14230  1304992542
## 14231  1304729481
## 14232  1304992334
## 14233  1304729620
## 14234  1304992089
## 14235  1304992108
## 14236  1304992212
## 14237  1304992510
## 14238  1304992707
## 14239  1304729449
## 14240  1304992236
## 14241  1304992654
## 14242  1304992659
## 14243  1304992445
## 14244  1304992644
## 14245  1304992988
## 14246  1304992274
## 14247  1304992573
## 14248  1304992693
## 14249  1304993132
## 14250  1304992774
## 14251  1304992753
## 14252  1304991839
## 14253  1304992605
## 14254  1304992288
## 14255  1304729573
## 14256  1304993022
## 14257  1304992431
## 14258  1304992724
## 14259  1304729539
## 14260  1304729577
## 14261  1304730537
## 14262  1304992717
## 14263  1304992675
## 14264  1304992393
## 14265  1304992126
## 14266  1304993193
## 14267  1304992208
## 14268  1304992116
## 14269  1304730462
## 14270  1304992960
## 14271  1304992617
## 14272  1304991655
## 14273  1304729607
## 14274  1304992417
## 14275  1304992228
## 14276  1304992578
## 14277  1304991776
## 14278  1304992025
## 14279  1304992638
## 14280  1304992993
## 14281  1304991738
## 14282  1304992101
## 14283  1304991702
## 14284  1304992293
## 14285  1304992773
##                                                                               genres
## 1                                                                              Drama
## 2                                                   Animation|Children|Drama|Musical
## 3                                                                           Thriller
## 4                                                   Action|Adventure|Sci-Fi|Thriller
## 5                                                                              Drama
## 6                                                                          Drama|War
## 7                                                             Action|Adventure|Drama
## 8                                                                              Drama
## 9                                                    Fantasy|Horror|Romance|Thriller
## 10                                                                          Thriller
## 11                                                                  Adventure|Sci-Fi
## 12                                                  Adventure|Animation|Comedy|Crime
## 13                                                             Action|Crime|Thriller
## 14                                                           Action|Adventure|Sci-Fi
## 15                                                                  Adventure|Comedy
## 16                                                          Action|Adventure|Fantasy
## 17                                       Adventure|Animation|Children|Comedy|Fantasy
## 18                                                      Drama|Horror|Sci-Fi|Thriller
## 19                                                   Adventure|Comedy|Fantasy|Sci-Fi
## 20                                                                    Comedy|Western
## 21                                                         Action|Adventure|Thriller
## 22                                                                     Drama|Romance
## 23                                                                    Comedy|Romance
## 24                                                                  Mystery|Thriller
## 25                                                            Crime|Mystery|Thriller
## 26                                                              Comedy|Drama|Romance
## 27                                                                             Drama
## 28                                                                  Action|Drama|War
## 29                                                                            Comedy
## 30                                                              Adventure|Drama|IMAX
## 31                                                     Action|Adventure|Comedy|Crime
## 32                                                                Drama|Thriller|War
## 33                                                             Action|Crime|Thriller
## 34                                                              Action|Drama|Romance
## 35                                                             Action|Crime|Thriller
## 36                                                                    Comedy|Romance
## 37                                                           Action|Adventure|Sci-Fi
## 38                                                                     Drama|Romance
## 39                                                                            Comedy
## 40                                                                    Drama|Thriller
## 41                                                                      Comedy|Drama
## 42                                                                            Comedy
## 43                                                                      Drama|Horror
## 44                                                                             Drama
## 45                                                             Drama|Fantasy|Romance
## 46                                                         Drama|Romance|War|Western
## 47                                                                      Comedy|Drama
## 48                                                               Drama|Horror|Sci-Fi
## 49                                                      Action|Drama|Sci-Fi|Thriller
## 50                                                       Comedy|Crime|Drama|Thriller
## 51                                                                             Drama
## 52                                                    Children|Drama|Fantasy|Mystery
## 53                                                              Comedy|Drama|Fantasy
## 54                                                             Comedy|Drama|Thriller
## 55                                                                    Comedy|Romance
## 56                                                       Action|Crime|Drama|Thriller
## 57                                                            Drama|Mystery|Thriller
## 58                                                          Comedy|Drama|Romance|War
## 59                                                                    Comedy|Romance
## 60                                   Adventure|Animation|Children|Drama|Musical|IMAX
## 61                                                       Action|Comedy|Crime|Fantasy
## 62                                                                     Action|Comedy
## 63                                                                      Comedy|Drama
## 64                                                              Comedy|Drama|Romance
## 65                                                           Action|Romance|Thriller
## 66                                                     Drama|Horror|Romance|Thriller
## 67                                                                    Action|Fantasy
## 68                                                           Children|Comedy|Fantasy
## 69                                                                    Drama|Thriller
## 70                                                                          Thriller
## 71                                                                    Comedy|Romance
## 72                                                                   Action|Thriller
## 73                                                  Action|Adventure|Sci-Fi|Thriller
## 74                                                   Action|Adventure|Comedy|Fantasy
## 75                                                                    Comedy|Romance
## 76                                                                      Comedy|Drama
## 77                                                                             Drama
## 78                                                                     Drama|Romance
## 79                                                                     Drama|Romance
## 80                                                                         Drama|War
## 81                                                                             Drama
## 82                                                              Comedy|Drama|Romance
## 83                                                                    Comedy|Romance
## 84                                                Animation|Children|Fantasy|Musical
## 85                                                   Action|Adventure|Comedy|Romance
## 86                                                                            Comedy
## 87                                                                   Children|Comedy
## 88                                             Comedy|Drama|Fantasy|Romance|Thriller
## 89                                       Adventure|Animation|Children|Comedy|Musical
## 90                                                                     Action|Sci-Fi
## 91                                                           Adventure|Drama|Western
## 92                                                             Action|Crime|Thriller
## 93                                                             Crime|Horror|Thriller
## 94                                                                Animation|Children
## 95                                      Adventure|Animation|Children|Fantasy|Musical
## 96                                                        Adventure|Animation|Comedy
## 97                                                        Adventure|Children|Fantasy
## 98                                                                  Action|Drama|War
## 99                                                                       Crime|Drama
## 100                                                                           Comedy
## 101                                                      Comedy|Crime|Drama|Thriller
## 102                                                                      Crime|Drama
## 103                                                          Children|Comedy|Fantasy
## 104                                                         Comedy|Drama|Romance|War
## 105                                                          Action|Romance|Thriller
## 106                                                                        Drama|War
## 107                                      Adventure|Animation|Children|Comedy|Musical
## 108                                                            Action|Crime|Thriller
## 109                                                            Crime|Horror|Thriller
## 110                                  Animation|Children|Fantasy|Musical|Romance|IMAX
## 111                                                Action|Adventure|Romance|Thriller
## 112                                                               Comedy|Crime|Drama
## 113                                                     Crime|Drama|Romance|Thriller
## 114                                          Action|Adventure|Comedy|Fantasy|Romance
## 115                                                          Action|Adventure|Sci-Fi
## 116                                                             Comedy|Drama|Romance
## 117                                                               Comedy|Crime|Drama
## 118                                                            Action|Comedy|Western
## 119                                                             Action|Comedy|Sci-Fi
## 120                                                                    Drama|Romance
## 121                                                           Adventure|Comedy|Drama
## 122                                                                 Action|Drama|War
## 123                                                                     Comedy|Drama
## 124                                                                           Horror
## 125                                                                           Comedy
## 126                                                                            Drama
## 127                                                             Action|Comedy|Sci-Fi
## 128                                                             Drama|Horror|Mystery
## 129                                                          Horror|Mystery|Thriller
## 130                                                                    Drama|Romance
## 131                                                      Action|Crime|Drama|Thriller
## 132                                                                           Comedy
## 133                                                                   Drama|Thriller
## 134                                                                            Drama
## 135                                                 Action|Adventure|Sci-Fi|Thriller
## 136                                                                      Documentary
## 137                                              Adventure|Animation|Children|Comedy
## 138                                                   Action|Adventure|Drama|Fantasy
## 139                                                             Drama|Romance|Sci-Fi
## 140                                                                      Documentary
## 141                                                     Action|Adventure|Sci-Fi|IMAX
## 142                                                                 Animation|Comedy
## 143                                                      Action|Sci-Fi|Thriller|IMAX
## 144                                                                        Drama|War
## 145                                                                        Drama|War
## 146                                                          Action|Crime|Drama|IMAX
## 147                                                                      Documentary
## 148                                                        Action|Adventure|Thriller
## 149                                                                   Children|Drama
## 150                                                    Action|Adventure|Comedy|Crime
## 151                                                                           Comedy
## 152                                                    Action|Adventure|Comedy|Crime
## 153                                                              Action|Crime|Sci-Fi
## 154                                                            Action|Crime|Thriller
## 155                                                          Action|Adventure|Sci-Fi
## 156                                                                   Comedy|Romance
## 157                                                      Comedy|Crime|Drama|Thriller
## 158                                                           Adventure|Drama|Sci-Fi
## 159                                                      Action|Crime|Drama|Thriller
## 160                                                         Comedy|Drama|Romance|War
## 161                                                                   Comedy|Romance
## 162                                  Adventure|Animation|Children|Drama|Musical|IMAX
## 163                                                      Action|Comedy|Crime|Fantasy
## 164                                         Action|Adventure|Comedy|Romance|Thriller
## 165                                                          Children|Comedy|Fantasy
## 166                                                                      Crime|Drama
## 167                                                        Action|Adventure|Thriller
## 168                                                                    Comedy|Sci-Fi
## 169                                                                   Comedy|Romance
## 170                                                          Action|Adventure|Sci-Fi
## 171                                                  Action|Adventure|Crime|Thriller
## 172                                                 Action|Adventure|Sci-Fi|Thriller
## 173                                                           Action|Sci-Fi|Thriller
## 174                                      Adventure|Animation|Children|Comedy|Musical
## 175                                                                    Action|Sci-Fi
## 176                                                          Adventure|Drama|Western
## 177                                         Animation|Children|Drama|Fantasy|Musical
## 178                                               Animation|Children|Fantasy|Musical
## 179                                         Action|Adventure|Animation|Horror|Sci-Fi
## 180                                                               Animation|Children
## 181                                                                      Crime|Drama
## 182                                                   Drama|Mystery|Romance|Thriller
## 183                                                                     Comedy|Crime
## 184                                                                Film-Noir|Mystery
## 185                                               Adventure|Children|Fantasy|Musical
## 186                                                  Children|Comedy|Fantasy|Romance
## 187                                                                  Children|Comedy
## 188                                       Animation|Children|Fantasy|Musical|Romance
## 189                                                  Children|Comedy|Fantasy|Musical
## 190                                             Adventure|Animation|Children|Musical
## 191                                                       Adventure|Children|Musical
## 192                                     Adventure|Animation|Children|Fantasy|Musical
## 193                                                         Animation|Children|Drama
## 194                                                            Action|Crime|Thriller
## 195                                                  Children|Comedy|Fantasy|Musical
## 196                                                                     Comedy|Crime
## 197                                                           Crime|Mystery|Thriller
## 198                                                            Children|Drama|Sci-Fi
## 199                                                                     Comedy|Crime
## 200                                                 Action|Adventure|Sci-Fi|Thriller
## 201                                                         Adventure|Comedy|Fantasy
## 202                                                                           Comedy
## 203                                                          Action|Adventure|Sci-Fi
## 204                                          Action|Adventure|Comedy|Fantasy|Romance
## 205                                                                 Action|Adventure
## 206                                                   Action|Adventure|Horror|Sci-Fi
## 207                                                      Crime|Drama|Sci-Fi|Thriller
## 208                                                                 Action|Drama|War
## 209                                                          Action|Adventure|Sci-Fi
## 210                                                                      Crime|Drama
## 211                                                                    Horror|Sci-Fi
## 212                                                                     Crime|Horror
## 213                                                            Action|Comedy|Musical
## 214                                                                        Drama|War
## 215                                                                            Drama
## 216                                                                   Comedy|Romance
## 217                                                           Action|Sci-Fi|Thriller
## 218                                                                     Comedy|Drama
## 219                                                                   Comedy|Romance
## 220                                                                           Horror
## 221                                                                  Adventure|Drama
## 222                                                           Comedy|Fantasy|Romance
## 223                                                          Adventure|Comedy|Sci-Fi
## 224                                                                   Comedy|Fantasy
## 225                                               Animation|Children|Fantasy|Musical
## 226                                                                           Comedy
## 227                                                                           Comedy
## 228                                                                 Action|Adventure
## 229                                                                    Drama|Musical
## 230                                                                   Comedy|Romance
## 231                                                                  Horror|Thriller
## 232                                                                    Horror|Sci-Fi
## 233                                                             Crime|Drama|Thriller
## 234                                                 Action|Adventure|Sci-Fi|Thriller
## 235                                                                 Adventure|Sci-Fi
## 236                                                            Action|Mystery|Sci-Fi
## 237                                                 Action|Adventure|Sci-Fi|Thriller
## 238                                                          Adventure|Comedy|Sci-Fi
## 239                                                                     Action|Crime
## 240                                                           Comedy|Musical|Romance
## 241                                                                    Action|Horror
## 242                                                                  Horror|Thriller
## 243                                                 Action|Comedy|Crime|Drama|Sci-Fi
## 244                                                 Action|Adventure|Sci-Fi|Thriller
## 245                                                             Action|Comedy|Sci-Fi
## 246                                                                       Comedy|War
## 247                                                           Drama|Romance|Thriller
## 248                                                     Crime|Drama|Mystery|Thriller
## 249                                                                    Action|Comedy
## 250                                                   Action|Romance|Sci-Fi|Thriller
## 251                                                     Action|Comedy|Crime|Thriller
## 252                                                            Action|Crime|Thriller
## 253                                                                            Drama
## 254                                                                            Drama
## 255                                                        Adventure|Fantasy|Musical
## 256                                                                     Comedy|Drama
## 257                                                                  Horror|Thriller
## 258                                                        Action|Comedy|Crime|Drama
## 259                                                        Action|Comedy|Crime|Drama
## 260                                                                    Comedy|Horror
## 261                                         Action|Adventure|Children|Comedy|Fantasy
## 262                                                          Children|Comedy|Fantasy
## 263                                                         Animation|Children|Drama
## 264                                                                    Drama|Romance
## 265                                                                 Adventure|Sci-Fi
## 266                                             Adventure|Animation|Children|Fantasy
## 267                                                                  Children|Sci-Fi
## 268                                                        Adventure|Children|Sci-Fi
## 269                                         Adventure|Children|Comedy|Fantasy|Sci-Fi
## 270                                                                      Documentary
## 271                                                Animation|Children|Comedy|Musical
## 272                                                Animation|Children|Comedy|Romance
## 273                                        Animation|Children|Comedy|Musical|Romance
## 274                                                     Adventure|Animation|Children
## 275                                                                    Drama|Fantasy
## 276                                               Animation|Children|Fantasy|Musical
## 277                                                                  Children|Sci-Fi
## 278                                                          Action|Adventure|Sci-Fi
## 279                                                       Animation|Children|Musical
## 280                                                           Comedy|Fantasy|Romance
## 281                                                Animation|Children|Comedy|Musical
## 282                                                          Action|Adventure|Sci-Fi
## 283                                                                           Comedy
## 284                                                            Comedy|Crime|Thriller
## 285                                                                            Drama
## 286                                                         Action|Adventure|Fantasy
## 287                                                          Children|Comedy|Fantasy
## 288                                                                Adventure|Fantasy
## 289                                              Adventure|Animation|Children|Comedy
## 290                                                        Adventure|Fantasy|Romance
## 291                                                                   Comedy|Romance
## 292                                                       Adventure|Children|Fantasy
## 293                                                                   Comedy|Fantasy
## 294                                                         Action|Adventure|Fantasy
## 295                                                               Action|Crime|Drama
## 296                                                             Comedy|Drama|Romance
## 297                                                           Drama|Fantasy|Thriller
## 298                                                             Crime|Drama|Thriller
## 299                                                               Comedy|Crime|Drama
## 300                                                                            Drama
## 301                                                             Comedy|Crime|Mystery
## 302                                                  Action|Adventure|Drama|Thriller
## 303                                                  Action|Adventure|Comedy|Romance
## 304                                                                     Action|Drama
## 305                                                            Horror|Mystery|Sci-Fi
## 306                                                     Crime|Drama|Mystery|Thriller
## 307                                                            Drama|Horror|Thriller
## 308                                                                     Action|Crime
## 309                                                          Action|Adventure|Sci-Fi
## 310                                                          Action|Adventure|Sci-Fi
## 311                                                               Comedy|Documentary
## 312                                                          Action|Adventure|Comedy
## 313                                                                    Comedy|Horror
## 314                                                             Action|Comedy|Sci-Fi
## 315                                                            Action|Comedy|Fantasy
## 316                                                         Adventure|Drama|Thriller
## 317                                                                           Comedy
## 318                                                                           Comedy
## 319                                                                           Comedy
## 320                                                                           Comedy
## 321                                                     Comedy|Drama|Fantasy|Romance
## 322                                                                  Children|Comedy
## 323                                                                Adventure|Romance
## 324                                                           Comedy|Horror|Thriller
## 325                                                                Adventure|Fantasy
## 326                                                                          Musical
## 327                                                          Horror|Mystery|Thriller
## 328                                                                  Horror|Thriller
## 329                                                 Action|Adventure|Sci-Fi|Thriller
## 330                                                                           Comedy
## 331                                                  Adventure|Comedy|Fantasy|Sci-Fi
## 332                                                     Action|Crime|Sci-Fi|Thriller
## 333                        Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery
## 334                                                        Action|Adventure|Thriller
## 335                                                                           Horror
## 336                                      Adventure|Animation|Children|Comedy|Musical
## 337                                                                           Comedy
## 338                                                                           Comedy
## 339                                                             Comedy|Drama|Musical
## 340                                                                     Comedy|Drama
## 341                                                                   Drama|Thriller
## 342                                                     Action|Comedy|Crime|Thriller
## 343                                                     Comedy|Drama|Fantasy|Romance
## 344                                                             Crime|Drama|Thriller
## 345                                                                    Action|Comedy
## 346                                                             Comedy|Drama|Romance
## 347                                                                    Drama|Mystery
## 348                                                                     Comedy|Drama
## 349                                                                     Comedy|Drama
## 350                                                      Action|Crime|Drama|Thriller
## 351                                              Adventure|Animation|Children|Sci-Fi
## 352                                                                   Comedy|Romance
## 353                                                                   Comedy|Romance
## 354                                                                           Comedy
## 355                                                                           Comedy
## 356                                                             Adventure|Drama|IMAX
## 357                                                                 Adventure|Comedy
## 358                                                                            Drama
## 359                                                                           Comedy
## 360                                                         Comedy|Drama|Romance|War
## 361                                  Adventure|Animation|Children|Drama|Musical|IMAX
## 362                                                      Action|Comedy|Crime|Fantasy
## 363                                                          Action|Romance|Thriller
## 364                                                                   Comedy|Romance
## 365                                                                     Comedy|Drama
## 366                                                                  Children|Comedy
## 367                                      Adventure|Animation|Children|Comedy|Musical
## 368                                  Animation|Children|Fantasy|Musical|Romance|IMAX
## 369                                                                   Comedy|Romance
## 370                                                    Comedy|Fantasy|Romance|Sci-Fi
## 371                                                                      Crime|Drama
## 372                                                   Drama|Mystery|Romance|Thriller
## 373                                               Adventure|Children|Fantasy|Musical
## 374                                       Animation|Children|Fantasy|Musical|Romance
## 375                                                                  Musical|Romance
## 376                                                                            Drama
## 377                                                                      Crime|Drama
## 378                                                             Comedy|Drama|Romance
## 379                                                                   Comedy|Romance
## 380                                                           Comedy|Musical|Romance
## 381                                                                    Drama|Romance
## 382                                                                           Comedy
## 383                                                 Action|Adventure|Sci-Fi|Thriller
## 384                                                              Comedy|Drama|Sci-Fi
## 385                                                                    Drama|Romance
## 386                                                                   Comedy|Romance
## 387                                                             Comedy|Drama|Romance
## 388                                                                   Comedy|Romance
## 389                                                                            Drama
## 390                                                                     Comedy|Drama
## 391                                                                   Horror|Mystery
## 392                                                     Crime|Drama|Mystery|Thriller
## 393                                        Animation|Children|Comedy|Musical|Romance
## 394                                                     Action|Comedy|Crime|Thriller
## 395                                      Adventure|Animation|Children|Comedy|Fantasy
## 396                                              Adventure|Animation|Children|Comedy
## 397                                                                   Comedy|Romance
## 398                                                                     Comedy|Crime
## 399                                                          Action|Adventure|Comedy
## 400                                                                           Comedy
## 401                                                                   Comedy|Romance
## 402                                                             Drama|Horror|Mystery
## 403                                                                           Comedy
## 404                                                                           Comedy
## 405                                                             Comedy|Drama|Fantasy
## 406                                      Adventure|Animation|Children|Comedy|Fantasy
## 407                                                           Drama|Mystery|Thriller
## 408                                                                            Drama
## 409                                                                 Action|Drama|War
## 410                                                                            Drama
## 411                                                                           Comedy
## 412                                                                    Drama|Romance
## 413                                                                   Comedy|Romance
## 414                                                                            Drama
## 415                                                                     Comedy|Crime
## 416                              Adventure|Animation|Children|Comedy|Fantasy|Romance
## 417                                                            Drama|Musical|Romance
## 418                                                                   Comedy|Romance
## 419                                                                           Comedy
## 420                                                                   Crime|Thriller
## 421                                                                    Drama|Romance
## 422                                                                         Thriller
## 423                                                                   Comedy|Romance
## 424                                                 Action|Adventure|Sci-Fi|Thriller
## 425                                                                      Crime|Drama
## 426                                                                      Documentary
## 427                                                          Horror|Mystery|Thriller
## 428                                                                Adventure|Fantasy
## 429                                                                        Drama|War
## 430                                                             Comedy|Drama|Romance
## 431                                                     Comedy|Drama|Fantasy|Romance
## 432                                              Adventure|Animation|Children|Comedy
## 433                                                             Action|Horror|Sci-Fi
## 434                                                             Comedy|Drama|Romance
## 435                                                             Comedy|Drama|Romance
## 436                                                                           Comedy
## 437                                                         Comedy|Documentary|Drama
## 438                                                                      Documentary
## 439                                                     Action|Adventure|Sci-Fi|IMAX
## 440                                                 Action|Adventure|Sci-Fi|Thriller
## 441                                                                            Drama
## 442                                                                        Drama|War
## 443                                           Adventure|Children|Comedy|Fantasy|IMAX
## 444                                                                      Crime|Drama
## 445                                                  Action|Adventure|Comedy|Romance
## 446                                                                   Comedy|Romance
## 447                                                                   Comedy|Romance
## 448                                                            Drama|Musical|Romance
## 449                                                       Adventure|Children|Fantasy
## 450                                          Action|Adventure|Drama|Fantasy|Thriller
## 451                                                                           Comedy
## 452                                                             Crime|Drama|Thriller
## 453                                                               Adventure|Children
## 454                                                              Action|Crime|Sci-Fi
## 455                                                      Action|Crime|Drama|Thriller
## 456                                               Animation|Children|Fantasy|Musical
## 457                                                   Drama|Mystery|Romance|Thriller
## 458                                                              Adventure|Drama|War
## 459                                                              Adventure|Drama|War
## 460                                                                  Adventure|Drama
## 461                                                                            Drama
## 462                                                                           Comedy
## 463                                                                            Drama
## 464                                                             Comedy|Drama|Romance
## 465                                                                  Action|Thriller
## 466                                                                           Comedy
## 467                                                            Drama|Sci-Fi|Thriller
## 468                                             Action|Crime|Mystery|Sci-Fi|Thriller
## 469                                                        Action|Comedy|Crime|Drama
## 470                                                           Action|Adventure|Drama
## 471                                                                           Comedy
## 472                                                                   Comedy|Fantasy
## 473                                                                     Comedy|Crime
## 474                                                          Action|Adventure|Sci-Fi
## 475                                                              Action|Drama|Sci-Fi
## 476                                                           Action|Sci-Fi|Thriller
## 477                                                     Comedy|Horror|Musical|Sci-Fi
## 478                                                                     Action|Crime
## 479                                                            Action|Comedy|Fantasy
## 480                                        Adventure|Animation|Children|Drama|Sci-Fi
## 481                                                Action|Adventure|Comedy|Drama|War
## 482                                                         Adventure|Comedy|Fantasy
## 483                                      Adventure|Animation|Children|Comedy|Fantasy
## 484                                                           Horror|Sci-Fi|Thriller
## 485                                                        Animation|Children|Comedy
## 486                                                                     Comedy|Drama
## 487                                                  Mystery|Romance|Sci-Fi|Thriller
## 488                                                                Adventure|Fantasy
## 489                                                           Action|Adventure|Drama
## 490                                                   Action|Adventure|Drama|Fantasy
## 491                                                             Drama|Romance|Sci-Fi
## 492                                                           Adventure|Fantasy|IMAX
## 493                                                     Action|Adventure|Sci-Fi|IMAX
## 494                                                             Comedy|Drama|Romance
## 495                                                                    Comedy|Horror
## 496                                      Adventure|Animation|Children|Comedy|Fantasy
## 497                                                        Action|Adventure|Thriller
## 498                                                            Comedy|Crime|Thriller
## 499                                                                            Drama
## 500                                                                   Children|Drama
## 501                                                                            Drama
## 502                                                                           Comedy
## 503                                                                 Action|Drama|War
## 504                                                    Action|Adventure|Comedy|Crime
## 505                                                                           Comedy
## 506                                                         Action|Drama|Romance|War
## 507                                       Action|Crime|Drama|Mystery|Sci-Fi|Thriller
## 508                                                                    Drama|Romance
## 509                                                          Action|Adventure|Sci-Fi
## 510                                                                     Comedy|Drama
## 511                                                          Action|Adventure|Sci-Fi
## 512                                                                      Crime|Drama
## 513                                                           Adventure|Drama|Sci-Fi
## 514                                                                           Comedy
## 515                                                                     Comedy|Drama
## 516                                                          Children|Comedy|Fantasy
## 517                                                         Comedy|Drama|Romance|War
## 518                                                                   Comedy|Romance
## 519                                  Adventure|Animation|Children|Drama|Musical|IMAX
## 520                                                      Action|Comedy|Crime|Fantasy
## 521                                                          Action|Romance|Thriller
## 522                                         Action|Adventure|Comedy|Romance|Thriller
## 523                                                 Action|Adventure|Sci-Fi|Thriller
## 524                                                                     Comedy|Drama
## 525                                                                    Drama|Romance
## 526                                                             Comedy|Drama|Romance
## 527                                                           Action|Sci-Fi|Thriller
## 528                                               Animation|Children|Fantasy|Musical
## 529                                      Adventure|Animation|Children|Comedy|Musical
## 530                                                                    Action|Sci-Fi
## 531                                                          Adventure|Drama|Western
## 532                                                            Action|Crime|Thriller
## 533                                         Animation|Children|Drama|Fantasy|Musical
## 534                                  Animation|Children|Fantasy|Musical|Romance|IMAX
## 535                                         Action|Adventure|Animation|Horror|Sci-Fi
## 536                                                                    Comedy|Sci-Fi
## 537                                                                   Comedy|Romance
## 538                                                       Adventure|Animation|Comedy
## 539                                                    Drama|Fantasy|Horror|Thriller
## 540                                                Action|Adventure|Romance|Thriller
## 541                                                                    Action|Sci-Fi
## 542                                                        Animation|Children|Comedy
## 543                                                 Action|Adventure|Sci-Fi|Thriller
## 544                                                            Action|Drama|Thriller
## 545                                                           Adventure|Drama|Sci-Fi
## 546                                                            Action|Crime|Thriller
## 547                                                  Children|Comedy|Fantasy|Musical
## 548                                                                     Comedy|Crime
## 549                                                                           Comedy
## 550                                                            Children|Drama|Sci-Fi
## 551                                                                     Comedy|Crime
## 552                                                 Action|Adventure|Sci-Fi|Thriller
## 553                                                         Adventure|Comedy|Fantasy
## 554                                                  Animation|Children|Comedy|Crime
## 555                                                          Action|Adventure|Sci-Fi
## 556                                          Action|Adventure|Comedy|Fantasy|Romance
## 557                                                                 Action|Adventure
## 558                                                          Action|Adventure|Sci-Fi
## 559                                                            Action|Comedy|Musical
## 560                                       Adventure|Animation|Children|Comedy|Sci-Fi
## 561                                                                            Drama
## 562                                                                            Drama
## 563                                                           Action|Sci-Fi|Thriller
## 564                                                                        Drama|War
## 565                                                          Adventure|Comedy|Sci-Fi
## 566                                                         Action|Adventure|Fantasy
## 567                                                                   Comedy|Fantasy
## 568                                                           Action|Adventure|Drama
## 569                                                                           Comedy
## 570                                                                 Action|Adventure
## 571                                                                    Drama|Musical
## 572                                                           Children|Drama|Fantasy
## 573                                                                   Comedy|Romance
## 574                                                             Comedy|Drama|Romance
## 575                                                                 Adventure|Sci-Fi
## 576                                                            Action|Mystery|Sci-Fi
## 577                                                                    Action|Sci-Fi
## 578                                                 Action|Adventure|Sci-Fi|Thriller
## 579                                                          Action|Adventure|Sci-Fi
## 580                                                          Adventure|Comedy|Sci-Fi
## 581                                                                           Comedy
## 582                                                 Adventure|Animation|Comedy|Crime
## 583                                                       Action|Romance|War|Western
## 584                                                          Mystery|Sci-Fi|Thriller
## 585                                                            Comedy|Drama|Thriller
## 586                                                                 Mystery|Thriller
## 587                                                           Crime|Mystery|Thriller
## 588                                                                 Action|Drama|War
## 589                                                          Action|Adventure|Sci-Fi
## 590                                                                            Drama
## 591                                                      Comedy|Crime|Drama|Thriller
## 592                                                                      Crime|Drama
## 593                                                         Comedy|Drama|Romance|War
## 594                                                                         Thriller
## 595                                                                           Comedy
## 596                                                                            Drama
## 597                                                                        Drama|War
## 598                                                          Comedy|Romance|Thriller
## 599                                                                    Action|Sci-Fi
## 600                                                            Crime|Horror|Thriller
## 601                                                     Crime|Drama|Mystery|Thriller
## 602                                                                   Drama|Thriller
## 603                                                                      Crime|Drama
## 604                                                          Action|Adventure|Sci-Fi
## 605                                          Action|Adventure|Comedy|Fantasy|Romance
## 606                                                                 Action|Adventure
## 607                                                          Action|Adventure|Sci-Fi
## 608                                                                     Crime|Horror
## 609                                                                            Drama
## 610                                                                           Horror
## 611                                                                  Adventure|Drama
## 612                                                           Comedy|Fantasy|Romance
## 613                                                          Adventure|Comedy|Sci-Fi
## 614                                                                 Action|Adventure
## 615                                                           Children|Drama|Fantasy
## 616                                                                            Drama
## 617                                                                    Action|Horror
## 618                                                                    Drama|Romance
## 619                                                             Comedy|Crime|Romance
## 620                                                        Action|Adventure|Thriller
## 621                                                 Crime|Film-Noir|Mystery|Thriller
## 622                                                           Drama|Mystery|Thriller
## 623                                                           Drama|Romance|Thriller
## 624                                                                    Drama|Romance
## 625                                                     Crime|Drama|Fantasy|Thriller
## 626                                                                   Comedy|Romance
## 627                                                            Drama|Sci-Fi|Thriller
## 628                                                                            Drama
## 629                                                                 Action|Drama|War
## 630                                                           Comedy|Fantasy|Romance
## 631                                               Adventure|Animation|Children|Drama
## 632                                                               Action|Crime|Drama
## 633                                                                           Comedy
## 634                                                         Comedy|Drama|Romance|War
## 635                                                                      Crime|Drama
## 636                                                                  Action|Thriller
## 637                                                                           Comedy
## 638                                                                     Comedy|Crime
## 639                                                           Action|Sci-Fi|Thriller
## 640                                                             Action|Comedy|Sci-Fi
## 641                                                             Drama|Horror|Mystery
## 642                                                                           Comedy
## 643                                                                           Comedy
## 644                                                     Comedy|Drama|Fantasy|Romance
## 645                                                                  Children|Comedy
## 646                                                          Horror|Mystery|Thriller
## 647                                                                    Drama|Romance
## 648                                                                           Comedy
## 649                                                      Action|Crime|Drama|Thriller
## 650                                                                      Crime|Drama
## 651                                                           Action|Adventure|Drama
## 652                                                                            Drama
## 653                                                                           Comedy
## 654                                                             Action|Drama|Romance
## 655                                                            Comedy|Crime|Thriller
## 656                                                                            Drama
## 657                                                             Crime|Drama|Thriller
## 658                                                                 Mystery|Thriller
## 659                                                               Action|Crime|Drama
## 660                                                                     Action|Drama
## 661                                      Adventure|Animation|Children|Comedy|Fantasy
## 662                                                       Adventure|Children|Fantasy
## 663                                                                   Crime|Thriller
## 664                                                                   Comedy|Romance
## 665                                                                Adventure|Fantasy
## 666                                                                    Drama|Romance
## 667                                                  Action|Adventure|Drama|Thriller
## 668                                                     Action|Adventure|Sci-Fi|IMAX
## 669                                             Action|Crime|Mystery|Sci-Fi|Thriller
## 670                                                                      Crime|Drama
## 671                                                           Crime|Mystery|Thriller
## 672                                                                           Comedy
## 673                                                                      Documentary
## 674                                                                Adventure|Fantasy
## 675                                                                      Crime|Drama
## 676                                              Adventure|Animation|Children|Comedy
## 677                                                                     Action|Crime
## 678                                                              Crime|Drama|Mystery
## 679                                                            Action|Crime|Thriller
## 680                                                                   Drama|Thriller
## 681                                                       Action|Adventure|Drama|War
## 682                                                   Action|Adventure|Drama|Fantasy
## 683                                                             Drama|Romance|Sci-Fi
## 684                                                            Action|Drama|Thriller
## 685                                                                    Drama|Romance
## 686                                                             Comedy|Drama|Romance
## 687                                                                  Adventure|Drama
## 688                                                                    Comedy|Horror
## 689                                          Action|Crime|Film-Noir|Mystery|Thriller
## 690                                                                      Crime|Drama
## 691                                                          Action|Adventure|Sci-Fi
## 692                                                                Action|Crime|IMAX
## 693                                                                   Comedy|Romance
## 694                                                                   Drama|Thriller
## 695                                                            Drama|Musical|Romance
## 696                                                             Comedy|Drama|Romance
## 697                                                                            Drama
## 698                                                             Crime|Drama|Thriller
## 699                                                                   Comedy|Romance
## 700                                      Adventure|Animation|Children|Comedy|Fantasy
## 701                                                                    Drama|Romance
## 702                                                                            Drama
## 703                                                                      Crime|Drama
## 704                                                                 Mystery|Thriller
## 705                                                                      Crime|Drama
## 706                                                                   Comedy|Romance
## 707                                                                    Drama|Romance
## 708                                                                        Drama|War
## 709                                                                    Drama|Romance
## 710                                                            Crime|Horror|Thriller
## 711                                                      Comedy|Crime|Drama|Thriller
## 712                                                        Action|Adventure|Thriller
## 713                                                                    Drama|Romance
## 714                                                                    Drama|Romance
## 715                                                                    Drama|Romance
## 716                                                                            Drama
## 717                                                              Crime|Drama|Romance
## 718                                                                   Comedy|Romance
## 719                                                                     Drama|Sci-Fi
## 720                                                                    Drama|Romance
## 721                                                              Comedy|Drama|Sci-Fi
## 722                                                                    Drama|Romance
## 723                                                                    Drama|Romance
## 724                                                             Comedy|Drama|Romance
## 725                                                                 Action|Drama|War
## 726                                                             Comedy|Drama|Romance
## 727                                                                Adventure|Fantasy
## 728                                                                           Comedy
## 729                                                             Crime|Drama|Thriller
## 730                                                     Action|Comedy|Crime|Thriller
## 731                                                            Action|Crime|Thriller
## 732                                                            Drama|Fantasy|Romance
## 733                                      Adventure|Animation|Children|Comedy|Fantasy
## 734                                                                           Comedy
## 735                                                             Crime|Drama|Thriller
## 736                                                             Comedy|Drama|Romance
## 737                                                                 Action|Drama|War
## 738                                                                  Action|Thriller
## 739                                                                            Drama
## 740                                                                           Comedy
## 741                                                           Action|Sci-Fi|Thriller
## 742                                                          Action|Adventure|Sci-Fi
## 743                                                             Drama|Horror|Mystery
## 744                                       Adventure|Animation|Comedy|Fantasy|Musical
## 745                                                           Crime|Mystery|Thriller
## 746                                                                     Drama|Horror
## 747                                                                      Crime|Drama
## 748                                                                           Comedy
## 749                                                                     Comedy|Drama
## 750                                                            Action|Crime|Thriller
## 751                                                                           Horror
## 752                                                            Action|Crime|Thriller
## 753                                                           Crime|Mystery|Thriller
## 754                                                                   Action|Romance
## 755                                                 Action|Adventure|Sci-Fi|Thriller
## 756                                                          Action|Adventure|Sci-Fi
## 757                                          Action|Adventure|Comedy|Fantasy|Romance
## 758                                                                 Action|Adventure
## 759                                                   Action|Adventure|Horror|Sci-Fi
## 760                                                          Action|Adventure|Sci-Fi
## 761                                                            Action|Comedy|Musical
## 762                                                           Action|Sci-Fi|Thriller
## 763                                                                 Action|Adventure
## 764                                                                            Drama
## 765                                                                            Drama
## 766                                                                 Mystery|Thriller
## 767                                                        Action|Adventure|Thriller
## 768                                                                    Drama|Romance
## 769                                                             Action|Horror|Sci-Fi
## 770                                                                    Drama|Romance
## 771                                                                            Drama
## 772                                                         Adventure|Comedy|Western
## 773                                                                   Comedy|Romance
## 774                                                                   Comedy|Romance
## 775                                                  Action|Adventure|Drama|Thriller
## 776                                                  Action|Adventure|Comedy|Romance
## 777                                                                     Action|Drama
## 778                                                                           Comedy
## 779                                                           Action|Sci-Fi|Thriller
## 780                                                         Action|Adventure|Fantasy
## 781                                                           Horror|Sci-Fi|Thriller
## 782                                                                   Drama|Thriller
## 783                                                          Horror|Mystery|Thriller
## 784                                                      Action|Crime|Drama|Thriller
## 785                                                Action|Adventure|Comedy|Drama|War
## 786                                                                           Comedy
## 787                                                                     Comedy|Drama
## 788                                                                  Horror|Thriller
## 789                                                                         Thriller
## 790                                                                      Crime|Drama
## 791                                                           Crime|Mystery|Thriller
## 792                                                    Action|Comedy|Horror|Thriller
## 793                                                       Adventure|Children|Fantasy
## 794                                                         Adventure|Children|Drama
## 795                                                      Comedy|Crime|Drama|Thriller
## 796                                                               Comedy|Crime|Drama
## 797                                                                           Comedy
## 798                                                                    Drama|Mystery
## 799                                                                  Adventure|Drama
## 800                                                         Action|Adventure|Western
## 801                                                       Action|Romance|War|Western
## 802                                                     Action|Comedy|Crime|Thriller
## 803                                                                  Children|Comedy
## 804                                                                     Comedy|Drama
## 805                                                             Drama|Horror|Mystery
## 806                                                                            Drama
## 807                                                                      Documentary
## 808                                                                      Documentary
## 809                                          Action|Adventure|Drama|Mystery|Thriller
## 810                                                             Crime|Drama|Thriller
## 811                                                                   Comedy|Romance
## 812                                                            Action|Crime|Thriller
## 813                                                      Comedy|Crime|Drama|Thriller
## 814                                                               Comedy|Documentary
## 815                                  Action|Crime|Drama|Mystery|Sci-Fi|Thriller|IMAX
## 816                                                             Crime|Drama|Thriller
## 817                                                                      Documentary
## 818                                                                  Documentary|War
## 819                                                         Adventure|Drama|Thriller
## 820                                                   Crime|Drama|Film-Noir|Thriller
## 821                                           Action|Adventure|Drama|Sci-Fi|Thriller
## 822                                                      Action|Adventure|Crime|IMAX
## 823                                                                Documentary|Drama
## 824                                                   Action|Adventure|Thriller|IMAX
## 825                                                      Action|Crime|Drama|Thriller
## 826                                                             Adventure|Drama|IMAX
## 827                                                               Action|Sci-Fi|IMAX
## 828                                                     Action|Adventure|Sci-Fi|IMAX
## 829                                                                     Drama|Horror
## 830                                                                            Drama
## 831                                                                            Drama
## 832                                                      Comedy|Crime|Drama|Thriller
## 833                               Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi
## 834                                                Action|Adventure|Romance|Thriller
## 835                                                                    Action|Sci-Fi
## 836                                                  Children|Comedy|Fantasy|Musical
## 837                                     Adventure|Animation|Children|Fantasy|Musical
## 838                                                                    Comedy|Sci-Fi
## 839                                          Action|Adventure|Comedy|Fantasy|Romance
## 840                                           Action|Adventure|Comedy|Fantasy|Horror
## 841                                                            Action|Comedy|Musical
## 842                                                                   Comedy|Romance
## 843                                                             Comedy|Drama|Romance
## 844                                                                            Drama
## 845                                                 Action|Adventure|Sci-Fi|Thriller
## 846                                                                    Action|Horror
## 847                                                             Comedy|Drama|Romance
## 848                                                                     Comedy|Crime
## 849                                                                   Comedy|Romance
## 850                                              Adventure|Animation|Children|Comedy
## 851                                                                           Horror
## 852                                                              Action|Drama|Sci-Fi
## 853                                                                    Horror|Sci-Fi
## 854                                                      Action|Crime|Drama|Thriller
## 855                                                                           Comedy
## 856                                                                            Drama
## 857                                                           Drama|Mystery|Thriller
## 858                                                                            Drama
## 859                                                             Crime|Drama|Thriller
## 860                                                                           Comedy
## 861                                                                            Drama
## 862                                                                  Sci-Fi|Thriller
## 863                                                           Horror|Sci-Fi|Thriller
## 864                                                                           Comedy
## 865                                                                           Sci-Fi
## 866                                                                            Drama
## 867                                                          Action|Adventure|Sci-Fi
## 868                                                                     Comedy|Drama
## 869                                                             Drama|Horror|Mystery
## 870                                                               Animation|Children
## 871                                                                    Drama|Mystery
## 872                                                                           Comedy
## 873                                                             Comedy|Drama|Romance
## 874                                                   Action|Adventure|Comedy|Sci-Fi
## 875                                                                   Comedy|Romance
## 876                                                                           Comedy
## 877                                                                    Action|Comedy
## 878                                                                            Drama
## 879                                                                           Comedy
## 880                                                            Drama|Horror|Thriller
## 881                                                          Action|Adventure|Sci-Fi
## 882                                                               Comedy|Documentary
## 883                                                                           Comedy
## 884                                                                    Drama|Western
## 885                                                                   Comedy|Western
## 886                                                                  Action|Thriller
## 887                                                             Comedy|Drama|Romance
## 888                                                                            Drama
## 889                                                                     Drama|Sci-Fi
## 890                                      Adventure|Animation|Children|Comedy|Fantasy
## 891                                                                 Mystery|Thriller
## 892                                                                 Action|Drama|War
## 893                                                                            Drama
## 894                                                      Comedy|Crime|Drama|Thriller
## 895                                                                      Crime|Drama
## 896                                                         Comedy|Drama|Romance|War
## 897                                                       Adventure|Children|Romance
## 898                                                 Action|Adventure|Sci-Fi|Thriller
## 899                                                                            Drama
## 900                                                                        Drama|War
## 901                                                                   Children|Drama
## 902                                            Comedy|Drama|Fantasy|Romance|Thriller
## 903                                                          Adventure|Drama|Western
## 904                                                     Comedy|Drama|Musical|Romance
## 905                                               Adventure|Children|Fantasy|Musical
## 906                                                                  Adventure|Drama
## 907                                                                  Adventure|Drama
## 908                                                           Comedy|Fantasy|Romance
## 909                                                     Action|Comedy|Crime|Thriller
## 910                                                                            Drama
## 911                                              Adventure|Animation|Children|Comedy
## 912                                                           Action|Sci-Fi|Thriller
## 913                                                                   Comedy|Romance
## 914                                        Adventure|Animation|Children|Drama|Sci-Fi
## 915                                                             Drama|Horror|Mystery
## 916                                                                  Children|Comedy
## 917                                                                            Drama
## 918                                                                           Comedy
## 919                                      Adventure|Animation|Children|Comedy|Fantasy
## 920                                                                      Crime|Drama
## 921                                                                     Comedy|Drama
## 922                                                Adventure|Children|Comedy|Musical
## 923                                                  Action|Adventure|Comedy|Western
## 924                              Adventure|Animation|Children|Comedy|Fantasy|Romance
## 925                                                         Action|Drama|Romance|War
## 926                                                                   Comedy|Western
## 927                                                                           Comedy
## 928                                                    Drama|Mystery|Sci-Fi|Thriller
## 929                                      Adventure|Animation|Children|Comedy|Fantasy
## 930                                                                Adventure|Fantasy
## 931                                                                      Crime|Drama
## 932                                              Adventure|Animation|Children|Comedy
## 933                                                             Drama|Romance|Sci-Fi
## 934                                                                 Action|Drama|War
## 935                                                            Action|Crime|Thriller
## 936                                                          Action|Crime|Drama|IMAX
## 937                                                                      Crime|Drama
## 938                                                             Comedy|Drama|Romance
## 939                                 Adventure|Animation|Children|Comedy|Fantasy|IMAX
## 940                                                    Action|Adventure|Fantasy|IMAX
## 941                                      Action|Adventure|Drama|Fantasy|Mystery|IMAX
## 942                                                     Action|Adventure|Sci-Fi|IMAX
## 943                                         Animation|Children|Drama|Fantasy|Musical
## 944                                                          Action|Adventure|Sci-Fi
## 945                                                                    Drama|Romance
## 946                                                           Children|Comedy|Sci-Fi
## 947                                              Adventure|Animation|Children|Comedy
## 948                                                                Animation|Musical
## 949                                                          Action|Adventure|Sci-Fi
## 950                                                          Action|Adventure|Comedy
## 951                                                             Action|Comedy|Sci-Fi
## 952                                                 Action|Adventure|Children|Comedy
## 953                                                                   Comedy|Romance
## 954                                                                     Comedy|Drama
## 955                                      Adventure|Animation|Children|Comedy|Fantasy
## 956                                                          Children|Comedy|Fantasy
## 957                                                          Adventure|Comedy|Sci-Fi
## 958                                                                           Sci-Fi
## 959                                                        Action|Adventure|Thriller
## 960                                                        Animation|Children|Comedy
## 961                                                           Action|Sci-Fi|Thriller
## 962                                                          Children|Comedy|Fantasy
## 963                                      Adventure|Animation|Children|Comedy|Fantasy
## 964                                                       Adventure|Children|Fantasy
## 965                                                                           Comedy
## 966                                                            Action|Crime|Thriller
## 967                                                        Action|Adventure|Thriller
## 968                                                             Comedy|Drama|Romance
## 969                                                                            Drama
## 970                                                                      Crime|Drama
## 971                                                                    Drama|Romance
## 972                                                                           Comedy
## 973                                                            Comedy|Crime|Thriller
## 974                                              Crime|Drama|Horror|Mystery|Thriller
## 975                                                                    Drama|Romance
## 976                                                          Mystery|Sci-Fi|Thriller
## 977                                                                   Children|Drama
## 978                                                                      Crime|Drama
## 979                                                                   Comedy|Romance
## 980                                                         Action|Adventure|Fantasy
## 981                                                                 Mystery|Thriller
## 982                                                           Crime|Mystery|Thriller
## 983                                                             Comedy|Drama|Romance
## 984                                                                            Drama
## 985                                                    Action|Comedy|Horror|Thriller
## 986                                                                     Comedy|Drama
## 987                                                             Comedy|Drama|Romance
## 988                                                        Action|Adventure|Thriller
## 989                                                   Adventure|Comedy|Crime|Romance
## 990                                                                           Comedy
## 991                                                Adventure|Children|Comedy|Musical
## 992                                                                 Action|Drama|War
## 993                                                             Crime|Drama|Thriller
## 994                                                    Action|Adventure|Comedy|Crime
## 995                                                            Drama|Mystery|Romance
## 996                                                                           Comedy
## 997                                               Action|Comedy|Crime|Drama|Thriller
## 998                                                             Crime|Drama|Thriller
## 999                                                             Adventure|Drama|IMAX
## 1000                                                   Action|Adventure|Comedy|Crime
## 1001                                                                      Comedy|War
## 1002                                                 Action|Adventure|Mystery|Sci-Fi
## 1003                                                              Drama|Thriller|War
## 1004                                                                     Documentary
## 1005                                                          Action|Romance|Western
## 1006                                                Crime|Film-Noir|Mystery|Thriller
## 1007                                                           Action|Crime|Thriller
## 1008                                                 Action|Adventure|Crime|Thriller
## 1009                                                          Action|Sci-Fi|Thriller
## 1010                                                                           Drama
## 1011                                                                          Comedy
## 1012                                                                  Comedy|Romance
## 1013                                                           Action|Crime|Thriller
## 1014                                                                           Drama
## 1015                                                                   Horror|Sci-Fi
## 1016                                      Action|Crime|Drama|Mystery|Sci-Fi|Thriller
## 1017                                                         Action|Adventure|Sci-Fi
## 1018                                                                       Drama|War
## 1019                                                                   Drama|Romance
## 1020                                                                          Comedy
## 1021                                                                          Comedy
## 1022                                                                  Drama|Thriller
## 1023                                                                  Drama|Thriller
## 1024                                                                Adventure|Comedy
## 1025                                                            Comedy|Drama|Romance
## 1026                                                                           Drama
## 1027                                                                    Comedy|Drama
## 1028                                                                  Comedy|Romance
## 1029                                                                     Documentary
## 1030                                                                     Crime|Drama
## 1031                                                                  Comedy|Romance
## 1032                                                                    Drama|Horror
## 1033                                                         Action|Adventure|Sci-Fi
## 1034                                                           Drama|Fantasy|Romance
## 1035                                                           Action|Crime|Thriller
## 1036                                                    Action|Drama|Sci-Fi|Thriller
## 1037                                                     Action|Crime|Drama|Thriller
## 1038                                                     Comedy|Crime|Drama|Thriller
## 1039                                                                           Drama
## 1040                                                                           Drama
## 1041                                                                           Drama
## 1042                                                                    Comedy|Drama
## 1043                                                         Action|Adventure|Sci-Fi
## 1044                                                            Comedy|Drama|Fantasy
## 1045                                                                     Crime|Drama
## 1046                                                                    Comedy|Drama
## 1047                                                          Adventure|Drama|Sci-Fi
## 1048                                                                Mystery|Thriller
## 1049                                                                  Comedy|Romance
## 1050                                                                          Comedy
## 1051                                                                          Comedy
## 1052                                                     Action|Crime|Drama|Thriller
## 1053                                                   Action|Crime|Fantasy|Thriller
## 1054                                                         Children|Comedy|Fantasy
## 1055                                                        Comedy|Drama|Romance|War
## 1056                                                                  Comedy|Romance
## 1057                                 Adventure|Animation|Children|Drama|Musical|IMAX
## 1058                                                     Action|Comedy|Crime|Fantasy
## 1059                                                                   Action|Comedy
## 1060                                                                    Comedy|Drama
## 1061                                                            Comedy|Drama|Romance
## 1062                                                                        Thriller
## 1063                                                         Action|Romance|Thriller
## 1064                                        Action|Adventure|Comedy|Romance|Thriller
## 1065                                                   Drama|Horror|Romance|Thriller
## 1066                                                                          Comedy
## 1067                                                                     Crime|Drama
## 1068                                                       Action|Adventure|Thriller
## 1069                                                                   Comedy|Sci-Fi
## 1070                                                                  Comedy|Romance
## 1071                                                                          Comedy
## 1072                                                         Action|Adventure|Sci-Fi
## 1073                                                                  Drama|Thriller
## 1074                                                                        Thriller
## 1075                                                               Action|Comedy|War
## 1076                                                                          Comedy
## 1077                                                                 Action|Thriller
## 1078                                                Action|Adventure|Sci-Fi|Thriller
## 1079                                                                  Drama|Thriller
## 1080                                                                           Drama
## 1081                                                 Action|Adventure|Comedy|Fantasy
## 1082                                                       Action|Adventure|Thriller
## 1083                                                                    Comedy|Drama
## 1084                                                                           Drama
## 1085                                                                   Drama|Romance
## 1086                                                                          Comedy
## 1087                                                                           Drama
## 1088                                                                       Drama|War
## 1089                                                                           Drama
## 1090                                                            Comedy|Drama|Romance
## 1091                                                                        Thriller
## 1092                                                          Action|Sci-Fi|Thriller
## 1093                                                         Comedy|Romance|Thriller
## 1094                                                                   Drama|Musical
## 1095                                              Animation|Children|Fantasy|Musical
## 1096                                                                  Crime|Thriller
## 1097                                                                     Documentary
## 1098                                                                    Comedy|Drama
## 1099                                                                    Comedy|Drama
## 1100                                                                 Children|Comedy
## 1101                                           Comedy|Drama|Fantasy|Romance|Thriller
## 1102                                     Adventure|Animation|Children|Comedy|Musical
## 1103                                                                   Action|Sci-Fi
## 1104                                                         Adventure|Drama|Western
## 1105                                                           Action|Crime|Thriller
## 1106                                                           Crime|Horror|Thriller
## 1107                                        Animation|Children|Drama|Fantasy|Musical
## 1108                                                                  Comedy|Romance
## 1109                                                     Comedy|Crime|Drama|Thriller
## 1110                                        Action|Adventure|Animation|Horror|Sci-Fi
## 1111                                                    Crime|Drama|Mystery|Thriller
## 1112                                                          Action|Crime|Drama|War
## 1113                                               Action|Adventure|Mystery|Thriller
## 1114                                                                          Comedy
## 1115                                                                Comedy|Drama|War
## 1116                                                         Adventure|Comedy|Sci-Fi
## 1117                                           Drama|Mystery|Romance|Sci-Fi|Thriller
## 1118                                                                  Comedy|Romance
## 1119                                                      Adventure|Animation|Comedy
## 1120                                                   Drama|Fantasy|Horror|Thriller
## 1121                                                       Action|Adventure|Thriller
## 1122                                               Action|Adventure|Romance|Thriller
## 1123                                                       Animation|Children|Comedy
## 1124                                                          Action|Sci-Fi|Thriller
## 1125                                                                      Comedy|War
## 1126                                                                    Comedy|Crime
## 1127                                                              Comedy|Crime|Drama
## 1128                                                Action|Adventure|Sci-Fi|Thriller
## 1129                                                                 Comedy|Thriller
## 1130                                                                          Comedy
## 1131                                                           Action|Drama|Thriller
## 1132                                                   Comedy|Fantasy|Romance|Sci-Fi
## 1133                                                          Comedy|Horror|Thriller
## 1134                                                           Drama|Mystery|Western
## 1135                                                                   Drama|Romance
## 1136                                                            Comedy|Drama|Romance
## 1137                                                                  Comedy|Romance
## 1138                                                                  Crime|Thriller
## 1139                                                       Action|Adventure|Thriller
## 1140                                                                           Drama
## 1141                                                                     Crime|Drama
## 1142                                                    Crime|Drama|Romance|Thriller
## 1143                                                          Comedy|Musical|Romance
## 1144                                                  Drama|Mystery|Romance|Thriller
## 1145                                                                Mystery|Thriller
## 1146                                       Action|Adventure|Mystery|Romance|Thriller
## 1147                                                            Comedy|Drama|Romance
## 1148                                                                    Comedy|Crime
## 1149                                           Comedy|Crime|Mystery|Romance|Thriller
## 1150                                                                   Drama|Romance
## 1151                                                               Film-Noir|Mystery
## 1152                                                    Comedy|Drama|Musical|Romance
## 1153                                                            Comedy|Drama|Romance
## 1154                                              Adventure|Children|Fantasy|Musical
## 1155                                                               Drama|Romance|War
## 1156                                                         Drama|Film-Noir|Romance
## 1157                                                                   Drama|Mystery
## 1158                                                          Adventure|Drama|Sci-Fi
## 1159                                                                           Drama
## 1160                                                        Mystery|Romance|Thriller
## 1161                                                  Children|Drama|Fantasy|Romance
## 1162                                                                    Comedy|Drama
## 1163                                                                          Comedy
## 1164                                                                 Musical|Romance
## 1165                                                           Action|Crime|Thriller
## 1166                                                                           Drama
## 1167                                                           Action|Drama|Thriller
## 1168                                                                   Drama|Romance
## 1169                                                                    Comedy|Drama
## 1170                                                 Children|Comedy|Fantasy|Musical
## 1171                                                                    Comedy|Crime
## 1172                                                                     Crime|Drama
## 1173                                                           Drama|Musical|Romance
## 1174                                                          Crime|Mystery|Thriller
## 1175                                                          Crime|Mystery|Thriller
## 1176                                                                           Drama
## 1177                                                          Drama|Romance|Thriller
## 1178                                                                           Drama
## 1179                                                           Children|Drama|Sci-Fi
## 1180                                                            Action|Drama|Romance
## 1181                                                                  Action|Romance
## 1182                                                                    Comedy|Drama
## 1183                                                Action|Adventure|Sci-Fi|Thriller
## 1184                                                                   Drama|Mystery
## 1185                                                        Adventure|Comedy|Fantasy
## 1186                                                                     Documentary
## 1187                                                 Animation|Children|Comedy|Crime
## 1188                                                                          Comedy
## 1189                                                                    Comedy|Drama
## 1190                                                           Drama|Fantasy|Romance
## 1191                                                                       Drama|War
## 1192                                                           Crime|Drama|Film-Noir
## 1193                                                               Drama|Romance|War
## 1194                                                                           Drama
## 1195                                                                     Documentary
## 1196                                                                           Drama
## 1197                                                         Action|Adventure|Sci-Fi
## 1198                                         Action|Adventure|Comedy|Fantasy|Romance
## 1199                                                                Action|Adventure
## 1200                                                                  Fantasy|Sci-Fi
## 1201                                                  Action|Adventure|Horror|Sci-Fi
## 1202                                                        Action|Adventure|Western
## 1203                                                                           Drama
## 1204                                                             Adventure|Drama|War
## 1205                                                     Crime|Drama|Sci-Fi|Thriller
## 1206                                                                           Drama
## 1207                                                                Action|Drama|War
## 1208                                                            Action|Drama|Western
## 1209                                                         Action|Adventure|Sci-Fi
## 1210                                                           Drama|Fantasy|Romance
## 1211                                                      Film-Noir|Mystery|Thriller
## 1212                                                                     Crime|Drama
## 1213                                                                   Horror|Sci-Fi
## 1214                                          Action|Adventure|Comedy|Fantasy|Horror
## 1215                                                                       Drama|War
## 1216                                                     Action|Crime|Drama|Thriller
## 1217                                                                    Crime|Horror
## 1218                                                           Action|Comedy|Musical
## 1219                                                                     Crime|Drama
## 1220                                                                       Drama|War
## 1221                                      Adventure|Animation|Children|Comedy|Sci-Fi
## 1222                                                                           Drama
## 1223                                                                           Drama
## 1224                                                                  Comedy|Romance
## 1225                                                                           Drama
## 1226                                                                Action|Drama|War
## 1227                                                                    Comedy|Crime
## 1228                                                            Comedy|Drama|Romance
## 1229                                                          Action|Sci-Fi|Thriller
## 1230                                                                    Comedy|Drama
## 1231                                                            Comedy|Drama|Romance
## 1232                                                                           Drama
## 1233                                                            Comedy|Drama|Romance
## 1234                                                        Crime|Film-Noir|Thriller
## 1235                                                   Action|Crime|Romance|Thriller
## 1236                                                             Adventure|Drama|War
## 1237                                                                   Drama|Fantasy
## 1238                                                Crime|Film-Noir|Mystery|Thriller
## 1239                                                  Action|Adventure|Drama|Western
## 1240                                                                          Horror
## 1241                                                                 Adventure|Drama
## 1242                                                        Crime|Film-Noir|Thriller
## 1243                                                      Action|Adventure|Drama|War
## 1244                                                                       Drama|War
## 1245                                           Action|Drama|Mystery|Romance|Thriller
## 1246                                                          Comedy|Fantasy|Romance
## 1247                                                                   Drama|Western
## 1248                                                              Crime|Thriller|War
## 1249                                                         Adventure|Comedy|Sci-Fi
## 1250                                                                       Drama|War
## 1251                                                                           Drama
## 1252                                                                           Drama
## 1253                                                                Comedy|Drama|War
## 1254                                                                   Drama|Western
## 1255                                                         Crime|Film-Noir|Mystery
## 1256                                                          Action|Adventure|Drama
## 1257                                                                          Comedy
## 1258                                                                     Documentary
## 1259                                                                   Drama|Romance
## 1260                                                                Action|Adventure
## 1261                                                                           Drama
## 1262                                                                          Comedy
## 1263                                                          Children|Drama|Fantasy
## 1264                                                                 Adventure|Drama
## 1265                                                                  Action|Western
## 1266                                                                  Comedy|Romance
## 1267                                                   Action|Horror|Sci-Fi|Thriller
## 1268                                                                 Horror|Thriller
## 1269                                                                   Horror|Sci-Fi
## 1270                                                 Fantasy|Horror|Romance|Thriller
## 1271                                                                 Horror|Thriller
## 1272                                                Action|Adventure|Sci-Fi|Thriller
## 1273                                                                           Drama
## 1274                                                                     Documentary
## 1275                                                       Action|Adventure|Thriller
## 1276                                                                    Action|Crime
## 1277                                                          Comedy|Musical|Romance
## 1278                                                           Action|Drama|Thriller
## 1279                                                                   Action|Horror
## 1280                                                            Action|Comedy|Sci-Fi
## 1281                                                                   Drama|Romance
## 1282                                                                          Comedy
## 1283                                                Action|Comedy|Crime|Drama|Sci-Fi
## 1284                                                Adventure|Animation|Comedy|Crime
## 1285                                                  Comedy|Horror|Mystery|Thriller
## 1286                                                                          Comedy
## 1287                                   Crime|Drama|Fantasy|Film-Noir|Mystery|Romance
## 1288                                                                     Crime|Drama
## 1289                                                                    Comedy|Drama
## 1290                                                  Action|Romance|Sci-Fi|Thriller
## 1291                                                                  Drama|Thriller
## 1292                                                    Comedy|Drama|Mystery|Romance
## 1293                                                                          Comedy
## 1294                                                            Comedy|Crime|Romance
## 1295                                                                   Drama|Romance
## 1296                                                                          Comedy
## 1297                                                                          Comedy
## 1298                                                         Action|Adventure|Comedy
## 1299                                                  Action|Adventure|Comedy|Sci-Fi
## 1300                                                                    Comedy|Drama
## 1301                                                Action|Adventure|Sci-Fi|Thriller
## 1302                                                                          Comedy
## 1303                                                       Action|Adventure|Thriller
## 1304                                                         Action|Romance|Thriller
## 1305                                               Action|Adventure|Fantasy|Thriller
## 1306                                                                  Comedy|Romance
## 1307                                                     Action|Crime|Drama|Thriller
## 1308                                                            Action|Comedy|Sci-Fi
## 1309                                                                    Drama|Sci-Fi
## 1310                                                     Action|Crime|Drama|Thriller
## 1311                                                  Drama|Mystery|Romance|Thriller
## 1312                                                                 Action|Thriller
## 1313                                                       Action|Adventure|Thriller
## 1314                                                                 Adventure|Drama
## 1315                                                             Action|Thriller|War
## 1316                                                Crime|Film-Noir|Mystery|Thriller
## 1317                                                          Drama|Mystery|Thriller
## 1318                                                                           Drama
## 1319                                                            Comedy|Drama|Romance
## 1320                                                         Horror|Mystery|Thriller
## 1321                                                          Drama|Mystery|Thriller
## 1322                                                                     Documentary
## 1323                                                           Drama|Sci-Fi|Thriller
## 1324                                                                      Comedy|War
## 1325                                                                           Drama
## 1326                                                                   Action|Sci-Fi
## 1327                                                                   Drama|Romance
## 1328                                                             Comedy|Drama|Sci-Fi
## 1329                                                           Comedy|Crime|Thriller
## 1330                                                            Action|Horror|Sci-Fi
## 1331                                                                           Drama
## 1332                                                                   Drama|Romance
## 1333                                                  Comedy|Horror|Mystery|Thriller
## 1334                                                                           Drama
## 1335                                                                   Drama|Romance
## 1336                                                       Action|Adventure|Thriller
## 1337                                                            Crime|Drama|Thriller
## 1338                                                                    Comedy|Crime
## 1339                                                                   Drama|Romance
## 1340                                                                          Comedy
## 1341                                             Adventure|Film-Noir|Sci-Fi|Thriller
## 1342                                                           Action|Crime|Thriller
## 1343                                                                          Comedy
## 1344                                                    Crime|Drama|Fantasy|Thriller
## 1345                                                                  Comedy|Romance
## 1346                                                                 Sci-Fi|Thriller
## 1347                                                            Comedy|Drama|Romance
## 1348                                                           Action|Crime|Thriller
## 1349                                                    Crime|Drama|Mystery|Thriller
## 1350                                                                           Drama
## 1351                                                                    Comedy|Drama
## 1352                                                                    Comedy|Drama
## 1353                                                              Comedy|Documentary
## 1354                                                         Action|Adventure|Sci-Fi
## 1355                                                    Crime|Drama|Mystery|Thriller
## 1356                                                                    Comedy|Drama
## 1357                                                         Comedy|Mystery|Thriller
## 1358                                                                           Drama
## 1359                                                                           Drama
## 1360                                                                   Horror|Sci-Fi
## 1361                                                           Drama|Sci-Fi|Thriller
## 1362                                                          Action|Sci-Fi|Thriller
## 1363                                                            Comedy|Drama|Romance
## 1364                                                          Drama|Mystery|Thriller
## 1365                                                            Comedy|Drama|Romance
## 1366                                                                   Drama|Romance
## 1367                                                                    Comedy|Drama
## 1368                                            Action|Crime|Mystery|Sci-Fi|Thriller
## 1369                                             Comedy|Crime|Drama|Romance|Thriller
## 1370                                                                    Comedy|Drama
## 1371                                                  Action|Romance|Sci-Fi|Thriller
## 1372                                                           Drama|Sci-Fi|Thriller
## 1373                                                                  Comedy|Romance
## 1374                                                                     Crime|Drama
## 1375                                                                   Drama|Mystery
## 1376                                                                           Drama
## 1377                                                           Action|Crime|Thriller
## 1378                                                                           Drama
## 1379                                                                           Drama
## 1380                                                                           Drama
## 1381                                                                           Drama
## 1382                                                                           Drama
## 1383                                                                   Drama|Mystery
## 1384                                                                    Comedy|Drama
## 1385                                                                 Horror|Thriller
## 1386                                                                  Horror|Mystery
## 1387                                                       Action|Comedy|Crime|Drama
## 1388                                                                   Comedy|Horror
## 1389                                        Action|Adventure|Children|Comedy|Fantasy
## 1390                                                           Action|Comedy|Romance
## 1391                                                                    Drama|Sci-Fi
## 1392                                                         Adventure|Comedy|Sci-Fi
## 1393                                                 Adventure|Comedy|Sci-Fi|Western
## 1394                                                        Animation|Children|Drama
## 1395                                                          Action|Adventure|Drama
## 1396                                                                   Drama|Romance
## 1397                                                                   Drama|Romance
## 1398                                                                Action|Drama|War
## 1399                                                Action|Adventure|Children|Comedy
## 1400                                        Adventure|Children|Comedy|Fantasy|Sci-Fi
## 1401                                             Action|Crime|Drama|Mystery|Thriller
## 1402                                                                          Comedy
## 1403                                                                     Documentary
## 1404                                                          Drama|Mystery|Thriller
## 1405                                                          Comedy|Fantasy|Romance
## 1406                                                         Action|Adventure|Sci-Fi
## 1407                                                                  Comedy|Romance
## 1408                                                        Action|Adventure|Fantasy
## 1409                                                         Children|Comedy|Fantasy
## 1410                                                   Action|Crime|Mystery|Thriller
## 1411                                                                Adventure|Comedy
## 1412                                                           Comedy|Fantasy|Sci-Fi
## 1413                                                               Adventure|Fantasy
## 1414                                                            Comedy|Drama|Romance
## 1415                                                                Adventure|Comedy
## 1416                                                           Drama|Horror|Thriller
## 1417                                                      Adventure|Children|Fantasy
## 1418                                                          Action|Horror|Thriller
## 1419                                                                  Comedy|Fantasy
## 1420                                                  Crime|Drama|Film-Noir|Thriller
## 1421                                                              Action|Crime|Drama
## 1422                                                                           Drama
## 1423                                                  Horror|Mystery|Sci-Fi|Thriller
## 1424                                                            Comedy|Drama|Romance
## 1425                                                            Comedy|Drama|Romance
## 1426                                                            Crime|Drama|Thriller
## 1427                                                                   Drama|Romance
## 1428                                                    Action|Comedy|Crime|Thriller
## 1429                                                           Action|Crime|Thriller
## 1430                                                                    Comedy|Drama
## 1431                                                   Action|Horror|Sci-Fi|Thriller
## 1432                                                              Comedy|Crime|Drama
## 1433                                                           Drama|Fantasy|Romance
## 1434                                     Adventure|Animation|Children|Comedy|Fantasy
## 1435                                                                          Comedy
## 1436                                                                   Drama|Musical
## 1437                                                                          Sci-Fi
## 1438                                                                           Drama
## 1439                                                                    Comedy|Drama
## 1440                                                            Comedy|Drama|Fantasy
## 1441                                                        Comedy|Drama|Romance|War
## 1442                                                                     Crime|Drama
## 1443                                                                           Drama
## 1444                                                                 Action|Thriller
## 1445                                                                           Drama
## 1446                                                                         Romance
## 1447                                                                           Drama
## 1448                                                                 Action|Thriller
## 1449                                             Adventure|Animation|Children|Comedy
## 1450                                                                           Drama
## 1451                                                                           Drama
## 1452                                                 Action|Adventure|Fantasy|Horror
## 1453                                                            Comedy|Drama|Romance
## 1454                                                            Comedy|Crime|Mystery
## 1455                                                                    Comedy|Crime
## 1456                                                                    Comedy|Crime
## 1457                                                            Crime|Drama|Thriller
## 1458                                                                    Comedy|Drama
## 1459                                                            Comedy|Drama|Romance
## 1460                                                 Action|Adventure|Comedy|Romance
## 1461                                                 Action|Adventure|Comedy|Romance
## 1462                                                                   Comedy|Sci-Fi
## 1463                                                   Comedy|Crime|Mystery|Thriller
## 1464                                                                  Comedy|Romance
## 1465                                                                Action|Drama|War
## 1466                                                                   Horror|Sci-Fi
## 1467                                                                           Drama
## 1468                                                                    Comedy|Drama
## 1469                                                    Drama|Horror|Sci-Fi|Thriller
## 1470                                                    Crime|Drama|Mystery|Thriller
## 1471                                                                  Comedy|Western
## 1472                                                                 Action|Thriller
## 1473                                                                           Drama
## 1474                                                                    Comedy|Crime
## 1475                                                          Drama|Mystery|Thriller
## 1476                                                         Action|Adventure|Sci-Fi
## 1477                                                                          Comedy
## 1478                                                                           Drama
## 1479                                                           Comedy|Crime|Thriller
## 1480                                                                 Horror|Thriller
## 1481                                                                    Action|Crime
## 1482                                                          Action|Sci-Fi|Thriller
## 1483                                                                  Comedy|Romance
## 1484                                                                          Comedy
## 1485                                                                           Drama
## 1486                                                          Crime|Mystery|Thriller
## 1487                                                                    Comedy|Crime
## 1488                                                                  Comedy|Romance
## 1489                                                                   Drama|Romance
## 1490                                                   Drama|Romance|Sci-Fi|Thriller
## 1491                                                                          Comedy
## 1492                                                                          Comedy
## 1493                                                          Action|Sci-Fi|Thriller
## 1494                                                                  Crime|Thriller
## 1495                                 Action|Adventure|Comedy|Fantasy|Horror|Thriller
## 1496                                                                   Drama|Fantasy
## 1497                                                         Action|Adventure|Sci-Fi
## 1498                                                         Action|Adventure|Sci-Fi
## 1499                                                             Drama|Horror|Sci-Fi
## 1500                                                    Comedy|Horror|Musical|Sci-Fi
## 1501                                                                  Comedy|Romance
## 1502                                                                           Drama
## 1503                                                         Action|Adventure|Comedy
## 1504                                                                   Drama|Mystery
## 1505                                                                    Action|Crime
## 1506                                                                   Comedy|Horror
## 1507                                                        Animation|Comedy|Musical
## 1508                                                    Action|Comedy|Sci-Fi|Western
## 1509                                                                           Drama
## 1510                                                                  Comedy|Romance
## 1511                                                                        Thriller
## 1512                                                                 Children|Comedy
## 1513                                                           Drama|Horror|Thriller
## 1514                                                          Drama|Mystery|Thriller
## 1515                                                                 Horror|Thriller
## 1516                                                            Action|Comedy|Sci-Fi
## 1517                                                           Comedy|Fantasy|Sci-Fi
## 1518                                                                          Comedy
## 1519                                                   Action|Horror|Sci-Fi|Thriller
## 1520                                                           Action|Comedy|Fantasy
## 1521                                                                 Crime|Film-Noir
## 1522                                                                   Drama|Romance
## 1523                                                                          Comedy
## 1524                                       Adventure|Animation|Children|Drama|Sci-Fi
## 1525                                                            Drama|Horror|Mystery
## 1526                                                                  Action|Mystery
## 1527                                                                     Crime|Drama
## 1528                                                                          Comedy
## 1529                                                                          Comedy
## 1530                                                                          Comedy
## 1531                                                    Comedy|Drama|Fantasy|Romance
## 1532                                            Crime|Drama|Mystery|Romance|Thriller
## 1533                                                  Drama|Mystery|Romance|Thriller
## 1534                                                                  Drama|Thriller
## 1535                                                         Horror|Mystery|Thriller
## 1536                                                                   Drama|Romance
## 1537                                                        Adventure|Drama|Thriller
## 1538                                                     Action|Crime|Drama|Thriller
## 1539                                               Action|Adventure|Comedy|Drama|War
## 1540                                                          Action|Adventure|Drama
## 1541                                                                           Drama
## 1542                                                            Crime|Drama|Thriller
## 1543                                                                          Comedy
## 1544                                                Action|Adventure|Sci-Fi|Thriller
## 1545                                                                          Comedy
## 1546                                                                           Drama
## 1547                                                       Action|Adventure|Thriller
## 1548                                                       Action|Adventure|Thriller
## 1549                                                            Crime|Drama|Thriller
## 1550                                                     Action|Crime|Drama|Thriller
## 1551                                                              Comedy|Crime|Drama
## 1552                                                                           Drama
## 1553                                                                        Thriller
## 1554                                              Action|Crime|Drama|Sci-Fi|Thriller
## 1555                       Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery
## 1556                                                       Action|Adventure|Thriller
## 1557                                                       Action|Adventure|Thriller
## 1558                                                            Comedy|Drama|Fantasy
## 1559                                        Action|Adventure|Animation|Drama|Fantasy
## 1560                                                                  Comedy|Romance
## 1561                                                                        Thriller
## 1562                                                                  Drama|Thriller
## 1563                                                                     Documentary
## 1564                                                                    Drama|Sci-Fi
## 1565                                                                           Drama
## 1566                                                                     Crime|Drama
## 1567                                                                    Action|Drama
## 1568                                                                Action|Adventure
## 1569                                                                   Comedy|Sci-Fi
## 1570                                                                          Comedy
## 1571                                                        Mystery|Romance|Thriller
## 1572                                                        Adventure|Comedy|Fantasy
## 1573                                                            Comedy|Drama|Musical
## 1574                                                                     Documentary
## 1575                                                  Fantasy|Horror|Mystery|Romance
## 1576                                                       Action|Adventure|Thriller
## 1577                                                                           Drama
## 1578                                                                           Drama
## 1579                                                                  Drama|Thriller
## 1580                                                    Action|Comedy|Crime|Thriller
## 1581                                                                    Action|Drama
## 1582                                                    Comedy|Drama|Fantasy|Romance
## 1583                                          Action|Fantasy|Horror|Mystery|Thriller
## 1584                                     Adventure|Animation|Children|Comedy|Fantasy
## 1585                                                                           Drama
## 1586                                                                    Comedy|Drama
## 1587                                                                       Drama|War
## 1588                                                                          Comedy
## 1589                                                                     Crime|Drama
## 1590                                                                           Drama
## 1591                                                                  Drama|Thriller
## 1592                                                                           Drama
## 1593                                                         Children|Comedy|Fantasy
## 1594                                                                           Drama
## 1595                                                                 Adventure|Drama
## 1596                                                                           Drama
## 1597                                                                    Comedy|Drama
## 1598                                                         Adventure|Comedy|Sci-Fi
## 1599                                                          Drama|Mystery|Thriller
## 1600                                                                           Drama
## 1601                                                                     Documentary
## 1602                                                                           Drama
## 1603                                                            Comedy|Drama|Romance
## 1604                                                                Mystery|Thriller
## 1605                                                                  Comedy|Romance
## 1606                                                                           Drama
## 1607                                                                           Drama
## 1608                                                                          Comedy
## 1609                                                                    Comedy|Drama
## 1610                                                     Action|Crime|Drama|Thriller
## 1611                                                            Comedy|Drama|Romance
## 1612                                                    Crime|Drama|Mystery|Thriller
## 1613                                                     Action|Crime|Drama|Thriller
## 1614                                                     Comedy|Crime|Drama|Thriller
## 1615                                                   Action|Crime|Thriller|Western
## 1616                                                                     Crime|Drama
## 1617                                                  Comedy|Horror|Mystery|Thriller
## 1618                                                     Action|Crime|Drama|Thriller
## 1619                                                                 Adventure|Drama
## 1620                                                                          Comedy
## 1621                                                            Crime|Drama|Thriller
## 1622                                                          Horror|Sci-Fi|Thriller
## 1623                                                                    Comedy|Crime
## 1624                                                            Comedy|Drama|Romance
## 1625                                                                 Action|Thriller
## 1626                                                                    Comedy|Drama
## 1627                                                                  Drama|Thriller
## 1628                                                            Comedy|Drama|Romance
## 1629                                                                     Crime|Drama
## 1630                                                    Comedy|Drama|Fantasy|Romance
## 1631                                                            Comedy|Drama|Romance
## 1632                                                                     Crime|Drama
## 1633                                                          Drama|Mystery|Thriller
## 1634                                                   Adventure|Crime|Drama|Romance
## 1635                                                                           Drama
## 1636                                                                  Drama|Thriller
## 1637                                                           Adventure|Crime|Drama
## 1638                                                                          Comedy
## 1639                                                                Animation|Comedy
## 1640                                                           Crime|Drama|Film-Noir
## 1641                                                                Comedy|Drama|War
## 1642                                                        Adventure|Drama|Thriller
## 1643                                                            Comedy|Drama|Romance
## 1644                                                          Adventure|Drama|Sci-Fi
## 1645                                                                  Horror|Mystery
## 1646                                                                    Comedy|Drama
## 1647                                                            Comedy|Drama|Romance
## 1648                                                                        Thriller
## 1649                                                        Adventure|Comedy|Fantasy
## 1650                                                           Drama|Horror|Thriller
## 1651                                                                    Comedy|Drama
## 1652                                                          Drama|Mystery|Thriller
## 1653                                                                  Drama|Thriller
## 1654                                                                   Drama|Romance
## 1655                                                          Action|Sci-Fi|Thriller
## 1656                                                                           Drama
## 1657                                                   Crime|Horror|Mystery|Thriller
## 1658                                                            Comedy|Drama|Romance
## 1659                                                                          Comedy
## 1660                                                                    Comedy|Drama
## 1661                                                                          Comedy
## 1662                                                             Action|Thriller|War
## 1663                                                                   Drama|Romance
## 1664                                                                    Comedy|Drama
## 1665                                                                    Comedy|Drama
## 1666                                                                    Comedy|Drama
## 1667                                                                   Drama|Romance
## 1668                                                          Action|Adventure|Drama
## 1669                                                    Crime|Drama|Romance|Thriller
## 1670                                                                          Comedy
## 1671                                                                    Comedy|Crime
## 1672                                                       Action|Adventure|Thriller
## 1673                                                 Action|Adventure|Comedy|Western
## 1674                                                                          Comedy
## 1675                                               Action|Adventure|Romance|Thriller
## 1676                                                                        Thriller
## 1677                                                       Action|Adventure|Thriller
## 1678                                                Action|Adventure|Sci-Fi|Thriller
## 1679                                                       Action|Adventure|Thriller
## 1680                                                                  Comedy|Western
## 1681                                                           Crime|Drama|Film-Noir
## 1682                                                                   Drama|Romance
## 1683                                                                    Action|Crime
## 1684                                                  Crime|Drama|Film-Noir|Thriller
## 1685                                                                   Drama|Mystery
## 1686                                                                     Crime|Drama
## 1687                                                                       Drama|War
## 1688                                      Action|Adventure|Animation|Children|Sci-Fi
## 1689                                                                           Drama
## 1690                                                       Animation|Children|Comedy
## 1691                                                                Adventure|Comedy
## 1692                                                                  Drama|Thriller
## 1693                                                           Action|Crime|Thriller
## 1694                                                                     Crime|Drama
## 1695                                                                   Comedy|Horror
## 1696                                                                          Comedy
## 1697                                                                          Comedy
## 1698                                                                   Drama|Mystery
## 1699                                                         Action|Adventure|Sci-Fi
## 1700                                                                    Comedy|Drama
## 1701                                                            Drama|Horror|Mystery
## 1702                                                    Crime|Drama|Romance|Thriller
## 1703                                                                   Drama|Mystery
## 1704                                                                           Drama
## 1705                                                            Comedy|Drama|Romance
## 1706                                                          Horror|Sci-Fi|Thriller
## 1707                                                  Action|Adventure|Comedy|Sci-Fi
## 1708                                                                          Comedy
## 1709                                                               Drama|Romance|War
## 1710                                                                          Comedy
## 1711                                                           Drama|Horror|Thriller
## 1712                                                     Action|Comedy|Crime|Romance
## 1713                                                                          Comedy
## 1714                                                                          Horror
## 1715                                             Comedy|Crime|Drama|Romance|Thriller
## 1716                                                                  Crime|Thriller
## 1717                                                                           Drama
## 1718                                                                   Drama|Musical
## 1719                                                                          Comedy
## 1720                                                                           Drama
## 1721                                                                          Comedy
## 1722                                                                          Comedy
## 1723                                                                           Drama
## 1724                                                                  Drama|Thriller
## 1725                                                           Drama|Horror|Thriller
## 1726                                                                           Drama
## 1727                                                                          Comedy
## 1728                                                                           Drama
## 1729                                                                   Action|Comedy
## 1730                                                                          Comedy
## 1731                                                          Action|Sci-Fi|Thriller
## 1732                                                                   Drama|Romance
## 1733                                                       Action|Adventure|Thriller
## 1734                                                          Action|Sci-Fi|Thriller
## 1735                                                                   Drama|Romance
## 1736                                                         Children|Comedy|Fantasy
## 1737                                                                     Documentary
## 1738                                                       Animation|Children|Comedy
## 1739                                                                   Drama|Romance
## 1740                                                                    Drama|Sci-Fi
## 1741                                                            Action|Drama|Romance
## 1742                                                                           Drama
## 1743                                                                Action|Adventure
## 1744                                                       Action|Adventure|Thriller
## 1745                                             Adventure|Animation|Children|Sci-Fi
## 1746                                                                           Drama
## 1747                                                                          Comedy
## 1748                                                           Comedy|Crime|Thriller
## 1749                                                                   Drama|Romance
## 1750                                                                   Comedy|Sci-Fi
## 1751                                                                           Drama
## 1752                                                                  Comedy|Romance
## 1753                                                                           Drama
## 1754                                                                        Thriller
## 1755                                                                           Drama
## 1756                                                                           Drama
## 1757                                                            Comedy|Drama|Romance
## 1758                                                                    Comedy|Crime
## 1759                                                          Adventure|Comedy|Crime
## 1760                                                                    Comedy|Drama
## 1761                                                                          Horror
## 1762                                                              Drama|Thriller|War
## 1763                                                            Crime|Drama|Thriller
## 1764                                                                    Drama|Horror
## 1765                                                Crime|Film-Noir|Mystery|Thriller
## 1766                                                            Crime|Drama|Thriller
## 1767                                                                           Drama
## 1768                                                    Crime|Drama|Mystery|Thriller
## 1769                                                                   Action|Comedy
## 1770                                                                   Comedy|Sci-Fi
## 1771                                                            Comedy|Drama|Romance
## 1772                                                       Action|Comedy|Crime|Drama
## 1773                                                  Action|Adventure|Comedy|Sci-Fi
## 1774                                                                   Drama|Romance
## 1775                                                                 Horror|Thriller
## 1776                                                                  Comedy|Romance
## 1777                                                        Animation|Comedy|Fantasy
## 1778                                                                   Action|Comedy
## 1779                                                                        Thriller
## 1780                                                                  Comedy|Romance
## 1781                                              Action|Crime|Drama|Horror|Thriller
## 1782                                                                       Drama|War
## 1783                                                                          Comedy
## 1784                                                                Mystery|Thriller
## 1785                                                Action|Adventure|Children|Comedy
## 1786                                                                  Drama|Thriller
## 1787                                                   Action|Crime|Mystery|Thriller
## 1788                                                                     Crime|Drama
## 1789                                                            Comedy|Drama|Romance
## 1790                                                Adventure|Comedy|Mystery|Romance
## 1791                                                              Action|Crime|Drama
## 1792                                                Action|Adventure|Comedy|Thriller
## 1793                                                                           Drama
## 1794                                                           Action|Comedy|Romance
## 1795                                                                           Drama
## 1796                             Adventure|Animation|Children|Comedy|Fantasy|Romance
## 1797                                                           Drama|Musical|Romance
## 1798                                                        Action|Drama|Romance|War
## 1799                                                                  Comedy|Western
## 1800                                                                           Drama
## 1801                                                                   Comedy|Sci-Fi
## 1802                                                              Action|Crime|Drama
## 1803                                                           Action|Crime|Thriller
## 1804                                                                  Comedy|Romance
## 1805                                                                Action|Adventure
## 1806                                                           Action|Crime|Thriller
## 1807                                                          Adventure|Drama|Sci-Fi
## 1808                                                                   Drama|Romance
## 1809                                                                     Crime|Drama
## 1810                                                                   Drama|Romance
## 1811                                                                          Comedy
## 1812                                                    Crime|Drama|Mystery|Thriller
## 1813                                                                 Children|Comedy
## 1814                                                                          Comedy
## 1815                                                              Comedy|Crime|Drama
## 1816                                              Adventure|Animation|Fantasy|Sci-Fi
## 1817                                                                  Comedy|Romance
## 1818                                                                    Action|Drama
## 1819                                                            Crime|Drama|Thriller
## 1820                                                            Comedy|Drama|Romance
## 1821                                                                  Comedy|Romance
## 1822                                                                  Drama|Thriller
## 1823                                                         Adventure|Comedy|Sci-Fi
## 1824                                                                  Comedy|Romance
## 1825                                                                          Comedy
## 1826                                                Action|Adventure|Sci-Fi|Thriller
## 1827                                                                  Comedy|Romance
## 1828                                                                    Comedy|Drama
## 1829                                                            Comedy|Drama|Musical
## 1830                                                   Action|Adventure|Drama|Sci-Fi
## 1831                                                                    Action|Drama
## 1832                                                   Drama|Horror|Mystery|Thriller
## 1833                                                                          Comedy
## 1834                                                                   Action|Comedy
## 1835                                                                          Comedy
## 1836                                                                          Comedy
## 1837                                                         Children|Comedy|Romance
## 1838                                                                   Action|Comedy
## 1839                                                                    Drama|Sci-Fi
## 1840                                                                          Comedy
## 1841                            Action|Animation|Comedy|Crime|Drama|Romance|Thriller
## 1842                                                   Drama|Horror|Mystery|Thriller
## 1843                                                                           Drama
## 1844                                                               Drama|Romance|War
## 1845                                                                          Comedy
## 1846                                                                           Drama
## 1847                                                                Adventure|Comedy
## 1848                                                                  Romance|Sci-Fi
## 1849                                                                          Horror
## 1850                                                            Crime|Drama|Thriller
## 1851                                                                          Comedy
## 1852                                                                  Comedy|Romance
## 1853                                                            Comedy|Crime|Romance
## 1854                                          Crime|Drama|Film-Noir|Mystery|Thriller
## 1855                                                         Animation|Drama|Fantasy
## 1856                                                   Drama|Mystery|Sci-Fi|Thriller
## 1857                                                                     Crime|Drama
## 1858                                     Adventure|Animation|Children|Comedy|Fantasy
## 1859                                                                           Drama
## 1860                                                          Comedy|Fantasy|Romance
## 1861                                                      Adventure|Children|Fantasy
## 1862                                                     Action|Crime|Drama|Thriller
## 1863                                               Drama|Fantasy|Horror|Thriller|War
## 1864                                                                           Drama
## 1865                                                             Crime|Drama|Romance
## 1866                                                                Action|Drama|War
## 1867                                                                  Crime|Thriller
## 1868                                                                  Comedy|Romance
## 1869                                                                          Comedy
## 1870                                                 Mystery|Romance|Sci-Fi|Thriller
## 1871                                                                    Comedy|Drama
## 1872                                                                  Comedy|Romance
## 1873                                                               Adventure|Fantasy
## 1874                                                                   Drama|Romance
## 1875                                                                   Drama|Romance
## 1876                                                          Drama|Mystery|Thriller
## 1877                                                                Action|Drama|War
## 1878                                                            Comedy|Drama|Mystery
## 1879                                                                   Drama|Romance
## 1880                                                         Action|Mystery|Thriller
## 1881                                                                Comedy|Drama|War
## 1882                                                                   Drama|Romance
## 1883                                                                   Drama|Romance
## 1884                                                                    Comedy|Drama
## 1885                                                                          Comedy
## 1886                                                            Comedy|Crime|Mystery
## 1887                                                         Comedy|Mystery|Thriller
## 1888                                                                  Fantasy|Horror
## 1889                                                                  Comedy|Romance
## 1890                                                             Action|Comedy|Crime
## 1891                                                         Action|Adventure|Sci-Fi
## 1892                                             Adventure|Animation|Children|Comedy
## 1893                                                   Action|Horror|Sci-Fi|Thriller
## 1894                                                                   Action|Comedy
## 1895                                                                  Comedy|Romance
## 1896                                                                   Drama|Romance
## 1897                                                          Action|Horror|Thriller
## 1898                                                                        Thriller
## 1899                                                                           Drama
## 1900                                                                  Comedy|Romance
## 1901                                                                          Comedy
## 1902                                                             Crime|Drama|Mystery
## 1903                                                                  Drama|Thriller
## 1904                                                                  Comedy|Romance
## 1905                                                                  Comedy|Romance
## 1906                                                                  Comedy|Romance
## 1907                                                                          Comedy
## 1908                                               Action|Adventure|Fantasy|Thriller
## 1909                                                                  Crime|Thriller
## 1910                                                                    Comedy|Drama
## 1911                                                                   Drama|Romance
## 1912                                                Action|Adventure|Sci-Fi|Thriller
## 1913                                                                          Comedy
## 1914                                                                  Drama|Thriller
## 1915                                                            Comedy|Drama|Romance
## 1916                                                    Action|Adventure|Sci-Fi|IMAX
## 1917                                             Action|Crime|Drama|Mystery|Thriller
## 1918                                                                           Drama
## 1919                                                                  Drama|Thriller
## 1920                                                                    Drama|Sci-Fi
## 1921                                                           Comedy|Drama|Thriller
## 1922                                                         Action|Mystery|Thriller
## 1923                                       Adventure|Children|Comedy|Fantasy|Mystery
## 1924                                             Adventure|Animation|Children|Sci-Fi
## 1925                                            Action|Crime|Mystery|Sci-Fi|Thriller
## 1926                                                                  Comedy|Romance
## 1927                                                         Children|Comedy|Fantasy
## 1928                                                            Action|Comedy|Sci-Fi
## 1929                                                        Action|Adventure|Fantasy
## 1930                                                                     Crime|Drama
## 1931                                                                   Drama|Romance
## 1932                                                     Action|Comedy|Horror|Sci-Fi
## 1933                                                                          Comedy
## 1934                                                                          Comedy
## 1935                                                          Horror|Sci-Fi|Thriller
## 1936                                                              Adventure|Children
## 1937                                                           Action|Crime|Thriller
## 1938                                                            Comedy|Drama|Musical
## 1939                                                                           Drama
## 1940                                                         Adventure|Drama|Romance
## 1941                                                                  Drama|Thriller
## 1942                                                       Action|Comedy|Romance|War
## 1943                                                   Comedy|Crime|Romance|Thriller
## 1944                                                                          Comedy
## 1945                                                                    Comedy|Drama
## 1946                                                            Comedy|Drama|Romance
## 1947                                                     Adventure|Animation|Fantasy
## 1948                                                                  Comedy|Romance
## 1949                                                          Crime|Mystery|Thriller
## 1950                                                                          Comedy
## 1951                                                         Comedy|Romance|Thriller
## 1952                                                                     Documentary
## 1953                                                            Comedy|Drama|Romance
## 1954                                                         Horror|Mystery|Thriller
## 1955                                                                   Drama|Romance
## 1956                                                                    Comedy|Drama
## 1957                                                                  Crime|Thriller
## 1958                                                               Adventure|Fantasy
## 1959                                                       Action|Adventure|Thriller
## 1960                                                                   Drama|Romance
## 1961                                                            Crime|Drama|Thriller
## 1962                                                            Comedy|Drama|Romance
## 1963                                                          Action|Sci-Fi|Thriller
## 1964                                                             Comedy|Drama|Horror
## 1965                                                                    Comedy|Drama
## 1966                                                               Adventure|Fantasy
## 1967                                                                     Crime|Drama
## 1968                                                                     Crime|Drama
## 1969                                                                  Comedy|Romance
## 1970                                                            Crime|Drama|Thriller
## 1971                                                              Comedy|Crime|Drama
## 1972                                                                     Crime|Drama
## 1973                                                      Comedy|Crime|Drama|Musical
## 1974                                                                       Drama|War
## 1975                                                     Comedy|Crime|Drama|Thriller
## 1976                                           Action|Adventure|Crime|Drama|Thriller
## 1977                                                                          Comedy
## 1978                                                            Comedy|Drama|Romance
## 1979                                                                 Action|Thriller
## 1980                                                                  Comedy|Romance
## 1981                                                                    Action|Crime
## 1982                                                                     Crime|Drama
## 1983                                                                          Comedy
## 1984                                                                          Comedy
## 1985                                                            Comedy|Drama|Romance
## 1986                                                            Comedy|Drama|Romance
## 1987                                                                  Drama|Thriller
## 1988                                                Action|Animation|Sci-Fi|Thriller
## 1989                                                                          Comedy
## 1990                                                                  Comedy|Musical
## 1991                                                                     Documentary
## 1992                                                                  Mystery|Sci-Fi
## 1993                                                                     Documentary
## 1994                                                                     Documentary
## 1995                                                Action|Adventure|Sci-Fi|Thriller
## 1996                                           Action|Adventure|Sci-Fi|Thriller|IMAX
## 1997                                                    Comedy|Drama|Fantasy|Romance
## 1998                                             Adventure|Animation|Children|Comedy
## 1999                                                                    Action|Crime
## 2000                                                                     Documentary
## 2001                                                                           Drama
## 2002                                                                     Documentary
## 2003                                                                  Drama|Thriller
## 2004                                                                  Comedy|Romance
## 2005                                                                 Children|Comedy
## 2006                                                            Action|Horror|Sci-Fi
## 2007                                          Action|Adventure|Comedy|Crime|Thriller
## 2008                                                         Action|Adventure|Sci-Fi
## 2009                                                         Action|Adventure|Sci-Fi
## 2010                                                 Action|Adventure|Comedy|Fantasy
## 2011                                                                   Drama|Fantasy
## 2012                                                            Crime|Drama|Thriller
## 2013                                                                          Comedy
## 2014                                                         Children|Comedy|Fantasy
## 2015                                                                    Comedy|Drama
## 2016                                                                           Drama
## 2017                                                                    Comedy|Drama
## 2018                                                              Comedy|Crime|Drama
## 2019                                                            Comedy|Drama|Romance
## 2020                                                           Action|Fantasy|Horror
## 2021                                                        Animation|Comedy|Fantasy
## 2022                                                                    Comedy|Drama
## 2023                                                                  Drama|Thriller
## 2024                                                                          Comedy
## 2025                                                           Drama|Horror|Thriller
## 2026                                                                  Comedy|Musical
## 2027                                                                    Comedy|Drama
## 2028                                                             Crime|Drama|Mystery
## 2029                                                                  Comedy|Romance
## 2030                                                           Action|Crime|Thriller
## 2031                                                            Comedy|Drama|Romance
## 2032                                                                  Drama|Thriller
## 2033                                            Crime|Drama|Mystery|Romance|Thriller
## 2034                                                                     Crime|Drama
## 2035                                           Action|Adventure|Sci-Fi|Thriller|IMAX
## 2036                                                         Children|Comedy|Fantasy
## 2037                                                            Comedy|Drama|Romance
## 2038                                                                          Comedy
## 2039                                                             Adventure|Drama|War
## 2040                                            Crime|Drama|Mystery|Romance|Thriller
## 2041                                                                    Comedy|Crime
## 2042                                                                           Drama
## 2043                                                           Drama|Horror|Thriller
## 2044                                                                    Comedy|Drama
## 2045                                                           Drama|Sci-Fi|Thriller
## 2046                                                            Crime|Drama|Thriller
## 2047                                            Comedy|Drama|Mystery|Sci-Fi|Thriller
## 2048                                                    Action|Comedy|Crime|Thriller
## 2049                                                                   Drama|Romance
## 2050                                                                   Drama|Romance
## 2051                                                                    Comedy|Crime
## 2052                                                                   Drama|Romance
## 2053                                                          Action|Adventure|Drama
## 2054                                                    Drama|Fantasy|Mystery|Sci-Fi
## 2055                                                          Comedy|Musical|Romance
## 2056                                                      Action|Adventure|Drama|War
## 2057                                                           Drama|Fantasy|Romance
## 2058                                                  Action|Adventure|Drama|Fantasy
## 2059                                                                 Documentary|War
## 2060                                                               Drama|Romance|War
## 2061                                                                  Comedy|Romance
## 2062                                                                    Comedy|Drama
## 2063                                                           Drama|Sci-Fi|Thriller
## 2064                                                                           Drama
## 2065                                                                  Comedy|Romance
## 2066                                                                Adventure|Comedy
## 2067                                                                    Comedy|Drama
## 2068                                                    Action|Comedy|Crime|Thriller
## 2069                                                                           Drama
## 2070                                                                  Comedy|Romance
## 2071                                                                        Thriller
## 2072                                                            Drama|Romance|Sci-Fi
## 2073                                                          Drama|Mystery|Thriller
## 2074                                                 Action|Adventure|Fantasy|Horror
## 2075                                                           Action|Drama|Thriller
## 2076                                                          Comedy|Fantasy|Romance
## 2077                                             Action|Crime|Drama|Mystery|Thriller
## 2078                                                                          Comedy
## 2079                                                      Action|Adventure|Drama|War
## 2080                                                                     Documentary
## 2081                                                                           Drama
## 2082                                                              Drama|Thriller|War
## 2083                                                Action|Adventure|Sci-Fi|Thriller
## 2084                                                       Action|Adventure|Thriller
## 2085                                                                  Drama|Thriller
## 2086                                                                        Thriller
## 2087                                                                Action|Adventure
## 2088                                                                     Documentary
## 2089                                                                     Documentary
## 2090                             Adventure|Animation|Children|Comedy|Musical|Romance
## 2091                                          Action|Adventure|Drama|Sci-Fi|Thriller
## 2092                                                                    Comedy|Drama
## 2093                                                          Adventure|Fantasy|IMAX
## 2094                                                                          Comedy
## 2095                                                        Comedy|Documentary|Drama
## 2096                                                                          Comedy
## 2097                                                            Comedy|Drama|Romance
## 2098                                                             Action|Comedy|Crime
## 2099                                                               Documentary|Drama
## 2100                                                                 Documentary|War
## 2101                                                                     Documentary
## 2102                                                                  Comedy|Romance
## 2103                                                    Action|Adventure|Sci-Fi|IMAX
## 2104                                                                   Drama|Romance
## 2105                                                                          Comedy
## 2106                                                Action|Adventure|Sci-Fi|Thriller
## 2107                                                                     Crime|Drama
## 2108                                                           Action|Crime|Thriller
## 2109                                                                        Thriller
## 2110                                                            Comedy|Drama|Romance
## 2111                                                     Action|Crime|Drama|Thriller
## 2112                                                                Adventure|Comedy
## 2113                                                         Action|Adventure|Sci-Fi
## 2114                                                                   Comedy|Horror
## 2115                                                                          Comedy
## 2116                                                                    Drama|Sci-Fi
## 2117                                               Action|Adventure|Animation|Comedy
## 2118                                                                     Documentary
## 2119                                                            Comedy|Drama|Romance
## 2120                                                            Comedy|Drama|Romance
## 2121                                                          Drama|Mystery|Thriller
## 2122                                                         Horror|Mystery|Thriller
## 2123                                                                           Drama
## 2124                                      Action|Adventure|Animation|Children|Comedy
## 2125                                                                           Drama
## 2126                                         Action|Adventure|Drama|Mystery|Thriller
## 2127                                             Adventure|Animation|Children|Comedy
## 2128                                                    Action|Comedy|Crime|Thriller
## 2129                                                                       Drama|War
## 2130                                                         Action|Adventure|Comedy
## 2131                                                             Crime|Drama|Romance
## 2132                                                                     Documentary
## 2133                                                                           Drama
## 2134                                                                   Drama|Romance
## 2135                                                                          Comedy
## 2136                                                   Action|Animation|Drama|Sci-Fi
## 2137                                                                Mystery|Thriller
## 2138                                                                  Drama|Thriller
## 2139                                                                     Documentary
## 2140                                         Animation|Drama|Mystery|Sci-Fi|Thriller
## 2141                                                                           Drama
## 2142                                                                       Drama|War
## 2143                                                        Adventure|Comedy|Fantasy
## 2144                                                                           Drama
## 2145                                                                          Comedy
## 2146                                                                  Comedy|Romance
## 2147                                                  Action|Fantasy|Horror|Thriller
## 2148                                         Action|Crime|Film-Noir|Mystery|Thriller
## 2149                                                         Adventure|Comedy|Sci-Fi
## 2150                                                                     Documentary
## 2151                                                                     Crime|Drama
## 2152                                                         Action|Adventure|Sci-Fi
## 2153                                                 Action|Adventure|Comedy|Romance
## 2154                                                               Action|Crime|IMAX
## 2155                                                Action|Adventure|Sci-Fi|Thriller
## 2156                                                                     Documentary
## 2157                                                         Action|Adventure|Sci-Fi
## 2158                                                                  Comedy|Romance
## 2159                                                          Action|Sci-Fi|Thriller
## 2160                                                Action|Adventure|Sci-Fi|Thriller
## 2161                                                         Action|Adventure|Sci-Fi
## 2162                                                                     Documentary
## 2163                                                                  Comedy|Romance
## 2164                                                                 Horror|Thriller
## 2165                                                                  Drama|Thriller
## 2166                                                 Action|Crime|Drama|Thriller|War
## 2167                                                                   Action|Sci-Fi
## 2168                                        Animation|Comedy|Fantasy|Musical|Romance
## 2169                                                                     Crime|Drama
## 2170                                                   Comedy|Crime|Mystery|Thriller
## 2171                                                                    Comedy|Drama
## 2172                                                                     Crime|Drama
## 2173                                                                  Drama|Thriller
## 2174                                                 Adventure|Fantasy|Thriller|IMAX
## 2175                                                     Action|Crime|Drama|Thriller
## 2176                                                             Action|Crime|Sci-Fi
## 2177                                                                  Comedy|Romance
## 2178                                                     Action|Sci-Fi|Thriller|IMAX
## 2179                                                                    Comedy|Drama
## 2180                                                            Crime|Drama|Thriller
## 2181                                                          Drama|Romance|Thriller
## 2182                                                            Action|Crime|Mystery
## 2183                                                             Crime|Drama|Mystery
## 2184                                                   Crime|Drama|Film-Noir|Mystery
## 2185                                                                     Documentary
## 2186                                                       Action|Adventure|Thriller
## 2187                                                          Drama|Mystery|Thriller
## 2188                                                          Action|Sci-Fi|Thriller
## 2189                                                       Animation|Children|Comedy
## 2190                                                                          Comedy
## 2191                                          Adventure|Comedy|Drama|Fantasy|Romance
## 2192                                                                    Comedy|Drama
## 2193                                                        Action|Adventure|Fantasy
## 2194                                                                          Comedy
## 2195                                                                     Documentary
## 2196                                                    Action|Adventure|Sci-Fi|IMAX
## 2197                                                          Adventure|Comedy|Drama
## 2198                                                                  Drama|Thriller
## 2199                                                                   Action|Comedy
## 2200                                                      Action|Comedy|Fantasy|IMAX
## 2201                                                    Comedy|Drama|Fantasy|Romance
## 2202                                                   Drama|Fantasy|Mystery|Romance
## 2203                                                               Documentary|Drama
## 2204                                                           Drama|Fantasy|Romance
## 2205                                                    Comedy|Drama|Fantasy|Romance
## 2206                                                                          Comedy
## 2207                                                          Drama|Fantasy|Thriller
## 2208                                                            Crime|Drama|Thriller
## 2209                                          Action|Adventure|Drama|Sci-Fi|Thriller
## 2210                                                   Drama|Mystery|Sci-Fi|Thriller
## 2211                                                       Action|Adventure|Thriller
## 2212                                                          Action|Sci-Fi|Thriller
## 2213                                                                  Comedy|Romance
## 2214                                                                     Documentary
## 2215                                                        Animation|Children|Drama
## 2216                                                                  Drama|Thriller
## 2217                                                     Action|Comedy|Crime|Mystery
## 2218                                                            Crime|Drama|Thriller
## 2219                                                         Action|Fantasy|War|IMAX
## 2220                                                                  Comedy|Romance
## 2221                                                 Adventure|Drama|Sci-Fi|Thriller
## 2222                                                    Crime|Drama|Mystery|Thriller
## 2223                                           Action|Adventure|Sci-Fi|Thriller|IMAX
## 2224                                                            Comedy|Drama|Romance
## 2225                                                                  Crime|Thriller
## 2226                                                         Action|Adventure|Sci-Fi
## 2227                                                               Documentary|Drama
## 2228                                                 Action|Adventure|Crime|Thriller
## 2229                                                     Action|Sci-Fi|Thriller|IMAX
## 2230                                                    Adventure|Drama|Fantasy|IMAX
## 2231                                                                Animation|Comedy
## 2232                                                           Action|Crime|Thriller
## 2233                                                    Crime|Drama|Mystery|Thriller
## 2234                                                                          Comedy
## 2235                                                                     Documentary
## 2236                                                          Action|Adventure|Drama
## 2237                                                          Adventure|Comedy|Drama
## 2238                                                                  Drama|Thriller
## 2239                                                                 Animation|Drama
## 2240                                                            Crime|Drama|Thriller
## 2241                                                                     Crime|Drama
## 2242                                                                          Comedy
## 2243                                              Action|Horror|Sci-Fi|Thriller|IMAX
## 2244                                                            Comedy|Drama|Romance
## 2245                                                                     Documentary
## 2246                                                                Action|Adventure
## 2247                                                                   Drama|Western
## 2248                                                  Action|Mystery|Sci-Fi|Thriller
## 2249                                                 Action|Adventure|Fantasy|Sci-Fi
## 2250                                                     Comedy|Crime|Drama|Thriller
## 2251                                          Action|Adventure|Drama|Sci-Fi|Thriller
## 2252                                                           Action|Crime|Thriller
## 2253                                                         Action|Crime|Drama|IMAX
## 2254                                                                  Comedy|Romance
## 2255                                                              Comedy|Documentary
## 2256                                                         Action|Adventure|Sci-Fi
## 2257                                                     Action|Crime|Drama|Thriller
## 2258                                                                           Drama
## 2259                                                  Action|Adventure|Comedy|Sci-Fi
## 2260                                           Action|Animation|Children|Comedy|IMAX
## 2261                                                                          Comedy
## 2262                                                           Drama|Sci-Fi|Thriller
## 2263                                                                   Action|Sci-Fi
## 2264                                     Adventure|Animation|Children|Romance|Sci-Fi
## 2265                                                                 Action|Thriller
## 2266                                           Action|Adventure|Comedy|Crime|Fantasy
## 2267                                                                   Action|Comedy
## 2268                                                                     Documentary
## 2269                                       Action|Drama|Mystery|Sci-Fi|Thriller|IMAX
## 2270                                                                     Documentary
## 2271                                                             Action|Comedy|Crime
## 2272                                                     Action|Adventure|Comedy|War
## 2273                                                              Comedy|Crime|Drama
## 2274                                                                          Comedy
## 2275                                                           Action|Drama|Thriller
## 2276                                                            Comedy|Drama|Romance
## 2277                                                                    Comedy|Drama
## 2278                                                             Crime|Drama|Romance
## 2279                                                       Action|Adventure|Thriller
## 2280                                                                          Comedy
## 2281                                      Action|Adventure|Animation|Children|Comedy
## 2282                                                                           Drama
## 2283                                                                           Drama
## 2284                                                   Drama|Fantasy|Mystery|Romance
## 2285                                                                 Sci-Fi|Thriller
## 2286                                                             Action|Comedy|Crime
## 2287                                                      Animation|Fantasy|Thriller
## 2288                                                                    Action|Drama
## 2289                                                            Comedy|Drama|Romance
## 2290                                                            Comedy|Crime|Mystery
## 2291                                                            Comedy|Drama|Romance
## 2292                                                     Comedy|Drama|Musical|Sci-Fi
## 2293                                                                          Comedy
## 2294                                                          Crime|Romance|Thriller
## 2295                                                             Documentary|Musical
## 2296                                                                    Comedy|Drama
## 2297                                                                          Comedy
## 2298                                                                Action|Drama|War
## 2299                                                            Crime|Drama|Thriller
## 2300                                                   Drama|Mystery|Sci-Fi|Thriller
## 2301                                                          Action|Sci-Fi|Thriller
## 2302                                                                           Drama
## 2303                                                    Action|Adventure|Sci-Fi|IMAX
## 2304                                                Action|Adventure|Sci-Fi|Thriller
## 2305                                                              Action|Comedy|IMAX
## 2306                                              Adventure|Animation|Children|Drama
## 2307                                                                    Comedy|Crime
## 2308                                                            Crime|Drama|Thriller
## 2309                                                                  Comedy|Romance
## 2310                                                                Adventure|Comedy
## 2311                                                       Action|Drama|Thriller|War
## 2312                                                       Action|Adventure|Thriller
## 2313                                                    Action|Adventure|Sci-Fi|IMAX
## 2314                                                         Mystery|Sci-Fi|Thriller
## 2315                                                            Comedy|Drama|Romance
## 2316                                                Action|Adventure|Sci-Fi|Thriller
## 2317                                               Action|Adventure|Children|Fantasy
## 2318                                                                     Documentary
## 2319                                                     Comedy|Crime|Drama|Thriller
## 2320                                                 Animation|Children|Fantasy|IMAX
## 2321                                                                     Documentary
## 2322                                                                     Documentary
## 2323                                                                    Comedy|Drama
## 2324                                                            Action|Comedy|Horror
## 2325                                                                  Drama|Thriller
## 2326                                                                   Drama|Romance
## 2327                                       Adventure|Animation|Children|Comedy|Crime
## 2328                                                    Action|Drama|Sci-Fi|Thriller
## 2329                                                    Action|Adventure|Sci-Fi|IMAX
## 2330                                                   Action|Crime|Mystery|Thriller
## 2331                                                                     Crime|Drama
## 2332                                                          Drama|Mystery|Thriller
## 2333                                                            Comedy|Drama|Romance
## 2334                                                       Action|Drama|Thriller|War
## 2335                                                                    Action|Crime
## 2336                                                                   Comedy|Sci-Fi
## 2337                                       Adventure|Animation|Children|Fantasy|IMAX
## 2338                                                                   Action|Comedy
## 2339                                                           Action|Comedy|Romance
## 2340                                                                     Documentary
## 2341                                         Action|Adventure|Drama|Mystery|Thriller
## 2342                                                              Comedy|Documentary
## 2343                                           Action|Adventure|Sci-Fi|Thriller|IMAX
## 2344                                                                          Comedy
## 2345                                                          Action|Comedy|Thriller
## 2346                                Adventure|Animation|Children|Comedy|Fantasy|IMAX
## 2347                                                                  Drama|Thriller
## 2348                                                          Action|Sci-Fi|Thriller
## 2349                                 Action|Crime|Drama|Mystery|Sci-Fi|Thriller|IMAX
## 2350                                                           Action|Comedy|Romance
## 2351                                                                    Comedy|Drama
## 2352                                                                 Action|Thriller
## 2353                                                                          Comedy
## 2354                                                       Action|Adventure|Thriller
## 2355                                           Action|Comedy|Fantasy|Musical|Romance
## 2356                                                                  Drama|Thriller
## 2357                                                                     Documentary
## 2358                                                                           Drama
## 2359                                                            Crime|Drama|Thriller
## 2360                                                             Documentary|Mystery
## 2361                                                                     Documentary
## 2362                                                                 Documentary|War
## 2363                                                                     Documentary
## 2364                                                                   Action|Comedy
## 2365                                                                  Drama|Thriller
## 2366                                                           Action|Drama|Thriller
## 2367                                                   Action|Adventure|Fantasy|IMAX
## 2368                                                                           Drama
## 2369                          Animation|Children|Comedy|Fantasy|Musical|Romance|IMAX
## 2370                                                                           Drama
## 2371                                                    Action|Adventure|Sci-Fi|IMAX
## 2372                                                        Adventure|Comedy|Fantasy
## 2373                                                                    Comedy|Drama
## 2374                                                                     Documentary
## 2375                                       Action|Comedy|Crime|Fantasy|Thriller|IMAX
## 2376                                             Action|Sci-Fi|Thriller|Western|IMAX
## 2377                                                                     Documentary
## 2378                                                                 Sci-Fi|Thriller
## 2379                                                                  Comedy|Romance
## 2380                                                            Crime|Drama|Thriller
## 2381                                                         Romance|Sci-Fi|Thriller
## 2382                                            Action|Drama|Mystery|Sci-Fi|Thriller
## 2383                                                                     Documentary
## 2384                                               Action|Adventure|Mystery|Thriller
## 2385                                             Action|Adventure|Drama|Fantasy|IMAX
## 2386                                                Action|Crime|Drama|Thriller|IMAX
## 2387                                                               Drama|Mystery|War
## 2388                                                                          Comedy
## 2389                                                          Comedy|Fantasy|Romance
## 2390                                                                           Drama
## 2391                                                                          Comedy
## 2392                                 Action|Adventure|Animation|Children|Comedy|IMAX
## 2393                                            Action|Adventure|Sci-Fi|Thriller|War
## 2394                                                                           Drama
## 2395                                                    Mystery|Sci-Fi|Thriller|IMAX
## 2396                                                         Action|Adventure|Sci-Fi
## 2397                                                                          Comedy
## 2398                                                Action|Adventure|Sci-Fi|War|IMAX
## 2399                                                                    Comedy|Crime
## 2400                                                                     Documentary
## 2401                                     Action|Adventure|Drama|Fantasy|Mystery|IMAX
## 2402                                                  Crime|Drama|Film-Noir|Thriller
## 2403                                            Action|Adventure|Sci-Fi|Thriller|War
## 2404                                                            Comedy|Drama|Romance
## 2405                                                       Animation|Children|Comedy
## 2406                                                    Action|Drama|Sci-Fi|Thriller
## 2407                                                                           Drama
## 2408                                                                     Documentary
## 2409                                                                     Documentary
## 2410                                                            Sci-Fi|Thriller|IMAX
## 2411                                                                           Drama
## 2412                                                    Action|Adventure|Sci-Fi|IMAX
## 2413                                                                 Action|Thriller
## 2414                                                        Action|Drama|Sci-Fi|IMAX
## 2415                                                                     Documentary
## 2416                                                                           Drama
## 2417                                                                  Drama|Thriller
## 2418                                                                           Drama
## 2419                                                           Action|Crime|Thriller
## 2420                                                          Action|Animation|Crime
## 2421                                         Adventure|Animation|Comedy|Fantasy|IMAX
## 2422                                                   Action|Animation|Mystery|IMAX
## 2423                                                          Children|Drama|Mystery
## 2424                                                            Crime|Drama|Thriller
## 2425                                          Action|Adventure|Drama|Sci-Fi|Thriller
## 2426                                                            Drama|Romance|Sci-Fi
## 2427                                                     Action|Adventure|Crime|IMAX
## 2428                                            Action|Adventure|Drama|Thriller|IMAX
## 2429                                  Action|Adventure|Comedy|Crime|Mystery|Thriller
## 2430                                                  Action|Adventure|Thriller|IMAX
## 2431                                                                    Comedy|Drama
## 2432                                                                  Drama|Thriller
## 2433                                                     Action|Crime|Drama|Thriller
## 2434                                                                     Documentary
## 2435                                                          Action|Sci-Fi|Thriller
## 2436                                                   Action|Crime|Mystery|Thriller
## 2437                                                           Action|Comedy|Romance
## 2438                                                    Action|Adventure|Sci-Fi|IMAX
## 2439                                                             Action|Comedy|Crime
## 2440                                                                     Documentary
## 2441                                                                          Comedy
## 2442                                                   Comedy|Horror|Sci-Fi|Thriller
## 2443                                                        Adventure|Comedy|Fantasy
## 2444                                                     Action|Sci-Fi|Thriller|IMAX
## 2445                                                              Comedy|Horror|IMAX
## 2446                                                                          Comedy
## 2447                                                       Action|Comedy|Sci-Fi|IMAX
## 2448                                                          Action|Adventure|Drama
## 2449                                             Adventure|Animation|Children|Comedy
## 2450                                                       Action|Horror|Sci-Fi|IMAX
## 2451                                                            Comedy|Drama|Romance
## 2452                                        Adventure|Animation|Children|Comedy|IMAX
## 2453                                             Action|Adventure|Animation|Children
## 2454                                                            Comedy|Drama|Romance
## 2455                                               Animation|Children|Comedy|Fantasy
## 2456                                                            Comedy|Drama|Romance
## 2457                                                    Action|Adventure|Sci-Fi|IMAX
## 2458                                                                   Drama|Fantasy
## 2459                                                          Action|Sci-Fi|Thriller
## 2460                                                  Action|Adventure|Thriller|IMAX
## 2461                                                                     Documentary
## 2462                                                                     Documentary
## 2463                                                             Action|Crime|Sci-Fi
## 2464                                                                     Documentary
## 2465                                                                   Action|Sci-Fi
## 2466                                                                  Drama|Thriller
## 2467                                                                     Documentary
## 2468                                                                     Documentary
## 2469                                                                Animation|Comedy
## 2470                                                                           Drama
## 2471                                                            Adventure|Drama|IMAX
## 2472                                                                     Documentary
## 2473                                                                       Drama|War
## 2474                                                          Adventure|Fantasy|IMAX
## 2475                                                           Action|Drama|Thriller
## 2476                                                           Comedy|Horror|Romance
## 2477                                                           Action|Crime|Thriller
## 2478                                                            Action|Drama|Western
## 2479                                                      Drama|Musical|Romance|IMAX
## 2480                                                                     Documentary
## 2481                                                                     Documentary
## 2482                                                                     Documentary
## 2483                                                                          Comedy
## 2484                                                                     Documentary
## 2485                                                    Crime|Drama|Mystery|Thriller
## 2486                                                                     Documentary
## 2487                                                                     Documentary
## 2488                                                                     Documentary
## 2489                                                                   Drama|Romance
## 2490                                                                     Documentary
## 2491                                           Action|Adventure|Sci-Fi|Thriller|IMAX
## 2492                                                   Action|Adventure|Fantasy|IMAX
## 2493                                                                 Action|Thriller
## 2494                                                    Action|Adventure|Sci-Fi|IMAX
## 2495                                                                           Drama
## 2496                                                                   Action|Comedy
## 2497                                                     Action|Sci-Fi|Thriller|IMAX
## 2498                                                    Action|Adventure|Sci-Fi|IMAX
## 2499                                                                    Comedy|Drama
## 2500                                                    Action|Adventure|Sci-Fi|IMAX
## 2501                                                          Crime|Mystery|Thriller
## 2502                                            Action|Adventure|Fantasy|Sci-Fi|IMAX
## 2503                                                    Action|Adventure|Sci-Fi|IMAX
## 2504                                                        Action|Drama|Horror|IMAX
## 2505                                                        Action|Drama|Sci-Fi|IMAX
## 2506                                                             Action|Comedy|Crime
## 2507                                                    Action|Comedy|Crime|Thriller
## 2508                                                                    Comedy|Crime
## 2509                                                             Action|Comedy|Crime
## 2510                                                                     Documentary
## 2511                                                                     Documentary
## 2512                                                              Action|Sci-Fi|IMAX
## 2513                                                          Drama|Mystery|Thriller
## 2514                                                   Adventure|Drama|Thriller|IMAX
## 2515                                                   Action|Adventure|Fantasy|IMAX
## 2516                                                                          Comedy
## 2517                                                                     Documentary
## 2518                                                          Adventure|Fantasy|IMAX
## 2519                                                              Comedy|Crime|Drama
## 2520                                                                     Crime|Drama
## 2521                                                            Drama|Romance|Sci-Fi
## 2522                                                                          Comedy
## 2523                                                             Action|Drama|Sci-Fi
## 2524                                                                     Documentary
## 2525                                                      Action|Drama|Thriller|IMAX
## 2526                                                   Adventure|Romance|Sci-Fi|IMAX
## 2527                                                      Action|Fantasy|Sci-Fi|IMAX
## 2528                                                                Mystery|Thriller
## 2529                              Action|Adventure|Animation|Children|Comedy|Fantasy
## 2530                                                        Action|Crime|Sci-Fi|IMAX
## 2531                                                            Drama|Fantasy|Sci-Fi
## 2532                                                                    Comedy|Drama
## 2533                                                                     Sci-Fi|IMAX
## 2534                                                           Action|Drama|War|IMAX
## 2535                                                                     Documentary
## 2536                                                          Horror|Sci-Fi|Thriller
## 2537                                                    Action|Adventure|Sci-Fi|IMAX
## 2538                                                            Adventure|Drama|IMAX
## 2539                                                              Action|Sci-Fi|IMAX
## 2540                                                               Drama|Sci-Fi|IMAX
## 2541                                                                  Comedy|Romance
## 2542                                                                     Documentary
## 2543                                                                   Action|Sci-Fi
## 2544                                                         Action|Adventure|Sci-Fi
## 2545                                                    Action|Adventure|Sci-Fi|IMAX
## 2546                                                                          Comedy
## 2547                                                                  Comedy|Romance
## 2548                                                              Action|Sci-Fi|IMAX
## 2549                                                       Action|Adventure|Thriller
## 2550                                                             Action|Comedy|Crime
## 2551                                                           Action|Crime|Thriller
## 2552                                                                    Comedy|Drama
## 2553                                                         Action|Adventure|Sci-Fi
## 2554                                                                           Drama
## 2555                                                                  Drama|Thriller
## 2556                                                                          Sci-Fi
## 2557                                                                          Comedy
## 2558                                                         Action|Adventure|Sci-Fi
## 2559                                                                        Thriller
## 2560                                                         Action|Adventure|Sci-Fi
## 2561                                                         Action|Adventure|Comedy
## 2562                                                                    Drama|Sci-Fi
## 2563                                                   Drama|Mystery|Sci-Fi|Thriller
## 2564                                                           Action|Mystery|Sci-Fi
## 2565                                                                     Documentary
## 2566                                                                 Action|Thriller
## 2567                                                                  Comedy|Romance
## 2568                                                            Crime|Drama|Thriller
## 2569                                                         Action|Animation|Comedy
## 2570                                                           Drama|Sci-Fi|Thriller
## 2571                                                                           Drama
## 2572                                                              Drama|Thriller|War
## 2573                                              Comedy|Crime|Drama|Mystery|Romance
## 2574                                                       Adventure|Sci-Fi|Thriller
## 2575                                                           Comedy|Drama|Thriller
## 2576                                                                   Drama|Romance
## 2577                                          Action|Adventure|Drama|Sci-Fi|Thriller
## 2578                                                                     Documentary
## 2579                                                               Adventure|Fantasy
## 2580                                                                   Action|Comedy
## 2581                                                   Action|Adventure|Comedy|Crime
## 2582                                                                 Action|Thriller
## 2583                                                Action|Adventure|Sci-Fi|Thriller
## 2584                                                                     Documentary
## 2585                                                                          Horror
## 2586                                                Action|Adventure|Sci-Fi|Thriller
## 2587                                            Action|Adventure|Fantasy|Sci-Fi|IMAX
## 2588                                                        Action|Adventure|Fantasy
## 2589                                                         Action|Adventure|Sci-Fi
## 2590                                                         Action|Adventure|Sci-Fi
## 2591                                                 Action|Adventure|Fantasy|Sci-Fi
## 2592                                                  Action|Adventure|Comedy|Sci-Fi
## 2593                                                          Action|Sci-Fi|Thriller
## 2594                                                 Action|Adventure|Fantasy|Sci-Fi
## 2595                                                          Drama|Mystery|Thriller
## 2596                                                                         Western
## 2597                                                     Action|Crime|Drama|Thriller
## 2598                                                                    Comedy|Drama
## 2599                                                          Action|Sci-Fi|Thriller
## 2600                                                                    Drama|Sci-Fi
## 2601                                                           Action|Crime|Thriller
## 2602                                                                    Comedy|Crime
## 2603                                        Action|Adventure|Children|Mystery|Sci-Fi
## 2604                                                           Drama|Fantasy|Romance
## 2605                                                           Action|Drama|Thriller
## 2606                                                                           Drama
## 2607                                                          Adventure|Drama|Sci-Fi
## 2608                                                             Action|Comedy|Crime
## 2609                                                                  Comedy|Romance
## 2610                               Adventure|Animation|Children|Comedy|Drama|Fantasy
## 2611                                                                Adventure|Sci-Fi
## 2612                                                                Animation|Comedy
## 2613                                                         Action|Adventure|Sci-Fi
## 2614                                                         Action|Adventure|Sci-Fi
## 2615                                                          Action|Adventure|Crime
## 2616                                                                           Drama
## 2617                                                 Action|Adventure|Fantasy|Sci-Fi
## 2618                                                                     Documentary
## 2619                                                         Adventure|Drama|Fantasy
## 2620                                                         Action|Adventure|Comedy
## 2621                                                                 Adventure|Drama
## 2622                                                             Crime|Drama|Mystery
## 2623                                                                     Documentary
## 2624                                                        Animation|Comedy|Fantasy
## 2625                                                                          Comedy
## 2626                                                                           Drama
## 2627                                                                          Horror
## 2628                                                   Action|Comedy|Sci-Fi|Thriller
## 2629                                                                    Comedy|Drama
## 2630                                                                        Thriller
## 2631                                                                           Drama
## 2632                                                                  Drama|Thriller
## 2633                                                                           Drama
## 2634                                             Adventure|Animation|Children|Comedy
## 2635                                                                           Drama
## 2636                                                                           Drama
## 2637                                                                          Comedy
## 2638                                                                 Children|Comedy
## 2639                                                      Action|Adventure|Animation
## 2640                                                                           Drama
## 2641                                                                        Thriller
## 2642                                                           Action|Crime|Thriller
## 2643                                      Action|Adventure|Animation|Children|Comedy
## 2644                                                                          Comedy
## 2645                                                  Action|Adventure|Drama|Fantasy
## 2646                                                                          Comedy
## 2647                                                                  Drama|Thriller
## 2648                                                      Adventure|Animation|Comedy
## 2649                                                                          Comedy
## 2650                                                          Crime|Mystery|Thriller
## 2651                                                                  Drama|Thriller
## 2652                                                          Action|Comedy|Thriller
## 2653                                                         Action|Adventure|Comedy
## 2654                                                                          Comedy
## 2655                                                                          Horror
## 2656                                                           Drama|Sci-Fi|Thriller
## 2657                                                     Action|Comedy|Horror|Sci-Fi
## 2658                                                                   Action|Comedy
## 2659                                                                Action|Adventure
## 2660                                                            Action|Horror|Sci-Fi
## 2661                                                                          Comedy
## 2662                                                                          Sci-Fi
## 2663                                                          Crime|Mystery|Thriller
## 2664                                                                     Crime|Drama
## 2665                                                                           Drama
## 2666                                                                       Drama|War
## 2667                                                                      Comedy|War
## 2668                                                           Drama|Sci-Fi|Thriller
## 2669                                                                   Drama|Romance
## 2670                                                                           Drama
## 2671                                                 Adventure|Comedy|Sci-Fi|Western
## 2672                                                           Action|Crime|Thriller
## 2673                                                                          Comedy
## 2674                                                                  Comedy|Romance
## 2675                                                    Comedy|Drama|Fantasy|Romance
## 2676                                                                   Drama|Romance
## 2677                                                       Action|Adventure|Thriller
## 2678                                                                   Drama|Romance
## 2679                                                                  Comedy|Romance
## 2680                                                            Comedy|Drama|Romance
## 2681                                                                          Comedy
## 2682                                                                  Romance|Sci-Fi
## 2683                                                                           Drama
## 2684                                                                  Comedy|Romance
## 2685                                                                   Drama|Romance
## 2686                                                Action|Adventure|Sci-Fi|Thriller
## 2687                                            Action|Crime|Mystery|Sci-Fi|Thriller
## 2688                                           Action|Adventure|Crime|Drama|Thriller
## 2689                                                            Comedy|Drama|Romance
## 2690                                                           Action|Crime|Thriller
## 2691                                                                  Comedy|Romance
## 2692                                                           Action|Crime|Thriller
## 2693                                                                   Drama|Romance
## 2694                                          Adventure|Drama|Fantasy|Mystery|Sci-Fi
## 2695                                                         Mystery|Sci-Fi|Thriller
## 2696                                                                     Crime|Drama
## 2697                                                                Mystery|Thriller
## 2698                                                          Crime|Mystery|Thriller
## 2699                                                            Crime|Drama|Thriller
## 2700                                                 Action|Adventure|Crime|Thriller
## 2701                                                          Action|Sci-Fi|Thriller
## 2702                                                           Action|Crime|Thriller
## 2703                                                                    Comedy|Drama
## 2704                                      Action|Crime|Drama|Mystery|Sci-Fi|Thriller
## 2705                                                                          Comedy
## 2706                                                                    Comedy|Drama
## 2707                                                                     Crime|Drama
## 2708                                                         Action|Adventure|Sci-Fi
## 2709                                                           Action|Crime|Thriller
## 2710                                                     Action|Crime|Drama|Thriller
## 2711                                                     Comedy|Crime|Drama|Thriller
## 2712                                                                           Drama
## 2713                                                                     Crime|Drama
## 2714                                                                          Comedy
## 2715                                                        Comedy|Drama|Romance|War
## 2716                                                         Action|Romance|Thriller
## 2717                                                                     Crime|Drama
## 2718                                                Action|Adventure|Sci-Fi|Thriller
## 2719                                                            Crime|Drama|Thriller
## 2720                                                                  Comedy|Mystery
## 2721                                                                       Drama|War
## 2722                                                          Action|Sci-Fi|Thriller
## 2723                                                                  Crime|Thriller
## 2724                                                         Adventure|Drama|Western
## 2725                                                           Crime|Horror|Thriller
## 2726                                                     Comedy|Crime|Drama|Thriller
## 2727                                           Drama|Mystery|Romance|Sci-Fi|Thriller
## 2728                                                           Drama|Mystery|Western
## 2729                                               Action|Adventure|Romance|Thriller
## 2730                                                              Comedy|Crime|Drama
## 2731                                                                     Crime|Drama
## 2732                                                    Crime|Drama|Romance|Thriller
## 2733                                                  Drama|Mystery|Romance|Thriller
## 2734                                                                Mystery|Thriller
## 2735                                       Action|Adventure|Mystery|Romance|Thriller
## 2736                                                                    Comedy|Crime
## 2737                                                                   Drama|Romance
## 2738                                                               Film-Noir|Mystery
## 2739                                                         Drama|Film-Noir|Romance
## 2740                                                                   Drama|Mystery
## 2741                                                          Adventure|Drama|Sci-Fi
## 2742                                                  Drama|Mystery|Romance|Thriller
## 2743                                                      Film-Noir|Romance|Thriller
## 2744                                                        Mystery|Romance|Thriller
## 2745                                                         Crime|Film-Noir|Mystery
## 2746                                                          Drama|Mystery|Thriller
## 2747                                                           Action|Crime|Thriller
## 2748                                                                   Comedy|Sci-Fi
## 2749                                                                    Comedy|Crime
## 2750                                                          Crime|Mystery|Thriller
## 2751                                                          Crime|Mystery|Thriller
## 2752                                                                           Drama
## 2753                                                                           Drama
## 2754                                                        Adventure|Comedy|Fantasy
## 2755                                                                    Comedy|Drama
## 2756                                                            Comedy|Drama|Romance
## 2757                                                                           Drama
## 2758                                                                  Fantasy|Sci-Fi
## 2759                                                     Crime|Drama|Sci-Fi|Thriller
## 2760                                                         Action|Adventure|Sci-Fi
## 2761                                                      Film-Noir|Mystery|Thriller
## 2762                                                                     Crime|Drama
## 2763                                                     Action|Crime|Drama|Thriller
## 2764                                                           Action|Comedy|Musical
## 2765                                                                     Crime|Drama
## 2766                                                                  Comedy|Romance
## 2767                                                            Drama|Mystery|Sci-Fi
## 2768                                                            Comedy|Drama|Romance
## 2769                                                                           Drama
## 2770                                                          Action|Sci-Fi|Thriller
## 2771                                                           Comedy|Fantasy|Horror
## 2772                                                            Comedy|Drama|Romance
## 2773                                                  Crime|Drama|Film-Noir|Thriller
## 2774                                                                           Drama
## 2775                                                        Crime|Film-Noir|Thriller
## 2776                                                   Action|Crime|Romance|Thriller
## 2777                                                                   Drama|Fantasy
## 2778                                                Crime|Film-Noir|Mystery|Thriller
## 2779                                                            Comedy|Horror|Sci-Fi
## 2780                                                                          Horror
## 2781                                                                       Drama|War
## 2782                                                          Comedy|Fantasy|Romance
## 2783                                                              Crime|Thriller|War
## 2784                                                         Adventure|Comedy|Sci-Fi
## 2785                                                                   Drama|Musical
## 2786                                                                 Horror|Thriller
## 2787                                                                          Horror
## 2788                                                Action|Comedy|Crime|Drama|Sci-Fi
## 2789                                                             Crime|Drama|Romance
## 2790                                   Crime|Drama|Fantasy|Film-Noir|Mystery|Romance
## 2791                                                                     Crime|Drama
## 2792                                                         Action|Adventure|Comedy
## 2793                                                                   Horror|Sci-Fi
## 2794                                                            Action|Comedy|Sci-Fi
## 2795                                                  Drama|Mystery|Romance|Thriller
## 2796                                                Crime|Film-Noir|Mystery|Thriller
## 2797                                                          Drama|Mystery|Thriller
## 2798                                                             Crime|Drama|Mystery
## 2799                                                          Drama|Mystery|Thriller
## 2800                                                           Drama|Sci-Fi|Thriller
## 2801                                                                           Drama
## 2802                                                          Drama|Romance|Thriller
## 2803                                                                   Drama|Romance
## 2804                                                                   Drama|Romance
## 2805                                                            Crime|Drama|Thriller
## 2806                                                                    Comedy|Crime
## 2807                                             Adventure|Film-Noir|Sci-Fi|Thriller
## 2808                                                                     Crime|Drama
## 2809                                                    Crime|Drama|Mystery|Thriller
## 2810                                                          Adventure|Comedy|Drama
## 2811                                                           Drama|Sci-Fi|Thriller
## 2812                                                                  Comedy|Romance
## 2813                                                                  Horror|Mystery
## 2814                                                                    Drama|Sci-Fi
## 2815                                                         Adventure|Comedy|Sci-Fi
## 2816                                                 Adventure|Comedy|Sci-Fi|Western
## 2817                                                                Adventure|Sci-Fi
## 2818                                                    Crime|Drama|Mystery|Thriller
## 2819                                                                Action|Drama|War
## 2820                                                                       Film-Noir
## 2821                                                               Drama|Romance|War
## 2822                                                          Drama|Mystery|Thriller
## 2823                                                           Comedy|Crime|Thriller
## 2824                                                                    Drama|Sci-Fi
## 2825                                                                        Thriller
## 2826                                                           Crime|Horror|Thriller
## 2827                                                           Drama|Horror|Thriller
## 2828                                                          Action|Horror|Thriller
## 2829                                                                Mystery|Thriller
## 2830                                                  Horror|Mystery|Sci-Fi|Thriller
## 2831                                                           Action|Crime|Thriller
## 2832                                                        Comedy|Drama|Romance|War
## 2833                                                                     Crime|Drama
## 2834                                                                 Action|Thriller
## 2835                                                            Comedy|Drama|Romance
## 2836                                                    Drama|Horror|Sci-Fi|Thriller
## 2837                                                    Crime|Drama|Mystery|Thriller
## 2838                                                                 Action|Thriller
## 2839                                                                    Comedy|Crime
## 2840                                                                          Comedy
## 2841                                                           Drama|Horror|Thriller
## 2842                                                          Action|Sci-Fi|Thriller
## 2843                                                          Crime|Mystery|Thriller
## 2844                                                   Drama|Romance|Sci-Fi|Thriller
## 2845                                                          Action|Sci-Fi|Thriller
## 2846                                                                   Comedy|Horror
## 2847                                                    Comedy|Horror|Musical|Sci-Fi
## 2848                                                           Drama|Sci-Fi|Thriller
## 2849                                                             Documentary|Musical
## 2850                                                         Action|Adventure|Comedy
## 2851                                                                    Action|Crime
## 2852                                                                        Thriller
## 2853                                                           Drama|Horror|Thriller
## 2854                                                          Drama|Mystery|Thriller
## 2855                                                                 Crime|Film-Noir
## 2856                                                            Drama|Horror|Mystery
## 2857                                                                          Comedy
## 2858                                                                   Drama|Romance
## 2859                                                                    Action|Drama
## 2860                                                Action|Adventure|Sci-Fi|Thriller
## 2861                                                                          Comedy
## 2862                                                            Crime|Drama|Thriller
## 2863                                                     Action|Crime|Drama|Thriller
## 2864                                                              Comedy|Crime|Drama
## 2865                                                            Comedy|Drama|Fantasy
## 2866                                                            Comedy|Horror|Sci-Fi
## 2867                                                                       Drama|War
## 2868                                                                     Crime|Drama
## 2869                                                                           Drama
## 2870                                                                          Comedy
## 2871                                                    Crime|Drama|Mystery|Thriller
## 2872                                                   Action|Crime|Thriller|Western
## 2873                                                                     Crime|Drama
## 2874                                                          Drama|Mystery|Thriller
## 2875                                                                           Drama
## 2876                                                           Crime|Drama|Film-Noir
## 2877                                                                  Horror|Mystery
## 2878                                                            Drama|Mystery|Sci-Fi
## 2879                                                                    Comedy|Drama
## 2880                                                   Crime|Horror|Mystery|Thriller
## 2881                                                          Action|Adventure|Drama
## 2882                                                    Crime|Drama|Romance|Thriller
## 2883                                                                    Drama|Horror
## 2884                                                                   Drama|Mystery
## 2885                                                                     Crime|Drama
## 2886                                                                       Drama|War
## 2887                                                                   Comedy|Horror
## 2888                                                                   Drama|Mystery
## 2889                                                           Drama|Horror|Thriller
## 2890                                                                           Drama
## 2891                                                                   Action|Comedy
## 2892                                                                    Drama|Sci-Fi
## 2893                                                            Action|Drama|Romance
## 2894                                                          Adventure|Comedy|Crime
## 2895                                                            Crime|Drama|Thriller
## 2896                                                Crime|Film-Noir|Mystery|Thriller
## 2897                                              Action|Crime|Drama|Horror|Thriller
## 2898                                                                Mystery|Thriller
## 2899                                                                     Crime|Drama
## 2900                                                            Comedy|Drama|Romance
## 2901                                                              Action|Crime|Drama
## 2902                             Adventure|Animation|Children|Comedy|Fantasy|Romance
## 2903                                                            Drama|Fantasy|Horror
## 2904                                                                          Horror
## 2905                                                                  Drama|Thriller
## 2906                                                   Action|Horror|Sci-Fi|Thriller
## 2907                                                           Crime|Horror|Thriller
## 2908                                                                 Horror|Thriller
## 2909                                          Crime|Drama|Film-Noir|Mystery|Thriller
## 2910                                                   Drama|Mystery|Sci-Fi|Thriller
## 2911                                     Adventure|Animation|Children|Comedy|Fantasy
## 2912                                                      Adventure|Children|Fantasy
## 2913                                                             Crime|Drama|Romance
## 2914                                                                  Crime|Thriller
## 2915                                                                  Comedy|Romance
## 2916                                                 Mystery|Romance|Sci-Fi|Thriller
## 2917                                                               Adventure|Fantasy
## 2918                                                                   Drama|Romance
## 2919                                                                   Drama|Romance
## 2920                                                                 Drama|Film-Noir
## 2921                                                                 Sci-Fi|Thriller
## 2922                                                                Comedy|Drama|War
## 2923                                                         Mystery|Sci-Fi|Thriller
## 2924                                                                Animation|Sci-Fi
## 2925                                                           Drama|Horror|Thriller
## 2926                                                                     Documentary
## 2927                                                          Action|Horror|Thriller
## 2928                                                                        Thriller
## 2929                                                                  Comedy|Romance
## 2930                                                                Romance|Thriller
## 2931                                                Action|Adventure|Sci-Fi|Thriller
## 2932                                             Action|Crime|Drama|Mystery|Thriller
## 2933                                                         Action|Mystery|Thriller
## 2934                                            Action|Crime|Mystery|Sci-Fi|Thriller
## 2935                                                                     Crime|Drama
## 2936                                                          Horror|Sci-Fi|Thriller
## 2937                                                                    Action|Crime
## 2938                                                                  Drama|Thriller
## 2939                                                          Crime|Mystery|Thriller
## 2940                                                                     Documentary
## 2941                                                         Horror|Mystery|Thriller
## 2942                                                               Drama|Fantasy|War
## 2943                                                           Action|Drama|Thriller
## 2944                                                                  Crime|Thriller
## 2945                                                          Horror|Sci-Fi|Thriller
## 2946                                                            Crime|Drama|Thriller
## 2947                                                            Drama|Romance|Sci-Fi
## 2948                                                            Crime|Drama|Thriller
## 2949                                                          Action|Sci-Fi|Thriller
## 2950                                                                        Thriller
## 2951                                                               Adventure|Fantasy
## 2952                                           Action|Adventure|Crime|Drama|Thriller
## 2953                                                                 Action|Thriller
## 2954                                                         Horror|Mystery|Thriller
## 2955                                                                   Drama|Mystery
## 2956                                                    Crime|Drama|Mystery|Thriller
## 2957                                                         Horror|Mystery|Thriller
## 2958                                                                  Drama|Thriller
## 2959                                                                          Comedy
## 2960                                                         Action|Adventure|Sci-Fi
## 2961                                                                  Crime|Thriller
## 2962                                                   Crime|Horror|Mystery|Thriller
## 2963                                           Action|Adventure|Sci-Fi|Thriller|IMAX
## 2964                                                                    Action|Crime
## 2965                                                           Action|Crime|Thriller
## 2966                                                                           Drama
## 2967                                                            Action|Horror|Sci-Fi
## 2968                                          Action|Adventure|Comedy|Crime|Thriller
## 2969                                                   Drama|Horror|Mystery|Thriller
## 2970                                                          Drama|Mystery|Thriller
## 2971                                                 Adventure|Comedy|Crime|Thriller
## 2972                                                                           Drama
## 2973                                                            Comedy|Drama|Fantasy
## 2974                                                              Comedy|Crime|Drama
## 2975                                                            Comedy|Drama|Romance
## 2976                                                    Crime|Drama|Mystery|Thriller
## 2977                                                  Fantasy|Horror|Sci-Fi|Thriller
## 2978                                                                           Drama
## 2979                                                            Drama|Fantasy|Sci-Fi
## 2980                                                                           Drama
## 2981                                                           Action|Crime|Thriller
## 2982                                                                  Drama|Thriller
## 2983                                                           Drama|Horror|Thriller
## 2984                                                           Drama|Sci-Fi|Thriller
## 2985                                                            Crime|Fantasy|Horror
## 2986                                                            Comedy|Drama|Romance
## 2987                                            Comedy|Drama|Mystery|Sci-Fi|Thriller
## 2988                                                        Drama|Film-Noir|Thriller
## 2989                                                    Action|Drama|Horror|Thriller
## 2990                                            Crime|Drama|Mystery|Romance|Thriller
## 2991                                                           Drama|Mystery|Romance
## 2992                                                                           Drama
## 2993                                                                  Comedy|Romance
## 2994                                                          Action|Adventure|Drama
## 2995                                                         Horror|Mystery|Thriller
## 2996                                                         Horror|Mystery|Thriller
## 2997                                                    Drama|Fantasy|Mystery|Sci-Fi
## 2998                                                    Crime|Drama|Romance|Thriller
## 2999                                                  Action|Adventure|Drama|Fantasy
## 3000                                                          Action|Sci-Fi|Thriller
## 3001                                                         Drama|Film-Noir|Mystery
## 3002                                                           Drama|Sci-Fi|Thriller
## 3003                                                            Drama|Romance|Sci-Fi
## 3004                                                          Drama|Mystery|Thriller
## 3005                                                           Action|Drama|Thriller
## 3006                                             Action|Crime|Drama|Mystery|Thriller
## 3007                                                            Crime|Drama|Thriller
## 3008                                                 Action|Adventure|Drama|Thriller
## 3009                                                  Crime|Drama|Film-Noir|Thriller
## 3010                                                                 Adventure|Drama
## 3011                                                                        Thriller
## 3012                                                          Action|Sci-Fi|Thriller
## 3013                                                            Crime|Drama|Thriller
## 3014                                                   Drama|Horror|Mystery|Thriller
## 3015                                                                   Action|Sci-Fi
## 3016                                                           Drama|Mystery|Romance
## 3017                                                                         Mystery
## 3018                             Adventure|Animation|Children|Comedy|Musical|Romance
## 3019                                                       Action|Comedy|Crime|Drama
## 3020                                                                  Romance|Sci-Fi
## 3021                                                  Crime|Drama|Film-Noir|Thriller
## 3022                                                    Comedy|Drama|Fantasy|Mystery
## 3023                                                                     Documentary
## 3024                                                Action|Adventure|Sci-Fi|Thriller
## 3025                                                           Action|Crime|Thriller
## 3026                                                         Comedy|Drama|Sci-Fi|War
## 3027                                                                        Thriller
## 3028                                                          Drama|Mystery|Thriller
## 3029                                                     Action|Crime|Drama|Thriller
## 3030                                                         Action|Adventure|Sci-Fi
## 3031                                                                   Comedy|Horror
## 3032                                                                    Drama|Sci-Fi
## 3033                                                                   Comedy|Horror
## 3034                                                          Drama|Mystery|Thriller
## 3035                                                         Horror|Mystery|Thriller
## 3036                                                                           Drama
## 3037                                                                  Drama|Thriller
## 3038                                                            Action|Drama|Romance
## 3039                                                    Drama|Fantasy|Romance|Sci-Fi
## 3040                                           Drama|Horror|Mystery|Romance|Thriller
## 3041                                                         Horror|Mystery|Thriller
## 3042                                                       Drama|Mystery|Romance|War
## 3043                                                                Mystery|Thriller
## 3044                                                   Drama|Mystery|Sci-Fi|Thriller
## 3045                                                                           Drama
## 3046                                                                       Drama|War
## 3047                                                                   Action|Comedy
## 3048                                                      Comedy|Crime|Drama|Mystery
## 3049                                         Action|Crime|Film-Noir|Mystery|Thriller
## 3050                                                         Adventure|Comedy|Sci-Fi
## 3051                                             Adventure|Animation|Children|Comedy
## 3052                                                                 Horror|Thriller
## 3053                                                Action|Adventure|Sci-Fi|Thriller
## 3054                                                                    Comedy|Drama
## 3055                                                                          Comedy
## 3056                                                           Action|Crime|Thriller
## 3057                                                                  Comedy|Romance
## 3058                                                                          Action
## 3059                                                                           Drama
## 3060                                                                   Drama|Romance
## 3061                                                                          Comedy
## 3062                                                                   Drama|Romance
## 3063                                                         Mystery|Sci-Fi|Thriller
## 3064                                                                     Crime|Drama
## 3065                                                            Comedy|Drama|Romance
## 3066                                                                           Drama
## 3067                                                                   Drama|Romance
## 3068                                                          Action|Sci-Fi|Thriller
## 3069                                                                  Drama|Thriller
## 3070                                                             Crime|Drama|Romance
## 3071                                                                   Drama|Romance
## 3072                                                          Action|Adventure|Drama
## 3073                                                           Drama|Horror|Thriller
## 3074                                                       Action|Adventure|Thriller
## 3075                                                                  Drama|Thriller
## 3076                                                                   Drama|Romance
## 3077                                                                          Comedy
## 3078                                                         Action|Adventure|Sci-Fi
## 3079                                                                 Action|Thriller
## 3080                                                       Action|Adventure|Thriller
## 3081                                                     Comedy|Crime|Drama|Thriller
## 3082                                                    Crime|Drama|Mystery|Thriller
## 3083                                                                  Drama|Thriller
## 3084                                               Action|Adventure|Mystery|Thriller
## 3085                                                        Action|Adventure|Fantasy
## 3086                                                            Crime|Drama|Thriller
## 3087                                                                  Comedy|Romance
## 3088                                                                          Comedy
## 3089                                                       Action|Adventure|Thriller
## 3090                                               Action|Adventure|Romance|Thriller
## 3091                                                                          Comedy
## 3092                                                          Action|Sci-Fi|Thriller
## 3093                                                                    Comedy|Crime
## 3094                                                                    Comedy|Drama
## 3095                                                Action|Adventure|Sci-Fi|Thriller
## 3096                                                                          Comedy
## 3097                                                           Action|Drama|Thriller
## 3098                                                   Comedy|Fantasy|Romance|Sci-Fi
## 3099                                                                   Drama|Romance
## 3100                                                                  Drama|Thriller
## 3101                                                                          Comedy
## 3102                                                                  Crime|Thriller
## 3103                                                Action|Adventure|Sci-Fi|Thriller
## 3104                                                            Comedy|Drama|Romance
## 3105                                                                 Sci-Fi|Thriller
## 3106                                     Adventure|Animation|Children|Comedy|Fantasy
## 3107                                                      Adventure|Children|Fantasy
## 3108                                                                  Comedy|Romance
## 3109                                                            Comedy|Drama|Romance
## 3110                                                           Action|Crime|Thriller
## 3111                                                                  Comedy|Romance
## 3112                                                                          Action
## 3113                                                       Action|Adventure|Thriller
## 3114                                                            Comedy|Drama|Romance
## 3115                                                                           Drama
## 3116                                                                     Crime|Drama
## 3117                                                           Comedy|Crime|Thriller
## 3118                                             Crime|Drama|Horror|Mystery|Thriller
## 3119                                                           Action|Crime|Thriller
## 3120                                                                   Drama|Romance
## 3121                                          Adventure|Drama|Fantasy|Mystery|Sci-Fi
## 3122                                                         Mystery|Sci-Fi|Thriller
## 3123                                                                  Children|Drama
## 3124                                                                   Drama|Romance
## 3125                                                                     Crime|Drama
## 3126                                                                  Comedy|Romance
## 3127                                                              Action|Crime|Drama
## 3128                                                           Comedy|Drama|Thriller
## 3129                                                                Mystery|Thriller
## 3130                                        Animation|Children|Drama|Musical|Romance
## 3131                                                          Crime|Mystery|Thriller
## 3132                                                            Comedy|Drama|Romance
## 3133                                                                           Drama
## 3134                                                            Comedy|Drama|Romance
## 3135                                                                    Comedy|Crime
## 3136                                                                  Comedy|Romance
## 3137                                                   Action|Comedy|Horror|Thriller
## 3138                                                                   Drama|Romance
## 3139                                                                 Action|Thriller
## 3140                                                            Comedy|Drama|Romance
## 3141                                                       Action|Adventure|Thriller
## 3142                                                                     Crime|Drama
## 3143                                                  Adventure|Comedy|Crime|Romance
## 3144                                                                   Drama|Romance
## 3145                                                                Action|Drama|War
## 3146                                                            Crime|Drama|Thriller
## 3147                                                   Action|Adventure|Comedy|Crime
## 3148                                                                  Comedy|Romance
## 3149                                                                          Comedy
## 3150                                                                          Comedy
## 3151                                              Action|Comedy|Crime|Drama|Thriller
## 3152                                                            Adventure|Drama|IMAX
## 3153                                                   Action|Adventure|Comedy|Crime
## 3154                                                                           Drama
## 3155                                                             Crime|Drama|Mystery
## 3156                                                 Action|Adventure|Mystery|Sci-Fi
## 3157                                                                     Documentary
## 3158                                                           Action|Crime|Thriller
## 3159                                                              Comedy|Crime|Drama
## 3160                                                          Action|Sci-Fi|Thriller
## 3161                                                                          Comedy
## 3162                                                                          Horror
## 3163                                                                   Drama|Romance
## 3164                                                                  Comedy|Romance
## 3165                                                                    Comedy|Drama
## 3166                                                                   Horror|Sci-Fi
## 3167                                      Action|Crime|Drama|Mystery|Sci-Fi|Thriller
## 3168                                                                   Drama|Romance
## 3169                                                                     Documentary
## 3170                                                         Action|Adventure|Sci-Fi
## 3171                                                                           Drama
## 3172                                                                   Drama|Romance
## 3173                                                                          Comedy
## 3174                                                                  Drama|Thriller
## 3175                                                                  Drama|Thriller
## 3176                                                                Adventure|Comedy
## 3177                                                                    Comedy|Drama
## 3178                                                                     Documentary
## 3179                                                                     Crime|Drama
## 3180                                                                   Drama|Romance
## 3181                                                                    Drama|Horror
## 3182                                                         Action|Adventure|Sci-Fi
## 3183                                                                           Drama
## 3184                                                                  Children|Drama
## 3185                                                       Drama|Romance|War|Western
## 3186                                                                           Drama
## 3187                                                                  Comedy|Romance
## 3188                                                            Comedy|Drama|Romance
## 3189                                                                     Crime|Drama
## 3190                                                           Action|Crime|Thriller
## 3191                                                    Action|Drama|Sci-Fi|Thriller
## 3192                                                     Action|Crime|Drama|Thriller
## 3193                                                     Comedy|Crime|Drama|Thriller
## 3194                                                                           Drama
## 3195                                                                           Drama
## 3196                                                                           Drama
## 3197                                                                    Comedy|Drama
## 3198                                                         Action|Adventure|Sci-Fi
## 3199                                                                     Crime|Drama
## 3200                                                                           Drama
## 3201                                                                 Horror|Thriller
## 3202                                                          Adventure|Drama|Sci-Fi
## 3203                                                                   Horror|Sci-Fi
## 3204                                                                          Comedy
## 3205                                                                           Drama
## 3206                                                                           Drama
## 3207                                                                  Comedy|Romance
## 3208                                                             Adventure|Drama|War
## 3209                                                                          Comedy
## 3210                                                                    Comedy|Drama
## 3211                                                                   Drama|Musical
## 3212                                                                          Comedy
## 3213                                                     Action|Crime|Drama|Thriller
## 3214                                                          Drama|Mystery|Thriller
## 3215                                                   Action|Crime|Fantasy|Thriller
## 3216                                                                           Drama
## 3217                                                        Comedy|Drama|Romance|War
## 3218                                                                  Comedy|Romance
## 3219                                                            Comedy|Drama|Romance
## 3220                                 Adventure|Animation|Children|Drama|Musical|IMAX
## 3221                                                                           Drama
## 3222                                                   Drama|Horror|Mystery|Thriller
## 3223                                                     Action|Comedy|Crime|Fantasy
## 3224                                                                           Drama
## 3225                                                                    Comedy|Drama
## 3226                                                            Comedy|Drama|Romance
## 3227                                                                        Thriller
## 3228                                                                 Action|Thriller
## 3229                                                         Action|Romance|Thriller
## 3230                                                          Action|Sci-Fi|Thriller
## 3231                                        Action|Adventure|Comedy|Romance|Thriller
## 3232                                                   Drama|Horror|Romance|Thriller
## 3233                                                                         Western
## 3234                                                                 Horror|Thriller
## 3235                                                                           Drama
## 3236                                                                 Action|Thriller
## 3237                                                                           Drama
## 3238                                                                          Comedy
## 3239                                                                     Crime|Drama
## 3240                                                       Action|Adventure|Thriller
## 3241                                                                  Comedy|Romance
## 3242                                                                          Comedy
## 3243                                                                          Comedy
## 3244                                                                           Drama
## 3245                                                                    Comedy|Drama
## 3246                                                           Drama|Mystery|Romance
## 3247                                                                  Drama|Thriller
## 3248                                                            Crime|Drama|Thriller
## 3249                                                                        Thriller
## 3250                                                 Action|Adventure|Crime|Thriller
## 3251                                                                Action|Drama|War
## 3252                                                                  Comedy|Romance
## 3253                                                                          Comedy
## 3254                                                                 Action|Thriller
## 3255                                                                           Drama
## 3256                                                           Action|Crime|Thriller
## 3257                                                Action|Adventure|Sci-Fi|Thriller
## 3258                                                                  Drama|Thriller
## 3259                                                            Crime|Drama|Thriller
## 3260                                                 Action|Adventure|Comedy|Fantasy
## 3261                                                                           Drama
## 3262                                                              Action|Crime|Drama
## 3263                                                       Action|Adventure|Thriller
## 3264                                                                    Comedy|Drama
## 3265                                                                           Drama
## 3266                                                             Action|Drama|Sci-Fi
## 3267                                                            Crime|Drama|Thriller
## 3268                                                                           Drama
## 3269                                                                   Drama|Romance
## 3270                                                          Comedy|Mystery|Romance
## 3271                                                                   Drama|Romance
## 3272                                                            Action|Drama|Mystery
## 3273                                              Action|Crime|Drama|Sci-Fi|Thriller
## 3274                                                                          Comedy
## 3275                                                                    Action|Drama
## 3276                                                                       Drama|War
## 3277                                                                           Drama
## 3278                                                                  Children|Drama
## 3279                                                                   Drama|Romance
## 3280                                                                           Drama
## 3281                                                                           Drama
## 3282                                                          Action|Sci-Fi|Thriller
## 3283                                                       Action|Adventure|Thriller
## 3284                                                                  Comedy|Romance
## 3285                                              Animation|Children|Fantasy|Musical
## 3286                                                                  Crime|Thriller
## 3287                                                                    Comedy|Drama
## 3288                                                                           Drama
## 3289                                                                 Children|Comedy
## 3290                                     Adventure|Animation|Children|Comedy|Musical
## 3291                                                                   Action|Sci-Fi
## 3292                                                         Adventure|Drama|Western
## 3293                                                           Action|Crime|Thriller
## 3294                                                           Crime|Horror|Thriller
## 3295                                        Animation|Children|Drama|Fantasy|Musical
## 3296                                 Animation|Children|Fantasy|Musical|Romance|IMAX
## 3297                                              Animation|Children|Fantasy|Musical
## 3298                                                                  Comedy|Romance
## 3299                                                               Adventure|Western
## 3300                                                     Comedy|Crime|Drama|Thriller
## 3301                                        Action|Adventure|Animation|Horror|Sci-Fi
## 3302                                                                          Comedy
## 3303                                                    Crime|Drama|Mystery|Thriller
## 3304                                               Action|Adventure|Mystery|Thriller
## 3305                                                        Action|Adventure|Fantasy
## 3306                                    Adventure|Animation|Children|Fantasy|Musical
## 3307                                                                        Thriller
## 3308                                                                          Comedy
## 3309                                                         Adventure|Comedy|Sci-Fi
## 3310                                                                           Drama
## 3311                                                   Drama|Fantasy|Horror|Thriller
## 3312                                                       Action|Adventure|Thriller
## 3313                                               Action|Adventure|Romance|Thriller
## 3314                                                          Action|Sci-Fi|Thriller
## 3315                                                                      Comedy|War
## 3316                                                Action|Adventure|Sci-Fi|Thriller
## 3317                                                                 Comedy|Thriller
## 3318                                                                          Comedy
## 3319                                                           Action|Drama|Thriller
## 3320                                                   Comedy|Fantasy|Romance|Sci-Fi
## 3321                                                          Comedy|Horror|Thriller
## 3322                                                           Drama|Mystery|Western
## 3323                                                                   Drama|Romance
## 3324                                                                  Drama|Thriller
## 3325                                                                     Crime|Drama
## 3326                                                                 Sci-Fi|Thriller
## 3327                                                                 Horror|Thriller
## 3328                                                            Comedy|Drama|Romance
## 3329                                                                   Drama|Romance
## 3330                                                  Drama|Mystery|Romance|Thriller
## 3331                                                                Mystery|Thriller
## 3332                                       Action|Adventure|Mystery|Romance|Thriller
## 3333                                           Comedy|Crime|Mystery|Romance|Thriller
## 3334                                                                   Drama|Romance
## 3335                                                               Film-Noir|Mystery
## 3336                                                    Comedy|Drama|Musical|Romance
## 3337                                                                  Comedy|Romance
## 3338                                                            Comedy|Drama|Romance
## 3339                                                                  Children|Drama
## 3340                                                               Drama|Romance|War
## 3341                                                                   Drama|Mystery
## 3342                                                          Adventure|Drama|Sci-Fi
## 3343                                                  Drama|Mystery|Romance|Thriller
## 3344                                                Drama|Film-Noir|Mystery|Thriller
## 3345                                                      Film-Noir|Romance|Thriller
## 3346                                                        Mystery|Romance|Thriller
## 3347                                                  Crime|Mystery|Romance|Thriller
## 3348                                                        Action|Adventure|Romance
## 3349                                                                    Comedy|Crime
## 3350                                                                  Comedy|Romance
## 3351                                                  Children|Drama|Fantasy|Romance
## 3352                                                                           Drama
## 3353                                                                  Comedy|Romance
## 3354                                                          Drama|Mystery|Thriller
## 3355                                                                       Drama|War
## 3356                                                          Horror|Sci-Fi|Thriller
## 3357                                                    Adventure|Comedy|Romance|War
## 3358                                                                           Drama
## 3359                                                         Children|Comedy|Romance
## 3360                                                          Adventure|Drama|Sci-Fi
## 3361                                      Animation|Children|Fantasy|Musical|Romance
## 3362                                                      Animation|Children|Musical
## 3363                                                 Children|Comedy|Fantasy|Musical
## 3364                                                Animation|Children|Drama|Musical
## 3365                                                                 Musical|Romance
## 3366                                                           Action|Crime|Thriller
## 3367                                                                           Drama
## 3368                                                                    Comedy|Drama
## 3369                                                                    Comedy|Drama
## 3370                                                                        Thriller
## 3371                                                 Children|Comedy|Fantasy|Musical
## 3372                                                                   Comedy|Sci-Fi
## 3373                                                                    Comedy|Crime
## 3374                                                                          Comedy
## 3375                                                                           Drama
## 3376                                                                     Crime|Drama
## 3377                                                          Crime|Mystery|Thriller
## 3378                                                           Drama|Musical|Romance
## 3379                                                          Crime|Mystery|Thriller
## 3380                                                                       Drama|War
## 3381                                                                          Comedy
## 3382                                                          Crime|Mystery|Thriller
## 3383                                                                           Drama
## 3384                                                          Drama|Romance|Thriller
## 3385                                                                           Drama
## 3386                                                           Children|Drama|Sci-Fi
## 3387                                                                  Action|Romance
## 3388                                                                           Drama
## 3389                                                                           Drama
## 3390                                                                           Drama
## 3391                                                                  Comedy|Fantasy
## 3392                                                Action|Adventure|Sci-Fi|Thriller
## 3393                                                                          Horror
## 3394                                                Action|Adventure|Sci-Fi|Thriller
## 3395                                                                  Horror|Mystery
## 3396                                                        Adventure|Comedy|Fantasy
## 3397                                                 Animation|Children|Comedy|Crime
## 3398                                                                       Drama|War
## 3399                                                                          Comedy
## 3400                                                            Comedy|Drama|Romance
## 3401                                                           Drama|Fantasy|Romance
## 3402                                                                       Drama|War
## 3403                                                           Crime|Drama|Film-Noir
## 3404                                                               Drama|Romance|War
## 3405                                                                           Drama
## 3406                                                                           Drama
## 3407                                                         Action|Adventure|Sci-Fi
## 3408                                         Action|Adventure|Comedy|Fantasy|Romance
## 3409                                                                Action|Adventure
## 3410                                                                  Fantasy|Sci-Fi
## 3411                                                  Action|Adventure|Horror|Sci-Fi
## 3412                                                        Action|Adventure|Western
## 3413                                                                           Drama
## 3414                                                             Adventure|Drama|War
## 3415                                                     Crime|Drama|Sci-Fi|Thriller
## 3416                                                                           Drama
## 3417                                                                Action|Drama|War
## 3418                                                         Action|Adventure|Sci-Fi
## 3419                                                           Drama|Fantasy|Romance
## 3420                                                      Film-Noir|Mystery|Thriller
## 3421                                                                     Crime|Drama
## 3422                                                                   Horror|Sci-Fi
## 3423                                          Action|Adventure|Comedy|Fantasy|Horror
## 3424                                                         Adventure|Drama|Romance
## 3425                                                                       Drama|War
## 3426                                                     Action|Crime|Drama|Thriller
## 3427                                                                    Crime|Horror
## 3428                                                           Action|Comedy|Musical
## 3429                                                                     Crime|Drama
## 3430                                                                       Drama|War
## 3431                                                                           Drama
## 3432                                                                     Crime|Drama
## 3433                                                                           Drama
## 3434                                                                  Comedy|Romance
## 3435                                                                           Drama
## 3436                                                                Action|Drama|War
## 3437                                                                           Drama
## 3438                                                                          Comedy
## 3439                                                          Action|Sci-Fi|Thriller
## 3440                                                                       Drama|War
## 3441                                                            Comedy|Drama|Romance
## 3442                                                                           Drama
## 3443                                                            Comedy|Drama|Romance
## 3444                                                        Crime|Film-Noir|Thriller
## 3445                                                   Action|Crime|Romance|Thriller
## 3446                                                             Adventure|Drama|War
## 3447                                                Crime|Film-Noir|Mystery|Thriller
## 3448                                                           Drama|Sci-Fi|Thriller
## 3449                                                  Action|Adventure|Drama|Western
## 3450                                                                  Comedy|Romance
## 3451                                                                          Horror
## 3452                                                                 Adventure|Drama
## 3453                                                        Crime|Film-Noir|Thriller
## 3454                                                    Action|Comedy|Fantasy|Horror
## 3455                                                      Action|Adventure|Drama|War
## 3456                                                                       Drama|War
## 3457                                                          Comedy|Fantasy|Romance
## 3458                                                                   Drama|Western
## 3459                                                              Crime|Thriller|War
## 3460                                                                    Comedy|Drama
## 3461                                                         Comedy|Mystery|Thriller
## 3462                                                         Adventure|Comedy|Sci-Fi
## 3463                                                              Comedy|Crime|Drama
## 3464                                                                       Drama|War
## 3465                                               Action|Adventure|Animation|Sci-Fi
## 3466                                                        Action|Adventure|Fantasy
## 3467                                                                           Drama
## 3468                                                                  Comedy|Fantasy
## 3469                                              Animation|Children|Fantasy|Musical
## 3470                                                                   Drama|Western
## 3471                                                         Crime|Film-Noir|Mystery
## 3472                                                                          Comedy
## 3473                                                                   Drama|Romance
## 3474                                                          Action|Adventure|Drama
## 3475                                                                          Comedy
## 3476                                                                   Drama|Romance
## 3477                                                                Action|Adventure
## 3478                                                                    Comedy|Drama
## 3479                                                                          Comedy
## 3480                                                                   Drama|Musical
## 3481                                                                       Drama|War
## 3482                                                          Children|Drama|Fantasy
## 3483                                                                  Action|Western
## 3484                                                          Adventure|Drama|Sci-Fi
## 3485                                                                  Comedy|Romance
## 3486                                                   Action|Horror|Sci-Fi|Thriller
## 3487                                                          Comedy|Horror|Thriller
## 3488                                                   Drama|Horror|Mystery|Thriller
## 3489                                                                 Horror|Thriller
## 3490                                                                 Horror|Thriller
## 3491                                                                   Horror|Sci-Fi
## 3492                                                                 Horror|Thriller
## 3493                                                 Fantasy|Horror|Romance|Thriller
## 3494                                                                 Horror|Thriller
## 3495                                                                        Thriller
## 3496                                                            Crime|Drama|Thriller
## 3497                                                   Drama|Fantasy|Horror|Thriller
## 3498                                                                 Horror|Thriller
## 3499                                                                          Horror
## 3500                                                         Horror|Mystery|Thriller
## 3501                                                                   Drama|Mystery
## 3502                                                Action|Adventure|Sci-Fi|Thriller
## 3503                                                                   Drama|Romance
## 3504                                                       Action|Adventure|Thriller
## 3505                                                                Adventure|Sci-Fi
## 3506                                                           Action|Mystery|Sci-Fi
## 3507                                                                   Action|Sci-Fi
## 3508                                                Action|Adventure|Sci-Fi|Thriller
## 3509                                                         Action|Adventure|Sci-Fi
## 3510                                                         Adventure|Comedy|Sci-Fi
## 3511                                                                    Action|Crime
## 3512                                                           Action|Comedy|Western
## 3513                                                          Comedy|Musical|Romance
## 3514                                                          Comedy|Musical|Romance
## 3515                                                                    Action|Drama
## 3516                                                           Action|Drama|Thriller
## 3517                                                                   Action|Horror
## 3518                                                                 Horror|Thriller
## 3519                                                                   Action|Horror
## 3520                                                            Action|Comedy|Sci-Fi
## 3521                                                                   Drama|Romance
## 3522                                                                          Comedy
## 3523                                                Action|Comedy|Crime|Drama|Sci-Fi
## 3524                                                Adventure|Animation|Comedy|Crime
## 3525                                                      Action|Romance|War|Western
## 3526                                                                  Comedy|Romance
## 3527                                                          Action|Adventure|Drama
## 3528                                                                           Drama
## 3529                                     Adventure|Animation|Children|Comedy|Fantasy
## 3530                                                         Mystery|Sci-Fi|Thriller
## 3531                                                                  Children|Drama
## 3532                                               Adventure|Children|Comedy|Musical
## 3533                                                                Action|Drama|War
## 3534                                                            Adventure|Drama|IMAX
## 3535                                                   Action|Adventure|Comedy|Crime
## 3536                                                                   Drama|Romance
## 3537                                                                Adventure|Comedy
## 3538                                                         Action|Adventure|Sci-Fi
## 3539                                                     Comedy|Crime|Drama|Thriller
## 3540                                                         Action|Adventure|Sci-Fi
## 3541                                                                     Crime|Drama
## 3542                                                                          Comedy
## 3543                                                        Comedy|Drama|Romance|War
## 3544                                 Adventure|Animation|Children|Drama|Musical|IMAX
## 3545                                                     Action|Comedy|Crime|Fantasy
## 3546                                        Action|Adventure|Comedy|Romance|Thriller
## 3547                                                                        Thriller
## 3548                                                Action|Adventure|Sci-Fi|Thriller
## 3549                                                                  Comedy|Romance
## 3550                                                                    Comedy|Drama
## 3551                                                                       Drama|War
## 3552                                     Adventure|Animation|Children|Comedy|Musical
## 3553                                                         Adventure|Drama|Western
## 3554                                                           Action|Crime|Thriller
## 3555                                                           Crime|Horror|Thriller
## 3556                                 Animation|Children|Fantasy|Musical|Romance|IMAX
## 3557                                                                  Comedy|Romance
## 3558                                                     Comedy|Crime|Drama|Thriller
## 3559                                                                   Comedy|Sci-Fi
## 3560                                                      Adventure|Animation|Comedy
## 3561                                               Action|Adventure|Romance|Thriller
## 3562                                                       Animation|Children|Comedy
## 3563                                                                      Comedy|War
## 3564                                                Action|Adventure|Sci-Fi|Thriller
## 3565                                                                     Crime|Drama
## 3566                                                                Mystery|Thriller
## 3567                                                                  Comedy|Romance
## 3568                                                                   Drama|Romance
## 3569                                                          Adventure|Drama|Sci-Fi
## 3570                                                           Children|Drama|Sci-Fi
## 3571                                                                           Drama
## 3572                                                        Adventure|Comedy|Fantasy
## 3573                                                 Animation|Children|Comedy|Crime
## 3574                                                         Action|Adventure|Sci-Fi
## 3575                                                                Action|Adventure
## 3576                                                             Adventure|Drama|War
## 3577                                                                           Drama
## 3578                                                         Action|Adventure|Sci-Fi
## 3579                                                            Comedy|Drama|Romance
## 3580                                                         Comedy|Mystery|Thriller
## 3581                                                         Adventure|Comedy|Sci-Fi
## 3582                                                                           Drama
## 3583                                                           Action|Comedy|Western
## 3584                                                                  Comedy|Romance
## 3585                                                            Action|Comedy|Sci-Fi
## 3586                                                                   Drama|Romance
## 3587                       Adventure|Animation|Children|Comedy|Drama|Musical|Romance
## 3588                                                                           Drama
## 3589                                                          Action|Adventure|Drama
## 3590                                                 Action|Adventure|Comedy|Romance
## 3591                                                          Action|Sci-Fi|Thriller
## 3592                                                                  Comedy|Romance
## 3593                                                            Drama|Horror|Mystery
## 3594                                                                           Drama
## 3595                                                     Action|Crime|Drama|Thriller
## 3596                                                                           Drama
## 3597                                                                       Drama|War
## 3598                                                      Action|Adventure|Drama|War
## 3599                                                             Action|Thriller|War
## 3600                                                                          Comedy
## 3601                                                               Adventure|Fantasy
## 3602                                                            Comedy|Drama|Romance
## 3603                                                     Adventure|Animation|Fantasy
## 3604                                                                       Drama|War
## 3605                                                                   Drama|Romance
## 3606                                                                           Drama
## 3607                                                                           Drama
## 3608                                                           Children|Comedy|Drama
## 3609                                                  Action|Adventure|Drama|Fantasy
## 3610                                                                  Comedy|Romance
## 3611                                                                  Fantasy|Sci-Fi
## 3612                                                                           Drama
## 3613                                                                Action|Drama|War
## 3614                                                                          Comedy
## 3615                                                                           Drama
## 3616                                                                           Drama
## 3617                                                                       Drama|War
## 3618                                                              Comedy|Crime|Drama
## 3619                                             Adventure|Animation|Children|Comedy
## 3620                                                                Children|Fantasy
## 3621                                                                   Drama|Romance
## 3622                                                Adventure|Comedy|Fantasy|Romance
## 3623                                                            Comedy|Drama|Romance
## 3624                                             Adventure|Animation|Children|Comedy
## 3625                                           Action|Animation|Children|Comedy|IMAX
## 3626                                                                Animation|Comedy
## 3627                                                       Action|Adventure|Thriller
## 3628                                                           Comedy|Crime|Thriller
## 3629                                                         Mystery|Sci-Fi|Thriller
## 3630                                                                  Children|Drama
## 3631                                                                     Crime|Drama
## 3632                                                        Action|Adventure|Fantasy
## 3633                                                                Mystery|Thriller
## 3634                                                       Action|Adventure|Thriller
## 3635                                                   Action|Adventure|Comedy|Crime
## 3636                                                        Action|Drama|Romance|War
## 3637                                                                 Action|Children
## 3638                                                                   Horror|Sci-Fi
## 3639                                                         Action|Adventure|Sci-Fi
## 3640                                                         Action|Adventure|Sci-Fi
## 3641                                                       Drama|Romance|War|Western
## 3642                                                             Drama|Horror|Sci-Fi
## 3643                                                           Action|Crime|Thriller
## 3644                                                     Comedy|Crime|Drama|Thriller
## 3645                                                         Action|Adventure|Sci-Fi
## 3646                                                          Adventure|Drama|Sci-Fi
## 3647                                                                          Comedy
## 3648                                                                          Comedy
## 3649                                                        Comedy|Drama|Romance|War
## 3650                                                         Action|Romance|Thriller
## 3651                                                          Action|Sci-Fi|Thriller
## 3652                                        Action|Adventure|Comedy|Romance|Thriller
## 3653                                                        Action|Adventure|Fantasy
## 3654                                                         Action|Adventure|Sci-Fi
## 3655                                                                        Thriller
## 3656                                                               Action|Comedy|War
## 3657                                                Action|Adventure|Sci-Fi|Thriller
## 3658                                                 Action|Adventure|Comedy|Fantasy
## 3659                                                                   Drama|Romance
## 3660                                                                       Drama|War
## 3661                                                          Action|Sci-Fi|Thriller
## 3662                                                         Comedy|Romance|Thriller
## 3663                                              Animation|Children|Fantasy|Musical
## 3664                                                            Action|Drama|Western
## 3665                                                                 Children|Comedy
## 3666                                                                   Action|Sci-Fi
## 3667                                                         Adventure|Drama|Western
## 3668                                                           Action|Crime|Thriller
## 3669                                                           Crime|Horror|Thriller
## 3670                                        Animation|Children|Drama|Fantasy|Musical
## 3671                                 Animation|Children|Fantasy|Musical|Romance|IMAX
## 3672                                                                  Comedy|Romance
## 3673                                        Action|Adventure|Animation|Horror|Sci-Fi
## 3674                                               Action|Adventure|Mystery|Thriller
## 3675                                                       Action|Adventure|Thriller
## 3676                                                                      Comedy|War
## 3677                                                Action|Adventure|Sci-Fi|Thriller
## 3678                                                Action|Adventure|Sci-Fi|Thriller
## 3679                                                                     Crime|Drama
## 3680                                                          Comedy|Musical|Romance
## 3681                                       Action|Adventure|Mystery|Romance|Thriller
## 3682                                                                    Comedy|Crime
## 3683                                                                   Drama|Romance
## 3684                                                               Film-Noir|Mystery
## 3685                                                    Comedy|Drama|Musical|Romance
## 3686                                                                         Musical
## 3687                                              Adventure|Children|Fantasy|Musical
## 3688                                                               Drama|Romance|War
## 3689                                                                          Comedy
## 3690                                                                   Drama|Mystery
## 3691                                                          Adventure|Drama|Sci-Fi
## 3692                                                          Comedy|Musical|Romance
## 3693                                                           Drama|Romance|Western
## 3694                                                                Adventure|Comedy
## 3695                                                  Children|Drama|Fantasy|Romance
## 3696                                                                           Drama
## 3697                                                    Adventure|Comedy|Romance|War
## 3698                                                                  Children|Drama
## 3699                                                          Adventure|Drama|Sci-Fi
## 3700                                      Animation|Children|Fantasy|Musical|Romance
## 3701                                                 Children|Comedy|Fantasy|Musical
## 3702                                                      Adventure|Children|Musical
## 3703                                    Adventure|Animation|Children|Fantasy|Musical
## 3704                                                                 Musical|Romance
## 3705                                                           Action|Crime|Thriller
## 3706                                                                    Comedy|Crime
## 3707                                                                          Comedy
## 3708                                                           Drama|Musical|Romance
## 3709                                                          Crime|Mystery|Thriller
## 3710                                                                       Drama|War
## 3711                                                                          Comedy
## 3712                                                           Children|Drama|Sci-Fi
## 3713                                                                           Drama
## 3714                                                                           Drama
## 3715                                                                    Comedy|Crime
## 3716                                                Action|Adventure|Sci-Fi|Thriller
## 3717                                                Action|Adventure|Sci-Fi|Thriller
## 3718                                                                          Comedy
## 3719                                                        Adventure|Comedy|Fantasy
## 3720                                                 Animation|Children|Comedy|Crime
## 3721                                                                    Comedy|Drama
## 3722                                                            Comedy|Drama|Romance
## 3723                                                                           Drama
## 3724                                                         Action|Adventure|Sci-Fi
## 3725                                                                Action|Adventure
## 3726                                                                  Fantasy|Sci-Fi
## 3727                                                  Action|Adventure|Horror|Sci-Fi
## 3728                                                                           Drama
## 3729                                                     Crime|Drama|Sci-Fi|Thriller
## 3730                                                                Action|Drama|War
## 3731                                                         Action|Adventure|Sci-Fi
## 3732                                                                   Horror|Sci-Fi
## 3733                                                                       Drama|War
## 3734                                                                     Crime|Drama
## 3735                                                                       Drama|War
## 3736                                                        Action|Drama|Romance|War
## 3737                                                                           Drama
## 3738                                                                           Drama
## 3739                                                                           Drama
## 3740                                                                    Comedy|Crime
## 3741                                                          Action|Sci-Fi|Thriller
## 3742                                                                           Drama
## 3743                                                             Adventure|Drama|War
## 3744                                                Crime|Film-Noir|Mystery|Thriller
## 3745                                                           Drama|Sci-Fi|Thriller
## 3746                                                  Action|Adventure|Drama|Western
## 3747                                                              Comedy|Musical|War
## 3748                                                                 Adventure|Drama
## 3749                                                                       Drama|War
## 3750                                                          Comedy|Fantasy|Romance
## 3751                                                                   Drama|Western
## 3752                                                         Adventure|Comedy|Sci-Fi
## 3753                                                        Action|Adventure|Fantasy
## 3754                                                                Comedy|Drama|War
## 3755                                              Animation|Children|Fantasy|Musical
## 3756                                                                   Drama|Western
## 3757                                                          Action|Adventure|Drama
## 3758                                                                          Comedy
## 3759                                                                Action|Adventure
## 3760                                                                    Comedy|Drama
## 3761                                                                           Drama
## 3762                                                                   Drama|Romance
## 3763                                                                          Comedy
## 3764                                                                   Drama|Musical
## 3765                                                                    Drama|Sci-Fi
## 3766                                                          Children|Drama|Fantasy
## 3767                                                                 Adventure|Drama
## 3768                                                   Action|Horror|Sci-Fi|Thriller
## 3769                                                          Comedy|Horror|Thriller
## 3770                                                   Drama|Horror|Mystery|Thriller
## 3771                                                                   Horror|Sci-Fi
## 3772                                                   Drama|Fantasy|Horror|Thriller
## 3773                                                            Drama|Fantasy|Horror
## 3774                                                         Horror|Mystery|Thriller
## 3775                                                       Action|Adventure|Thriller
## 3776                                                                Adventure|Sci-Fi
## 3777                                                           Action|Mystery|Sci-Fi
## 3778                                                                   Action|Sci-Fi
## 3779                                                Action|Adventure|Sci-Fi|Thriller
## 3780                                                         Action|Adventure|Sci-Fi
## 3781                                                         Adventure|Comedy|Sci-Fi
## 3782                                                          Comedy|Musical|Romance
## 3783                                                                   Action|Horror
## 3784                                                                 Horror|Thriller
## 3785                                                                          Comedy
## 3786                                                                    Comedy|Drama
## 3787                                                                 Action|Thriller
## 3788                                                                Comedy|Drama|War
## 3789                                                         Mystery|Sci-Fi|Thriller
## 3790                                                        Action|Adventure|Fantasy
## 3791                                                                Mystery|Thriller
## 3792                                        Animation|Children|Drama|Musical|Romance
## 3793                                                   Action|Comedy|Horror|Thriller
## 3794                                                   Action|Adventure|Comedy|Crime
## 3795                                                              Adventure|Children
## 3796                                                          Action|Romance|Western
## 3797                                                             Action|Crime|Sci-Fi
## 3798                                                         Action|Adventure|Sci-Fi
## 3799                                                                Adventure|Comedy
## 3800                                                                    Comedy|Drama
## 3801                                                                    Drama|Horror
## 3802                                                         Action|Adventure|Sci-Fi
## 3803                                                                          Comedy
## 3804                                                     Comedy|Crime|Drama|Thriller
## 3805                                                           Action|Drama|Thriller
## 3806                                                         Children|Comedy|Fantasy
## 3807                                                        Comedy|Drama|Romance|War
## 3808                                                         Action|Adventure|Sci-Fi
## 3809                                                                        Thriller
## 3810                                                Action|Adventure|Sci-Fi|Thriller
## 3811                                                 Action|Adventure|Comedy|Fantasy
## 3812                                                          Action|Sci-Fi|Thriller
## 3813                                              Animation|Children|Fantasy|Musical
## 3814                                                 Action|Adventure|Comedy|Romance
## 3815                                                                  Crime|Thriller
## 3816                                                                 Children|Comedy
## 3817                                     Adventure|Animation|Children|Comedy|Musical
## 3818                                                                   Action|Sci-Fi
## 3819                                                           Action|Crime|Thriller
## 3820                                                           Crime|Horror|Thriller
## 3821                                               Action|Adventure|Mystery|Thriller
## 3822                                                                 Comedy|Thriller
## 3823                                                                          Comedy
## 3824                                                                     Crime|Drama
## 3825                                                                          Comedy
## 3826                                                          Crime|Mystery|Thriller
## 3827                                                           Children|Drama|Sci-Fi
## 3828                                                                  Action|Romance
## 3829                                                 Animation|Children|Comedy|Crime
## 3830                                                         Action|Adventure|Sci-Fi
## 3831                                                                Action|Adventure
## 3832                                                  Action|Adventure|Horror|Sci-Fi
## 3833                                                        Action|Adventure|Western
## 3834                                                                Action|Drama|War
## 3835                                                         Action|Adventure|Sci-Fi
## 3836                                                                   Horror|Sci-Fi
## 3837                                          Action|Adventure|Comedy|Fantasy|Horror
## 3838                                                          Action|Sci-Fi|Thriller
## 3839                                                            Comedy|Horror|Sci-Fi
## 3840                                                                       Drama|War
## 3841                                                         Adventure|Comedy|Sci-Fi
## 3842                                                                Action|Adventure
## 3843                                                   Action|Horror|Sci-Fi|Thriller
## 3844                                                 Fantasy|Horror|Romance|Thriller
## 3845                                                Action|Adventure|Sci-Fi|Thriller
## 3846                                                                Adventure|Sci-Fi
## 3847                                                           Action|Mystery|Sci-Fi
## 3848                                                Action|Adventure|Sci-Fi|Thriller
## 3849                                                         Action|Adventure|Sci-Fi
## 3850                                                         Adventure|Comedy|Sci-Fi
## 3851                                                                    Action|Crime
## 3852                                                                   Action|Horror
## 3853                                                            Action|Comedy|Sci-Fi
## 3854                                                  Action|Adventure|Comedy|Sci-Fi
## 3855                                                Action|Adventure|Sci-Fi|Thriller
## 3856                                                            Action|Comedy|Sci-Fi
## 3857                                                                 Action|Thriller
## 3858                                                          Drama|Mystery|Thriller
## 3859                                                                    Comedy|Drama
## 3860                                                          Drama|Mystery|Thriller
## 3861                                                             Comedy|Drama|Sci-Fi
## 3862                                                                   Drama|Mystery
## 3863                                                                   Drama|Romance
## 3864                                                       Action|Adventure|Thriller
## 3865                                                           Action|Crime|Thriller
## 3866                                             Comedy|Crime|Drama|Mystery|Thriller
## 3867                                                           Drama|Sci-Fi|Thriller
## 3868                                                          Adventure|Comedy|Drama
## 3869                                            Action|Crime|Mystery|Sci-Fi|Thriller
## 3870                                                  Action|Romance|Sci-Fi|Thriller
## 3871                                                                  Comedy|Romance
## 3872                                                                  Horror|Mystery
## 3873                                                           Action|Comedy|Romance
## 3874                                                         Adventure|Comedy|Sci-Fi
## 3875                                                    Crime|Drama|Mystery|Thriller
## 3876                                       Animation|Children|Comedy|Musical|Romance
## 3877                                                        Action|Adventure|Fantasy
## 3878                                                                  Comedy|Fantasy
## 3879                                                  Horror|Mystery|Sci-Fi|Thriller
## 3880                                                   Action|Horror|Sci-Fi|Thriller
## 3881                                                           Drama|Fantasy|Romance
## 3882                                                                  Comedy|Musical
## 3883                                                                         Romance
## 3884                                                       Action|Adventure|Thriller
## 3885                                                                    Comedy|Drama
## 3886                                                                          Horror
## 3887                                                                    Comedy|Crime
## 3888                                                           Comedy|Crime|Thriller
## 3889                                                          Action|Sci-Fi|Thriller
## 3890                                                                  Crime|Thriller
## 3891                                                                    Action|Crime
## 3892                                 Action|Adventure|Comedy|Fantasy|Horror|Thriller
## 3893                                                    Comedy|Horror|Musical|Sci-Fi
## 3894                                                           Drama|Sci-Fi|Thriller
## 3895                                                         Action|Adventure|Comedy
## 3896                                                        Animation|Comedy|Musical
## 3897                                                    Action|Comedy|Sci-Fi|Western
## 3898                                                           Drama|Horror|Thriller
## 3899                                                          Drama|Mystery|Thriller
## 3900                                                            Action|Comedy|Sci-Fi
## 3901                                                           Comedy|Fantasy|Sci-Fi
## 3902                                                           Action|Comedy|Fantasy
## 3903                                                            Drama|Horror|Mystery
## 3904                                                                  Action|Mystery
## 3905                                                                   Drama|Romance
## 3906                                                     Action|Crime|Drama|Thriller
## 3907                                                                 Children|Comedy
## 3908                                                     Action|Crime|Drama|Thriller
## 3909                                              Action|Crime|Drama|Sci-Fi|Thriller
## 3910                       Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery
## 3911                                                       Action|Adventure|Thriller
## 3912                                                                   Comedy|Sci-Fi
## 3913                                                        Adventure|Comedy|Fantasy
## 3914                                                  Fantasy|Horror|Mystery|Romance
## 3915                                                       Action|Adventure|Thriller
## 3916                                                                     Crime|Drama
## 3917                                                          Drama|Mystery|Thriller
## 3918                                                              Animation|Children
## 3919                                                                          Comedy
## 3920                                                                 Adventure|Drama
## 3921                                                          Horror|Sci-Fi|Thriller
## 3922                                                                          Sci-Fi
## 3923                                                 Fantasy|Horror|Mystery|Thriller
## 3924                                                                           Drama
## 3925                                           Action|Children|Comedy|Fantasy|Sci-Fi
## 3926                                                          Action|Sci-Fi|Thriller
## 3927                                                   Crime|Horror|Mystery|Thriller
## 3928                                                          Action|Adventure|Drama
## 3929                                                       Action|Adventure|Thriller
## 3930                                                          Action|Sci-Fi|Thriller
## 3931                                                       Animation|Children|Comedy
## 3932                                                         Action|Adventure|Sci-Fi
## 3933                                                                          Comedy
## 3934                                                          Horror|Sci-Fi|Thriller
## 3935                                                     Action|Comedy|Crime|Romance
## 3936                                                                   Action|Comedy
## 3937                                                                    Drama|Sci-Fi
## 3938                                                            Action|Drama|Romance
## 3939                                                                Action|Adventure
## 3940                                                           Comedy|Crime|Thriller
## 3941                                                                   Comedy|Sci-Fi
## 3942                                                          Adventure|Comedy|Crime
## 3943                                                         Fantasy|Horror|Thriller
## 3944                                                                Mystery|Thriller
## 3945                                                                     Crime|Drama
## 3946                                                              Action|Crime|Drama
## 3947                             Adventure|Animation|Children|Comedy|Fantasy|Romance
## 3948                                                          Adventure|Drama|Sci-Fi
## 3949                                                    Crime|Drama|Mystery|Thriller
## 3950                                                   Action|Adventure|Drama|Sci-Fi
## 3951                                                                   Action|Comedy
## 3952                                                   Drama|Horror|Mystery|Thriller
## 3953                                                            Crime|Drama|Thriller
## 3954                                     Adventure|Animation|Children|Comedy|Fantasy
## 3955                                                      Adventure|Children|Fantasy
## 3956                                                                  Crime|Thriller
## 3957                                                 Mystery|Romance|Sci-Fi|Thriller
## 3958                                                               Adventure|Fantasy
## 3959                                                                Action|Drama|War
## 3960                                                         Action|Mystery|Thriller
## 3961                                                   Action|Horror|Sci-Fi|Thriller
## 3962                                                                        Thriller
## 3963                                                Action|Adventure|Sci-Fi|Thriller
## 3964                                                                  Drama|Thriller
## 3965                                            Action|Crime|Mystery|Sci-Fi|Thriller
## 3966                                                            Action|Comedy|Sci-Fi
## 3967                                                                     Crime|Drama
## 3968                                                          Crime|Mystery|Thriller
## 3969                                                         Horror|Mystery|Thriller
## 3970                                                               Adventure|Fantasy
## 3971                                                       Action|Adventure|Thriller
## 3972                                                          Action|Sci-Fi|Thriller
## 3973                                                               Adventure|Fantasy
## 3974                                                                     Crime|Drama
## 3975                                                              Comedy|Crime|Drama
## 3976                                                Action|Adventure|Sci-Fi|Thriller
## 3977                                           Action|Adventure|Sci-Fi|Thriller|IMAX
## 3978                                                    Comedy|Drama|Fantasy|Romance
## 3979                                                            Action|Horror|Sci-Fi
## 3980                                                 Action|Adventure|Comedy|Fantasy
## 3981                                                           Action|Fantasy|Sci-Fi
## 3982                                                           Action|Fantasy|Horror
## 3983                                                           Action|Crime|Thriller
## 3984                                                             Action|Comedy|Crime
## 3985                                           Action|Adventure|Sci-Fi|Thriller|IMAX
## 3986                                                      Action|Adventure|Drama|War
## 3987                                                           Drama|Fantasy|Romance
## 3988                                                  Action|Adventure|Drama|Fantasy
## 3989                                                    Action|Drama|Horror|Thriller
## 3990                                                 Action|Adventure|Fantasy|Horror
## 3991                                                           Action|Drama|Thriller
## 3992                                                 Action|Adventure|Fantasy|Horror
## 3993                                                                    Action|Crime
## 3994                             Adventure|Animation|Children|Comedy|Musical|Romance
## 3995                                                          Adventure|Fantasy|IMAX
## 3996                                                    Action|Adventure|Sci-Fi|IMAX
## 3997                                                     Action|Crime|Drama|Thriller
## 3998                                                         Horror|Mystery|Thriller
## 3999                                                          Drama|Mystery|Thriller
## 4000                                                         Horror|Mystery|Thriller
## 4001                                      Action|Adventure|Animation|Children|Comedy
## 4002                                          Adventure|Children|Comedy|Fantasy|IMAX
## 4003                                                 Action|Animation|Fantasy|Sci-Fi
## 4004                                                  Action|Fantasy|Horror|Thriller
## 4005                                         Action|Crime|Film-Noir|Mystery|Thriller
## 4006                                                         Action|Adventure|Sci-Fi
## 4007                                                               Action|Crime|IMAX
## 4008                                        Animation|Comedy|Fantasy|Musical|Romance
## 4009                                     Adventure|Animation|Children|Comedy|Fantasy
## 4010                                                           Action|Crime|Thriller
## 4011                                                            Comedy|Drama|Romance
## 4012                                                                     Crime|Drama
## 4013                                                                          Comedy
## 4014                                              Action|Comedy|Crime|Drama|Thriller
## 4015                                                                    Drama|Sci-Fi
## 4016                                                         Mystery|Sci-Fi|Thriller
## 4017                                                                  Children|Drama
## 4018                                                                Mystery|Thriller
## 4019                                                          Crime|Mystery|Thriller
## 4020                                                            Comedy|Drama|Romance
## 4021                                                                           Drama
## 4022                                                                 Action|Thriller
## 4023                                                                          Comedy
## 4024                                                                Action|Drama|War
## 4025                                                            Crime|Drama|Thriller
## 4026                                                            Adventure|Drama|IMAX
## 4027                                                   Action|Adventure|Comedy|Crime
## 4028                                                                           Drama
## 4029                                                          Action|Sci-Fi|Thriller
## 4030                                                           Action|Crime|Thriller
## 4031                                                            Comedy|Drama|Romance
## 4032                                                                    Comedy|Drama
## 4033                                                           Action|Comedy|Romance
## 4034                                                                     Documentary
## 4035                                                                     Crime|Drama
## 4036                                                                  Comedy|Romance
## 4037                                                                    Drama|Horror
## 4038                                                         Action|Adventure|Sci-Fi
## 4039                                                                  Children|Drama
## 4040                                                           Drama|Fantasy|Romance
## 4041                                                    Action|Drama|Sci-Fi|Thriller
## 4042                                                     Action|Crime|Drama|Thriller
## 4043                                                     Comedy|Crime|Drama|Thriller
## 4044                                                                           Drama
## 4045                                                                           Drama
## 4046                                                                           Drama
## 4047                                                         Action|Adventure|Sci-Fi
## 4048                                                                     Crime|Drama
## 4049                                                           Comedy|Drama|Thriller
## 4050                                                                           Drama
## 4051                                                                          Comedy
## 4052                                                                    Comedy|Drama
## 4053                                                        Comedy|Drama|Romance|War
## 4054                                        Action|Adventure|Comedy|Romance|Thriller
## 4055                                                                   Drama|Romance
## 4056                                                                     Crime|Drama
## 4057                                                         Action|Adventure|Sci-Fi
## 4058                                                                        Thriller
## 4059                                                                Action|Drama|War
## 4060                                                                          Comedy
## 4061                                                Action|Adventure|Sci-Fi|Thriller
## 4062                                                 Action|Adventure|Comedy|Fantasy
## 4063                                                                  Comedy|Mystery
## 4064                                                                  Comedy|Romance
## 4065                                                                           Drama
## 4066                                                                   Drama|Romance
## 4067                                                                       Drama|War
## 4068                                                             Comedy|Crime|Horror
## 4069                                                                           Drama
## 4070                                                            Comedy|Drama|Romance
## 4071                                                          Action|Sci-Fi|Thriller
## 4072                                                                 Children|Comedy
## 4073                                     Adventure|Animation|Children|Comedy|Musical
## 4074                                                                   Action|Sci-Fi
## 4075                                                         Adventure|Drama|Western
## 4076                                                           Action|Crime|Thriller
## 4077                                                           Crime|Horror|Thriller
## 4078                                 Animation|Children|Fantasy|Musical|Romance|IMAX
## 4079                                                                  Comedy|Romance
## 4080                                                                   Drama|Romance
## 4081                                                     Comedy|Crime|Drama|Thriller
## 4082                                               Action|Adventure|Mystery|Thriller
## 4083                                                        Action|Adventure|Fantasy
## 4084                                                                           Drama
## 4085                                                                           Drama
## 4086                                                       Animation|Children|Comedy
## 4087                                                                      Comedy|War
## 4088                                                              Comedy|Crime|Drama
## 4089                                                Action|Adventure|Sci-Fi|Thriller
## 4090                                                   Comedy|Fantasy|Romance|Sci-Fi
## 4091                                                                   Drama|Romance
## 4092                                                                  Drama|Thriller
## 4093                                                                          Horror
## 4094                                                                     Crime|Drama
## 4095                                                            Comedy|Drama|Romance
## 4096                                                          Comedy|Musical|Romance
## 4097                                                                 Musical|Romance
## 4098                                                  Drama|Mystery|Romance|Thriller
## 4099                                                                Mystery|Thriller
## 4100                                                                  Comedy|Romance
## 4101                                       Action|Adventure|Mystery|Romance|Thriller
## 4102                                                            Comedy|Drama|Romance
## 4103                                                                    Comedy|Crime
## 4104                                           Comedy|Crime|Mystery|Romance|Thriller
## 4105                                                                   Drama|Romance
## 4106                                                               Film-Noir|Mystery
## 4107                                                    Comedy|Drama|Musical|Romance
## 4108                                                               Drama|Romance|War
## 4109                                                         Drama|Film-Noir|Romance
## 4110                                                                   Drama|Mystery
## 4111                                                          Adventure|Drama|Sci-Fi
## 4112                                                                           Drama
## 4113                                                  Drama|Mystery|Romance|Thriller
## 4114                                                      Film-Noir|Romance|Thriller
## 4115                                                        Mystery|Romance|Thriller
## 4116                                                  Crime|Mystery|Romance|Thriller
## 4117                                                         Crime|Film-Noir|Mystery
## 4118                                                           Drama|Romance|Western
## 4119                                                                           Drama
## 4120                                                                Adventure|Comedy
## 4121                                                  Children|Drama|Fantasy|Romance
## 4122                                                                           Drama
## 4123                                                                  Comedy|Romance
## 4124                                                          Drama|Mystery|Thriller
## 4125                                                    Adventure|Comedy|Romance|War
## 4126                                                                           Drama
## 4127                                                                 Musical|Romance
## 4128                                                           Action|Crime|Thriller
## 4129                                                                           Drama
## 4130                                                                   Drama|Romance
## 4131                                                                        Thriller
## 4132                                                                   Comedy|Sci-Fi
## 4133                                                                      Comedy|War
## 4134                                                                          Comedy
## 4135                                                                     Crime|Drama
## 4136                                                          Crime|Mystery|Thriller
## 4137                                                                       Drama|War
## 4138                                                                           Drama
## 4139                                                           Children|Drama|Sci-Fi
## 4140                                                                  Action|Romance
## 4141                                                                           Drama
## 4142                                                                           Drama
## 4143                                                        Adventure|Comedy|Fantasy
## 4144                                                                           Drama
## 4145                                                            Comedy|Drama|Romance
## 4146                                                           Drama|Fantasy|Romance
## 4147                                                                       Drama|War
## 4148                                                               Drama|Romance|War
## 4149                                                                           Drama
## 4150                                                                  Comedy|Romance
## 4151                                                                           Drama
## 4152                                                         Action|Adventure|Sci-Fi
## 4153                                         Action|Adventure|Comedy|Fantasy|Romance
## 4154                                                                Action|Adventure
## 4155                                                                  Fantasy|Sci-Fi
## 4156                                                        Action|Adventure|Western
## 4157                                                                          Comedy
## 4158                                                                           Drama
## 4159                                                             Adventure|Drama|War
## 4160                                                     Crime|Drama|Sci-Fi|Thriller
## 4161                                                                           Drama
## 4162                                                                Action|Drama|War
## 4163                                                         Action|Adventure|Sci-Fi
## 4164                                                           Drama|Fantasy|Romance
## 4165                                                      Film-Noir|Mystery|Thriller
## 4166                                                                     Crime|Drama
## 4167                                                                       Drama|War
## 4168                                                     Action|Crime|Drama|Thriller
## 4169                                                                    Crime|Horror
## 4170                                                                     Crime|Drama
## 4171                                                                       Drama|War
## 4172                                                                           Drama
## 4173                                                                     Crime|Drama
## 4174                                                                           Drama
## 4175                                                                  Comedy|Romance
## 4176                                                                           Drama
## 4177                                                            Drama|Mystery|Sci-Fi
## 4178                                                                Action|Drama|War
## 4179                                                                    Comedy|Crime
## 4180                                                            Comedy|Drama|Romance
## 4181                                                                           Drama
## 4182                                                          Action|Sci-Fi|Thriller
## 4183                                                           Comedy|Fantasy|Horror
## 4184                                                                    Comedy|Drama
## 4185                                                            Comedy|Drama|Romance
## 4186                                                                           Drama
## 4187                                                            Comedy|Drama|Romance
## 4188                                                        Crime|Film-Noir|Thriller
## 4189                                                             Adventure|Drama|War
## 4190                                                                   Drama|Fantasy
## 4191                                                Crime|Film-Noir|Mystery|Thriller
## 4192                                                  Action|Adventure|Drama|Western
## 4193                                                              Comedy|Musical|War
## 4194                                                                          Horror
## 4195                                                        Crime|Film-Noir|Thriller
## 4196                                                      Action|Adventure|Drama|War
## 4197                                                                       Drama|War
## 4198                                                          Comedy|Fantasy|Romance
## 4199                                                                   Drama|Western
## 4200                                                              Crime|Thriller|War
## 4201                                                         Comedy|Mystery|Thriller
## 4202                                                         Adventure|Comedy|Sci-Fi
## 4203                                                                       Drama|War
## 4204                                                            Comedy|Drama|Romance
## 4205                                                                           Drama
## 4206                                                                Comedy|Drama|War
## 4207                                                         Crime|Film-Noir|Mystery
## 4208                                                          Action|Adventure|Drama
## 4209                                                                          Comedy
## 4210                                                                Action|Adventure
## 4211                                                                           Drama
## 4212                                                                  Action|Western
## 4213                                                                   Drama|Romance
## 4214                                                                  Comedy|Romance
## 4215                                                                 Horror|Thriller
## 4216                                                                        Thriller
## 4217                                                                          Horror
## 4218                                                                   Drama|Mystery
## 4219                                                Action|Adventure|Sci-Fi|Thriller
## 4220                                                                    Action|Crime
## 4221                                                          Comedy|Musical|Romance
## 4222                                                                   Action|Horror
## 4223                                                            Action|Comedy|Sci-Fi
## 4224                                                                   Drama|Romance
## 4225                                                                          Comedy
## 4226                                                      Action|Romance|War|Western
## 4227                                                             Crime|Drama|Romance
## 4228                                                                 Action|Thriller
## 4229                                   Crime|Drama|Fantasy|Film-Noir|Mystery|Romance
## 4230                                                       Action|Adventure|Thriller
## 4231                                                            Comedy|Crime|Romance
## 4232                                                           Action|Drama|Thriller
## 4233                                                  Action|Adventure|Comedy|Sci-Fi
## 4234                                                Action|Adventure|Sci-Fi|Thriller
## 4235                                                       Action|Adventure|Thriller
## 4236                                                         Action|Romance|Thriller
## 4237                                               Action|Adventure|Fantasy|Thriller
## 4238                                                            Action|Comedy|Sci-Fi
## 4239                                                                    Drama|Sci-Fi
## 4240                                                                 Action|Thriller
## 4241                                                Crime|Film-Noir|Mystery|Thriller
## 4242                                                          Drama|Mystery|Thriller
## 4243                                                                           Drama
## 4244                                                             Comedy|Drama|Sci-Fi
## 4245                                                                   Drama|Mystery
## 4246                                                                   Drama|Romance
## 4247                                                                   Drama|Romance
## 4248                                                       Action|Adventure|Thriller
## 4249                                                                    Comedy|Crime
## 4250                                                                   Drama|Romance
## 4251                                             Adventure|Film-Noir|Sci-Fi|Thriller
## 4252                                                           Action|Crime|Thriller
## 4253                                                                Documentary|IMAX
## 4254                                                           Drama|Fantasy|Romance
## 4255                                                                           Drama
## 4256                                                         Crime|Drama|Romance|War
## 4257                                                           Drama|Sci-Fi|Thriller
## 4258                                                                    Comedy|Drama
## 4259                       Adventure|Animation|Children|Comedy|Drama|Musical|Romance
## 4260                                                  Action|Romance|Sci-Fi|Thriller
## 4261                                                                Action|Drama|War
## 4262                                                                 Adventure|Drama
## 4263                                                                   Drama|Musical
## 4264                                                           Drama|Musical|Romance
## 4265                                                                           Drama
## 4266                                                               Drama|Romance|War
## 4267                                                                     Crime|Drama
## 4268                                                                   Drama|Romance
## 4269                                                           Drama|Musical|Romance
## 4270                                                                           Drama
## 4271                                                                   Drama|Mystery
## 4272                                                                   Drama|Musical
## 4273                                                                           Drama
## 4274                                                           Action|Crime|Thriller
## 4275                                                                           Drama
## 4276                                                                           Drama
## 4277                                                                           Drama
## 4278                                                                           Drama
## 4279                                                                    Comedy|Drama
## 4280                                                                   Drama|Romance
## 4281                                                                           Drama
## 4282                                                                           Drama
## 4283                                                                           Drama
## 4284                                                                  Horror|Mystery
## 4285                                                       Action|Comedy|Crime|Drama
## 4286                                                                    Drama|Sci-Fi
## 4287                                                         Adventure|Comedy|Sci-Fi
## 4288                                                 Adventure|Comedy|Sci-Fi|Western
## 4289                                                          Action|Adventure|Drama
## 4290                                                                           Drama
## 4291                                                    Crime|Drama|Mystery|Thriller
## 4292                                                                    Comedy|Crime
## 4293                                                                Action|Drama|War
## 4294                                                               Drama|Romance|War
## 4295                                                           Drama|Fantasy|Mystery
## 4296                                                        Action|Adventure|Fantasy
## 4297                                                   Action|Crime|Mystery|Thriller
## 4298                                                                           Drama
## 4299                                                       Adventure|Fantasy|Romance
## 4300                                                                  Comedy|Fantasy
## 4301                                                            Crime|Drama|Thriller
## 4302                                                                        Thriller
## 4303                                                  Drama|Mystery|Romance|Thriller
## 4304                                                Adventure|Drama|Mystery|Thriller
## 4305                                                  Crime|Drama|Film-Noir|Thriller
## 4306                                                              Action|Crime|Drama
## 4307                                                            Crime|Drama|Thriller
## 4308                                                                  Comedy|Romance
## 4309                                                                           Drama
## 4310                                                            Comedy|Drama|Romance
## 4311                                                    Action|Comedy|Crime|Thriller
## 4312                                                           Action|Crime|Thriller
## 4313                                                              Comedy|Crime|Drama
## 4314                                                           Drama|Fantasy|Romance
## 4315                                                                           Drama
## 4316                                                            Comedy|Drama|Fantasy
## 4317                                                        Comedy|Drama|Romance|War
## 4318                                                                     Crime|Drama
## 4319                                                                           Drama
## 4320                                                                 Action|Thriller
## 4321                                                                           Drama
## 4322                                                                           Drama
## 4323                                                                 Action|Thriller
## 4324                                                                           Drama
## 4325                                                                           Drama
## 4326                                                                          Comedy
## 4327                                                               Animation|Musical
## 4328                                                            Comedy|Drama|Romance
## 4329                                                 Action|Adventure|Comedy|Romance
## 4330                                                                  Comedy|Romance
## 4331                                                    Crime|Drama|Mystery|Thriller
## 4332                                                                           Drama
## 4333                                                                           Drama
## 4334                                                                    Comedy|Crime
## 4335                                                                          Comedy
## 4336                                                           Comedy|Crime|Thriller
## 4337                                                          Action|Sci-Fi|Thriller
## 4338                                                                           Drama
## 4339                                                                    Comedy|Crime
## 4340                                                                          Comedy
## 4341                                                          Action|Sci-Fi|Thriller
## 4342                                 Action|Adventure|Comedy|Fantasy|Horror|Thriller
## 4343                                                         Action|Adventure|Sci-Fi
## 4344                                                         Action|Adventure|Sci-Fi
## 4345                                                                          Horror
## 4346                                                             Drama|Horror|Sci-Fi
## 4347                                                    Comedy|Horror|Musical|Sci-Fi
## 4348                                                                    Action|Crime
## 4349                                                                   Comedy|Horror
## 4350                                                                           Drama
## 4351                                                          Drama|Mystery|Thriller
## 4352                                                            Action|Comedy|Sci-Fi
## 4353                                                                  Comedy|Romance
## 4354                                                                  Comedy|Romance
## 4355                                                                 Crime|Film-Noir
## 4356                                                        Action|Drama|Romance|War
## 4357                                                                   Drama|Romance
## 4358                                                               Drama|Romance|War
## 4359                                                                     Crime|Drama
## 4360                                                                           Drama
## 4361                                                           Comedy|Horror|Musical
## 4362                                                            Drama|Horror|Mystery
## 4363                                                                  Comedy|Romance
## 4364                                                                   Drama|Romance
## 4365                                                        Adventure|Drama|Thriller
## 4366                                               Action|Adventure|Comedy|Drama|War
## 4367                                                          Action|Adventure|Drama
## 4368                                                                           Drama
## 4369                                                                          Comedy
## 4370                                                                           Drama
## 4371                                                       Action|Adventure|Thriller
## 4372                                                            Crime|Drama|Thriller
## 4373                                                                 Children|Comedy
## 4374                                                     Action|Crime|Drama|Thriller
## 4375                                                                 Adventure|Drama
## 4376                                                                           Drama
## 4377                       Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery
## 4378                                                            Comedy|Drama|Fantasy
## 4379                                                                  Drama|Thriller
## 4380                                                                     Crime|Drama
## 4381                                                                    Action|Drama
## 4382                                                        Adventure|Comedy|Fantasy
## 4383                                                                       Drama|War
## 4384                                                                    Comedy|Drama
## 4385                                                  Fantasy|Horror|Mystery|Romance
## 4386                                                       Action|Adventure|Thriller
## 4387                                                                           Drama
## 4388                                                                  Comedy|Fantasy
## 4389                                                                           Drama
## 4390                                                                           Drama
## 4391                                                                           Drama
## 4392                                     Adventure|Animation|Children|Comedy|Fantasy
## 4393                                                                     Crime|Drama
## 4394                                                                           Drama
## 4395                                                                   Drama|Romance
## 4396                                                 Animation|Children|Musical|IMAX
## 4397                                                                           Drama
## 4398                                                                 Adventure|Drama
## 4399                                                          Drama|Mystery|Thriller
## 4400                                                                           Drama
## 4401                                                                           Drama
## 4402                                                                           Drama
## 4403                                                                          Comedy
## 4404                                                                           Drama
## 4405                                                   Action|Crime|Thriller|Western
## 4406                                                            Comedy|Drama|Romance
## 4407                                                                    Comedy|Drama
## 4408                                                                    Comedy|Drama
## 4409                                                                   Drama|Western
## 4410                                                                           Drama
## 4411                                                          Drama|Mystery|Thriller
## 4412                                                                    Action|Drama
## 4413                                                                           Drama
## 4414                                                                           Drama
## 4415                                                                           Drama
## 4416                                                           Crime|Drama|Film-Noir
## 4417                                                                Comedy|Drama|War
## 4418                                                            Comedy|Drama|Romance
## 4419                                                                           Drama
## 4420                                                          Adventure|Drama|Sci-Fi
## 4421                                                                   Drama|Romance
## 4422                                                            Comedy|Drama|Romance
## 4423                                                        Adventure|Comedy|Fantasy
## 4424                                                                           Drama
## 4425                                                            Drama|Mystery|Sci-Fi
## 4426                                                                    Comedy|Drama
## 4427                                                                  Drama|Thriller
## 4428                                                   Crime|Horror|Mystery|Thriller
## 4429                                                           Drama|Horror|Thriller
## 4430                                                            Comedy|Drama|Romance
## 4431                                                                    Comedy|Drama
## 4432                                                          Action|Adventure|Drama
## 4433                                                                    Comedy|Crime
## 4434                                                       Action|Adventure|Thriller
## 4435                                                        Adventure|Comedy|Romance
## 4436                                                                   Drama|Romance
## 4437                                                                  Comedy|Western
## 4438                                                   Action|Drama|Thriller|Western
## 4439                                                                   Drama|Mystery
## 4440                                                                           Drama
## 4441                                                            Crime|Drama|Thriller
## 4442                                                       Animation|Children|Comedy
## 4443                                                                Action|Drama|War
## 4444                                                                   Drama|Mystery
## 4445                                                                   Drama|Mystery
## 4446                                                                           Drama
## 4447                                                                   Drama|Western
## 4448                                                                           Drama
## 4449                                                                   Drama|Musical
## 4450                                                                           Drama
## 4451                                                                   Drama|Romance
## 4452                                                                     Documentary
## 4453                                                               Drama|Romance|War
## 4454                                                                    Drama|Sci-Fi
## 4455                                                            Action|Drama|Romance
## 4456                                                                           Drama
## 4457                                                                       Drama|War
## 4458                                                           Comedy|Crime|Thriller
## 4459                                                                   Drama|Romance
## 4460                                                                           Drama
## 4461                                                          Adventure|Comedy|Crime
## 4462                                                            Crime|Drama|Thriller
## 4463                                                Crime|Film-Noir|Mystery|Thriller
## 4464                                                      Action|Adventure|Drama|War
## 4465                                                                 Horror|Thriller
## 4466                                                                        Thriller
## 4467                                                                       Drama|War
## 4468                                                                          Comedy
## 4469                                                                Mystery|Thriller
## 4470                                                                  Drama|Thriller
## 4471                                                                          Comedy
## 4472                                                                     Documentary
## 4473                                                                   Drama|Fantasy
## 4474                                                                           Drama
## 4475                                                           Drama|Musical|Romance
## 4476                                                        Action|Drama|Romance|War
## 4477                                                                 Adventure|Drama
## 4478                                                                   Comedy|Sci-Fi
## 4479                                                              Action|Crime|Drama
## 4480                                                                          Comedy
## 4481                                                          Adventure|Drama|Sci-Fi
## 4482                                                                     Crime|Drama
## 4483                                                                 Drama|Film-Noir
## 4484                                                                  Comedy|Romance
## 4485                                                                Documentary|IMAX
## 4486                                                           Drama|Fantasy|Romance
## 4487                                                         Adventure|Comedy|Sci-Fi
## 4488                                                                    Comedy|Drama
## 4489                                                   Drama|Horror|Mystery|Thriller
## 4490                                                                          Comedy
## 4491                                                                  Comedy|Romance
## 4492                                          Crime|Drama|Film-Noir|Mystery|Thriller
## 4493                                                                   Drama|Musical
## 4494                                                   Crime|Horror|Mystery|Thriller
## 4495                                                   Drama|Mystery|Sci-Fi|Thriller
## 4496                                                                     Crime|Drama
## 4497                                     Adventure|Animation|Children|Comedy|Fantasy
## 4498                                                      Adventure|Children|Fantasy
## 4499                                                     Action|Crime|Drama|Thriller
## 4500                                                             Crime|Drama|Romance
## 4501                                                                  Crime|Thriller
## 4502                                                                       Drama|War
## 4503                                                                  Comedy|Romance
## 4504                                                 Mystery|Romance|Sci-Fi|Thriller
## 4505                                                                           Drama
## 4506                                                          Drama|Mystery|Thriller
## 4507                                                                    Comedy|Drama
## 4508                                                               Adventure|Fantasy
## 4509                                                                   Drama|Romance
## 4510                                                            Comedy|Drama|Mystery
## 4511                                                                           Drama
## 4512                                                                   Drama|Romance
## 4513                                                                Comedy|Drama|War
## 4514                                                                           Drama
## 4515                                                                          Comedy
## 4516                                                                           Drama
## 4517                                                                  Comedy|Romance
## 4518                                                                           Drama
## 4519                                                                   Drama|Romance
## 4520                                                                  Comedy|Romance
## 4521                                                                   Drama|Romance
## 4522                                                                        Thriller
## 4523                                                             Crime|Drama|Mystery
## 4524                                                                  Comedy|Romance
## 4525                                                                       Drama|War
## 4526                                                                    Comedy|Drama
## 4527                                                Action|Adventure|Sci-Fi|Thriller
## 4528                                                                   Drama|Romance
## 4529                                                               Drama|Romance|War
## 4530                                                            Comedy|Drama|Romance
## 4531                                                    Action|Adventure|Sci-Fi|IMAX
## 4532                                                                     Documentary
## 4533                                             Action|Crime|Drama|Mystery|Thriller
## 4534                                            Action|Crime|Mystery|Sci-Fi|Thriller
## 4535                                                                 Adventure|Drama
## 4536                                                        Action|Adventure|Fantasy
## 4537                                                                     Crime|Drama
## 4538                                                                  Comedy|Romance
## 4539                                                                          Horror
## 4540                                                          Horror|Sci-Fi|Thriller
## 4541                                                                   Drama|Romance
## 4542                                                     Adventure|Animation|Fantasy
## 4543                                                                           Drama
## 4544                                                                     Documentary
## 4545                                                            Comedy|Drama|Romance
## 4546                                                         Horror|Mystery|Thriller
## 4547                                                                           Drama
## 4548                                                                           Drama
## 4549                                                               Adventure|Fantasy
## 4550                                                                   Drama|Romance
## 4551                                                            Drama|Romance|Sci-Fi
## 4552                                        Adventure|Animation|Children|Sci-Fi|IMAX
## 4553                                                            Comedy|Drama|Romance
## 4554                                                                          Comedy
## 4555                                                                        Thriller
## 4556                                                               Adventure|Fantasy
## 4557                                                                     Crime|Drama
## 4558                                                                     Crime|Drama
## 4559                                                Animation|Children|Drama|Fantasy
## 4560                                                                     Crime|Drama
## 4561                                                      Comedy|Crime|Drama|Musical
## 4562                                                                   Drama|Romance
## 4563                                                                       Drama|War
## 4564                                                                    Comedy|Drama
## 4565                                                                           Drama
## 4566                                           Action|Adventure|Crime|Drama|Thriller
## 4567                                                                 Adventure|Drama
## 4568                                                                   Drama|Mystery
## 4569                                                    Crime|Drama|Mystery|Thriller
## 4570                                                            Comedy|Drama|Romance
## 4571                                                                       Drama|War
## 4572                                                                  Drama|Thriller
## 4573                                                   Crime|Horror|Mystery|Thriller
## 4574                                                Action|Adventure|Sci-Fi|Thriller
## 4575                                           Action|Adventure|Sci-Fi|Thriller|IMAX
## 4576                                             Adventure|Animation|Children|Comedy
## 4577                                                                  Comedy|Romance
## 4578                                                                    Comedy|Drama
## 4579                                                                  Drama|Thriller
## 4580                                                         Action|Adventure|Sci-Fi
## 4581                                                 Action|Adventure|Comedy|Fantasy
## 4582                                                            Crime|Drama|Thriller
## 4583                                                                           Drama
## 4584                                                                           Drama
## 4585                                                                           Drama
## 4586                                                                    Comedy|Drama
## 4587                                                                           Drama
## 4588                                                                           Drama
## 4589                                                            Comedy|Drama|Fantasy
## 4590                                                                           Drama
## 4591                                                              Comedy|Crime|Drama
## 4592                                                 Action|Adventure|Crime|Thriller
## 4593                                                            Comedy|Drama|Romance
## 4594                                                                    Comedy|Drama
## 4595                                                                  Drama|Thriller
## 4596                                                                     Crime|Drama
## 4597                                                                          Comedy
## 4598                                                                    Comedy|Drama
## 4599                                                             Crime|Drama|Mystery
## 4600                                                                  Comedy|Romance
## 4601                                                           Action|Crime|Thriller
## 4602                                                                    Comedy|Drama
## 4603                                                                           Drama
## 4604                                                                           Drama
## 4605                                                                     Crime|Drama
## 4606                                           Action|Adventure|Sci-Fi|Thriller|IMAX
## 4607                                                                          Comedy
## 4608                                                             Adventure|Drama|War
## 4609                                            Crime|Drama|Mystery|Romance|Thriller
## 4610                                              Comedy|Crime|Drama|Mystery|Romance
## 4611                                                           Drama|Horror|Thriller
## 4612                                                                           Drama
## 4613                                                                       Drama|War
## 4614                                                                           Drama
## 4615                                                            Crime|Fantasy|Horror
## 4616                                                            Comedy|Drama|Romance
## 4617                                                    Action|Comedy|Crime|Thriller
## 4618                                                                   Drama|Romance
## 4619                                                        Drama|Film-Noir|Thriller
## 4620                                                                   Drama|Romance
## 4621                                                                   Drama|Romance
## 4622                                                                 Adventure|Drama
## 4623                                                        Action|Adventure|Western
## 4624                                                    Action|Drama|Romance|Western
## 4625                                                                   Drama|Romance
## 4626                                                          Action|Adventure|Drama
## 4627                                                                      Comedy|War
## 4628                                                          Comedy|Musical|Romance
## 4629                                                            Comedy|Drama|Romance
## 4630                                                                   Drama|Romance
## 4631                                                           Drama|Fantasy|Romance
## 4632                                                  Action|Adventure|Drama|Fantasy
## 4633                                                                     Crime|Drama
## 4634                                                                 Children|Comedy
## 4635                                                               Drama|Romance|War
## 4636                                                                           Drama
## 4637                                                                           Drama
## 4638                                                                    Comedy|Drama
## 4639                                                                Mystery|Thriller
## 4640                                                            Drama|Romance|Sci-Fi
## 4641                                                          Drama|Mystery|Thriller
## 4642                                                                 Comedy|Thriller
## 4643                                                           Action|Drama|Thriller
## 4644                                                      Action|Adventure|Drama|War
## 4645                                                Action|Adventure|Sci-Fi|Thriller
## 4646                                                            Crime|Drama|Thriller
## 4647                                                   Drama|Horror|Romance|Thriller
## 4648                                                                     Crime|Drama
## 4649                                                                           Drama
## 4650                                                       Action|Drama|Thriller|War
## 4651                                                                 Adventure|Drama
## 4652                                                                   Drama|Romance
## 4653                                                   Drama|Horror|Mystery|Thriller
## 4654                                                                     Crime|Drama
## 4655                                                                   Drama|Romance
## 4656                                                                           Drama
## 4657                                                           Drama|Mystery|Romance
## 4658                                                                    Comedy|Drama
## 4659                                                                           Drama
## 4660                                                          Adventure|Fantasy|IMAX
## 4661                                                                          Comedy
## 4662                                                        Comedy|Documentary|Drama
## 4663                                                              Crime|Drama|Horror
## 4664                                                            Comedy|Drama|Romance
## 4665                                                    Action|Adventure|Sci-Fi|IMAX
## 4666                                                                     Crime|Drama
## 4667                                                                 Adventure|Drama
## 4668                                                                          Comedy
## 4669                                                            Comedy|Drama|Romance
## 4670                                                            Crime|Drama|Thriller
## 4671                                                                           Drama
## 4672                                                                           Drama
## 4673                                                                           Drama
## 4674                                                                  Drama|Thriller
## 4675                                                    Action|Comedy|Crime|Thriller
## 4676                                                                           Drama
## 4677                                                                  Comedy|Romance
## 4678                                                            Comedy|Drama|Romance
## 4679                                                                     Crime|Drama
## 4680                                                                       Drama|War
## 4681                                                         Action|Mystery|Thriller
## 4682                                                                     Documentary
## 4683                                                    Drama|Fantasy|Romance|Sci-Fi
## 4684                                           Drama|Horror|Mystery|Romance|Thriller
## 4685                                                       Drama|Mystery|Romance|War
## 4686                                                                           Drama
## 4687                                                                           Drama
## 4688                                                                       Drama|War
## 4689                                          Adventure|Children|Comedy|Fantasy|IMAX
## 4690                                                                           Drama
## 4691                                                                           Drama
## 4692                                                              Action|Crime|Drama
## 4693                                             Adventure|Animation|Fantasy|Romance
## 4694                                         Action|Crime|Film-Noir|Mystery|Thriller
## 4695                                                                       Drama|War
## 4696                                                        Action|Drama|Romance|War
## 4697                                                                     Crime|Drama
## 4698                                                         Action|Adventure|Sci-Fi
## 4699                                                               Action|Crime|IMAX
## 4700                                                      Comedy|Crime|Drama|Romance
## 4701                                                Action|Adventure|Sci-Fi|Thriller
## 4702                                                           Drama|Horror|Thriller
## 4703                                                                           Drama
## 4704                                                                    Comedy|Drama
## 4705                                                                  Drama|Thriller
## 4706                                                 Action|Crime|Drama|Thriller|War
## 4707                                                                    Comedy|Drama
## 4708                                                     Action|Crime|Drama|Thriller
## 4709                                                                           Drama
## 4710                                                                     Crime|Drama
## 4711                                             Adventure|Animation|Children|Comedy
## 4712                                                                   Drama|Romance
## 4713                                                            Comedy|Drama|Romance
## 4714                                                                     Crime|Drama
## 4715                                                                           Drama
## 4716                                                                Action|Drama|War
## 4717                                                                  Drama|Thriller
## 4718                                                                   Drama|Romance
## 4719                                                 Adventure|Fantasy|Thriller|IMAX
## 4720                                                           Drama|Musical|Romance
## 4721                                                             Crime|Drama|Romance
## 4722                                         Action|Adventure|Drama|Fantasy|Thriller
## 4723                                                                   Drama|Romance
## 4724                                                           Adventure|Crime|Drama
## 4725                                                     Action|Crime|Drama|Thriller
## 4726                                                          Adventure|Comedy|Drama
## 4727                                                         Adventure|Drama|Romance
## 4728                                                       Animation|Children|Comedy
## 4729                                                     Action|Sci-Fi|Thriller|IMAX
## 4730                                                                     Crime|Drama
## 4731                                                       Action|Adventure|Thriller
## 4732                                                          Drama|Mystery|Thriller
## 4733                                                        Action|Adventure|Fantasy
## 4734                                                                          Comedy
## 4735                                                           Action|Crime|Thriller
## 4736                                                                     Crime|Drama
## 4737                                                             Crime|Drama|Romance
## 4738                                                       Action|Adventure|Thriller
## 4739                                                            Adventure|Drama|IMAX
## 4740                                                           Action|Crime|Thriller
## 4741                                                     Comedy|Crime|Drama|Thriller
## 4742                                                         Action|Adventure|Sci-Fi
## 4743                                                        Comedy|Drama|Romance|War
## 4744                                        Action|Adventure|Comedy|Romance|Thriller
## 4745                                                                        Thriller
## 4746                                     Adventure|Animation|Children|Comedy|Musical
## 4747                                                         Adventure|Drama|Western
## 4748                                                           Action|Crime|Thriller
## 4749                                        Action|Adventure|Animation|Horror|Sci-Fi
## 4750                                               Action|Adventure|Mystery|Thriller
## 4751                                               Action|Adventure|Romance|Thriller
## 4752                                                Action|Adventure|Sci-Fi|Thriller
## 4753                                                           Action|Drama|Thriller
## 4754                                                     Comedy|Crime|Drama|Thriller
## 4755                                                                       Drama|War
## 4756                                                                  Comedy|Romance
## 4757                                                         Mystery|Sci-Fi|Thriller
## 4758                                                     Action|Crime|Drama|Thriller
## 4759                                                                          Comedy
## 4760                                                         Action|Adventure|Sci-Fi
## 4761                                                       Action|Adventure|Thriller
## 4762                                                     Comedy|Crime|Drama|Thriller
## 4763                                                        Action|Adventure|Fantasy
## 4764                                                                          Comedy
## 4765                                                            Crime|Drama|Thriller
## 4766                                                              Comedy|Crime|Drama
## 4767                                                Action|Adventure|Sci-Fi|Thriller
## 4768                                                                 Comedy|Thriller
## 4769                                                           Action|Drama|Thriller
## 4770                                                   Comedy|Fantasy|Romance|Sci-Fi
## 4771                                                                   Drama|Romance
## 4772                                                                  Crime|Thriller
## 4773                                                                   Comedy|Horror
## 4774                                                 Children|Comedy|Fantasy|Musical
## 4775                                                                   Drama|Mystery
## 4776                                                Action|Adventure|Sci-Fi|Thriller
## 4777                                                                           Drama
## 4778                                                            Action|Comedy|Sci-Fi
## 4779                                                Adventure|Animation|Comedy|Crime
## 4780                                                    Comedy|Drama|Fantasy|Romance
## 4781                                                                  Drama|Thriller
## 4782                                     Adventure|Animation|Children|Comedy|Fantasy
## 4783                                                         Mystery|Sci-Fi|Thriller
## 4784                                                                Mystery|Thriller
## 4785                                                          Crime|Mystery|Thriller
## 4786                                                                    Comedy|Crime
## 4787                                                                          Comedy
## 4788                                                   Action|Adventure|Comedy|Crime
## 4789                                                           Action|Crime|Thriller
## 4790                                                         Action|Adventure|Sci-Fi
## 4791                                                     Comedy|Crime|Drama|Thriller
## 4792                                                         Action|Adventure|Sci-Fi
## 4793                                                                     Crime|Drama
## 4794                                                                          Comedy
## 4795                                                        Comedy|Drama|Romance|War
## 4796                                                     Action|Comedy|Crime|Fantasy
## 4797                                                         Action|Romance|Thriller
## 4798                                        Action|Adventure|Comedy|Romance|Thriller
## 4799                                                                        Thriller
## 4800                                                Action|Adventure|Sci-Fi|Thriller
## 4801                                                                    Comedy|Drama
## 4802                                                                  Crime|Thriller
## 4803                                                                   Action|Sci-Fi
## 4804                                                           Crime|Horror|Thriller
## 4805                                                     Comedy|Crime|Drama|Thriller
## 4806                                               Action|Adventure|Mystery|Thriller
## 4807                                                      Adventure|Animation|Comedy
## 4808                                                       Action|Adventure|Thriller
## 4809                                                              Comedy|Crime|Drama
## 4810                                                Action|Adventure|Sci-Fi|Thriller
## 4811                                                                     Crime|Drama
## 4812                                                           Action|Crime|Thriller
## 4813                                                          Crime|Mystery|Thriller
## 4814                                                         Action|Adventure|Sci-Fi
## 4815                                                                Action|Adventure
## 4816                                                         Action|Adventure|Sci-Fi
## 4817                                                Adventure|Animation|Comedy|Crime
## 4818                                                  Action|Adventure|Comedy|Sci-Fi
## 4819                                                            Action|Comedy|Sci-Fi
## 4820                                                           Drama|Sci-Fi|Thriller
## 4821                                                                 Action|Thriller
## 4822                                                                    Comedy|Crime
## 4823                                                                          Comedy
## 4824                                                         Action|Adventure|Sci-Fi
## 4825                                                          Adventure|Comedy|Drama
## 4826                                                                Action|Drama|War
## 4827                                                                     Crime|Drama
## 4828                                             Adventure|Animation|Children|Comedy
## 4829                                                           Comedy|Crime|Thriller
## 4830                                                          Action|Sci-Fi|Thriller
## 4831                                                                    Action|Crime
## 4832                                                                   Drama|Romance
## 4833                                                     Action|Crime|Drama|Thriller
## 4834                                                    Comedy|Drama|Fantasy|Romance
## 4835                                     Adventure|Animation|Children|Comedy|Fantasy
## 4836                                                                     Crime|Drama
## 4837                                                     Action|Crime|Drama|Thriller
## 4838                                                            Comedy|Drama|Romance
## 4839                                                          Action|Adventure|Drama
## 4840                                                           Action|Crime|Thriller
## 4841                                                           Comedy|Crime|Thriller
## 4842                                                                           Drama
## 4843                                                          Adventure|Comedy|Crime
## 4844                                                                   Action|Comedy
## 4845                                                                Mystery|Thriller
## 4846                                                              Action|Crime|Drama
## 4847                             Adventure|Animation|Children|Comedy|Fantasy|Romance
## 4848                                                            Crime|Drama|Thriller
## 4849                                                            Comedy|Crime|Romance
## 4850                                                   Crime|Horror|Mystery|Thriller
## 4851                                                                  Crime|Thriller
## 4852                                                                  Comedy|Romance
## 4853                                                                    Comedy|Drama
## 4854                                                                   Drama|Romance
## 4855                                                                Action|Drama|War
## 4856                                                            Comedy|Crime|Mystery
## 4857                                             Adventure|Animation|Children|Comedy
## 4858                                                         Action|Mystery|Thriller
## 4859                                                                  Drama|Thriller
## 4860                                                            Comedy|Drama|Romance
## 4861                                                          Action|Sci-Fi|Thriller
## 4862                                                               Adventure|Fantasy
## 4863                                                                     Crime|Drama
## 4864                                                                     Crime|Drama
## 4865                                           Action|Adventure|Crime|Drama|Thriller
## 4866                                                Action|Adventure|Sci-Fi|Thriller
## 4867                                                 Action|Adventure|Comedy|Fantasy
## 4868                                                              Comedy|Crime|Drama
## 4869                                                                    Comedy|Drama
## 4870                                                             Crime|Drama|Mystery
## 4871                                                           Action|Crime|Thriller
## 4872                                                                    Comedy|Drama
## 4873                                                            Drama|Romance|Sci-Fi
## 4874                                                           Action|Drama|Thriller
## 4875                                             Action|Crime|Drama|Mystery|Thriller
## 4876                                                          Adventure|Fantasy|IMAX
## 4877                                                           Action|Crime|Thriller
## 4878                                                            Comedy|Drama|Romance
## 4879                                                     Action|Crime|Drama|Thriller
## 4880                                                                   Comedy|Horror
## 4881                                      Action|Adventure|Animation|Children|Comedy
## 4882                                                           Action|Drama|Thriller
## 4883                                                            Crime|Drama|Thriller
## 4884                                                        Adventure|Comedy|Fantasy
## 4885                                                                       Drama|War
## 4886                                                                   Action|Comedy
## 4887                                         Action|Crime|Film-Noir|Mystery|Thriller
## 4888                                                               Action|Crime|IMAX
## 4889                                                                    Comedy|Drama
## 4890                                                 Action|Crime|Drama|Thriller|War
## 4891                                                                     Crime|Drama
## 4892                                                                     Crime|Drama
## 4893                                             Adventure|Animation|Children|Comedy
## 4894                                                   Comedy|Crime|Mystery|Thriller
## 4895                                                     Action|Crime|Drama|Thriller
## 4896                                                     Action|Sci-Fi|Thriller|IMAX
## 4897                                                                    Comedy|Drama
## 4898                                                            Crime|Drama|Thriller
## 4899                                                             Crime|Drama|Mystery
## 4900                                                    Comedy|Drama|Fantasy|Romance
## 4901                                                   Drama|Fantasy|Mystery|Romance
## 4902                                                            Crime|Drama|Thriller
## 4903                                          Action|Adventure|Drama|Sci-Fi|Thriller
## 4904                                                   Drama|Mystery|Sci-Fi|Thriller
## 4905                                                       Action|Adventure|Thriller
## 4906                                                          Action|Sci-Fi|Thriller
## 4907                                       Action|Adventure|Crime|Drama|Thriller|War
## 4908                                                                     Documentary
## 4909                                                        Animation|Children|Drama
## 4910                                                     Action|Comedy|Crime|Mystery
## 4911                                                         Action|Fantasy|War|IMAX
## 4912                                                    Crime|Drama|Mystery|Thriller
## 4913                                                                           Drama
## 4914                                                            Crime|Drama|Thriller
## 4915                                                 Action|Adventure|Crime|Thriller
## 4916                                                           Action|Crime|Thriller
## 4917                                                                          Comedy
## 4918                                                            Crime|Drama|Thriller
## 4919                                        Action|Adventure|Animation|Crime|Fantasy
## 4920                                                          Action|Adventure|Drama
## 4921                                                                  Drama|Thriller
## 4922                                                                    Comedy|Drama
## 4923                                                            Crime|Drama|Thriller
## 4924                                                                     Crime|Drama
## 4925                                                                   Drama|Western
## 4926                                                     Comedy|Crime|Drama|Thriller
## 4927                                                         Action|Crime|Drama|IMAX
## 4928                                                         Action|Adventure|Sci-Fi
## 4929                                                     Action|Crime|Drama|Thriller
## 4930                                                         Adventure|Drama|Fantasy
## 4931                                           Action|Animation|Children|Comedy|IMAX
## 4932                                     Adventure|Animation|Children|Romance|Sci-Fi
## 4933                                       Action|Drama|Mystery|Sci-Fi|Thriller|IMAX
## 4934                                                             Action|Comedy|Crime
## 4935                                                              Comedy|Crime|Drama
## 4936                                                                    Action|Crime
## 4937                                                             Crime|Drama|Romance
## 4938                                                                Action|Drama|War
## 4939                                                                          Comedy
## 4940                                                                Action|Drama|War
## 4941                                                    Action|Adventure|Sci-Fi|IMAX
## 4942                                              Adventure|Animation|Children|Drama
## 4943                                                                    Comedy|Crime
## 4944                                                         Action|Animation|Sci-Fi
## 4945                                                                    Comedy|Drama
## 4946                                                    Action|Adventure|Sci-Fi|IMAX
## 4947                                                   Action|Crime|Mystery|Thriller
## 4948                                                                          Comedy
## 4949                                 Action|Crime|Drama|Mystery|Sci-Fi|Thriller|IMAX
## 4950                                                            Crime|Drama|Thriller
## 4951                                                                         Western
## 4952                                  Action|Adventure|Comedy|Crime|Mystery|Thriller
## 4953                                                                    Comedy|Drama
## 4954                                                          Crime|Mystery|Thriller
## 4955                                                                       Drama|War
## 4956                                                            Crime|Drama|Thriller
## 4957                                                     Comedy|Crime|Drama|Thriller
## 4958                                                                       Drama|War
## 4959                                                           Crime|Horror|Thriller
## 4960                                                                     Crime|Drama
## 4961                                                                        Thriller
## 4962                                                                    Drama|Sci-Fi
## 4963                                                       Action|Adventure|Thriller
## 4964                                                            Comedy|Drama|Romance
## 4965                                                                   Drama|Romance
## 4966                                                                   Drama|Romance
## 4967                                                                        Thriller
## 4968                                                                          Comedy
## 4969                                                            Crime|Drama|Thriller
## 4970                                                            Comedy|Drama|Romance
## 4971                                                                           Drama
## 4972                                                                    Comedy|Crime
## 4973                                                           Drama|Horror|Thriller
## 4974                                                          Drama|Mystery|Thriller
## 4975                                                            Drama|Horror|Mystery
## 4976                                                                   Drama|Romance
## 4977                                                           Comedy|Crime|Thriller
## 4978                                                            Comedy|Drama|Romance
## 4979                                                                Action|Drama|War
## 4980                                                                    Comedy|Drama
## 4981                                                            Comedy|Drama|Romance
## 4982                                                          Comedy|Musical|Romance
## 4983                                                                   Drama|Romance
## 4984                                                  Drama|Mystery|Romance|Thriller
## 4985                                                                Mystery|Thriller
## 4986                                       Action|Adventure|Mystery|Romance|Thriller
## 4987                                                            Comedy|Drama|Romance
## 4988                                                               Film-Noir|Mystery
## 4989                                                               Drama|Romance|War
## 4990                                                          Adventure|Drama|Sci-Fi
## 4991                                                                           Drama
## 4992                                                  Crime|Mystery|Romance|Thriller
## 4993                                                  Children|Drama|Fantasy|Romance
## 4994                                                                   Drama|Romance
## 4995                                                                    Comedy|Crime
## 4996                                                          Drama|Romance|Thriller
## 4997                                                                           Drama
## 4998                                                     Crime|Drama|Sci-Fi|Thriller
## 4999                                                                    Crime|Horror
## 5000                                                                           Drama
## 5001                                                             Adventure|Drama|War
## 5002                                                Crime|Film-Noir|Mystery|Thriller
## 5003                                                              Crime|Thriller|War
## 5004                                                                   Drama|Romance
## 5005                                                                    Comedy|Drama
## 5006                                                                           Drama
## 5007                                                       Action|Adventure|Thriller
## 5008                                                Crime|Film-Noir|Mystery|Thriller
## 5009                                                          Drama|Romance|Thriller
## 5010                                                         Action|Adventure|Sci-Fi
## 5011                                                            Comedy|Drama|Romance
## 5012                                                                     Crime|Drama
## 5013                                                                           Drama
## 5014                                                                           Drama
## 5015                                                          Action|Adventure|Drama
## 5016                                                                Action|Drama|War
## 5017                                                                          Comedy
## 5018                                                                       Drama|War
## 5019                                                           Drama|Fantasy|Romance
## 5020                                                                          Comedy
## 5021                                                        Comedy|Drama|Romance|War
## 5022                                                 Action|Adventure|Comedy|Romance
## 5023                                                                Adventure|Comedy
## 5024                                                          Action|Sci-Fi|Thriller
## 5025                                                                    Comedy|Drama
## 5026                                                             Action|Drama|Sci-Fi
## 5027                                                              Comedy|Crime|Drama
## 5028                                                                  Comedy|Romance
## 5029                                                        Action|Adventure|Fantasy
## 5030                                                  Comedy|Horror|Mystery|Thriller
## 5031                                                    Comedy|Drama|Fantasy|Romance
## 5032                                       Adventure|Fantasy|Romance|Sci-Fi|Thriller
## 5033                                                        Adventure|Children|Drama
## 5034                                                                          Horror
## 5035                                                                          Horror
## 5036                                                          Action|Sci-Fi|Thriller
## 5037                                                                 Horror|Thriller
## 5038                                                           Comedy|Fantasy|Sci-Fi
## 5039                                                                   Drama|Romance
## 5040                                                                           Drama
## 5041                                           Drama|Fantasy|Horror|Mystery|Thriller
## 5042                                           Action|Adventure|Sci-Fi|Thriller|IMAX
## 5043                                                            Action|Horror|Sci-Fi
## 5044                                           Action|Adventure|Sci-Fi|Thriller|IMAX
## 5045                                                                  Drama|Thriller
## 5046                                                         Action|Fantasy|War|IMAX
## 5047                                                         Action|Crime|Drama|IMAX
## 5048                                                    Action|Drama|Horror|Thriller
## 5049                                     Adventure|Animation|Children|Comedy|Fantasy
## 5050                                                      Adventure|Children|Fantasy
## 5051                                                           Action|Crime|Thriller
## 5052                                                              Adventure|Children
## 5053                                                            Comedy|Drama|Romance
## 5054                                                                           Drama
## 5055                                                                     Crime|Drama
## 5056                                                                          Comedy
## 5057                                                           Comedy|Crime|Thriller
## 5058                                                           Action|Crime|Thriller
## 5059                                                                   Drama|Romance
## 5060                                                         Mystery|Sci-Fi|Thriller
## 5061                                                                  Children|Drama
## 5062                                                              Action|Crime|Drama
## 5063                                                           Comedy|Drama|Thriller
## 5064                                                                Mystery|Thriller
## 5065                                                          Crime|Mystery|Thriller
## 5066                                                            Comedy|Drama|Romance
## 5067                                                      Adventure|Children|Fantasy
## 5068                                                   Action|Comedy|Horror|Thriller
## 5069                                                     Action|Crime|Drama|Thriller
## 5070                                                                  Drama|Thriller
## 5071                                                                Action|Drama|War
## 5072                                                            Crime|Drama|Thriller
## 5073                                                                  Comedy|Romance
## 5074                                                                          Comedy
## 5075                                                            Adventure|Drama|IMAX
## 5076                                                              Adventure|Children
## 5077                                                              Drama|Thriller|War
## 5078                                                                     Documentary
## 5079                                                           Action|Crime|Thriller
## 5080                                                 Action|Adventure|Crime|Thriller
## 5081                                                                   Horror|Sci-Fi
## 5082                                                                          Comedy
## 5083                                                         Action|Adventure|Sci-Fi
## 5084                                                                           Drama
## 5085                                                            Comedy|Drama|Romance
## 5086                                                                 Action|Thriller
## 5087                                                                          Comedy
## 5088                                                                    Comedy|Drama
## 5089                                                                    Drama|Horror
## 5090                                                                           Drama
## 5091                                                         Action|Adventure|Sci-Fi
## 5092                                                                           Drama
## 5093                                                                    Comedy|Drama
## 5094                                                            Comedy|Drama|Romance
## 5095                                                                           Drama
## 5096                                                           Action|Crime|Thriller
## 5097                                                     Comedy|Crime|Drama|Thriller
## 5098                                                                           Drama
## 5099                                                            Comedy|Drama|Fantasy
## 5100                                                                     Crime|Drama
## 5101                                                                           Drama
## 5102                                                                          Comedy
## 5103                                                                          Comedy
## 5104                                                     Action|Crime|Drama|Thriller
## 5105                                                          Drama|Mystery|Thriller
## 5106                                                        Comedy|Drama|Romance|War
## 5107                                                                  Comedy|Romance
## 5108                                 Adventure|Animation|Children|Drama|Musical|IMAX
## 5109                                                        Adventure|Comedy|Western
## 5110                                                                           Drama
## 5111                                                                    Comedy|Drama
## 5112                                                         Action|Romance|Thriller
## 5113                                        Action|Adventure|Comedy|Romance|Thriller
## 5114                                                   Drama|Horror|Romance|Thriller
## 5115                                                         Children|Comedy|Fantasy
## 5116                                                                           Drama
## 5117                                                                          Comedy
## 5118                                                                          Comedy
## 5119                                                                           Drama
## 5120                                                                   Drama|Romance
## 5121                                                          Horror|Sci-Fi|Thriller
## 5122                                                                           Drama
## 5123                                                        Adventure|Comedy|Western
## 5124                                                       Action|Adventure|Thriller
## 5125                                                                  Comedy|Romance
## 5126                                                                          Comedy
## 5127                                                           Drama|Mystery|Romance
## 5128                                                                  Drama|Thriller
## 5129                                                                        Thriller
## 5130                                   Action|Adventure|Crime|Drama|Romance|Thriller
## 5131                                                            Crime|Drama|Thriller
## 5132                                                                          Comedy
## 5133                                                                    Comedy|Drama
## 5134                                                                 Action|Thriller
## 5135                                                                   Drama|Musical
## 5136                                                Action|Adventure|Sci-Fi|Thriller
## 5137                                                 Action|Adventure|Comedy|Fantasy
## 5138                                                                  Comedy|Mystery
## 5139                                                                    Comedy|Drama
## 5140                                                            Crime|Drama|Thriller
## 5141                                                                           Drama
## 5142                                                                   Drama|Romance
## 5143                                                                   Drama|Romance
## 5144                                                            Action|Drama|Mystery
## 5145                                                                          Comedy
## 5146                                                                           Drama
## 5147                                                                       Drama|War
## 5148                                                                  Children|Drama
## 5149                                                             Comedy|Crime|Horror
## 5150                                                                   Drama|Romance
## 5151                                                                           Drama
## 5152                                                                           Drama
## 5153                                                            Comedy|Drama|Romance
## 5154                                                                        Thriller
## 5155                                                          Action|Sci-Fi|Thriller
## 5156                                                            Action|Drama|Western
## 5157                                                                  Crime|Thriller
## 5158                                                                     Documentary
## 5159                                                                     Documentary
## 5160                                                                 Children|Comedy
## 5161                                           Comedy|Drama|Fantasy|Romance|Thriller
## 5162                                     Adventure|Animation|Children|Comedy|Musical
## 5163                                                                   Action|Sci-Fi
## 5164                                                         Adventure|Drama|Western
## 5165                                                           Action|Crime|Thriller
## 5166                                                           Crime|Horror|Thriller
## 5167                                        Animation|Children|Drama|Fantasy|Musical
## 5168                                 Animation|Children|Fantasy|Musical|Romance|IMAX
## 5169                                              Animation|Children|Fantasy|Musical
## 5170                                                                  Comedy|Romance
## 5171                                                     Comedy|Crime|Drama|Thriller
## 5172                                                    Crime|Drama|Mystery|Thriller
## 5173                                                                  Drama|Thriller
## 5174                                                          Action|Crime|Drama|War
## 5175                                    Adventure|Animation|Children|Fantasy|Musical
## 5176                                                            Crime|Drama|Thriller
## 5177                                                       Action|Adventure|Thriller
## 5178                                               Action|Adventure|Romance|Thriller
## 5179                                                                      Comedy|War
## 5180                                                                    Comedy|Crime
## 5181                                                                    Comedy|Drama
## 5182                                                                    Comedy|Drama
## 5183                                                Action|Adventure|Sci-Fi|Thriller
## 5184                                                                  Drama|Thriller
## 5185                                                           Drama|Mystery|Western
## 5186                                                                  Drama|Thriller
## 5187                                                                     Crime|Drama
## 5188                                                                  Crime|Thriller
## 5189                                                                     Crime|Drama
## 5190                                                    Crime|Drama|Musical|Thriller
## 5191                                                            Comedy|Drama|Romance
## 5192                                                          Comedy|Musical|Romance
## 5193                                                  Drama|Mystery|Romance|Thriller
## 5194                                                                Mystery|Thriller
## 5195                                       Action|Adventure|Mystery|Romance|Thriller
## 5196                                                                   Drama|Romance
## 5197                                                               Film-Noir|Mystery
## 5198                                                    Comedy|Drama|Musical|Romance
## 5199                                              Adventure|Children|Fantasy|Musical
## 5200                                                               Drama|Romance|War
## 5201                                                                          Comedy
## 5202                                                         Drama|Film-Noir|Romance
## 5203                                                                   Drama|Mystery
## 5204                                                          Adventure|Drama|Sci-Fi
## 5205                                                  Drama|Mystery|Romance|Thriller
## 5206                                                                  Comedy|Romance
## 5207                                                                    Comedy|Crime
## 5208                                                  Children|Drama|Fantasy|Romance
## 5209                                                                           Drama
## 5210                                                    Adventure|Comedy|Romance|War
## 5211                                                                           Drama
## 5212                                                     Action|Crime|Drama|Thriller
## 5213                                                                           Drama
## 5214                                                                 Children|Comedy
## 5215                                                                  Children|Drama
## 5216                                                         Children|Comedy|Romance
## 5217                                                              Adventure|Children
## 5218                                                         Children|Comedy|Mystery
## 5219                                              Animation|Children|Fantasy|Musical
## 5220                                                                 Adventure|Drama
## 5221                                                 Children|Comedy|Fantasy|Musical
## 5222                                                                 Musical|Romance
## 5223                                                           Action|Crime|Thriller
## 5224                                                                    Comedy|Drama
## 5225                                                                        Thriller
## 5226                                                 Children|Comedy|Fantasy|Musical
## 5227                                                                      Comedy|War
## 5228                                                                    Comedy|Crime
## 5229                                                          Comedy|Musical|Romance
## 5230                                                                           Drama
## 5231                                                                     Crime|Drama
## 5232                                                          Crime|Mystery|Thriller
## 5233                                                           Drama|Musical|Romance
## 5234                                                          Crime|Mystery|Thriller
## 5235                                                                       Drama|War
## 5236                                                                          Comedy
## 5237                                                          Crime|Mystery|Thriller
## 5238                                                                           Drama
## 5239                                                          Drama|Romance|Thriller
## 5240                                                                           Drama
## 5241                                                                           Drama
## 5242                                                           Children|Drama|Sci-Fi
## 5243                                                                  Action|Romance
## 5244                                                                           Drama
## 5245                                                                     Crime|Drama
## 5246                                                                    Comedy|Drama
## 5247                                                                           Drama
## 5248                                                                  Comedy|Fantasy
## 5249                                                Action|Adventure|Sci-Fi|Thriller
## 5250                                                                          Comedy
## 5251                                                                          Comedy
## 5252                                                           Crime|Drama|Film-Noir
## 5253                                                                         Western
## 5254                                                                           Drama
## 5255                                                                     Documentary
## 5256                                                                           Drama
## 5257                                                         Action|Adventure|Sci-Fi
## 5258                                         Action|Adventure|Comedy|Fantasy|Romance
## 5259                                                                Action|Adventure
## 5260                                                  Action|Adventure|Horror|Sci-Fi
## 5261                                                     Crime|Drama|Sci-Fi|Thriller
## 5262                                                                           Drama
## 5263                                                                Action|Drama|War
## 5264                                                         Action|Adventure|Sci-Fi
## 5265                                                      Film-Noir|Mystery|Thriller
## 5266                                                                     Crime|Drama
## 5267                                                                   Horror|Sci-Fi
## 5268                                                                    Crime|Horror
## 5269                                                           Action|Comedy|Musical
## 5270                                                                     Crime|Drama
## 5271                                                                       Drama|War
## 5272                                                                           Drama
## 5273                                                                   Drama|Romance
## 5274                                                                     Crime|Drama
## 5275                                                                           Drama
## 5276                                                                           Drama
## 5277                                                                    Comedy|Crime
## 5278                                                            Comedy|Drama|Romance
## 5279                                                          Action|Sci-Fi|Thriller
## 5280                                                                       Drama|War
## 5281                                                            Comedy|Drama|Romance
## 5282                                                  Crime|Drama|Film-Noir|Thriller
## 5283                                                                           Drama
## 5284                                                            Comedy|Drama|Romance
## 5285                                                             Adventure|Drama|War
## 5286                                                Crime|Film-Noir|Mystery|Thriller
## 5287                                                                          Horror
## 5288                                                                 Adventure|Drama
## 5289                                                                       Drama|War
## 5290                                                          Comedy|Fantasy|Romance
## 5291                                                                   Drama|Western
## 5292                                                              Crime|Thriller|War
## 5293                                                         Adventure|Comedy|Sci-Fi
## 5294                                                              Comedy|Crime|Drama
## 5295                                                                       Drama|War
## 5296                                                                           Drama
## 5297                                                            Comedy|Drama|Romance
## 5298                                                                  Comedy|Fantasy
## 5299                                                                   Drama|Western
## 5300                                                                          Comedy
## 5301                                                                   Drama|Romance
## 5302                                                                Action|Adventure
## 5303                                                                    Comedy|Drama
## 5304                                                          Children|Drama|Fantasy
## 5305                                                                 Adventure|Drama
## 5306                                                                  Action|Western
## 5307                                                                  Comedy|Romance
## 5308                                                   Action|Horror|Sci-Fi|Thriller
## 5309                                                          Comedy|Horror|Thriller
## 5310                                                   Drama|Horror|Mystery|Thriller
## 5311                                                                 Horror|Thriller
## 5312                                                                 Horror|Thriller
## 5313                                                                   Horror|Sci-Fi
## 5314                                                 Fantasy|Horror|Romance|Thriller
## 5315                                                                        Thriller
## 5316                                                   Drama|Fantasy|Horror|Thriller
## 5317                                                            Drama|Fantasy|Horror
## 5318                                                         Horror|Mystery|Thriller
## 5319                                                                  Crime|Thriller
## 5320                                                                           Drama
## 5321                                                                           Drama
## 5322                                                       Action|Adventure|Thriller
## 5323                                                                    Action|Crime
## 5324                                                           Action|Comedy|Western
## 5325                                                          Comedy|Musical|Romance
## 5326                                                           Action|Drama|Thriller
## 5327                                                                   Action|Horror
## 5328                                                                 Horror|Thriller
## 5329                                                                          Comedy
## 5330                                                                   Drama|Romance
## 5331                                                                          Comedy
## 5332                                                                    Comedy|Drama
## 5333                                                Action|Comedy|Crime|Drama|Sci-Fi
## 5334                                                                           Drama
## 5335                                                    Crime|Drama|Mystery|Thriller
## 5336                                                                 Action|Thriller
## 5337                                                                          Comedy
## 5338                                                                Mystery|Thriller
## 5339                                                                          Comedy
## 5340                                                                     Crime|Drama
## 5341                                                                          Comedy
## 5342                                                           Action|Drama|Thriller
## 5343                                                                           Drama
## 5344                                                         Action|Adventure|Comedy
## 5345                                                            Action|Crime|Romance
## 5346                                                       Action|Adventure|Thriller
## 5347                                               Action|Adventure|Fantasy|Thriller
## 5348                                     Adventure|Animation|Children|Comedy|Musical
## 5349                                                            Action|Comedy|Sci-Fi
## 5350                                                                    Drama|Sci-Fi
## 5351                                                                 Children|Comedy
## 5352                                                     Action|Crime|Drama|Thriller
## 5353                                                            Crime|Drama|Thriller
## 5354                                                                 Action|Thriller
## 5355                                                       Action|Adventure|Thriller
## 5356                                                                   Drama|Romance
## 5357                                                                          Comedy
## 5358                                                Crime|Film-Noir|Mystery|Thriller
## 5359                                                    Crime|Drama|Mystery|Thriller
## 5360                                                                           Drama
## 5361                                                          Drama|Mystery|Thriller
## 5362                                                          Drama|Mystery|Thriller
## 5363                                                                           Drama
## 5364                                                                           Drama
## 5365                                                          Drama|Romance|Thriller
## 5366                                                             Comedy|Drama|Sci-Fi
## 5367                                                                  Crime|Thriller
## 5368                                                            Action|Horror|Sci-Fi
## 5369                                                                           Drama
## 5370                                                                    Comedy|Drama
## 5371                                                                   Drama|Romance
## 5372                                                             Crime|Drama|Mystery
## 5373                                                                   Drama|Romance
## 5374                                                   Action|Adventure|Drama|Sci-Fi
## 5375                                                            Crime|Drama|Thriller
## 5376                                                                    Comedy|Crime
## 5377                                                                          Comedy
## 5378                                            Crime|Drama|Mystery|Romance|Thriller
## 5379                                                            Comedy|Drama|Romance
## 5380                                                                  Crime|Thriller
## 5381                                                            Crime|Drama|Thriller
## 5382                                                                        Thriller
## 5383                                                    Crime|Drama|Mystery|Thriller
## 5384                                                                    Comedy|Drama
## 5385                                                    Crime|Drama|Mystery|Thriller
## 5386                                                                          Comedy
## 5387                                                         Crime|Drama|Romance|War
## 5388                                                           Drama|Sci-Fi|Thriller
## 5389                                                          Action|Sci-Fi|Thriller
## 5390                                                          Adventure|Comedy|Drama
## 5391                                                                        Thriller
## 5392                                             Comedy|Crime|Drama|Romance|Thriller
## 5393                                                  Action|Romance|Sci-Fi|Thriller
## 5394                                                                  Comedy|Romance
## 5395                                                                           Drama
## 5396                                                                     Crime|Drama
## 5397                                                           Drama|Musical|Romance
## 5398                                                                   Drama|Musical
## 5399                                                                           Drama
## 5400                                                           Action|Crime|Thriller
## 5401                                                                           Drama
## 5402                                                                           Drama
## 5403                                                                           Drama
## 5404                                                                           Drama
## 5405                                                                    Comedy|Drama
## 5406                                                                           Drama
## 5407                                                                           Drama
## 5408                                                                           Drama
## 5409                                                                   Comedy|Sci-Fi
## 5410                                                                    Comedy|Drama
## 5411                                                                          Horror
## 5412                                                                 Horror|Thriller
## 5413                                                                  Horror|Mystery
## 5414                                                       Action|Comedy|Crime|Drama
## 5415                                                       Action|Comedy|Crime|Drama
## 5416                                                       Action|Comedy|Crime|Drama
## 5417                                                                   Comedy|Horror
## 5418                                                   Drama|Mystery|Sci-Fi|Thriller
## 5419                                                         Adventure|Comedy|Sci-Fi
## 5420                                                 Adventure|Comedy|Sci-Fi|Western
## 5421                                                          Action|Adventure|Drama
## 5422                                                         Children|Comedy|Fantasy
## 5423                                                    Crime|Drama|Mystery|Thriller
## 5424                                                                   Drama|Mystery
## 5425                                                                   Drama|Romance
## 5426                                                                Action|Drama|War
## 5427                                        Adventure|Children|Comedy|Fantasy|Sci-Fi
## 5428                                                                     Documentary
## 5429                                                    Comedy|Drama|Fantasy|Romance
## 5430                                                           Drama|Romance|Western
## 5431                                                          Drama|Mystery|Thriller
## 5432                                               Animation|Children|Comedy|Musical
## 5433                                       Animation|Children|Comedy|Musical|Romance
## 5434                                                                 Children|Comedy
## 5435                                                         Children|Comedy|Musical
## 5436                                                        Adventure|Comedy|Musical
## 5437                                                         Action|Adventure|Sci-Fi
## 5438                                                         Action|Adventure|Sci-Fi
## 5439                                                                  Comedy|Romance
## 5440                                                                          Comedy
## 5441                                                                     Crime|Drama
## 5442                                                                           Drama
## 5443                                                        Action|Adventure|Fantasy
## 5444                                            Adventure|Animation|Children|Fantasy
## 5445                                                                    Drama|Sci-Fi
## 5446                                                                        Thriller
## 5447                                                                    Drama|Horror
## 5448                                                                 Horror|Thriller
## 5449                                                                 Horror|Thriller
## 5450                                                         Children|Comedy|Fantasy
## 5451                                                   Action|Crime|Mystery|Thriller
## 5452                                                                   Comedy|Sci-Fi
## 5453                                                                  Comedy|Romance
## 5454                                                            Comedy|Drama|Romance
## 5455                                                                   Drama|Romance
## 5456                                                           Comedy|Fantasy|Horror
## 5457                                                           Crime|Horror|Thriller
## 5458                                                           Drama|Horror|Thriller
## 5459                                                    Crime|Drama|Romance|Thriller
## 5460                                                                  Comedy|Fantasy
## 5461                                                Adventure|Drama|Mystery|Thriller
## 5462                                                                  Comedy|Mystery
## 5463                                                                           Drama
## 5464                                                        Action|Adventure|Fantasy
## 5465                                                              Action|Crime|Drama
## 5466                                                                           Drama
## 5467                                                                           Drama
## 5468                                                                           Drama
## 5469                                                            Comedy|Drama|Romance
## 5470                                                            Comedy|Drama|Romance
## 5471                                                                          Comedy
## 5472                                                                          Comedy
## 5473                                                                    Comedy|Drama
## 5474                                                                  Comedy|Fantasy
## 5475                                                                          Comedy
## 5476                                                                  Comedy|Romance
## 5477                                                          Drama|Fantasy|Thriller
## 5478                                                                    Comedy|Crime
## 5479                                                                Mystery|Thriller
## 5480                                                            Crime|Drama|Thriller
## 5481                                                                   Drama|Romance
## 5482                                                           Action|Crime|Thriller
## 5483                                                                          Comedy
## 5484                                                              Comedy|Crime|Drama
## 5485                                                           Drama|Fantasy|Romance
## 5486                                                                          Comedy
## 5487                                                                          Comedy
## 5488                                                                  Comedy|Musical
## 5489                                                                          Comedy
## 5490                                                                    Action|Crime
## 5491                                                                          Sci-Fi
## 5492                                                                           Drama
## 5493                                                                  Drama|Thriller
## 5494                                                            Comedy|Drama|Fantasy
## 5495                                                                     Crime|Drama
## 5496                                                                 Action|Thriller
## 5497                                                                           Drama
## 5498                                                         Mystery|Sci-Fi|Thriller
## 5499                                                                           Drama
## 5500                                                                    Comedy|Drama
## 5501                                                                 Action|Thriller
## 5502                                             Adventure|Animation|Children|Comedy
## 5503                                       Adventure|Fantasy|Romance|Sci-Fi|Thriller
## 5504                                                            Comedy|Drama|Romance
## 5505                                                            Comedy|Crime|Mystery
## 5506                                                                    Comedy|Drama
## 5507                                                       Action|Adventure|Thriller
## 5508                                                           Crime|Horror|Thriller
## 5509                                                            Crime|Drama|Thriller
## 5510                                                            Comedy|Drama|Romance
## 5511                                                                    Comedy|Drama
## 5512                                                       Action|Adventure|Thriller
## 5513                                                 Action|Adventure|Drama|Thriller
## 5514                                                                   Comedy|Sci-Fi
## 5515                                                                    Action|Drama
## 5516                                                                    Action|Drama
## 5517                                                                    Action|Drama
## 5518                                                                    Action|Drama
## 5519                                                                    Comedy|Drama
## 5520                                                                          Comedy
## 5521                                                                           Drama
## 5522                                                                  Comedy|Romance
## 5523                                                                Action|Drama|War
## 5524                                                                           Drama
## 5525                                                                           Drama
## 5526                                                                           Drama
## 5527                                                           Horror|Mystery|Sci-Fi
## 5528                                                                   Action|Comedy
## 5529                                                                          Comedy
## 5530                                                  Action|Comedy|Romance|Thriller
## 5531                                                                Adventure|Comedy
## 5532                                                                           Drama
## 5533                                                                 Action|Thriller
## 5534                                                          Drama|Mystery|Thriller
## 5535                                                                          Horror
## 5536                                                                          Horror
## 5537                                                                          Comedy
## 5538                                                                           Drama
## 5539                                                           Action|Drama|Thriller
## 5540                                                                  Drama|Thriller
## 5541                                                 Action|Adventure|Drama|Thriller
## 5542                                                         Action|Adventure|Sci-Fi
## 5543                                                             Action|Drama|Sci-Fi
## 5544                                                                   Action|Sci-Fi
## 5545                                                                   Action|Sci-Fi
## 5546                                                                   Action|Sci-Fi
## 5547                                                                   Action|Sci-Fi
## 5548                                                           Action|Drama|Thriller
## 5549                                                                          Comedy
## 5550                                                           Drama|Horror|Thriller
## 5551                                                                  Crime|Thriller
## 5552                                                          Action|Sci-Fi|Thriller
## 5553                                                                          Comedy
## 5554                                                                    Comedy|Drama
## 5555                                                                          Comedy
## 5556                                                                          Comedy
## 5557                                                                  Crime|Thriller
## 5558                                                                           Drama
## 5559                                                                    Action|Crime
## 5560                                 Action|Adventure|Comedy|Fantasy|Horror|Thriller
## 5561                                                                           Drama
## 5562                                                         Action|Adventure|Sci-Fi
## 5563                                                                   Action|Sci-Fi
## 5564                                                         Action|Adventure|Sci-Fi
## 5565                                                          Horror|Sci-Fi|Thriller
## 5566                                                                  Comedy|Romance
## 5567                                              Adventure|Animation|Children|Drama
## 5568                                                    Crime|Drama|Mystery|Thriller
## 5569                                                    Action|Comedy|Sci-Fi|Western
## 5570                                                                           Drama
## 5571                                                                        Thriller
## 5572                                                          Drama|Mystery|Thriller
## 5573                                                            Action|Comedy|Sci-Fi
## 5574                                                                   Drama|Romance
## 5575                                                               Drama|Romance|War
## 5576                                                                    Comedy|Drama
## 5577                                                                           Drama
## 5578                                                           Action|Crime|Thriller
## 5579                                                           Comedy|Horror|Musical
## 5580                                                                   Drama|Mystery
## 5581                                                                    Comedy|Drama
## 5582                                                                           Drama
## 5583                                                            Drama|Horror|Mystery
## 5584                                                                  Action|Mystery
## 5585                                                                          Comedy
## 5586                                                                          Horror
## 5587                                                                          Horror
## 5588                                                                 Horror|Thriller
## 5589                                                                          Comedy
## 5590                                                  Comedy|Horror|Romance|Thriller
## 5591                                                        Adventure|Comedy|Romance
## 5592                                                                          Comedy
## 5593                                                    Comedy|Drama|Fantasy|Romance
## 5594                                                   Action|Drama|Romance|Thriller
## 5595                                            Crime|Drama|Mystery|Romance|Thriller
## 5596                                                                 Children|Comedy
## 5597                                                                  Comedy|Romance
## 5598                                                  Drama|Mystery|Romance|Thriller
## 5599                                                                          Comedy
## 5600                                                         Horror|Mystery|Thriller
## 5601                                                       Adventure|Sci-Fi|Thriller
## 5602                                                                           Drama
## 5603                                                                        Thriller
## 5604                                                                   Drama|Romance
## 5605                                                                    Comedy|Drama
## 5606                                                        Adventure|Drama|Thriller
## 5607                                                           Drama|Mystery|Romance
## 5608                                                     Action|Crime|Drama|Thriller
## 5609                                                                    Comedy|Drama
## 5610                                               Action|Adventure|Comedy|Drama|War
## 5611                                                                           Drama
## 5612                                                            Crime|Drama|Thriller
## 5613                                                Action|Adventure|Sci-Fi|Thriller
## 5614                                                                  Crime|Thriller
## 5615                                                                          Comedy
## 5616                                                                   Drama|Romance
## 5617                                                                   Drama|Romance
## 5618                                                                Action|Drama|War
## 5619                                                       Action|Adventure|Thriller
## 5620                                                         Adventure|Drama|Romance
## 5621                                                            Crime|Drama|Thriller
## 5622                                                           Action|Crime|Thriller
## 5623                                                     Action|Crime|Drama|Thriller
## 5624                                                                 Adventure|Drama
## 5625                                                                  Drama|Thriller
## 5626                                                           Drama|Fantasy|Musical
## 5627                                                              Comedy|Crime|Drama
## 5628                                                                           Drama
## 5629                                                                    Comedy|Drama
## 5630                                              Action|Crime|Drama|Sci-Fi|Thriller
## 5631                       Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery
## 5632                                                       Action|Adventure|Thriller
## 5633                                                       Action|Adventure|Thriller
## 5634                                                                  Drama|Thriller
## 5635                                                                        Thriller
## 5636                                                                     Crime|Drama
## 5637                                                                    Action|Drama
## 5638                                                    Action|Drama|Sci-Fi|Thriller
## 5639                                                                Comedy|Drama|War
## 5640                                                                           Drama
## 5641                                                                          Comedy
## 5642                                                        Mystery|Romance|Thriller
## 5643                                                                       Drama|War
## 5644                                                                  Drama|Thriller
## 5645                                                                   Drama|Mystery
## 5646                                                                    Comedy|Drama
## 5647                                                                  Comedy|Romance
## 5648                                                                         Western
## 5649                                                  Fantasy|Horror|Mystery|Romance
## 5650                                                       Action|Adventure|Thriller
## 5651                                                          Comedy|Fantasy|Romance
## 5652                                                                           Drama
## 5653                                                                           Drama
## 5654                                                                  Drama|Thriller
## 5655                                                          Crime|Romance|Thriller
## 5656                                                    Action|Comedy|Crime|Thriller
## 5657                                                                   Drama|Mystery
## 5658                                                                    Action|Drama
## 5659                                                    Comedy|Drama|Fantasy|Romance
## 5660                                                                           Drama
## 5661                                     Adventure|Animation|Children|Comedy|Fantasy
## 5662                                                                          Comedy
## 5663                                                              Comedy|Crime|Drama
## 5664                                                                           Drama
## 5665                                                                           Drama
## 5666                                                                  Comedy|Romance
## 5667                                                                     Crime|Drama
## 5668                                                                           Drama
## 5669                                                            Drama|Romance|Sci-Fi
## 5670                                                                           Drama
## 5671                                                                    Comedy|Drama
## 5672                                                            Crime|Drama|Thriller
## 5673                                                                           Drama
## 5674                                                                    Comedy|Drama
## 5675                                                          Drama|Mystery|Thriller
## 5676                                                                           Drama
## 5677                                                   Action|Crime|Romance|Thriller
## 5678                                                                     Crime|Drama
## 5679                                                         Action|Mystery|Thriller
## 5680                                                                         Romance
## 5681                                                            Comedy|Drama|Romance
## 5682                                                                           Drama
## 5683                                                                Mystery|Thriller
## 5684                                                                  Comedy|Romance
## 5685                                                                           Drama
## 5686                                                                    Comedy|Crime
## 5687                                                                  Drama|Thriller
## 5688                                                                           Drama
## 5689                                                                          Comedy
## 5690                                                                    Comedy|Drama
## 5691                                                     Action|Crime|Drama|Thriller
## 5692                                                          Drama|Romance|Thriller
## 5693                                                                  Comedy|Fantasy
## 5694                                                                    Comedy|Drama
## 5695                                                            Drama|Romance|Sci-Fi
## 5696                                                                  Drama|Thriller
## 5697                                                                          Comedy
## 5698                                                                           Drama
## 5699                                                            Crime|Drama|Thriller
## 5700                                                                    Comedy|Drama
## 5701                                                                 Action|Thriller
## 5702                                                  Crime|Drama|Film-Noir|Thriller
## 5703                                                                          Sci-Fi
## 5704                                                    Comedy|Drama|Fantasy|Romance
## 5705                                                                    Comedy|Drama
## 5706                                                                   Drama|Romance
## 5707                                                            Comedy|Drama|Romance
## 5708                                                                     Crime|Drama
## 5709                                                                    Comedy|Drama
## 5710                                                                  Drama|Thriller
## 5711                                                                          Comedy
## 5712                                                          Drama|Mystery|Thriller
## 5713                                                                          Comedy
## 5714                                                                  Comedy|Romance
## 5715                                                                          Comedy
## 5716                                                           Adventure|Crime|Drama
## 5717                                                                  Drama|Thriller
## 5718                                                                          Comedy
## 5719                                                                   Drama|Romance
## 5720                                                                           Drama
## 5721                                                                Action|Drama|War
## 5722                                                                Mystery|Thriller
## 5723                                                                Comedy|Drama|War
## 5724                                                                           Drama
## 5725                                                                           Drama
## 5726                                                                  Horror|Mystery
## 5727                                                                           Drama
## 5728                                                              Animation|Children
## 5729                                                        Adventure|Comedy|Fantasy
## 5730                                                         Adventure|Drama|Western
## 5731                                                                           Drama
## 5732                                                           Drama|Horror|Thriller
## 5733                                                                    Comedy|Drama
## 5734                                                                    Comedy|Drama
## 5735                                                          Drama|Mystery|Thriller
## 5736                                                                    Comedy|Drama
## 5737                                                                          Comedy
## 5738                                                                  Drama|Thriller
## 5739                                                                  Comedy|Romance
## 5740                                                                    Comedy|Drama
## 5741                                                                   Drama|Romance
## 5742                                                                  Crime|Thriller
## 5743                                                   Crime|Horror|Mystery|Thriller
## 5744                                                            Comedy|Drama|Romance
## 5745                                                                    Comedy|Drama
## 5746                                                                    Comedy|Drama
## 5747                                                                   Drama|Musical
## 5748                                                           Drama|Horror|Thriller
## 5749                                                                    Comedy|Drama
## 5750                                                          Comedy|Musical|Romance
## 5751                                                            Crime|Drama|Thriller
## 5752                                                                   Drama|Romance
## 5753                                                                Mystery|Thriller
## 5754                                                                    Comedy|Drama
## 5755                                                          Action|Adventure|Drama
## 5756                                                                Adventure|Comedy
## 5757                                                                          Comedy
## 5758                                                                  Comedy|Romance
## 5759                                                                    Comedy|Crime
## 5760                                                Action|Adventure|Sci-Fi|Thriller
## 5761                                                                           Drama
## 5762                                                                  Comedy|Western
## 5763                                                           Crime|Drama|Film-Noir
## 5764                                                                   Drama|Romance
## 5765                                                            Comedy|Drama|Romance
## 5766                                                          Horror|Sci-Fi|Thriller
## 5767                                                                          Comedy
## 5768                                                     Crime|Drama|Sci-Fi|Thriller
## 5769                                                         Action|Adventure|Sci-Fi
## 5770                                                         Action|Adventure|Sci-Fi
## 5771                                                                          Comedy
## 5772                                                                           Drama
## 5773                                                                       Drama|War
## 5774                                                                           Drama
## 5775                                                                     Crime|Drama
## 5776                                                       Animation|Children|Comedy
## 5777                                                                Action|Drama|War
## 5778                                                           Action|Crime|Thriller
## 5779                                                                     Crime|Drama
## 5780                                                                           Drama
## 5781                                                                          Comedy
## 5782                                                                          Comedy
## 5783                                                          Horror|Sci-Fi|Thriller
## 5784                                                         Adventure|Drama|Romance
## 5785                                                                           Drama
## 5786                                                                          Comedy
## 5787                                                                     Documentary
## 5788                                                                  Comedy|Western
## 5789                                                                           Drama
## 5790                                                                Adventure|Sci-Fi
## 5791                                                                          Comedy
## 5792                                                                  Drama|Thriller
## 5793                                                                    Action|Drama
## 5794                                                                   Drama|Romance
## 5795                                                                    Drama|Sci-Fi
## 5796                                                            Action|Drama|Romance
## 5797                                                                          Comedy
## 5798                                                                           Drama
## 5799                                                                       Drama|War
## 5800                                                                           Drama
## 5801                                                           Comedy|Crime|Thriller
## 5802                                                                    Comedy|Drama
## 5803                                                                   Drama|Romance
## 5804                                                                  Comedy|Romance
## 5805                                                                           Drama
## 5806                                                                    Comedy|Crime
## 5807                                                          Adventure|Comedy|Crime
## 5808                                                                    Comedy|Drama
## 5809                                                              Drama|Thriller|War
## 5810                                                            Crime|Drama|Thriller
## 5811                                                Crime|Film-Noir|Mystery|Thriller
## 5812                                                                Children|Musical
## 5813                                                                   Drama|Romance
## 5814                                                                           Drama
## 5815                                                                           Drama
## 5816                                                            Comedy|Drama|Romance
## 5817                                                            Comedy|Drama|Romance
## 5818                                                       Action|Comedy|Crime|Drama
## 5819                                           Action|Crime|Mystery|Romance|Thriller
## 5820                                                          Drama|Romance|Thriller
## 5821                                                              Animation|Children
## 5822                                                              Comedy|Documentary
## 5823                                                                       Drama|War
## 5824                                                                           Drama
## 5825                                                                           Drama
## 5826                                                          Comedy|Horror|Thriller
## 5827                                                                  Comedy|Romance
## 5828                                                           Drama|Mystery|Romance
## 5829                                                                 Horror|Thriller
## 5830                                                                        Thriller
## 5831                                                                           Drama
## 5832                                                                           Drama
## 5833                                                                          Comedy
## 5834                                                                Mystery|Thriller
## 5835                                                            Comedy|Crime|Romance
## 5836                                                                     Crime|Drama
## 5837                                                            Comedy|Drama|Romance
## 5838                                                              Action|Crime|Drama
## 5839                                                                           Drama
## 5840                                                                          Comedy
## 5841                                                            Comedy|Drama|Romance
## 5842                                                                    Comedy|Crime
## 5843                                                                           Drama
## 5844                             Adventure|Animation|Children|Comedy|Fantasy|Romance
## 5845                                                           Drama|Musical|Romance
## 5846                                                        Action|Drama|Romance|War
## 5847                                                                           Drama
## 5848                                                                    Comedy|Drama
## 5849                                                                  Comedy|Western
## 5850                                                                           Drama
## 5851                                                            Crime|Drama|Thriller
## 5852                                                                    Comedy|Crime
## 5853                                                              Action|Crime|Drama
## 5854                                                                           Drama
## 5855                                                                    Comedy|Drama
## 5856                                                                  Crime|Thriller
## 5857                                                                  Comedy|Romance
## 5858                                                          Adventure|Drama|Sci-Fi
## 5859                                                                     Crime|Drama
## 5860                                                                   Action|Comedy
## 5861                                                             Crime|Drama|Western
## 5862                                                   Comedy|Drama|Mystery|Thriller
## 5863                                                              Comedy|Crime|Drama
## 5864                                                                  Comedy|Romance
## 5865                                                            Comedy|Drama|Romance
## 5866                                                                           Drama
## 5867                                                            Comedy|Drama|Musical
## 5868                                                                           Drama
## 5869                                                                           Drama
## 5870                                                                   Drama|Romance
## 5871                                                              Action|Crime|Drama
## 5872                                                                  Comedy|Romance
## 5873                                                                        Thriller
## 5874                                                                  Comedy|Romance
## 5875                                                      Film-Noir|Mystery|Thriller
## 5876                                                           Action|Crime|Thriller
## 5877                                                                          Comedy
## 5878                                                                         Romance
## 5879                                                        Mystery|Romance|Thriller
## 5880                                                                          Comedy
## 5881                                                           Comedy|Romance|Sci-Fi
## 5882                                                             Action|Thriller|War
## 5883                                                                           Drama
## 5884                                                           Drama|Fantasy|Romance
## 5885                                                                    Comedy|Drama
## 5886                                                                    Comedy|Drama
## 5887                                                                     Crime|Drama
## 5888                                                                           Drama
## 5889                                                                          Comedy
## 5890                                                                  Comedy|Romance
## 5891                                                                          Comedy
## 5892                                                                    Comedy|Drama
## 5893                                                           Action|Crime|Thriller
## 5894                                                                  Comedy|Romance
## 5895                                                   Action|Adventure|Drama|Sci-Fi
## 5896                                                            Crime|Drama|Thriller
## 5897                                                                    Comedy|Drama
## 5898                                                         Children|Comedy|Romance
## 5899                                                          Comedy|Musical|Western
## 5900                                                                   Drama|Western
## 5901                                                                    Drama|Sci-Fi
## 5902                                                                          Comedy
## 5903                                                                          Comedy
## 5904                                                                          Comedy
## 5905                                                                 Action|Thriller
## 5906                                                            Crime|Drama|Thriller
## 5907                                                                           Drama
## 5908                                                                  Drama|Thriller
## 5909                                                                           Drama
## 5910                                                                     Crime|Drama
## 5911                                                                           Drama
## 5912                                                                           Drama
## 5913                                                                     Crime|Drama
## 5914                                     Adventure|Animation|Children|Comedy|Fantasy
## 5915                                                                     Crime|Drama
## 5916                                                          Comedy|Fantasy|Romance
## 5917                                                      Adventure|Children|Fantasy
## 5918                                                   Comedy|Crime|Mystery|Thriller
## 5919                                                                          Comedy
## 5920                                                                Mystery|Thriller
## 5921                                                         Action|Adventure|Sci-Fi
## 5922                                                        Adventure|Drama|Thriller
## 5923                                                                    Comedy|Crime
## 5924                                                                          Comedy
## 5925                                                                  Crime|Thriller
## 5926                                                                    Comedy|Drama
## 5927                                                          Drama|Mystery|Thriller
## 5928                                                                    Comedy|Drama
## 5929                                                               Adventure|Fantasy
## 5930                                                                   Drama|Romance
## 5931                                                                   Drama|Romance
## 5932                                              Action|Comedy|Crime|Drama|Thriller
## 5933                                                                        Thriller
## 5934                                                       Action|Comedy|Crime|Drama
## 5935                                                                Comedy|Drama|War
## 5936                                                                   Drama|Romance
## 5937                                                 Action|Adventure|Drama|Thriller
## 5938                                                                  Drama|Thriller
## 5939                                                         Comedy|Mystery|Thriller
## 5940                                                                           Drama
## 5941                                                                          Comedy
## 5942                                          Drama|Fantasy|Mystery|Romance|Thriller
## 5943                                                                Action|Drama|War
## 5944                                                                   Drama|Romance
## 5945                                                            Comedy|Drama|Romance
## 5946                                                                          Comedy
## 5947                                                                         Musical
## 5948                                                                  Drama|Thriller
## 5949                                                                       Drama|War
## 5950                                                                  Comedy|Fantasy
## 5951                                                                           Drama
## 5952                                                                   Action|Comedy
## 5953                                                                          Comedy
## 5954                                                                           Drama
## 5955                                                          Drama|Romance|Thriller
## 5956                                                                 Action|Thriller
## 5957                                                                  Drama|Thriller
## 5958                                                                  Drama|Thriller
## 5959                                                                  Comedy|Romance
## 5960                                                                  Comedy|Romance
## 5961                                                                          Comedy
## 5962                                                                          Comedy
## 5963                                                                  Comedy|Romance
## 5964                                                                    Comedy|Crime
## 5965                                                                  Comedy|Romance
## 5966                                                                  Drama|Thriller
## 5967                                                                           Drama
## 5968                                                                  Drama|Thriller
## 5969                                                                           Drama
## 5970                                                                          Comedy
## 5971                                             Action|Crime|Drama|Mystery|Thriller
## 5972                                                                           Drama
## 5973                                                                  Drama|Thriller
## 5974                                            Action|Crime|Mystery|Sci-Fi|Thriller
## 5975                                                         Children|Comedy|Romance
## 5976                                                                     Crime|Drama
## 5977                                                                   Drama|Romance
## 5978                                                          Horror|Sci-Fi|Thriller
## 5979                                                    Crime|Drama|Mystery|Thriller
## 5980                                                                           Drama
## 5981                                                                 Sci-Fi|Thriller
## 5982                                                                          Comedy
## 5983                                                                           Drama
## 5984                                                                        Thriller
## 5985                                                                          Comedy
## 5986                                                                  Comedy|Romance
## 5987                                                          Crime|Mystery|Thriller
## 5988                                                                  Drama|Thriller
## 5989                                                              Comedy|Documentary
## 5990                                                         Horror|Mystery|Thriller
## 5991                                                                     Crime|Drama
## 5992                                                                     Crime|Drama
## 5993                                                            Comedy|Drama|Musical
## 5994                                                                           Drama
## 5995                                                                         Western
## 5996                                                                          Comedy
## 5997                                                         Fantasy|Musical|Romance
## 5998                                                                   Drama|Romance
## 5999                                                                Mystery|Thriller
## 6000                                                                  Comedy|Romance
## 6001                                                                   Drama|Romance
## 6002                                                                        Thriller
## 6003                                                                    Comedy|Drama
## 6004                                                                    Comedy|Drama
## 6005                                                                          Comedy
## 6006                                                                   Drama|Romance
## 6007                                                                    Action|Drama
## 6008                                                                           Drama
## 6009                                                                           Drama
## 6010                                                             Crime|Drama|Romance
## 6011                                                                          Comedy
## 6012                                                              Drama|Thriller|War
## 6013                                                                     Crime|Drama
## 6014                                                                    Comedy|Crime
## 6015                                                            Comedy|Drama|Romance
## 6016                                                                    Comedy|Drama
## 6017                                                            Comedy|Drama|Romance
## 6018                                                    Comedy|Drama|Musical|Romance
## 6019                                                                           Drama
## 6020                                                   Comedy|Crime|Mystery|Thriller
## 6021                                                                          Comedy
## 6022                                                                    Comedy|Drama
## 6023                                                                     Crime|Drama
## 6024                                                            Crime|Drama|Thriller
## 6025                                                                  Drama|Thriller
## 6026                                                                 Action|Thriller
## 6027                                                                  Drama|Thriller
## 6028                                                              Comedy|Crime|Drama
## 6029                                                                     Crime|Drama
## 6030                                                      Comedy|Crime|Drama|Musical
## 6031                                                                    Comedy|Drama
## 6032                                                                   Drama|Romance
## 6033                                                                    Comedy|Drama
## 6034                                                                           Drama
## 6035                                                          Drama|Mystery|Thriller
## 6036                                                                       Drama|War
## 6037                                                                           Drama
## 6038                                                                           Drama
## 6039                                                                     Crime|Drama
## 6040                                                                Action|Drama|War
## 6041                                                                          Comedy
## 6042                                                                  Comedy|Romance
## 6043                                                                   Drama|Mystery
## 6044                                                                           Drama
## 6045                                                            Comedy|Drama|Romance
## 6046                                                              Action|Crime|Drama
## 6047                                                              Drama|Thriller|War
## 6048                                                                  Drama|Thriller
## 6049                                                            Comedy|Crime|Romance
## 6050                                                                  Comedy|Romance
## 6051                                                            Comedy|Drama|Musical
## 6052                                                                  Comedy|Western
## 6053                                                                           Drama
## 6054                                                               Drama|War|Western
## 6055                                                                           Drama
## 6056                                                                  Drama|Thriller
## 6057                                                                           Drama
## 6058                                                                  Drama|Thriller
## 6059                                                                           Drama
## 6060                                                                           Drama
## 6061                                                         Mystery|Sci-Fi|Thriller
## 6062                                                          Crime|Mystery|Thriller
## 6063                                                            Crime|Drama|Thriller
## 6064                                                         Action|Adventure|Sci-Fi
## 6065                                                     Comedy|Crime|Drama|Thriller
## 6066                                                                     Crime|Drama
## 6067                                                            Comedy|Drama|Romance
## 6068                                                          Action|Sci-Fi|Thriller
## 6069                                                                       Drama|War
## 6070                                                          Action|Sci-Fi|Thriller
## 6071                                                              Comedy|Crime|Drama
## 6072                                                                     Crime|Drama
## 6073                                                                Mystery|Thriller
## 6074                                                          Crime|Mystery|Thriller
## 6075                                                                          Comedy
## 6076                                                                           Drama
## 6077                                         Action|Adventure|Comedy|Fantasy|Romance
## 6078                                                     Crime|Drama|Sci-Fi|Thriller
## 6079                                                                Action|Drama|War
## 6080                                                                     Crime|Drama
## 6081                                                                    Comedy|Crime
## 6082                                                                       Drama|War
## 6083                                                           Action|Comedy|Western
## 6084                                                                   Drama|Musical
## 6085                                                                           Drama
## 6086                                                       Adventure|Fantasy|Musical
## 6087                                                                Action|Drama|War
## 6088                                                            Comedy|Drama|Romance
## 6089                                                                     Crime|Drama
## 6090                                                                    Comedy|Crime
## 6091                                                          Action|Sci-Fi|Thriller
## 6092                                                                    Action|Crime
## 6093                                                     Action|Crime|Drama|Thriller
## 6094                                                            Comedy|Drama|Fantasy
## 6095                                                                  Comedy|Romance
## 6096                                                          Comedy|Fantasy|Romance
## 6097                                                                   Action|Sci-Fi
## 6098                                                                  Drama|Thriller
## 6099                                                                           Drama
## 6100                                                                          Comedy
## 6101                                     Adventure|Animation|Children|Comedy|Fantasy
## 6102                                                                    Comedy|Drama
## 6103                                                               Adventure|Fantasy
## 6104                                                         Action|Mystery|Thriller
## 6105                                                               Adventure|Fantasy
## 6106                                                                       Drama|War
## 6107                                                 Action|Adventure|Comedy|Fantasy
## 6108                                                            Comedy|Drama|Romance
## 6109                                                  Action|Adventure|Drama|Fantasy
## 6110                                                            Drama|Romance|Sci-Fi
## 6111                                      Action|Adventure|Animation|Children|Comedy
## 6112                                                                     Documentary
## 6113                                                               Action|Crime|IMAX
## 6114                                                     Action|Sci-Fi|Thriller|IMAX
## 6115                                                                    Comedy|Drama
## 6116                                                          Drama|Fantasy|Thriller
## 6117                                                        Animation|Children|Drama
## 6118                                                                          Comedy
## 6119                                                                    Comedy|Drama
## 6120                                                                     Crime|Drama
## 6121                                                         Action|Crime|Drama|IMAX
## 6122                                                         Action|Adventure|Sci-Fi
## 6123                                                                     Crime|Drama
## 6124                                       Adventure|Animation|Children|Comedy|Crime
## 6125                                                    Action|Adventure|Sci-Fi|IMAX
## 6126                                                          Adventure|Fantasy|IMAX
## 6127                                       Adventure|Animation|Children|Fantasy|IMAX
## 6128                                                                   Action|Comedy
## 6129                                                      Adventure|Children|Fantasy
## 6130                                                                          Comedy
## 6131                                                                           Drama
## 6132                                                        Action|Adventure|Fantasy
## 6133                                                                Action|Drama|War
## 6134                                                            Adventure|Drama|IMAX
## 6135                                                   Action|Adventure|Comedy|Crime
## 6136                                                              Adventure|Children
## 6137                                                           Action|Crime|Thriller
## 6138                                                            Action|Drama|Romance
## 6139                                                             Action|Crime|Sci-Fi
## 6140                                                                          Action
## 6141                                                         Action|Adventure|Sci-Fi
## 6142                                                                  Drama|Thriller
## 6143                                                                Adventure|Comedy
## 6144                                                                  Comedy|Romance
## 6145                                                                           Drama
## 6146                                                       Drama|Romance|War|Western
## 6147                                                    Action|Drama|Sci-Fi|Thriller
## 6148                                                     Comedy|Crime|Drama|Thriller
## 6149                                                                           Drama
## 6150                                                         Action|Adventure|Sci-Fi
## 6151                                                            Comedy|Drama|Fantasy
## 6152                                                                          Comedy
## 6153                                                                           Drama
## 6154                                                                          Comedy
## 6155                                                     Action|Crime|Drama|Thriller
## 6156                                                          Drama|Mystery|Thriller
## 6157                                                        Comedy|Drama|Romance|War
## 6158                                 Adventure|Animation|Children|Drama|Musical|IMAX
## 6159                                                     Action|Comedy|Crime|Fantasy
## 6160                                                         Action|Romance|Thriller
## 6161                                        Action|Adventure|Comedy|Romance|Thriller
## 6162                                                         Children|Comedy|Fantasy
## 6163                                                    Action|Comedy|Crime|Thriller
## 6164                                                                           Drama
## 6165                                                        Adventure|Comedy|Western
## 6166                                                       Action|Adventure|Thriller
## 6167                                                                  Comedy|Romance
## 6168                                                         Action|Adventure|Sci-Fi
## 6169                                                                        Thriller
## 6170                                                Action|Adventure|Sci-Fi|Thriller
## 6171                                                            Action|Drama|Western
## 6172                                     Adventure|Animation|Children|Comedy|Musical
## 6173                                                                   Action|Sci-Fi
## 6174                                                         Adventure|Drama|Western
## 6175                                                           Action|Crime|Thriller
## 6176                                 Animation|Children|Fantasy|Musical|Romance|IMAX
## 6177                                                                          Comedy
## 6178                                                                          Comedy
## 6179                                                                      Comedy|War
## 6180                                                                Adventure|Comedy
## 6181                                                                          Comedy
## 6182                                                         Action|Romance|Thriller
## 6183                                                             Comedy|Crime|Horror
## 6184                                                                    Comedy|Drama
## 6185                                                                  Crime|Thriller
## 6186                                                                           Drama
## 6187                                       Action|Adventure|Mystery|Romance|Thriller
## 6188                                                                    Comedy|Drama
## 6189                                                                          Comedy
## 6190                                                                    Comedy|Drama
## 6191                                                                           Drama
## 6192                                                         Action|Adventure|Sci-Fi
## 6193                                         Action|Adventure|Comedy|Fantasy|Romance
## 6194                                                                Action|Adventure
## 6195                                                                  Comedy|Romance
## 6196                                                                          Horror
## 6197                                                                 Adventure|Drama
## 6198                                                                          Comedy
## 6199                                                                Action|Adventure
## 6200                                                                 Horror|Thriller
## 6201                                                                 Children|Comedy
## 6202                                                                          Comedy
## 6203                                                  Comedy|Horror|Mystery|Thriller
## 6204                                                  Comedy|Horror|Mystery|Thriller
## 6205                                                                          Comedy
## 6206                                                            Comedy|Drama|Romance
## 6207                                                       Adventure|Fantasy|Musical
## 6208                                                         Horror|Mystery|Thriller
## 6209                                                                          Horror
## 6210                                                                          Horror
## 6211                                                                          Horror
## 6212                                                                 Horror|Thriller
## 6213                                        Action|Adventure|Children|Comedy|Fantasy
## 6214                                                           Action|Comedy|Romance
## 6215                                                                          Comedy
## 6216                                                                     Documentary
## 6217                                                        Adventure|Comedy|Musical
## 6218                                                                 Horror|Thriller
## 6219                                                            Comedy|Drama|Romance
## 6220                                                                   Action|Comedy
## 6221                                                        Action|Adventure|Fantasy
## 6222                                                                     Crime|Drama
## 6223                                                            Comedy|Crime|Mystery
## 6224                                                                    Comedy|Drama
## 6225                                                                Adventure|Comedy
## 6226                                                                    Comedy|Crime
## 6227                                                                   Comedy|Sci-Fi
## 6228                                                                           Drama
## 6229                                                                          Comedy
## 6230                                 Action|Adventure|Comedy|Fantasy|Horror|Thriller
## 6231                                                                     Documentary
## 6232                                                                  Comedy|Romance
## 6233                                                                          Horror
## 6234                                                  Comedy|Horror|Romance|Thriller
## 6235                                                                          Comedy
## 6236                                                                  Comedy|Romance
## 6237                                                                          Comedy
## 6238                                                                  Crime|Thriller
## 6239                                                                          Comedy
## 6240                                                                    Comedy|Drama
## 6241                                                     Action|Crime|Drama|Thriller
## 6242                                                            Comedy|Drama|Fantasy
## 6243                                                                     Documentary
## 6244                                                         Children|Comedy|Fantasy
## 6245                                                  Comedy|Horror|Mystery|Thriller
## 6246                                                            Crime|Drama|Thriller
## 6247                                                                    Comedy|Drama
## 6248                                                                           Drama
## 6249                                                            Comedy|Drama|Romance
## 6250                                                                          Comedy
## 6251                                                                    Comedy|Drama
## 6252                                                                  Comedy|Romance
## 6253                                                                Adventure|Comedy
## 6254                                                                          Comedy
## 6255                                                                           Drama
## 6256                                                                Adventure|Comedy
## 6257                                                                   Comedy|Horror
## 6258                                                                    Comedy|Drama
## 6259                                                                          Comedy
## 6260                                                                          Comedy
## 6261                                                              Comedy|Documentary
## 6262                                                     Action|Comedy|Crime|Romance
## 6263                                             Comedy|Crime|Drama|Romance|Thriller
## 6264                                                                           Drama
## 6265                                                                   Drama|Musical
## 6266                                                                          Comedy
## 6267                                     Adventure|Animation|Children|Comedy|Fantasy
## 6268                                                                           Drama
## 6269                                                          Adventure|Comedy|Crime
## 6270                                                                          Comedy
## 6271                                                Adventure|Comedy|Mystery|Romance
## 6272                                                                          Comedy
## 6273                                                                  Drama|Thriller
## 6274                                                                    Comedy|Crime
## 6275                                                                          Comedy
## 6276                                                                     Crime|Drama
## 6277                                                                          Comedy
## 6278                                                                  Comedy|Romance
## 6279                                                            Crime|Drama|Thriller
## 6280                                                                          Comedy
## 6281                                                                          Comedy
## 6282                                                              Action|Crime|Drama
## 6283                                                                 Children|Comedy
## 6284                                                                          Comedy
## 6285                                                                          Comedy
## 6286                                                                  Comedy|Romance
## 6287                                                                          Comedy
## 6288                                                                    Comedy|Drama
## 6289                                                   Action|Adventure|Drama|Sci-Fi
## 6290                                                                          Comedy
## 6291                                                            Comedy|Horror|Sci-Fi
## 6292                                                                    Comedy|Crime
## 6293                                                                          Comedy
## 6294                                                                          Comedy
## 6295                                                                          Comedy
## 6296                                                                          Comedy
## 6297                                                                           Drama
## 6298                                                   Drama|Mystery|Sci-Fi|Thriller
## 6299                                                          Comedy|Fantasy|Romance
## 6300                                                   Comedy|Crime|Mystery|Thriller
## 6301                                                                          Comedy
## 6302                                  Action|Adventure|Comedy|Drama|Romance|Thriller
## 6303                                                                  Crime|Thriller
## 6304                                                                          Comedy
## 6305                                                 Mystery|Romance|Sci-Fi|Thriller
## 6306                                                                       Adventure
## 6307                                                                   Drama|Romance
## 6308                                                                    Comedy|Drama
## 6309                                                          Comedy|Musical|Romance
## 6310                                                                        Thriller
## 6311                                                                    Comedy|Drama
## 6312                                                                     Documentary
## 6313                                                                     Documentary
## 6314                                                            Comedy|Drama|Romance
## 6315                                                           Action|Crime|Thriller
## 6316                                                           Comedy|Crime|Thriller
## 6317                                                         Mystery|Sci-Fi|Thriller
## 6318                                                                  Comedy|Romance
## 6319                                                                Mystery|Thriller
## 6320                                                          Crime|Mystery|Thriller
## 6321                                                   Action|Comedy|Horror|Thriller
## 6322                                                                Action|Drama|War
## 6323                                                            Adventure|Drama|IMAX
## 6324                                      Action|Crime|Drama|Mystery|Sci-Fi|Thriller
## 6325                                                                    Drama|Horror
## 6326                                                         Action|Adventure|Sci-Fi
## 6327                                                           Action|Crime|Thriller
## 6328                                                     Action|Crime|Drama|Thriller
## 6329                                                     Comedy|Crime|Drama|Thriller
## 6330                                                         Action|Adventure|Sci-Fi
## 6331                                                                           Drama
## 6332                                                         Action|Romance|Thriller
## 6333                                                                 Horror|Thriller
## 6334                                                         Action|Adventure|Sci-Fi
## 6335                                                            Crime|Drama|Thriller
## 6336                                                                       Drama|War
## 6337                                                          Action|Sci-Fi|Thriller
## 6338                                                                  Crime|Thriller
## 6339                                                                     Documentary
## 6340                                                                    Comedy|Drama
## 6341                                                                     Documentary
## 6342                                                                   Action|Sci-Fi
## 6343                                                           Crime|Horror|Thriller
## 6344                                 Animation|Children|Fantasy|Musical|Romance|IMAX
## 6345                                                               Adventure|Western
## 6346                                                     Comedy|Crime|Drama|Thriller
## 6347                                        Action|Adventure|Animation|Horror|Sci-Fi
## 6348                                                                  Drama|Thriller
## 6349                                                   Drama|Fantasy|Horror|Thriller
## 6350                                                                      Comedy|War
## 6351                                                                     Crime|Drama
## 6352                                                                   Drama|Romance
## 6353                                                               Film-Noir|Mystery
## 6354                                              Adventure|Children|Fantasy|Musical
## 6355                                                                   Drama|Mystery
## 6356                                                          Adventure|Drama|Sci-Fi
## 6357                                                        Action|Adventure|Romance
## 6358                                                    Adventure|Comedy|Romance|War
## 6359                                                           Action|Crime|Thriller
## 6360                                                                   Drama|Romance
## 6361                                                          Crime|Mystery|Thriller
## 6362                                                                       Drama|War
## 6363                                                          Crime|Mystery|Thriller
## 6364                                                           Children|Drama|Sci-Fi
## 6365                                                                           Drama
## 6366                                                                           Drama
## 6367                                                                    Comedy|Drama
## 6368                                                Action|Adventure|Sci-Fi|Thriller
## 6369                                                                  Horror|Mystery
## 6370                                                                     Documentary
## 6371                                                                       Drama|War
## 6372                                                           Crime|Drama|Film-Noir
## 6373                                                                           Drama
## 6374                                                         Action|Adventure|Sci-Fi
## 6375                                                                Action|Adventure
## 6376                                                  Action|Adventure|Horror|Sci-Fi
## 6377                                                        Action|Adventure|Western
## 6378                                                             Adventure|Drama|War
## 6379                                                     Crime|Drama|Sci-Fi|Thriller
## 6380                                                                           Drama
## 6381                                                                Action|Drama|War
## 6382                                                                     Crime|Drama
## 6383                                                                   Horror|Sci-Fi
## 6384                                          Action|Adventure|Comedy|Fantasy|Horror
## 6385                                                                    Crime|Horror
## 6386                                                           Action|Comedy|Musical
## 6387                                                                     Crime|Drama
## 6388                                                                       Drama|War
## 6389                                                                           Drama
## 6390                                                                    Comedy|Crime
## 6391                                                          Action|Sci-Fi|Thriller
## 6392                                                            Comedy|Drama|Romance
## 6393                                                             Adventure|Drama|War
## 6394                                                Crime|Film-Noir|Mystery|Thriller
## 6395                                                           Drama|Sci-Fi|Thriller
## 6396                                                  Action|Adventure|Drama|Western
## 6397                                                                          Horror
## 6398                                                                 Adventure|Drama
## 6399                                                      Action|Adventure|Drama|War
## 6400                                                                       Drama|War
## 6401                                                              Crime|Thriller|War
## 6402                                                         Adventure|Comedy|Sci-Fi
## 6403                                                                       Drama|War
## 6404                                                                           Drama
## 6405                                                          Action|Adventure|Drama
## 6406                                                                   Drama|Musical
## 6407                                                                       Drama|War
## 6408                                                   Action|Horror|Sci-Fi|Thriller
## 6409                                                          Comedy|Horror|Thriller
## 6410                                                 Fantasy|Horror|Romance|Thriller
## 6411                                                             Drama|Horror|Sci-Fi
## 6412                                                                           Drama
## 6413                                                                   Action|Horror
## 6414                                                Action|Comedy|Crime|Drama|Sci-Fi
## 6415                                                  Comedy|Horror|Mystery|Thriller
## 6416                                   Crime|Drama|Fantasy|Film-Noir|Mystery|Romance
## 6417                                                  Action|Adventure|Comedy|Sci-Fi
## 6418                                                            Action|Comedy|Sci-Fi
## 6419                                                     Action|Crime|Drama|Thriller
## 6420                                                  Drama|Mystery|Romance|Thriller
## 6421                                                       Action|Adventure|Thriller
## 6422                                                Crime|Film-Noir|Mystery|Thriller
## 6423                                                          Drama|Mystery|Thriller
## 6424                                                           Drama|Sci-Fi|Thriller
## 6425                                                                   Action|Sci-Fi
## 6426                                                            Action|Horror|Sci-Fi
## 6427                                                    Crime|Drama|Fantasy|Thriller
## 6428                                                                  Comedy|Romance
## 6429                                                                 Adventure|Drama
## 6430                                                                           Drama
## 6431                                                                           Drama
## 6432                                                                   Comedy|Sci-Fi
## 6433                                                                  Horror|Mystery
## 6434                                                   Drama|Mystery|Sci-Fi|Thriller
## 6435                                                                Action|Drama|War
## 6436                                                                     Documentary
## 6437                                                          Drama|Mystery|Thriller
## 6438                                                         Action|Adventure|Sci-Fi
## 6439                                                   Action|Horror|Sci-Fi|Thriller
## 6440                                                              Comedy|Crime|Drama
## 6441                                                                          Sci-Fi
## 6442                                                         Horror|Mystery|Thriller
## 6443                                                                 Action|Thriller
## 6444                                                 Action|Adventure|Fantasy|Horror
## 6445                                                            Comedy|Drama|Romance
## 6446                                                                   Comedy|Sci-Fi
## 6447                                                  Action|Sci-Fi|Thriller|Western
## 6448                                                         Action|Adventure|Sci-Fi
## 6449                                                             Action|Drama|Sci-Fi
## 6450                                                          Horror|Sci-Fi|Thriller
## 6451                                                          Action|Sci-Fi|Thriller
## 6452                                                                          Comedy
## 6453                                                                          Horror
## 6454                                                             Drama|Horror|Sci-Fi
## 6455                                                    Comedy|Horror|Musical|Sci-Fi
## 6456                                                             Action|Drama|Sci-Fi
## 6457                                                            Action|Comedy|Sci-Fi
## 6458                                                            Drama|Horror|Mystery
## 6459                                                  Comedy|Horror|Romance|Thriller
## 6460                                                    Comedy|Drama|Fantasy|Romance
## 6461                                                                   Drama|Romance
## 6462                                                        Adventure|Comedy|Musical
## 6463                                                        Adventure|Drama|Thriller
## 6464                                                                   Horror|Sci-Fi
## 6465                                                                           Drama
## 6466                                                Action|Adventure|Sci-Fi|Thriller
## 6467                                                                         Western
## 6468                                                                Action|Drama|War
## 6469                                                       Action|Adventure|Thriller
## 6470                                                                  Action|Western
## 6471                                                           Drama|Fantasy|Musical
## 6472                                              Action|Crime|Drama|Sci-Fi|Thriller
## 6473                       Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery
## 6474                                                    Action|Drama|Sci-Fi|Thriller
## 6475                                                                Comedy|Drama|War
## 6476                                                                Action|Drama|War
## 6477                                                                Action|Drama|War
## 6478                                                                         Western
## 6479                                                                 Adventure|Drama
## 6480                                                                       Drama|War
## 6481                                                     Action|Crime|Drama|Thriller
## 6482                                                                          Comedy
## 6483                                                            Comedy|Drama|Romance
## 6484                                                          Drama|Mystery|Thriller
## 6485                                                           Adventure|Crime|Drama
## 6486                                                                   Drama|Western
## 6487                                                                           Drama
## 6488                                                          Adventure|Drama|Sci-Fi
## 6489                                                                    Comedy|Drama
## 6490                                         Action|Adventure|Drama|Thriller|Western
## 6491                                                          Action|Sci-Fi|Thriller
## 6492                                                            Crime|Drama|Thriller
## 6493                                                                        Thriller
## 6494                                                         Action|Adventure|Sci-Fi
## 6495                                                Action|Adventure|Sci-Fi|Thriller
## 6496                                               Film-Noir|Horror|Mystery|Thriller
## 6497                                                                  Horror|Western
## 6498                                                                       Drama|War
## 6499                                                                          Horror
## 6500                                                                Adventure|Sci-Fi
## 6501                                                                Comedy|Drama|War
## 6502                                                                    Drama|Sci-Fi
## 6503                                                                  Drama|Thriller
## 6504                                                                     Crime|Drama
## 6505                                                                  Comedy|Romance
## 6506                                                   Drama|Fantasy|Horror|Thriller
## 6507                                                            Comedy|Drama|Romance
## 6508                                                    Comedy|Drama|Musical|Romance
## 6509                                                Animation|Children|Drama|Musical
## 6510                                                           Action|Drama|Thriller
## 6511                                                                  Comedy|Romance
## 6512                                                                           Drama
## 6513                                                   Action|Crime|Romance|Thriller
## 6514                                                              Crime|Thriller|War
## 6515                                                         Action|Adventure|Sci-Fi
## 6516                                                           Action|Crime|Thriller
## 6517                                                              Comedy|Crime|Drama
## 6518                                                                           Drama
## 6519                                                 Adventure|Comedy|Fantasy|Sci-Fi
## 6520                                                                  Comedy|Romance
## 6521                                                                  Drama|Thriller
## 6522                                                           Action|Crime|Thriller
## 6523                                                                     Crime|Drama
## 6524                                                                          Comedy
## 6525                                                           Comedy|Crime|Thriller
## 6526                                                                   Drama|Romance
## 6527                                                                           Drama
## 6528                                                         Mystery|Sci-Fi|Thriller
## 6529                                                                     Crime|Drama
## 6530                                                                       Drama|War
## 6531                                                           Comedy|Drama|Thriller
## 6532                                                          Crime|Mystery|Thriller
## 6533                                                            Comedy|Drama|Romance
## 6534                                                                           Drama
## 6535                                                                           Drama
## 6536                                                            Comedy|Drama|Romance
## 6537                                                                  Comedy|Romance
## 6538                                                            Crime|Drama|Thriller
## 6539                                                                          Comedy
## 6540                                              Action|Comedy|Crime|Drama|Thriller
## 6541                                                                           Drama
## 6542                                                        Action|Drama|Romance|War
## 6543                                                           Action|Crime|Thriller
## 6544                                                                          Comedy
## 6545                                                                          Comedy
## 6546                                                            Comedy|Drama|Romance
## 6547                                                           Action|Comedy|Romance
## 6548                                                                   Drama|Musical
## 6549                                                                     Documentary
## 6550                                                                          Comedy
## 6551                                                                   Drama|Romance
## 6552                                                                  Comedy|Romance
## 6553                                                                    Drama|Horror
## 6554                                                                   Comedy|Sci-Fi
## 6555                                                         Action|Adventure|Sci-Fi
## 6556                                                                           Drama
## 6557                                                           Drama|Fantasy|Romance
## 6558                                                                    Comedy|Drama
## 6559                                                             Drama|Horror|Sci-Fi
## 6560                                                                           Drama
## 6561                                                                           Drama
## 6562                                                           Action|Crime|Thriller
## 6563                                                     Action|Crime|Drama|Thriller
## 6564                                                     Comedy|Crime|Drama|Thriller
## 6565                                                                           Drama
## 6566                                                                           Drama
## 6567                                                                           Drama
## 6568                                                                    Comedy|Drama
## 6569                                                                          Comedy
## 6570                                                           Action|Drama|Thriller
## 6571                                                                     Crime|Drama
## 6572                                                                           Drama
## 6573                                                                           Drama
## 6574                                                                    Comedy|Drama
## 6575                                                                          Comedy
## 6576                                                          Drama|Mystery|Thriller
## 6577                                                        Comedy|Drama|Romance|War
## 6578                                                                  Comedy|Romance
## 6579                                                      Adventure|Children|Romance
## 6580                                                        Adventure|Comedy|Western
## 6581                                                            Comedy|Drama|Romance
## 6582                                                                   Drama|Romance
## 6583                                                   Drama|Horror|Romance|Thriller
## 6584                                                                           Drama
## 6585                                                    Action|Comedy|Crime|Thriller
## 6586                                                                     Crime|Drama
## 6587                                                        Adventure|Comedy|Western
## 6588                                                       Action|Adventure|Thriller
## 6589                                                                  Comedy|Romance
## 6590                                                                  Drama|Thriller
## 6591                                                                        Thriller
## 6592                                                                   Drama|Romance
## 6593                                                                           Drama
## 6594                                                Action|Adventure|Sci-Fi|Thriller
## 6595                                                                  Drama|Thriller
## 6596                                                                           Drama
## 6597                                                                           Drama
## 6598                                                                   Drama|Romance
## 6599                                                                   Drama|Romance
## 6600                                                                  Crime|Thriller
## 6601                                                                           Drama
## 6602                                                                       Drama|War
## 6603                                                                  Children|Drama
## 6604                                                             Comedy|Crime|Horror
## 6605                                                                   Drama|Romance
## 6606                                                            Comedy|Drama|Romance
## 6607                                                                        Thriller
## 6608                                                         Comedy|Romance|Thriller
## 6609                                              Animation|Children|Fantasy|Musical
## 6610                                                                 Children|Comedy
## 6611                                           Comedy|Drama|Fantasy|Romance|Thriller
## 6612                                     Adventure|Animation|Children|Comedy|Musical
## 6613                                                         Adventure|Drama|Western
## 6614                                                           Action|Crime|Thriller
## 6615                                                           Crime|Horror|Thriller
## 6616                                                                  Comedy|Romance
## 6617                                                                  Drama|Thriller
## 6618                                                      Adventure|Animation|Comedy
## 6619                                                              Comedy|Crime|Drama
## 6620                                                   Comedy|Fantasy|Romance|Sci-Fi
## 6621                                                            Comedy|Drama|Romance
## 6622                                                           Action|Crime|Thriller
## 6623                                                                           Drama
## 6624                                                Action|Adventure|Sci-Fi|Thriller
## 6625                                                       Adventure|Children|Comedy
## 6626                                     Adventure|Animation|Children|Comedy|Fantasy
## 6627                                 Adventure|Animation|Children|Drama|Musical|IMAX
## 6628                                 Animation|Children|Fantasy|Musical|Romance|IMAX
## 6629                                                                   Drama|Romance
## 6630                                                                   Drama|Romance
## 6631                                                               Drama|Romance|War
## 6632                                                        Action|Adventure|Romance
## 6633                                                                           Drama
## 6634                                                         Action|Adventure|Sci-Fi
## 6635                                                                           Drama
## 6636                                                                  Comedy|Romance
## 6637                       Adventure|Animation|Children|Comedy|Drama|Musical|Romance
## 6638                                                                Action|Drama|War
## 6639                                       Animation|Children|Comedy|Musical|Romance
## 6640                                                    Adventure|Animation|Children
## 6641                                                    Action|Comedy|Crime|Thriller
## 6642                                                                   Drama|Romance
## 6643                                                                   Drama|Romance
## 6644                                                            Comedy|Drama|Romance
## 6645                                                                          Comedy
## 6646                                                                 Children|Comedy
## 6647                                                       Animation|Children|Comedy
## 6648                                                                          Comedy
## 6649                                                                   Action|Comedy
## 6650                                                            Action|Drama|Romance
## 6651                                                           Comedy|Crime|Thriller
## 6652                                                                   Drama|Romance
## 6653                                                                   Comedy|Sci-Fi
## 6654                                                                  Comedy|Romance
## 6655                                                            Crime|Drama|Thriller
## 6656                                                                   Drama|Romance
## 6657                                                                  Comedy|Romance
## 6658                                                                     Crime|Drama
## 6659                                                                Mystery|Thriller
## 6660                                                                Action|Drama|War
## 6661                                                     Action|Crime|Drama|Thriller
## 6662                                                     Comedy|Crime|Drama|Thriller
## 6663                                                                           Drama
## 6664                                                                     Crime|Drama
## 6665                                                        Comedy|Drama|Romance|War
## 6666                                 Adventure|Animation|Children|Drama|Musical|IMAX
## 6667                                                                           Drama
## 6668                                                     Action|Comedy|Crime|Fantasy
## 6669                                                                       Drama|War
## 6670                                     Adventure|Animation|Children|Comedy|Musical
## 6671                                                         Adventure|Drama|Western
## 6672                                                           Crime|Horror|Thriller
## 6673                                                              Comedy|Crime|Drama
## 6674                                                            Comedy|Drama|Romance
## 6675                                                                     Crime|Drama
## 6676                                                                           Drama
## 6677                                                                      Comedy|War
## 6678                                                                          Comedy
## 6679                                                        Adventure|Comedy|Fantasy
## 6680                                                                           Drama
## 6681                                                                     Crime|Drama
## 6682                                                                     Crime|Drama
## 6683                                                            Comedy|Drama|Romance
## 6684                                                                     Documentary
## 6685                                                             Comedy|Drama|Sci-Fi
## 6686                                                                   Drama|Romance
## 6687                                                       Action|Comedy|Crime|Drama
## 6688                                                                   Drama|Romance
## 6689                                                           Drama|Fantasy|Mystery
## 6690                                                                       Drama|War
## 6691                            Adventure|Animation|Children|Fantasy|Musical|Romance
## 6692                                                                           Drama
## 6693                                                              Action|Crime|Drama
## 6694                                                        Comedy|Drama|Romance|War
## 6695                                                          Action|Sci-Fi|Thriller
## 6696                                                                   Action|Sci-Fi
## 6697                                                                   Drama|Mystery
## 6698                                                                    Comedy|Drama
## 6699                                                                   Drama|Romance
## 6700                                                     Action|Crime|Drama|Thriller
## 6701                                                                     Crime|Drama
## 6702                                                          Action|Adventure|Drama
## 6703                                                                     Documentary
## 6704                                                                           Drama
## 6705                                                                Mystery|Thriller
## 6706                                                                           Drama
## 6707                                                                           Drama
## 6708                                                                   Drama|Musical
## 6709                                                                  Comedy|Romance
## 6710                                                               Adventure|Fantasy
## 6711                                                                   Drama|Romance
## 6712                                                Action|Adventure|Sci-Fi|Thriller
## 6713                                                         Action|Mystery|Thriller
## 6714                                                               Adventure|Fantasy
## 6715                                                                       Drama|War
## 6716                                           Action|Adventure|Sci-Fi|Thriller|IMAX
## 6717                                                 Action|Adventure|Comedy|Fantasy
## 6718                                                             Crime|Drama|Mystery
## 6719                                                           Action|Crime|Thriller
## 6720                                            Crime|Drama|Mystery|Romance|Thriller
## 6721                                                                 Adventure|Drama
## 6722                                                                    Comedy|Drama
## 6723                                                  Action|Adventure|Drama|Fantasy
## 6724                                                                           Drama
## 6725                                                                           Drama
## 6726                                                                           Drama
## 6727                                                           Action|Drama|Thriller
## 6728                                                                       Drama|War
## 6729                                                                  Comedy|Romance
## 6730                                                                           Drama
## 6731                                                               Drama|Romance|War
## 6732                                                                    Comedy|Drama
## 6733                                                                     Crime|Drama
## 6734                                                             Crime|Drama|Romance
## 6735                                                               Action|Crime|IMAX
## 6736                                                          Drama|Romance|Thriller
## 6737                                                                    Comedy|Drama
## 6738                                       Action|Adventure|Crime|Drama|Thriller|War
## 6739                                                            Crime|Drama|Thriller
## 6740                                                          Action|Adventure|Drama
## 6741                                                         Action|Crime|Drama|IMAX
## 6742                                                                           Drama
## 6743                                     Adventure|Animation|Children|Romance|Sci-Fi
## 6744                                                                     Crime|Drama
## 6745                                                                           Drama
## 6746                                                                           Drama
## 6747                                                                     Crime|Drama
## 6748                                                                   Drama|Mystery
## 6749                                 Action|Crime|Drama|Mystery|Sci-Fi|Thriller|IMAX
## 6750                                                               Drama|Mystery|War
## 6751                                                                           Drama
## 6752                                                                           Drama
## 6753                                                                       Drama|War
## 6754                                                                           Drama
## 6755                                                                    Comedy|Drama
## 6756                                                                           Drama
## 6757                                                           Drama|Mystery|Romance
## 6758                                                                           Drama
## 6759                                                                 Adventure|Drama
## 6760                                                                   Drama|Romance
## 6761                                                                Animation|Sci-Fi
## 6762                                                    Action|Adventure|Sci-Fi|IMAX
## 6763                                                              Comedy|Crime|Drama
## 6764                                                           Drama|Mystery|Romance
## 6765                                                                    Comedy|Drama
## 6766                                                    Action|Adventure|Sci-Fi|IMAX
## 6767                                                                    Comedy|Drama
## 6768                                                          Adventure|Drama|Sci-Fi
## 6769                                                           Action|Crime|Thriller
## 6770                                                       Action|Adventure|Thriller
## 6771                                                                     Crime|Drama
## 6772                                                           Comedy|Crime|Thriller
## 6773                                             Crime|Drama|Horror|Mystery|Thriller
## 6774                                                                           Drama
## 6775                                                                Mystery|Thriller
## 6776                                                          Crime|Mystery|Thriller
## 6777                                                                          Comedy
## 6778                                                   Action|Comedy|Horror|Thriller
## 6779                                                                       Drama|War
## 6780                                                          Action|Sci-Fi|Thriller
## 6781                                                                Action|Drama|War
## 6782                                              Action|Comedy|Crime|Drama|Thriller
## 6783                                                            Adventure|Drama|IMAX
## 6784                                                   Action|Adventure|Comedy|Crime
## 6785                                                 Action|Adventure|Mystery|Sci-Fi
## 6786                                                                     Documentary
## 6787                                                           Action|Crime|Thriller
## 6788                                                            Action|Drama|Romance
## 6789                                                 Action|Adventure|Crime|Thriller
## 6790                                                                           Drama
## 6791                                                                          Horror
## 6792                                                                  Comedy|Romance
## 6793                                                          Fantasy|Horror|Mystery
## 6794                                      Action|Crime|Drama|Mystery|Sci-Fi|Thriller
## 6795                                                                          Horror
## 6796                                                                          Comedy
## 6797                                                                Adventure|Comedy
## 6798                                                                    Drama|Horror
## 6799                                                             Drama|Horror|Sci-Fi
## 6800                                                                    Drama|Horror
## 6801                                                           Action|Crime|Thriller
## 6802                                                     Action|Crime|Drama|Thriller
## 6803                                                     Comedy|Crime|Drama|Thriller
## 6804                                                           Action|Drama|Thriller
## 6805                                                         Action|Adventure|Sci-Fi
## 6806                                                                 Horror|Thriller
## 6807                                                             Action|Crime|Horror
## 6808                                                                   Horror|Sci-Fi
## 6809                                                                          Comedy
## 6810                                                          Action|Sci-Fi|Thriller
## 6811                                                                          Comedy
## 6812                                                   Action|Crime|Fantasy|Thriller
## 6813                                                   Drama|Horror|Mystery|Thriller
## 6814                                        Action|Adventure|Comedy|Romance|Thriller
## 6815                                                          Horror|Sci-Fi|Thriller
## 6816                                                       Action|Adventure|Thriller
## 6817                                                                        Thriller
## 6818                                                            Action|Drama|Western
## 6819                                                                  Crime|Thriller
## 6820                                     Adventure|Animation|Children|Comedy|Musical
## 6821                                                         Adventure|Drama|Western
## 6822                                                           Action|Crime|Thriller
## 6823                                                           Crime|Horror|Thriller
## 6824                                 Animation|Children|Fantasy|Musical|Romance|IMAX
## 6825                                                                  Fantasy|Horror
## 6826                                                            Action|Horror|Sci-Fi
## 6827                                               Action|Adventure|Mystery|Thriller
## 6828                                                                        Thriller
## 6829                                                                          Comedy
## 6830                                                                          Comedy
## 6831                                                          Crime|Mystery|Thriller
## 6832                                                         Action|Adventure|Sci-Fi
## 6833                                                        Adventure|Comedy|Fantasy
## 6834                                                         Action|Adventure|Sci-Fi
## 6835                                         Action|Adventure|Comedy|Fantasy|Romance
## 6836                                                                Action|Adventure
## 6837                                                     Action|Crime|Drama|Thriller
## 6838                                                                Mystery|Thriller
## 6839                                                               Adventure|Fantasy
## 6840                                                  Action|Adventure|Drama|Fantasy
## 6841                                                            Drama|Romance|Sci-Fi
## 6842                                                                   Comedy|Horror
## 6843                                      Action|Adventure|Animation|Children|Comedy
## 6844                                                               Action|Crime|IMAX
## 6845                                                   Comedy|Crime|Mystery|Thriller
## 6846                                                     Action|Sci-Fi|Thriller|IMAX
## 6847                                                            Crime|Drama|Thriller
## 6848                                          Action|Adventure|Drama|Sci-Fi|Thriller
## 6849                                                   Drama|Mystery|Sci-Fi|Thriller
## 6850                                                       Action|Adventure|Thriller
## 6851                                                     Action|Comedy|Crime|Mystery
## 6852                                                            Crime|Drama|Thriller
## 6853                                                                     Crime|Drama
## 6854                                                         Action|Crime|Drama|IMAX
## 6855                                                                Action|Drama|War
## 6856                                                   Drama|Mystery|Sci-Fi|Thriller
## 6857                                              Adventure|Animation|Children|Drama
## 6858                                                         Mystery|Sci-Fi|Thriller
## 6859                                                          Drama|Mystery|Thriller
## 6860                                 Action|Crime|Drama|Mystery|Sci-Fi|Thriller|IMAX
## 6861                                           Action|Comedy|Fantasy|Musical|Romance
## 6862                                                            Action|Drama|Western
## 6863                                                            Drama|Romance|Sci-Fi
## 6864                                                                     Sci-Fi|IMAX
## 6865                                                                  Drama|Thriller
## 6866                                                              Drama|Thriller|War
## 6867                                                Action|Adventure|Sci-Fi|Thriller
## 6868                                            Action|Adventure|Fantasy|Sci-Fi|IMAX
## 6869                                                  Action|Adventure|Comedy|Sci-Fi
## 6870                                                                           Drama
## 6871                                                          Adventure|Drama|Sci-Fi
## 6872                                                                        Thriller
## 6873                                      Action|Adventure|Animation|Children|Comedy
## 6874                                                      Adventure|Children|Fantasy
## 6875                                          Adventure|Drama|Fantasy|Mystery|Sci-Fi
## 6876                                                                Action|Drama|War
## 6877                                                                           Drama
## 6878                                                           Action|Crime|Thriller
## 6879                                                          Action|Sci-Fi|Thriller
## 6880                                                             Action|Crime|Sci-Fi
## 6881                                                                   Horror|Sci-Fi
## 6882                                                         Action|Adventure|Sci-Fi
## 6883                                                                           Drama
## 6884                                                                    Drama|Horror
## 6885                                                         Action|Adventure|Sci-Fi
## 6886                                                                  Children|Drama
## 6887                                                         Action|Adventure|Sci-Fi
## 6888                                                            Action|Comedy|Sci-Fi
## 6889                                                          Adventure|Drama|Sci-Fi
## 6890                                                                   Horror|Sci-Fi
## 6891                                                   Action|Crime|Fantasy|Thriller
## 6892                                                        Comedy|Drama|Romance|War
## 6893                                                         Action|Romance|Thriller
## 6894                                        Action|Adventure|Comedy|Romance|Thriller
## 6895                                                          Horror|Sci-Fi|Thriller
## 6896                                                                   Comedy|Sci-Fi
## 6897                                                         Action|Adventure|Sci-Fi
## 6898                                                                        Thriller
## 6899                                                          Action|Sci-Fi|Thriller
## 6900                                                           Action|Crime|Thriller
## 6901                                        Action|Adventure|Animation|Horror|Sci-Fi
## 6902                                               Action|Adventure|Mystery|Thriller
## 6903                                                         Adventure|Comedy|Sci-Fi
## 6904                                               Action|Adventure|Romance|Thriller
## 6905                                                          Action|Sci-Fi|Thriller
## 6906                                                Action|Adventure|Sci-Fi|Thriller
## 6907                                                Action|Adventure|Sci-Fi|Thriller
## 6908                                                                  Children|Drama
## 6909                                              Adventure|Children|Fantasy|Musical
## 6910                                                          Adventure|Drama|Sci-Fi
## 6911                                                              Adventure|Children
## 6912                                                   Action|Horror|Sci-Fi|Thriller
## 6913                                                 Children|Comedy|Fantasy|Musical
## 6914                                                                   Comedy|Sci-Fi
## 6915                                                           Children|Drama|Sci-Fi
## 6916                                                Action|Adventure|Sci-Fi|Thriller
## 6917                                                Action|Adventure|Sci-Fi|Thriller
## 6918                                                         Action|Adventure|Sci-Fi
## 6919                                                  Action|Adventure|Horror|Sci-Fi
## 6920                                                     Crime|Drama|Sci-Fi|Thriller
## 6921                                                         Action|Adventure|Sci-Fi
## 6922                                                                   Horror|Sci-Fi
## 6923                                                           Action|Comedy|Musical
## 6924                                                                       Drama|War
## 6925                                                          Action|Sci-Fi|Thriller
## 6926                                                         Adventure|Comedy|Sci-Fi
## 6927                                                                   Drama|Musical
## 6928                                                          Children|Drama|Fantasy
## 6929                                                   Action|Horror|Sci-Fi|Thriller
## 6930                                                                 Horror|Thriller
## 6931                                                Action|Adventure|Sci-Fi|Thriller
## 6932                                                                Adventure|Sci-Fi
## 6933                                                           Action|Mystery|Sci-Fi
## 6934                                                                   Action|Sci-Fi
## 6935                                                Action|Adventure|Sci-Fi|Thriller
## 6936                                                         Action|Adventure|Sci-Fi
## 6937                                                         Adventure|Comedy|Sci-Fi
## 6938                                                                           Drama
## 6939                                                  Action|Adventure|Comedy|Sci-Fi
## 6940                                                                           Drama
## 6941                                                       Action|Adventure|Thriller
## 6942                                                            Action|Comedy|Sci-Fi
## 6943                                                Action|Adventure|Sci-Fi|Thriller
## 6944                                                                   Action|Sci-Fi
## 6945                                                            Action|Horror|Sci-Fi
## 6946                                                                           Drama
## 6947                                                                          Comedy
## 6948                                             Adventure|Film-Noir|Sci-Fi|Thriller
## 6949                                                           Action|Comedy|Musical
## 6950                                                                 Sci-Fi|Thriller
## 6951                                                           Drama|Sci-Fi|Thriller
## 6952                                                                           Drama
## 6953                                                  Action|Romance|Sci-Fi|Thriller
## 6954                                                                   Comedy|Sci-Fi
## 6955                                                                  Horror|Mystery
## 6956                                                       Action|Comedy|Crime|Drama
## 6957                                                                   Comedy|Horror
## 6958                                                   Drama|Mystery|Sci-Fi|Thriller
## 6959                                                         Adventure|Comedy|Sci-Fi
## 6960                                                 Adventure|Comedy|Sci-Fi|Western
## 6961                                                                   Drama|Romance
## 6962                                                         Action|Adventure|Sci-Fi
## 6963                                                                    Drama|Sci-Fi
## 6964                                                                  Comedy|Fantasy
## 6965                                                  Horror|Mystery|Sci-Fi|Thriller
## 6966                                                                          Sci-Fi
## 6967                                                               Action|Sci-Fi|War
## 6968                                                           Horror|Mystery|Sci-Fi
## 6969                                                    Drama|Horror|Sci-Fi|Thriller
## 6970                                                                           Drama
## 6971                                                           Action|Drama|Thriller
## 6972                                                                           Drama
## 6973                                                         Action|Adventure|Sci-Fi
## 6974                                                             Action|Drama|Sci-Fi
## 6975                                                                   Action|Sci-Fi
## 6976                                                                   Action|Sci-Fi
## 6977                                                                   Action|Sci-Fi
## 6978                                                                           Drama
## 6979                                                          Horror|Sci-Fi|Thriller
## 6980                                                          Action|Sci-Fi|Thriller
## 6981                                                          Action|Sci-Fi|Thriller
## 6982                                                         Action|Adventure|Sci-Fi
## 6983                                                                   Action|Sci-Fi
## 6984                                                         Action|Adventure|Sci-Fi
## 6985                                                                   Drama|Romance
## 6986                                                           Comedy|Horror|Musical
## 6987                                                                   Action|Sci-Fi
## 6988                                                                   Drama|Romance
## 6989                                                                         Musical
## 6990                                                Action|Adventure|Sci-Fi|Thriller
## 6991                                                                          Comedy
## 6992                                                         Adventure|Drama|Romance
## 6993                                                                   Comedy|Sci-Fi
## 6994                                                            Drama|Romance|Sci-Fi
## 6995                                                         Adventure|Comedy|Sci-Fi
## 6996                                                                          Comedy
## 6997                                                          Horror|Sci-Fi|Thriller
## 6998                                                                          Sci-Fi
## 6999                                                          Adventure|Drama|Sci-Fi
## 7000                                                       Adventure|Fantasy|Romance
## 7001                                                                   Drama|Romance
## 7002                                                                   Action|Sci-Fi
## 7003                                                Action|Adventure|Sci-Fi|Thriller
## 7004                                                                   Action|Sci-Fi
## 7005                                                  Adventure|Drama|Romance|Sci-Fi
## 7006                                                         Action|Adventure|Sci-Fi
## 7007                                                Action|Adventure|Sci-Fi|Thriller
## 7008                                                         Action|Adventure|Sci-Fi
## 7009                                      Action|Adventure|Animation|Children|Sci-Fi
## 7010                                                         Action|Adventure|Sci-Fi
## 7011                                                                   Action|Sci-Fi
## 7012                                                           Drama|Horror|Thriller
## 7013                                                                   Drama|Musical
## 7014                                                                 Sci-Fi|Thriller
## 7015                                                          Action|Sci-Fi|Thriller
## 7016                                                                Children|Musical
## 7017                                                Action|Adventure|Children|Comedy
## 7018                             Adventure|Animation|Children|Comedy|Fantasy|Romance
## 7019                                                          Adventure|Drama|Sci-Fi
## 7020                                                          Action|Sci-Fi|Thriller
## 7021                                              Adventure|Animation|Fantasy|Sci-Fi
## 7022                                                          Action|Sci-Fi|Thriller
## 7023                                                           Drama|Sci-Fi|Thriller
## 7024                                                                          Comedy
## 7025                                                                   Action|Sci-Fi
## 7026                                          Comedy|Fantasy|Horror|Musical|Thriller
## 7027                                                                   Drama|Musical
## 7028                                                    Drama|Fantasy|Mystery|Sci-Fi
## 7029                                                                   Drama|Musical
## 7030                                                   Action|Horror|Sci-Fi|Thriller
## 7031                                                Action|Adventure|Sci-Fi|Thriller
## 7032                                            Action|Crime|Mystery|Sci-Fi|Thriller
## 7033                                                            Action|Comedy|Sci-Fi
## 7034                                                        Action|Adventure|Fantasy
## 7035                                                                   Action|Comedy
## 7036                                                                           Drama
## 7037                                                             Action|Drama|Sci-Fi
## 7038                                                     Adventure|Animation|Fantasy
## 7039                                                            Comedy|Drama|Musical
## 7040                                                         Fantasy|Musical|Romance
## 7041                                                            Drama|Romance|Sci-Fi
## 7042                                                          Action|Sci-Fi|Thriller
## 7043                                                                   Horror|Sci-Fi
## 7044                                                        Adventure|Comedy|Musical
## 7045                                                                    Action|Crime
## 7046                                                    Action|Drama|Sci-Fi|Thriller
## 7047                                                                  Mystery|Sci-Fi
## 7048                                       Adventure|Children|Comedy|Fantasy|Musical
## 7049                                                Action|Adventure|Sci-Fi|Thriller
## 7050                                           Action|Adventure|Sci-Fi|Thriller|IMAX
## 7051                                                                           Drama
## 7052                                                            Action|Horror|Sci-Fi
## 7053                                                         Action|Adventure|Sci-Fi
## 7054                                                           Action|Fantasy|Sci-Fi
## 7055                                                   Action|Adventure|Drama|Sci-Fi
## 7056                                                                    Drama|Sci-Fi
## 7057                                                               Adventure|Musical
## 7058                                                                  Comedy|Musical
## 7059                                           Action|Adventure|Sci-Fi|Thriller|IMAX
## 7060                                                                 Children|Comedy
## 7061                                                           Drama|Sci-Fi|Thriller
## 7062                                                  Horror|Mystery|Sci-Fi|Thriller
## 7063                                                                   Drama|Musical
## 7064                                               Action|Adventure|Children|Fantasy
## 7065                                                 Action|Adventure|Fantasy|Horror
## 7066                                                                  Fantasy|Sci-Fi
## 7067                                                                   Action|Sci-Fi
## 7068                                                          Action|Sci-Fi|Thriller
## 7069                                                                           Drama
## 7070                                                  Action|Adventure|Comedy|Sci-Fi
## 7071                                                Action|Adventure|Sci-Fi|Thriller
## 7072                                                   Action|Horror|Sci-Fi|Thriller
## 7073                                                                Action|Drama|War
## 7074                                                           Action|Crime|Thriller
## 7075                                                         Action|Adventure|Sci-Fi
## 7076                                                     Comedy|Crime|Drama|Thriller
## 7077                                                                     Crime|Drama
## 7078                                                     Action|Crime|Drama|Thriller
## 7079                                                        Comedy|Drama|Romance|War
## 7080                                        Action|Adventure|Comedy|Romance|Thriller
## 7081                                                                        Thriller
## 7082                                                Action|Adventure|Sci-Fi|Thriller
## 7083                                                                           Drama
## 7084                                                                       Drama|War
## 7085                                     Adventure|Animation|Children|Comedy|Musical
## 7086                                                                   Action|Sci-Fi
## 7087                                               Action|Adventure|Mystery|Thriller
## 7088                                                       Action|Adventure|Thriller
## 7089                                                Action|Adventure|Sci-Fi|Thriller
## 7090                                                           Action|Crime|Thriller
## 7091                                                           Children|Drama|Sci-Fi
## 7092                                                         Action|Adventure|Sci-Fi
## 7093                                                                Action|Adventure
## 7094                                                  Action|Adventure|Horror|Sci-Fi
## 7095                                                         Action|Adventure|Sci-Fi
## 7096                                                                Action|Adventure
## 7097                                                   Action|Horror|Sci-Fi|Thriller
## 7098                                                       Action|Adventure|Thriller
## 7099                                                  Action|Adventure|Comedy|Sci-Fi
## 7100                                                     Action|Crime|Drama|Thriller
## 7101                                                                   Drama|Romance
## 7102                                                                   Drama|Romance
## 7103                                                                Action|Drama|War
## 7104                                                          Action|Sci-Fi|Thriller
## 7105                                                Action|Adventure|Sci-Fi|Thriller
## 7106                                              Action|Crime|Drama|Sci-Fi|Thriller
## 7107                                                         Action|Adventure|Sci-Fi
## 7108                                                            Action|Drama|Romance
## 7109                                     Adventure|Animation|Children|Comedy|Fantasy
## 7110                                                               Adventure|Fantasy
## 7111                                                Action|Adventure|Sci-Fi|Thriller
## 7112                                                               Adventure|Fantasy
## 7113                                                  Action|Adventure|Drama|Fantasy
## 7114                                                                Action|Drama|War
## 7115                                                    Action|Adventure|Sci-Fi|IMAX
## 7116                                      Action|Adventure|Animation|Children|Comedy
## 7117                                                               Action|Crime|IMAX
## 7118                                                 Adventure|Fantasy|Thriller|IMAX
## 7119                                                     Action|Sci-Fi|Thriller|IMAX
## 7120                                                          Drama|Fantasy|Thriller
## 7121                                                            Crime|Drama|Thriller
## 7122                                                         Action|Crime|Drama|IMAX
## 7123                                                         Action|Adventure|Sci-Fi
## 7124                                                             Crime|Drama|Romance
## 7125                                                    Action|Adventure|Sci-Fi|IMAX
## 7126                                          Adventure|Fantasy|Mystery|Romance|IMAX
## 7127                                                         Mystery|Sci-Fi|Thriller
## 7128                                                   Action|Crime|Mystery|Thriller
## 7129                                                          Drama|Mystery|Thriller
## 7130                                       Adventure|Animation|Children|Fantasy|IMAX
## 7131                                 Action|Crime|Drama|Mystery|Sci-Fi|Thriller|IMAX
## 7132                                            Action|Adventure|Sci-Fi|Thriller|War
## 7133                                                    Action|Adventure|Sci-Fi|IMAX
## 7134                                                     Action|Adventure|Crime|IMAX
## 7135                                                          Adventure|Fantasy|IMAX
## 7136                                                          Adventure|Fantasy|IMAX
## 7137                                                              Comedy|Crime|Drama
## 7138                                                                     Sci-Fi|IMAX
## 7139                                                              Action|Sci-Fi|IMAX
## 7140                                                         Action|Adventure|Sci-Fi
## 7141                                            Action|Adventure|Fantasy|Sci-Fi|IMAX
## 7142                               Adventure|Animation|Children|Comedy|Drama|Fantasy
## 7143                                     Adventure|Animation|Children|Comedy|Fantasy
## 7144                                                                  Children|Drama
## 7145                                                                  Comedy|Romance
## 7146                                                   Action|Comedy|Horror|Thriller
## 7147                                                                          Comedy
## 7148                                                                Action|Drama|War
## 7149                                                                          Comedy
## 7150                                                                          Comedy
## 7151                                                                Adventure|Comedy
## 7152                                                                  Comedy|Romance
## 7153                                                        Comedy|Drama|Romance|War
## 7154                                                Action|Adventure|Sci-Fi|Thriller
## 7155                                                                    Comedy|Drama
## 7156                                                                           Drama
## 7157                                                                       Drama|War
## 7158                                                                          Comedy
## 7159                                     Adventure|Animation|Children|Comedy|Musical
## 7160                                                                   Action|Sci-Fi
## 7161                                                     Comedy|Crime|Drama|Thriller
## 7162                                                         Children|Comedy|Fantasy
## 7163                                                            Comedy|Drama|Romance
## 7164                                                                 Musical|Romance
## 7165                                                         Action|Adventure|Sci-Fi
## 7166                                                          Comedy|Musical|Romance
## 7167                                                            Comedy|Drama|Romance
## 7168                                                                    Comedy|Drama
## 7169                                                                          Comedy
## 7170                                                         Action|Adventure|Comedy
## 7171                                                Action|Adventure|Sci-Fi|Thriller
## 7172                                                                  Comedy|Romance
## 7173                                                            Action|Comedy|Sci-Fi
## 7174                                                                          Comedy
## 7175                                                                           Drama
## 7176                                                   Action|Adventure|Drama|Sci-Fi
## 7177                                                                  Comedy|Romance
## 7178                                                       Adventure|Children|Comedy
## 7179                                                                  Comedy|Romance
## 7180                                                            Comedy|Drama|Romance
## 7181                                                            Comedy|Drama|Romance
## 7182                       Adventure|Animation|Children|Comedy|Drama|Musical|Romance
## 7183                                                                    Comedy|Drama
## 7184                                                                    Comedy|Drama
## 7185                                                                  Horror|Mystery
## 7186                                                       Action|Comedy|Crime|Drama
## 7187                                                                   Comedy|Horror
## 7188                                                                   Comedy|Horror
## 7189                                        Adventure|Children|Comedy|Fantasy|Sci-Fi
## 7190                                       Animation|Children|Comedy|Musical|Romance
## 7191                                                                 Children|Comedy
## 7192                                                                          Comedy
## 7193                                                                  Comedy|Romance
## 7194                                                                Adventure|Comedy
## 7195                                                           Drama|Horror|Thriller
## 7196                                                           Drama|Fantasy|Romance
## 7197                                                            Comedy|Drama|Fantasy
## 7198                                             Adventure|Animation|Children|Comedy
## 7199                                                        Adventure|Children|Drama
## 7200                                                                          Comedy
## 7201                                                                    Comedy|Drama
## 7202                                                            Comedy|Drama|Romance
## 7203                                                                    Comedy|Drama
## 7204                                                           Horror|Mystery|Sci-Fi
## 7205                                                    Drama|Horror|Sci-Fi|Thriller
## 7206                                                                  Comedy|Romance
## 7207                                                                          Comedy
## 7208                                                                  Comedy|Fantasy
## 7209                                                                  Comedy|Romance
## 7210                                                         Action|Adventure|Comedy
## 7211                                                    Crime|Drama|Mystery|Thriller
## 7212                                                                  Comedy|Romance
## 7213                                                        Animation|Comedy|Musical
## 7214                                                                  Comedy|Romance
## 7215                                                           Action|Comedy|Fantasy
## 7216                                                                          Comedy
## 7217                                                                          Comedy
## 7218                                                                 Children|Comedy
## 7219                                                                          Comedy
## 7220                                                                   Drama|Romance
## 7221                                                         Action|Adventure|Comedy
## 7222                                                                  Comedy|Romance
## 7223                                                            Comedy|Drama|Fantasy
## 7224                                                                        Thriller
## 7225                                                        Adventure|Comedy|Fantasy
## 7226                                     Adventure|Animation|Children|Comedy|Fantasy
## 7227                                                            Drama|Romance|Sci-Fi
## 7228                                                                           Drama
## 7229                                                                           Drama
## 7230                                                                  Children|Drama
## 7231                                                                    Comedy|Crime
## 7232                                                                          Comedy
## 7233                                                                    Comedy|Drama
## 7234                                                                          Comedy
## 7235                                                                    Comedy|Crime
## 7236                                                                  Drama|Thriller
## 7237                                                                          Comedy
## 7238                                                            Comedy|Drama|Romance
## 7239                                                                  Drama|Thriller
## 7240                                                                  Comedy|Romance
## 7241                                                                          Comedy
## 7242                                                   Crime|Horror|Mystery|Thriller
## 7243                                                             Action|Thriller|War
## 7244                                                 Action|Adventure|Comedy|Western
## 7245                                                                          Comedy
## 7246                                                                Action|Drama|War
## 7247                                                                          Comedy
## 7248                                                     Action|Comedy|Crime|Romance
## 7249                                                                          Comedy
## 7250                                                                          Horror
## 7251                                                                          Comedy
## 7252                                                                           Drama
## 7253                                     Adventure|Animation|Children|Comedy|Fantasy
## 7254                                                                  Comedy|Romance
## 7255                                                                          Comedy
## 7256                                                           Action|Crime|Thriller
## 7257                                                                   Drama|Romance
## 7258                                                                   Drama|Romance
## 7259                                                         Mystery|Sci-Fi|Thriller
## 7260                                                                           Drama
## 7261                                                       Action|Adventure|Thriller
## 7262                                                                          Comedy
## 7263                                                                          Comedy
## 7264                                                                          Comedy
## 7265                                                         Action|Adventure|Sci-Fi
## 7266                                                       Action|Adventure|Thriller
## 7267                                                    Crime|Drama|Mystery|Thriller
## 7268                                                                          Comedy
## 7269                                               Action|Adventure|Mystery|Thriller
## 7270                                                       Action|Adventure|Thriller
## 7271                                               Action|Adventure|Romance|Thriller
## 7272                                                Action|Adventure|Sci-Fi|Thriller
## 7273                                                           Action|Drama|Thriller
## 7274                                                   Comedy|Fantasy|Romance|Sci-Fi
## 7275                                                                   Drama|Romance
## 7276                                                                  Drama|Thriller
## 7277                                                           Action|Drama|Thriller
## 7278                                                                          Comedy
## 7279                                                          Comedy|Musical|Romance
## 7280                                                  Drama|Mystery|Romance|Thriller
## 7281                                                                  Fantasy|Sci-Fi
## 7282                                                                 Horror|Thriller
## 7283                                                            Comedy|Drama|Romance
## 7284                                                                           Drama
## 7285                                             Adventure|Film-Noir|Sci-Fi|Thriller
## 7286                                                                  Comedy|Romance
## 7287                                                                    Action|Crime
## 7288                                                                   Comedy|Horror
## 7289                                                        Adventure|Comedy|Fantasy
## 7290                                                                           Drama
## 7291                                                            Comedy|Drama|Romance
## 7292                                                                Action|Drama|War
## 7293                                                                  Drama|Thriller
## 7294                                                            Comedy|Drama|Romance
## 7295                                                                   Drama|Romance
## 7296                                                                   Drama|Romance
## 7297                                                                   Drama|Fantasy
## 7298                                                                     Crime|Drama
## 7299                                                                       Drama|War
## 7300                                                         Children|Comedy|Fantasy
## 7301                                                   Drama|Fantasy|Horror|Thriller
## 7302                                                         Adventure|Comedy|Sci-Fi
## 7303                                                                 Children|Comedy
## 7304                                                           Action|Drama|Thriller
## 7305                                                                 Children|Comedy
## 7306                                                                   Comedy|Sci-Fi
## 7307                                                                Action|Adventure
## 7308                                                                    Comedy|Crime
## 7309                                                                    Comedy|Crime
## 7310                                                                    Comedy|Crime
## 7311                                                                    Comedy|Drama
## 7312                                                                          Comedy
## 7313                                                                           Drama
## 7314                                                                  Crime|Thriller
## 7315                                                                 Children|Comedy
## 7316                                                         Children|Comedy|Fantasy
## 7317                                                                    Comedy|Crime
## 7318                                                     Action|Comedy|Crime|Romance
## 7319                                                               Adventure|Fantasy
## 7320                                                               Adventure|Fantasy
## 7321                                                    Action|Comedy|Crime|Thriller
## 7322                                                  Action|Adventure|Drama|Fantasy
## 7323                                                                    Comedy|Crime
## 7324                                         Action|Adventure|Drama|Mystery|Thriller
## 7325                                             Adventure|Animation|Children|Comedy
## 7326                                                               Action|Crime|IMAX
## 7327                                       Action|Adventure|Crime|Drama|Thriller|War
## 7328                                                        Animation|Children|Drama
## 7329                                                         Action|Crime|Drama|IMAX
## 7330                                                                   Drama|Romance
## 7331                                 Action|Crime|Drama|Mystery|Sci-Fi|Thriller|IMAX
## 7332                                                                           Drama
## 7333                                                   Action|Adventure|Fantasy|IMAX
## 7334                                     Action|Adventure|Drama|Fantasy|Mystery|IMAX
## 7335                                                    Action|Adventure|Sci-Fi|IMAX
## 7336                                                     Action|Adventure|Crime|IMAX
## 7337                                                         Action|Animation|Sci-Fi
## 7338                                     Adventure|Animation|Children|Comedy|Fantasy
## 7339                                                      Adventure|Children|Fantasy
## 7340                                                       Action|Adventure|Thriller
## 7341                                                         Mystery|Sci-Fi|Thriller
## 7342                                                                  Comedy|Romance
## 7343                                                          Crime|Mystery|Thriller
## 7344                                                       Action|Adventure|Thriller
## 7345                                                                Action|Drama|War
## 7346                                                            Adventure|Drama|IMAX
## 7347                                                   Action|Adventure|Comedy|Crime
## 7348                                                 Action|Adventure|Mystery|Sci-Fi
## 7349                                                              Drama|Thriller|War
## 7350                                                           Action|Crime|Thriller
## 7351                                                             Action|Crime|Sci-Fi
## 7352                                                         Action|Adventure|Sci-Fi
## 7353                                                                Adventure|Comedy
## 7354                                                           Action|Comedy|Romance
## 7355                                                                    Drama|Horror
## 7356                                                       Drama|Romance|War|Western
## 7357                                                           Action|Crime|Thriller
## 7358                                                    Action|Drama|Sci-Fi|Thriller
## 7359                                                     Comedy|Crime|Drama|Thriller
## 7360                                                                           Drama
## 7361                                                           Action|Drama|Thriller
## 7362                                                         Action|Adventure|Sci-Fi
## 7363                                                          Adventure|Drama|Sci-Fi
## 7364                                                                          Comedy
## 7365                                                     Action|Crime|Drama|Thriller
## 7366                                        Action|Adventure|Comedy|Romance|Thriller
## 7367                                                         Children|Comedy|Fantasy
## 7368                                                    Action|Comedy|Crime|Thriller
## 7369                                                       Action|Adventure|Thriller
## 7370                                                         Action|Adventure|Sci-Fi
## 7371                                                                        Thriller
## 7372                                     Adventure|Animation|Children|Comedy|Musical
## 7373                                                           Action|Crime|Thriller
## 7374                                                           Crime|Horror|Thriller
## 7375                                 Animation|Children|Fantasy|Musical|Romance|IMAX
## 7376                                     Adventure|Animation|Children|Comedy|Fantasy
## 7377                                                      Adventure|Children|Fantasy
## 7378                                                                  Children|Drama
## 7379                                                                Action|Drama|War
## 7380                                                            Crime|Drama|Thriller
## 7381                                                              Adventure|Children
## 7382                                                          Action|Romance|Western
## 7383                                                                          Comedy
## 7384                                                                Adventure|Comedy
## 7385                                                           Action|Crime|Thriller
## 7386                                                     Action|Crime|Drama|Thriller
## 7387                                                     Comedy|Crime|Drama|Thriller
## 7388                                                                          Comedy
## 7389                                                        Comedy|Drama|Romance|War
## 7390                                 Adventure|Animation|Children|Drama|Musical|IMAX
## 7391                                                     Action|Comedy|Crime|Fantasy
## 7392                                                Action|Adventure|Sci-Fi|Thriller
## 7393                                                                           Drama
## 7394                                                                       Drama|War
## 7395                                                          Action|Sci-Fi|Thriller
## 7396                                                                    Comedy|Drama
## 7397                                                           Crime|Horror|Thriller
## 7398                                 Animation|Children|Fantasy|Musical|Romance|IMAX
## 7399                                               Action|Adventure|Mystery|Thriller
## 7400                              Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi
## 7401                                                                Animation|Sci-Fi
## 7402                                                              Comedy|Crime|Drama
## 7403                                                                 Comedy|Thriller
## 7404                                                                     Crime|Drama
## 7405                                                          Adventure|Drama|Sci-Fi
## 7406                                                           Children|Drama|Sci-Fi
## 7407                                                Action|Adventure|Sci-Fi|Thriller
## 7408                                                 Animation|Children|Comedy|Crime
## 7409                                                            Comedy|Drama|Romance
## 7410                                                                           Drama
## 7411                                                     Crime|Drama|Sci-Fi|Thriller
## 7412                                                                   Horror|Sci-Fi
## 7413                                                                       Drama|War
## 7414                                                          Action|Sci-Fi|Thriller
## 7415                                                                          Horror
## 7416                                                         Adventure|Comedy|Sci-Fi
## 7417                                               Action|Adventure|Animation|Sci-Fi
## 7418                                                                           Drama
## 7419                                                  Comedy|Horror|Mystery|Thriller
## 7420                                                                          Comedy
## 7421                                                       Action|Adventure|Thriller
## 7422                                                  Action|Adventure|Comedy|Sci-Fi
## 7423                                                Action|Adventure|Sci-Fi|Thriller
## 7424                                                            Action|Comedy|Sci-Fi
## 7425                                                Action|Adventure|Sci-Fi|Thriller
## 7426                                                                   Action|Sci-Fi
## 7427                                                             Comedy|Drama|Sci-Fi
## 7428                                                                   Drama|Romance
## 7429                                                                    Comedy|Crime
## 7430                                                            Comedy|Drama|Romance
## 7431                                                          Action|Sci-Fi|Thriller
## 7432                                                          Adventure|Comedy|Drama
## 7433                                                  Action|Romance|Sci-Fi|Thriller
## 7434                                                           Drama|Sci-Fi|Thriller
## 7435                                                                  Comedy|Romance
## 7436                                                                  Horror|Mystery
## 7437                                                           Action|Comedy|Romance
## 7438                                                          Action|Horror|Thriller
## 7439                                                  Horror|Mystery|Sci-Fi|Thriller
## 7440                                                   Action|Horror|Sci-Fi|Thriller
## 7441                                                           Drama|Fantasy|Romance
## 7442                                     Adventure|Animation|Children|Comedy|Fantasy
## 7443                                                                    Comedy|Drama
## 7444                                                        Comedy|Drama|Romance|War
## 7445                                                                     Crime|Drama
## 7446                                             Adventure|Animation|Children|Comedy
## 7447                                                    Drama|Horror|Sci-Fi|Thriller
## 7448                                                           Comedy|Crime|Thriller
## 7449                                                          Action|Sci-Fi|Thriller
## 7450                                 Action|Adventure|Comedy|Fantasy|Horror|Thriller
## 7451                                                                    Action|Crime
## 7452                                                        Animation|Comedy|Musical
## 7453                                                                  Comedy|Romance
## 7454                                                           Drama|Horror|Thriller
## 7455                                                   Action|Horror|Sci-Fi|Thriller
## 7456                                                            Drama|Horror|Mystery
## 7457                                                                  Drama|Thriller
## 7458                                                     Action|Crime|Drama|Thriller
## 7459                       Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery
## 7460                                                            Comedy|Drama|Fantasy
## 7461                                        Action|Adventure|Animation|Drama|Fantasy
## 7462                                     Adventure|Animation|Children|Comedy|Fantasy
## 7463                                                                     Crime|Drama
## 7464                                                          Action|Sci-Fi|Thriller
## 7465                                                          Action|Adventure|Drama
## 7466                                                                     Documentary
## 7467                                                                    Action|Crime
## 7468                                      Action|Adventure|Animation|Children|Sci-Fi
## 7469                                                       Animation|Children|Comedy
## 7470                                                         Action|Adventure|Sci-Fi
## 7471                                                                           Drama
## 7472                                                                          Comedy
## 7473                                                           Comedy|Crime|Thriller
## 7474                                     Adventure|Animation|Children|Comedy|Fantasy
## 7475                                                                           Drama
## 7476                                                                Mystery|Thriller
## 7477                                                Action|Adventure|Comedy|Thriller
## 7478                             Adventure|Animation|Children|Comedy|Fantasy|Romance
## 7479                                                           Action|Crime|Thriller
## 7480                                              Adventure|Animation|Fantasy|Sci-Fi
## 7481                                                   Drama|Horror|Mystery|Thriller
## 7482                                                   Drama|Mystery|Sci-Fi|Thriller
## 7483                                     Adventure|Animation|Children|Comedy|Fantasy
## 7484                                               Drama|Fantasy|Horror|Thriller|War
## 7485                                                                  Comedy|Romance
## 7486                                                 Mystery|Romance|Sci-Fi|Thriller
## 7487                                                               Adventure|Fantasy
## 7488                                                                   Drama|Romance
## 7489                                                                Action|Drama|War
## 7490                                                 Animation|Fantasy|Horror|Sci-Fi
## 7491                                             Adventure|Animation|Children|Comedy
## 7492                                                                   Drama|Romance
## 7493                                                Action|Adventure|Sci-Fi|Thriller
## 7494                                                            Action|Comedy|Sci-Fi
## 7495                                                          Horror|Sci-Fi|Thriller
## 7496                                                           Drama|Horror|Thriller
## 7497                                                     Adventure|Animation|Fantasy
## 7498                                                                     Documentary
## 7499                                                         Horror|Mystery|Thriller
## 7500                                                             Animation|Drama|War
## 7501                                                            Comedy|Drama|Romance
## 7502                                                          Action|Sci-Fi|Thriller
## 7503                                                               Adventure|Fantasy
## 7504                                                Animation|Children|Drama|Fantasy
## 7505                                                                       Drama|War
## 7506                                           Action|Adventure|Crime|Drama|Thriller
## 7507                                                    Crime|Drama|Mystery|Thriller
## 7508                                                              Comedy|Crime|Drama
## 7509                                                         Horror|Mystery|Thriller
## 7510                                                Action|Animation|Sci-Fi|Thriller
## 7511                                                                     Crime|Drama
## 7512                              Action|Adventure|Animation|Children|Fantasy|Sci-Fi
## 7513                                           Action|Adventure|Sci-Fi|Thriller|IMAX
## 7514                                                    Comedy|Drama|Fantasy|Romance
## 7515                                             Adventure|Animation|Children|Comedy
## 7516                                                 Action|Adventure|Comedy|Fantasy
## 7517                                                            Comedy|Drama|Romance
## 7518                                              Action|Adventure|Animation|Fantasy
## 7519                                                                           Drama
## 7520                                           Action|Adventure|Sci-Fi|Thriller|IMAX
## 7521                                            Crime|Drama|Mystery|Romance|Thriller
## 7522                                        Adventure|Animation|Drama|Fantasy|Sci-Fi
## 7523                                                           Drama|Fantasy|Romance
## 7524                                                  Action|Adventure|Drama|Fantasy
## 7525                                       Action|Comedy|Crime|Drama|Horror|Thriller
## 7526                                                           Drama|Sci-Fi|Thriller
## 7527                                                           Adventure|Documentary
## 7528                                                    Action|Drama|Horror|Thriller
## 7529                                                            Drama|Romance|Sci-Fi
## 7530                                                 Action|Adventure|Fantasy|Horror
## 7531                                                          Drama|Mystery|Thriller
## 7532                                                   Drama|Horror|Mystery|Thriller
## 7533                                                                    Action|Drama
## 7534                                                      Animation|Fantasy|Thriller
## 7535                             Adventure|Animation|Children|Comedy|Musical|Romance
## 7536                                                                          Comedy
## 7537                                                                 Documentary|War
## 7538                                                    Action|Adventure|Sci-Fi|IMAX
## 7539                                                                     Crime|Drama
## 7540                                                            Comedy|Drama|Romance
## 7541                                                                Adventure|Comedy
## 7542                                                                   Comedy|Horror
## 7543                                                                          Horror
## 7544                                                       Animation|Children|Comedy
## 7545                                                          Drama|Mystery|Thriller
## 7546                                                         Horror|Mystery|Thriller
## 7547                                      Action|Adventure|Animation|Children|Comedy
## 7548                                       Adventure|Animation|Children|Fantasy|IMAX
## 7549                                      Adventure|Animation|Children|Drama|Fantasy
## 7550                                      Adventure|Animation|Comedy|Fantasy|Romance
## 7551                                           Action|Animation|Drama|Fantasy|Sci-Fi
## 7552                                                                  Comedy|Romance
## 7553                                                   Action|Animation|Drama|Sci-Fi
## 7554                                                                     Documentary
## 7555                                                                   Drama|Romance
## 7556                                            Adventure|Animation|Children|Fantasy
## 7557                                                                Mystery|Thriller
## 7558                                      Adventure|Animation|Fantasy|Musical|Sci-Fi
## 7559                                                                 Action|Thriller
## 7560                                                                  Drama|Thriller
## 7561                                                                     Documentary
## 7562                                                                     Documentary
## 7563                                                                     Documentary
## 7564                                          Adventure|Children|Comedy|Fantasy|IMAX
## 7565                                                                          Comedy
## 7566                                                                       Drama|War
## 7567                                                                           Drama
## 7568                                             Adventure|Animation|Fantasy|Romance
## 7569                                                                   Action|Comedy
## 7570                         Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi|IMAX
## 7571                                               Animation|Fantasy|Sci-Fi|Thriller
## 7572                                                          Animation|Comedy|Drama
## 7573                                         Action|Crime|Film-Noir|Mystery|Thriller
## 7574                                                                     Documentary
## 7575                                                                     Crime|Drama
## 7576                                             Adventure|Animation|Children|Comedy
## 7577                                                 Action|Adventure|Comedy|Romance
## 7578                                                             Action|Crime|Horror
## 7579                                                         Action|Adventure|Sci-Fi
## 7580                                                          Drama|Mystery|Thriller
## 7581                                                                    Comedy|Drama
## 7582                                        Animation|Comedy|Fantasy|Musical|Romance
## 7583                                       Action|Adventure|Animation|Fantasy|Sci-Fi
## 7584                                             Adventure|Animation|Children|Comedy
## 7585                                                                   Drama|Romance
## 7586                                         Action|Adventure|Drama|Fantasy|Thriller
## 7587                                                            Comedy|Drama|Romance
## 7588                                                                          Horror
## 7589                                             Adventure|Animation|Children|Comedy
## 7590                                                     Action|Sci-Fi|Thriller|IMAX
## 7591                                                           Drama|Horror|Thriller
## 7592                                                          Drama|Romance|Thriller
## 7593                                                                     Documentary
## 7594                                                            Comedy|Horror|Sci-Fi
## 7595                                                                  Drama|Thriller
## 7596                                             Adventure|Animation|Children|Comedy
## 7597                                                       Animation|Children|Comedy
## 7598                                                                    Comedy|Drama
## 7599                                                                     Documentary
## 7600                                                          Adventure|Comedy|Drama
## 7601                                              Animation|Children|Fantasy|Mystery
## 7602                                                    Comedy|Drama|Fantasy|Romance
## 7603                                                                           Drama
## 7604                                Adventure|Animation|Children|Comedy|Fantasy|IMAX
## 7605                               Adventure|Animation|Comedy|Fantasy|Romance|Sci-Fi
## 7606                                                   Drama|Fantasy|Mystery|Romance
## 7607                                                               Documentary|Drama
## 7608                                                           Drama|Fantasy|Romance
## 7609                                                    Comedy|Drama|Fantasy|Romance
## 7610                                                                          Comedy
## 7611                                                          Drama|Fantasy|Thriller
## 7612                                        Adventure|Animation|Children|Comedy|IMAX
## 7613                                          Action|Adventure|Drama|Sci-Fi|Thriller
## 7614                                                   Drama|Mystery|Sci-Fi|Thriller
## 7615                                                                Animation|Comedy
## 7616                                                            Crime|Drama|Thriller
## 7617                                                          Action|Sci-Fi|Thriller
## 7618                                                                    Comedy|Drama
## 7619                                                      Adventure|Children|Fantasy
## 7620                                                        Animation|Children|Drama
## 7621                                                     Action|Comedy|Crime|Mystery
## 7622                                                            Crime|Drama|Thriller
## 7623                                                         Action|Fantasy|War|IMAX
## 7624                                             Action|Crime|Horror|Sci-Fi|Thriller
## 7625                               Action|Adventure|Animation|Children|Comedy|Sci-Fi
## 7626                                                      Action|Adventure|Drama|War
## 7627                                                 Adventure|Drama|Sci-Fi|Thriller
## 7628                                                                  Drama|Thriller
## 7629                                           Action|Adventure|Sci-Fi|Thriller|IMAX
## 7630                                     Adventure|Animation|Children|Comedy|Fantasy
## 7631                                                                          Horror
## 7632                                                       Animation|Children|Comedy
## 7633                                          Action|Adventure|Crime|Horror|Thriller
## 7634                                                                     Documentary
## 7635                                                               Documentary|Drama
## 7636                                                     Action|Sci-Fi|Thriller|IMAX
## 7637                                                                Animation|Comedy
## 7638                                                                          Comedy
## 7639                                                            Action|Horror|Sci-Fi
## 7640                                                          Action|Adventure|Drama
## 7641                                                                    Comedy|Drama
## 7642                                                                 Animation|Drama
## 7643                                                                           Drama
## 7644                                                                Animation|Comedy
## 7645                                                                           Drama
## 7646                                                                    Drama|Sci-Fi
## 7647                                         Action|Adventure|Animation|Fantasy|IMAX
## 7648                                                    Comedy|Drama|Horror|Thriller
## 7649                                                                           Drama
## 7650                                                                   Horror|Sci-Fi
## 7651                                              Action|Horror|Sci-Fi|Thriller|IMAX
## 7652                                                   Drama|Horror|Mystery|Thriller
## 7653                                                            Comedy|Drama|Romance
## 7654                                                                           Drama
## 7655                                                   Drama|Horror|Musical|Thriller
## 7656                                                                   Drama|Western
## 7657                                                            Comedy|Drama|Romance
## 7658                                                           Drama|Horror|Thriller
## 7659                                                  Action|Mystery|Sci-Fi|Thriller
## 7660                                                            Comedy|Drama|Romance
## 7661                                           Animation|Comedy|Drama|Romance|Sci-Fi
## 7662                                                 Action|Adventure|Fantasy|Sci-Fi
## 7663                                                     Comedy|Crime|Drama|Thriller
## 7664                                                                    Comedy|Drama
## 7665                                             Adventure|Animation|Children|Comedy
## 7666                                                          Comedy|Fantasy|Romance
## 7667                                                                           Drama
## 7668                                                         Action|Crime|Drama|IMAX
## 7669                                                                    Comedy|Drama
## 7670                                                           Children|Comedy|Drama
## 7671                                                         Action|Adventure|Sci-Fi
## 7672                                                         Adventure|Drama|Fantasy
## 7673                                                                     Documentary
## 7674                                           Action|Animation|Children|Comedy|IMAX
## 7675                                     Adventure|Animation|Children|Romance|Sci-Fi
## 7676                                                                   Action|Comedy
## 7677                                          Action|Animation|Comedy|Romance|Sci-Fi
## 7678                                                                     Documentary
## 7679                                       Action|Drama|Mystery|Sci-Fi|Thriller|IMAX
## 7680                                                                     Documentary
## 7681                                                    Drama|Fantasy|Horror|Romance
## 7682                                                              Comedy|Crime|Drama
## 7683                                                                          Horror
## 7684                                                                     Crime|Drama
## 7685                                Action|Adventure|Animation|Comedy|Fantasy|Sci-Fi
## 7686                                 Action|Adventure|Animation|Children|Comedy|IMAX
## 7687                                                             Crime|Drama|Romance
## 7688                                                                          Comedy
## 7689                                                                           Drama
## 7690                                      Action|Adventure|Animation|Children|Comedy
## 7691                                                                   Drama|Mystery
## 7692                                                                           Drama
## 7693                                                   Drama|Fantasy|Mystery|Romance
## 7694                                                                          Comedy
## 7695                                                              Drama|Thriller|War
## 7696                                                         Animation|Drama|Romance
## 7697                                                                           Drama
## 7698                                            Adventure|Animation|Children|Fantasy
## 7699                                                                Action|Drama|War
## 7700                                                      Animation|Fantasy|Thriller
## 7701                                                                           Drama
## 7702                                            Action|Drama|Mystery|Sci-Fi|Thriller
## 7703                                                    Crime|Drama|Mystery|Thriller
## 7704                                                           Animation|Sci-Fi|IMAX
## 7705                                                                    Comedy|Drama
## 7706                                                                Action|Drama|War
## 7707                                                   Drama|Mystery|Sci-Fi|Thriller
## 7708                                                    Action|Adventure|Sci-Fi|IMAX
## 7709                                                 Action|Animation|Mystery|Sci-Fi
## 7710                                              Adventure|Animation|Children|Drama
## 7711                                                                    Comedy|Crime
## 7712                                                    Action|Adventure|Sci-Fi|IMAX
## 7713                              Action|Adventure|Animation|Children|Comedy|Romance
## 7714                                                                           Drama
## 7715                                                            Comedy|Drama|Romance
## 7716                                                   Drama|Horror|Mystery|Thriller
## 7717                                                         Mystery|Sci-Fi|Thriller
## 7718                                                         Action|Animation|Sci-Fi
## 7719                                                                   Drama|Romance
## 7720                                            Crime|Drama|Mystery|Romance|Thriller
## 7721                                                      Adventure|Animation|Sci-Fi
## 7722                                                 Animation|Children|Fantasy|IMAX
## 7723                                                                     Documentary
## 7724                                                                 Horror|Thriller
## 7725                                                                     Documentary
## 7726                                                           Action|Fantasy|Sci-Fi
## 7727                                                                          Comedy
## 7728                                                            Action|Comedy|Horror
## 7729                                                                   Drama|Romance
## 7730                                                          Animation|Comedy|Drama
## 7731                                         Animation|Drama|Mystery|Sci-Fi|Thriller
## 7732                                                Action|Animation|Children|Sci-Fi
## 7733                                                  Horror|Mystery|Sci-Fi|Thriller
## 7734                                             Crime|Drama|Fantasy|Horror|Thriller
## 7735                                                                           Drama
## 7736                                                    Action|Adventure|Sci-Fi|IMAX
## 7737                                                   Action|Crime|Mystery|Thriller
## 7738                                                    Action|Drama|Horror|Thriller
## 7739                                                          Action|Adventure|Drama
## 7740                                                                     Documentary
## 7741                                                    Adventure|Animation|Children
## 7742                                                            Comedy|Drama|Romance
## 7743                                                   Drama|Horror|Mystery|Thriller
## 7744                                                                     Documentary
## 7745                                                          Adventure|Fantasy|IMAX
## 7746                                       Adventure|Animation|Children|Fantasy|IMAX
## 7747                                                                    Comedy|Crime
## 7748                                                                   Action|Comedy
## 7749                                                                           Drama
## 7750                                                                          Horror
## 7751                                           Action|Adventure|Sci-Fi|Thriller|IMAX
## 7752                                                                           Drama
## 7753                                Adventure|Animation|Children|Comedy|Fantasy|IMAX
## 7754                                                             Documentary|Musical
## 7755                                                 Animation|Children|Comedy|Crime
## 7756                                 Action|Crime|Drama|Mystery|Sci-Fi|Thriller|IMAX
## 7757                                                    Drama|Fantasy|Romance|Sci-Fi
## 7758                                           Action|Comedy|Fantasy|Musical|Romance
## 7759                                                 Fantasy|Horror|Mystery|Thriller
## 7760                                                                           Drama
## 7761                                                            Comedy|Drama|Romance
## 7762                                                            Drama|Horror|Mystery
## 7763                                                             Documentary|Mystery
## 7764                                                                     Documentary
## 7765                                                                       Animation
## 7766                                                        Adventure|Drama|Thriller
## 7767                                    Action|Animation|Children|Comedy|Sci-Fi|IMAX
## 7768                                                                  Drama|Thriller
## 7769                                                                           Drama
## 7770                          Animation|Children|Comedy|Fantasy|Musical|Romance|IMAX
## 7771                                                    Action|Adventure|Sci-Fi|IMAX
## 7772                                                                  Crime|Thriller
## 7773                                                      Animation|Children|Fantasy
## 7774                                                                   Comedy|Horror
## 7775                                                              Animation|Children
## 7776                                                                 Sci-Fi|Thriller
## 7777                                                   Action|Animation|Drama|Sci-Fi
## 7778                                                         Adventure|Comedy|Sci-Fi
## 7779                              Action|Adventure|Animation|Children|Comedy|Western
## 7780                                                                    Drama|Horror
## 7781                                                                  Fantasy|Horror
## 7782                                            Action|Drama|Mystery|Sci-Fi|Thriller
## 7783                                                    Action|Fantasy|Thriller|IMAX
## 7784                                             Adventure|Animation|Children|Sci-Fi
## 7785                                                                     Documentary
## 7786                                                         Fantasy|Horror|Thriller
## 7787                                                 Action|Adventure|Crime|Thriller
## 7788                                             Adventure|Animation|Children|Comedy
## 7789                                             Action|Adventure|Drama|Fantasy|IMAX
## 7790                                                                          Comedy
## 7791                                                         Animation|Drama|Fantasy
## 7792                                 Action|Adventure|Animation|Children|Comedy|IMAX
## 7793                                            Action|Adventure|Sci-Fi|Thriller|War
## 7794                                                    Mystery|Sci-Fi|Thriller|IMAX
## 7795                                                         Action|Adventure|Sci-Fi
## 7796                                                Action|Adventure|Sci-Fi|War|IMAX
## 7797                                            Action|Adventure|Sci-Fi|Thriller|War
## 7798                                                    Action|Drama|Sci-Fi|Thriller
## 7799                                                    Action|Adventure|Sci-Fi|IMAX
## 7800                                                         Horror|Mystery|Thriller
## 7801                                                                          Horror
## 7802                                                                           Drama
## 7803                                         Adventure|Animation|Comedy|Fantasy|IMAX
## 7804                                                   Action|Animation|Mystery|IMAX
## 7805                                                 Animation|Children|Comedy|Drama
## 7806                                                     Action|Adventure|Crime|IMAX
## 7807                                  Action|Adventure|Comedy|Crime|Mystery|Thriller
## 7808                                                                          Horror
## 7809                                                          Action|Sci-Fi|Thriller
## 7810                                                  Animation|Fantasy|Musical|IMAX
## 7811                                                                    Action|Crime
## 7812                                                   Comedy|Horror|Sci-Fi|Thriller
## 7813                                             Action|Adventure|Animation|Children
## 7814                                               Animation|Children|Comedy|Fantasy
## 7815                                                              Animation|Children
## 7816                                                    Action|Adventure|Sci-Fi|IMAX
## 7817                                                      Adventure|Animation|Comedy
## 7818                                                       Animation|Children|Comedy
## 7819                                                          Action|Sci-Fi|Thriller
## 7820                                                      Adventure|Animation|Comedy
## 7821                                                                     Documentary
## 7822                                                             Action|Crime|Sci-Fi
## 7823                                                                   Action|Sci-Fi
## 7824                                                                   Drama|Romance
## 7825                                                                 Horror|Thriller
## 7826                                                       Animation|Children|Comedy
## 7827                                                               Drama|Sci-Fi|IMAX
## 7828                                                                Animation|Comedy
## 7829                                                                    Comedy|Drama
## 7830                                                            Adventure|Drama|IMAX
## 7831                                                     Crime|Drama|Horror|Thriller
## 7832                                                                   Drama|Romance
## 7833                                       Adventure|Animation|Children|Fantasy|IMAX
## 7834                                                          Adventure|Fantasy|IMAX
## 7835                                                            Action|Drama|Western
## 7836                                                                  Drama|Thriller
## 7837                                                                     Documentary
## 7838                                                      Adventure|Animation|Comedy
## 7839                                                     Action|Sci-Fi|Thriller|IMAX
## 7840                                                    Action|Adventure|Sci-Fi|IMAX
## 7841                                            Action|Adventure|Fantasy|Sci-Fi|IMAX
## 7842                                                    Action|Adventure|Sci-Fi|IMAX
## 7843                                                        Action|Drama|Horror|IMAX
## 7844                                                        Action|Drama|Sci-Fi|IMAX
## 7845                                                                 Horror|Thriller
## 7846                                                  Animation|Children|Comedy|IMAX
## 7847                                                                 Horror|Thriller
## 7848                                                              Action|Sci-Fi|IMAX
## 7849                                                    Action|Adventure|Sci-Fi|IMAX
## 7850                                                   Action|Adventure|Fantasy|IMAX
## 7851                                                                           Drama
## 7852                                                          Adventure|Fantasy|IMAX
## 7853                              Adventure|Animation|Comedy|Fantasy|Musical|Romance
## 7854                                                             Action|Drama|Sci-Fi
## 7855                                                                 Horror|Thriller
## 7856                                                   Action|Animation|Fantasy|IMAX
## 7857                                                   Adventure|Romance|Sci-Fi|IMAX
## 7858                                                        Action|Crime|Sci-Fi|IMAX
## 7859                                                                     Sci-Fi|IMAX
## 7860                                                         Action|Mystery|Thriller
## 7861                                                           Action|Drama|War|IMAX
## 7862                                                      Adventure|Animation|Comedy
## 7863                                                          Horror|Sci-Fi|Thriller
## 7864                                                         Action|Crime|Drama|IMAX
## 7865                                                    Action|Adventure|Sci-Fi|IMAX
## 7866                                                            Adventure|Drama|IMAX
## 7867                                                           Action|Crime|Thriller
## 7868                                                              Action|Sci-Fi|IMAX
## 7869                                                                          Horror
## 7870                                             Adventure|Animation|Children|Comedy
## 7871                                                               Drama|Sci-Fi|IMAX
## 7872                                                         Action|Adventure|Sci-Fi
## 7873                                                    Action|Adventure|Sci-Fi|IMAX
## 7874                                                  Action|Adventure|Children|IMAX
## 7875                                                              Action|Sci-Fi|IMAX
## 7876                                                      Action|Adventure|Animation
## 7877                                                         Action|Adventure|Sci-Fi
## 7878                                                           Drama|Horror|Thriller
## 7879                                                                          Sci-Fi
## 7880                                                         Action|Adventure|Sci-Fi
## 7881                                                   Drama|Mystery|Sci-Fi|Thriller
## 7882                                                           Action|Mystery|Sci-Fi
## 7883                                                  Action|Mystery|Sci-Fi|Thriller
## 7884                                                                 Action|Thriller
## 7885                                                                          Horror
## 7886                                                         Action|Animation|Comedy
## 7887                                                                          Horror
## 7888                                                               Adventure|Fantasy
## 7889                                                      Adventure|Children|Fantasy
## 7890                                                      Adventure|Children|Fantasy
## 7891                                                              Drama|Thriller|War
## 7892                                                             Action|Crime|Sci-Fi
## 7893                                       Adventure|Children|Comedy|Fantasy|Romance
## 7894                                                         Action|Thriller|Western
## 7895                                                          Adventure|Drama|Sci-Fi
## 7896                                                        Comedy|Drama|Romance|War
## 7897                                                        Adventure|Children|Drama
## 7898                                                               Action|Comedy|War
## 7899                                                                           Drama
## 7900                                                         Adventure|Drama|Western
## 7901                                                           Action|Crime|Thriller
## 7902                                                        Action|Adventure|Fantasy
## 7903                                                         Adventure|Comedy|Sci-Fi
## 7904                                                     Action|Adventure|Comedy|War
## 7905                                                       Action|Adventure|Thriller
## 7906                                               Action|Adventure|Romance|Thriller
## 7907                                                                      Comedy|War
## 7908                                                Action|Adventure|Sci-Fi|Thriller
## 7909                                                     Adventure|Drama|Romance|War
## 7910                                                                   Drama|Romance
## 7911                                              Adventure|Children|Fantasy|Musical
## 7912                                                               Drama|Romance|War
## 7913                                                                Adventure|Comedy
## 7914                                                    Adventure|Comedy|Romance|War
## 7915                                                                     Romance|War
## 7916                                                              Adventure|Children
## 7917                                                 Children|Comedy|Fantasy|Musical
## 7918                                                                 Adventure|Drama
## 7919                                                Action|Adventure|Sci-Fi|Thriller
## 7920                                                Action|Adventure|Sci-Fi|Thriller
## 7921                                                         Action|Adventure|Sci-Fi
## 7922                                         Action|Adventure|Comedy|Fantasy|Romance
## 7923                                                                Action|Adventure
## 7924                                                             Adventure|Drama|War
## 7925                                                                Action|Drama|War
## 7926                                                         Action|Adventure|Sci-Fi
## 7927                                                                       Drama|War
## 7928                                                  Action|Adventure|Drama|Western
## 7929                                                      Action|Adventure|Drama|War
## 7930                                                                       Drama|War
## 7931                                                          Action|Adventure|Drama
## 7932                                                                Action|Adventure
## 7933                                                Action|Adventure|Sci-Fi|Thriller
## 7934                                                         Action|Adventure|Sci-Fi
## 7935                                                         Adventure|Comedy|Sci-Fi
## 7936                                                            Action|Comedy|Sci-Fi
## 7937                                                            Action|Comedy|Sci-Fi
## 7938                                                                   Action|Sci-Fi
## 7939                                                                Action|Drama|War
## 7940                                                          Action|Adventure|Drama
## 7941                                        Adventure|Children|Comedy|Fantasy|Sci-Fi
## 7942                                                        Adventure|Comedy|Musical
## 7943                                                         Action|Adventure|Sci-Fi
## 7944                                                         Action|Adventure|Sci-Fi
## 7945                                                        Action|Adventure|Fantasy
## 7946                                                      Adventure|Children|Fantasy
## 7947                                                                       Drama|War
## 7948                                                          Horror|Sci-Fi|Thriller
## 7949                                                 Action|Adventure|Fantasy|Horror
## 7950                                                       Action|Adventure|Thriller
## 7951                                                 Action|Adventure|Comedy|Romance
## 7952                              Action|Adventure|Children|Fantasy|Mystery|Thriller
## 7953                                                        Adventure|Children|Drama
## 7954                                                         Action|Adventure|Comedy
## 7955                                                 Action|Adventure|Drama|Thriller
## 7956                                                                       Adventure
## 7957                                                             Action|Drama|Sci-Fi
## 7958                                                                             War
## 7959                                                         Action|Adventure|Comedy
## 7960                                                                      Action|War
## 7961                                                                      Action|War
## 7962                                                                          Action
## 7963                                                        Adventure|Drama|Thriller
## 7964                                                             Musical|Romance|War
## 7965                                                                Action|Drama|War
## 7966                                                 Adventure|Comedy|Fantasy|Sci-Fi
## 7967                       Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery
## 7968                                                                Action|Drama|War
## 7969                                                                Action|Drama|War
## 7970                                                                       Drama|War
## 7971                                                                    Comedy|Crime
## 7972                                                            Drama|Romance|Sci-Fi
## 7973                                                      Action|Adventure|Drama|War
## 7974                                                        Adventure|Children|Drama
## 7975                                                                Adventure|Comedy
## 7976                                                                Action|Drama|War
## 7977                                                        Adventure|Drama|Thriller
## 7978                                                                Action|Drama|War
## 7979                                                        Action|Drama|Romance|War
## 7980                                                                Action|Drama|War
## 7981                                                                  Drama|Thriller
## 7982                                                               Action|Comedy|War
## 7983                                                                Adventure|Sci-Fi
## 7984                                                         Action|Adventure|Sci-Fi
## 7985                                                        Action|Drama|War|Western
## 7986                                                                       Drama|War
## 7987                                                                Comedy|Drama|War
## 7988                                                       Action|Adventure|Thriller
## 7989                                                           Comedy|Crime|Thriller
## 7990                                                                  Comedy|Romance
## 7991                                                                Mystery|Thriller
## 7992                                                       Action|Adventure|Thriller
## 7993                                                                Action|Drama|War
## 7994                                                            Adventure|Drama|IMAX
## 7995                                                 Action|Adventure|Mystery|Sci-Fi
## 7996                                                              Drama|Thriller|War
## 7997                                                           Action|Crime|Thriller
## 7998                                                           Action|Crime|Thriller
## 7999                                                         Action|Adventure|Sci-Fi
## 8000                                                                Adventure|Comedy
## 8001                                                                    Drama|Horror
## 8002                                                                           Drama
## 8003                                                    Action|Drama|Sci-Fi|Thriller
## 8004                                                     Comedy|Crime|Drama|Thriller
## 8005                                                           Action|Drama|Thriller
## 8006                                                         Action|Adventure|Sci-Fi
## 8007                                                                           Drama
## 8008                                                                  Comedy|Romance
## 8009                                                                          Comedy
## 8010                                                     Action|Crime|Drama|Thriller
## 8011                                                        Comedy|Drama|Romance|War
## 8012                                                                  Comedy|Romance
## 8013                                                     Action|Comedy|Crime|Fantasy
## 8014                                                        Adventure|Comedy|Western
## 8015                                                         Action|Romance|Thriller
## 8016                                        Action|Adventure|Comedy|Romance|Thriller
## 8017                                                    Action|Comedy|Crime|Thriller
## 8018                                                       Action|Adventure|Thriller
## 8019                                                                  Comedy|Romance
## 8020                                                         Action|Adventure|Sci-Fi
## 8021                                                                  Drama|Thriller
## 8022                                                                        Thriller
## 8023                                                Action|Adventure|Sci-Fi|Thriller
## 8024                                                                   Drama|Romance
## 8025                                                                       Drama|War
## 8026                                                            Comedy|Drama|Romance
## 8027                                                            Action|Drama|Western
## 8028                                           Comedy|Drama|Fantasy|Romance|Thriller
## 8029                                                                   Action|Sci-Fi
## 8030                                                         Adventure|Drama|Western
## 8031                                                                  Comedy|Romance
## 8032                                                Action|Adventure|Sci-Fi|Thriller
## 8033                                                           Action|Drama|Thriller
## 8034                                                               Film-Noir|Mystery
## 8035                                                                 Action|Thriller
## 8036                                                            Comedy|Drama|Romance
## 8037                                                        Adventure|Comedy|Romance
## 8038                                                                   Drama|Romance
## 8039                                                                    Comedy|Drama
## 8040                                                            Comedy|Drama|Romance
## 8041                                                            Comedy|Drama|Romance
## 8042                                                                  Crime|Thriller
## 8043                                                                             War
## 8044                                                         Action|Adventure|Comedy
## 8045                                                    Crime|Drama|Mystery|Thriller
## 8046                                                                   Comedy|Horror
## 8047                                                    Action|Comedy|Sci-Fi|Western
## 8048                                                                 Horror|Thriller
## 8049                                                   Action|Horror|Sci-Fi|Thriller
## 8050                                                                  Comedy|Romance
## 8051                                                        Adventure|Drama|Thriller
## 8052                                       Adventure|Animation|Children|Drama|Sci-Fi
## 8053                                                                  Action|Mystery
## 8054                                                        Action|Adventure|Fantasy
## 8055                                                          Horror|Sci-Fi|Thriller
## 8056                                                                  Drama|Thriller
## 8057                                                         Horror|Mystery|Thriller
## 8058                                                     Action|Crime|Drama|Thriller
## 8059                       Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery
## 8060                                                         Children|Comedy|Fantasy
## 8061                                                         Adventure|Comedy|Sci-Fi
## 8062                                                                Mystery|Thriller
## 8063                                                                  Drama|Thriller
## 8064                                                                    Comedy|Drama
## 8065                                                                  Comedy|Romance
## 8066                                                                           Drama
## 8067                                                                   Drama|Romance
## 8068                                                    Crime|Drama|Romance|Thriller
## 8069                                                           Drama|Musical|Romance
## 8070                                                                           Drama
## 8071                                                                          Comedy
## 8072                                                            Comedy|Drama|Romance
## 8073                                                                   Drama|Romance
## 8074                                                                          Horror
## 8075                                                         Horror|Mystery|Thriller
## 8076                                                            Comedy|Drama|Romance
## 8077                                                                   Comedy|Sci-Fi
## 8078                                                                 Comedy|Thriller
## 8079                                                                   Drama|Romance
## 8080                                                                   Drama|Romance
## 8081                                                                    Comedy|Drama
## 8082                                                         Action|Adventure|Sci-Fi
## 8083                                                               Drama|Romance|War
## 8084                                                                           Drama
## 8085                                                                   Drama|Romance
## 8086                                                            Action|Drama|Romance
## 8087                                                                   Drama|Romance
## 8088                                                            Comedy|Crime|Romance
## 8089                                                            Comedy|Drama|Romance
## 8090                                                      Adventure|Children|Fantasy
## 8091                                                                  Comedy|Romance
## 8092                                                                  Comedy|Romance
## 8093                                                                  Comedy|Romance
## 8094                                                            Comedy|Drama|Romance
## 8095                                                            Comedy|Drama|Romance
## 8096                                                                   Drama|Romance
## 8097                                                                   Drama|Romance
## 8098                                                               Adventure|Fantasy
## 8099                                                                   Drama|Romance
## 8100                                                                   Drama|Romance
## 8101                                                                 Horror|Thriller
## 8102                                                            Comedy|Drama|Romance
## 8103                                                            Comedy|Drama|Romance
## 8104                                                 Action|Adventure|Comedy|Fantasy
## 8105                                                    Comedy|Drama|Musical|Romance
## 8106                                                                          Comedy
## 8107                                                            Comedy|Drama|Romance
## 8108                                                                     Crime|Drama
## 8109                                                                           Drama
## 8110                                                          Adventure|Fantasy|IMAX
## 8111                                                                        Thriller
## 8112                                                              Comedy|Crime|Drama
## 8113                                                                           Drama
## 8114                                                            Action|Drama|Romance
## 8115                                                                   Drama|Romance
## 8116                                                       Drama|Mystery|Romance|War
## 8117                                                                          Comedy
## 8118                                                                   Drama|Romance
## 8119                                                           Action|Drama|Thriller
## 8120                                                                    Comedy|Drama
## 8121                                                                   Drama|Romance
## 8122                                                 Adventure|Fantasy|Thriller|IMAX
## 8123                                                                   Drama|Romance
## 8124                                                            Comedy|Drama|Romance
## 8125                                                          Drama|Romance|Thriller
## 8126                                                          Drama|Mystery|Thriller
## 8127                                                        Animation|Children|Drama
## 8128                                                            Comedy|Drama|Romance
## 8129                                                                  Comedy|Romance
## 8130                                                    Adventure|Drama|Fantasy|IMAX
## 8131                                                            Comedy|Drama|Romance
## 8132                                                            Comedy|Drama|Romance
## 8133                                                            Crime|Drama|Thriller
## 8134                                                           Action|Crime|Thriller
## 8135                                                              Adventure|Children
## 8136                                                             Adventure|Animation
## 8137                                                    Action|Comedy|Crime|Thriller
## 8138                                                        Adventure|Children|Drama
## 8139                                                              Adventure|Children
## 8140                                                          Horror|Sci-Fi|Thriller
## 8141                                                                           Drama
## 8142                                                       Action|Adventure|Thriller
## 8143                                                            Action|Comedy|Sci-Fi
## 8144                                                       Action|Adventure|Thriller
## 8145                                                           Action|Comedy|Musical
## 8146                                                                          Comedy
## 8147                                                  Action|Romance|Sci-Fi|Thriller
## 8148                                                                 Horror|Thriller
## 8149                                                       Action|Comedy|Crime|Drama
## 8150                                                      Adventure|Children|Fantasy
## 8151                                                                           Drama
## 8152                                                                Adventure|Sci-Fi
## 8153                                                               Animation|Musical
## 8154                                                            Comedy|Drama|Romance
## 8155                                                                    Action|Drama
## 8156                                                                           Drama
## 8157                                                                Adventure|Comedy
## 8158                                                                  Comedy|Romance
## 8159                                                                   Comedy|Horror
## 8160                                                        Animation|Comedy|Musical
## 8161                                                                 Children|Comedy
## 8162                                                           Drama|Horror|Thriller
## 8163                                                            Action|Comedy|Sci-Fi
## 8164                                                           Comedy|Fantasy|Sci-Fi
## 8165                                                Action|Adventure|Children|Comedy
## 8166                                       Adventure|Animation|Children|Drama|Sci-Fi
## 8167                                                            Drama|Horror|Mystery
## 8168                                                                  Drama|Thriller
## 8169                                                            Crime|Drama|Thriller
## 8170                                                    Action|Crime|Sci-Fi|Thriller
## 8171                       Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery
## 8172                                                            Comedy|Drama|Fantasy
## 8173                                                                    Action|Drama
## 8174                                     Adventure|Animation|Children|Comedy|Fantasy
## 8175                                                                           Drama
## 8176                                                                           Drama
## 8177                                                                  Drama|Thriller
## 8178                                                                    Action|Drama
## 8179                                                                     Crime|Drama
## 8180                                                                 Adventure|Drama
## 8181                                                           Drama|Musical|Romance
## 8182                                                        Action|Adventure|Western
## 8183                                                                           Drama
## 8184                                                                 Horror|Thriller
## 8185                                                                   Drama|Romance
## 8186                                                                Adventure|Comedy
## 8187                                                         Action|Adventure|Comedy
## 8188                                                          Action|Sci-Fi|Thriller
## 8189                                                       Action|Adventure|Thriller
## 8190                                                                  Comedy|Fantasy
## 8191                                                            Comedy|Drama|Romance
## 8192                                                Action|Adventure|Sci-Fi|Thriller
## 8193                                                                  Crime|Thriller
## 8194                                                        Adventure|Comedy|Fantasy
## 8195                                                                  Crime|Thriller
## 8196                                                         Action|Mystery|Thriller
## 8197                                                                    Action|Crime
## 8198                                                                   Drama|Romance
## 8199                                                           Action|Crime|Thriller
## 8200                                      Action|Adventure|Animation|Children|Comedy
## 8201                                                                  Comedy|Western
## 8202                                                                       Drama|War
## 8203                                                               Action|Crime|IMAX
## 8204                                                              Comedy|Crime|Drama
## 8205                                                            Crime|Drama|Thriller
## 8206                                                            Crime|Drama|Thriller
## 8207                                                                   Drama|Romance
## 8208                                                   Drama|Mystery|Sci-Fi|Thriller
## 8209                                                            Crime|Drama|Thriller
## 8210                                                           Action|Crime|Thriller
## 8211                                                                     Crime|Drama
## 8212                                                            Comedy|Drama|Romance
## 8213                                                    Crime|Drama|Romance|Thriller
## 8214                                     Adventure|Animation|Children|Romance|Sci-Fi
## 8215                                                                Action|Drama|War
## 8216                                                            Crime|Drama|Thriller
## 8217                                                          Animation|Comedy|Drama
## 8218                                                                     Crime|Drama
## 8219                                Adventure|Animation|Children|Comedy|Fantasy|IMAX
## 8220                                 Action|Crime|Drama|Mystery|Sci-Fi|Thriller|IMAX
## 8221                                     Adventure|Animation|Children|Comedy|Fantasy
## 8222                                                             Comedy|Drama|Sci-Fi
## 8223                                     Adventure|Animation|Children|Comedy|Fantasy
## 8224                                                                          Comedy
## 8225                                                           Action|Crime|Thriller
## 8226                                                                  Comedy|Romance
## 8227                                                                          Action
## 8228                                                         Mystery|Sci-Fi|Thriller
## 8229                                                                          Comedy
## 8230                                                                   Drama|Romance
## 8231                                                                  Drama|Thriller
## 8232                                                       Action|Adventure|Thriller
## 8233                                                                  Drama|Thriller
## 8234                                                                          Comedy
## 8235                                                   Action|Adventure|Comedy|Crime
## 8236                                                                          Comedy
## 8237                                                         Action|Adventure|Sci-Fi
## 8238                                                                 Action|Thriller
## 8239                                                       Action|Adventure|Thriller
## 8240                                                     Comedy|Crime|Drama|Thriller
## 8241                                                              Adventure|Children
## 8242                                                                          Comedy
## 8243                                               Action|Adventure|Mystery|Thriller
## 8244                                                        Action|Adventure|Fantasy
## 8245                                                            Crime|Drama|Thriller
## 8246                                                                  Comedy|Romance
## 8247                                                                          Comedy
## 8248                                                   Drama|Fantasy|Horror|Thriller
## 8249                                                       Action|Adventure|Thriller
## 8250                                               Action|Adventure|Romance|Thriller
## 8251                                                                   Action|Sci-Fi
## 8252                                                                Action|Adventure
## 8253                                                Action|Adventure|Sci-Fi|Thriller
## 8254                                                                 Comedy|Thriller
## 8255                                                           Action|Drama|Thriller
## 8256                                                   Comedy|Fantasy|Romance|Sci-Fi
## 8257                                                                   Drama|Romance
## 8258                                                                  Drama|Thriller
## 8259                                                                  Crime|Thriller
## 8260                                                 Children|Comedy|Fantasy|Musical
## 8261                                     Adventure|Animation|Children|Comedy|Fantasy
## 8262                                                       Action|Adventure|Thriller
## 8263                                                                     Crime|Drama
## 8264                                                           Comedy|Crime|Thriller
## 8265                                          Adventure|Drama|Fantasy|Mystery|Sci-Fi
## 8266                                                                  Comedy|Romance
## 8267                                                                Mystery|Thriller
## 8268                                                          Crime|Mystery|Thriller
## 8269                                                  Adventure|Comedy|Crime|Romance
## 8270                                                                          Comedy
## 8271                                                            Crime|Drama|Thriller
## 8272                                                                           Drama
## 8273                                                 Action|Adventure|Mystery|Sci-Fi
## 8274                                                                          Comedy
## 8275                                                                          Comedy
## 8276                                                                          Comedy
## 8277                                                                Adventure|Comedy
## 8278                                                                     Documentary
## 8279                                                                 Children|Comedy
## 8280                                                         Action|Adventure|Sci-Fi
## 8281                                                    Action|Drama|Sci-Fi|Thriller
## 8282                                                     Action|Crime|Drama|Thriller
## 8283                                                     Comedy|Crime|Drama|Thriller
## 8284                                                                     Crime|Drama
## 8285                                                                          Comedy
## 8286                                                                           Drama
## 8287                                                                          Comedy
## 8288                                                        Comedy|Drama|Romance|War
## 8289                                                         Action|Romance|Thriller
## 8290                                                                          Comedy
## 8291                                                         Action|Adventure|Sci-Fi
## 8292                                                            Crime|Drama|Thriller
## 8293                                                                        Thriller
## 8294                                                Action|Adventure|Sci-Fi|Thriller
## 8295                                                                       Drama|War
## 8296                                                                           Drama
## 8297                                                          Action|Sci-Fi|Thriller
## 8298                                                                 Children|Comedy
## 8299                                                           Crime|Horror|Thriller
## 8300                              Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi
## 8301                                                                      Comedy|War
## 8302                                                              Comedy|Crime|Drama
## 8303                                                            Comedy|Drama|Romance
## 8304                                              Adventure|Children|Fantasy|Musical
## 8305                                                         Drama|Film-Noir|Romance
## 8306                                                                   Drama|Mystery
## 8307                                                          Adventure|Drama|Sci-Fi
## 8308                                                                           Drama
## 8309                                                         Crime|Film-Noir|Mystery
## 8310                                                                  Comedy|Romance
## 8311                                                  Children|Drama|Fantasy|Romance
## 8312                                                           Action|Crime|Thriller
## 8313                                                                    Comedy|Drama
## 8314                                                 Children|Comedy|Fantasy|Musical
## 8315                                                          Crime|Mystery|Thriller
## 8316                                                          Drama|Romance|Thriller
## 8317                                                                           Drama
## 8318                                                           Children|Drama|Sci-Fi
## 8319                                                                    Comedy|Drama
## 8320                                                        Adventure|Comedy|Fantasy
## 8321                                                                           Drama
## 8322                                                                           Drama
## 8323                                                         Action|Adventure|Sci-Fi
## 8324                                         Action|Adventure|Comedy|Fantasy|Romance
## 8325                                                                Action|Adventure
## 8326                                                        Action|Adventure|Western
## 8327                                                     Crime|Drama|Sci-Fi|Thriller
## 8328                                                                           Drama
## 8329                                                                Action|Drama|War
## 8330                                                            Action|Drama|Western
## 8331                                                         Action|Adventure|Sci-Fi
## 8332                                                                     Crime|Drama
## 8333                                                                       Drama|War
## 8334                                                                           Drama
## 8335                                                                   Drama|Romance
## 8336                                                                           Drama
## 8337                                                                  Comedy|Romance
## 8338                                                            Comedy|Drama|Romance
## 8339                                                          Action|Sci-Fi|Thriller
## 8340                                                            Comedy|Drama|Romance
## 8341                                                            Comedy|Drama|Romance
## 8342                                                             Adventure|Drama|War
## 8343                                                Crime|Film-Noir|Mystery|Thriller
## 8344                                                              Comedy|Musical|War
## 8345                                                                          Horror
## 8346                                                                 Adventure|Drama
## 8347                                                                       Drama|War
## 8348                                                          Comedy|Fantasy|Romance
## 8349                                                                   Drama|Western
## 8350                                                         Adventure|Comedy|Sci-Fi
## 8351                                                                   Drama|Western
## 8352                                                                          Comedy
## 8353                                                                          Comedy
## 8354                                                                Action|Adventure
## 8355                                                          Children|Drama|Fantasy
## 8356                                                                  Action|Western
## 8357                                                                  Comedy|Romance
## 8358                                                                           Drama
## 8359                                                          Comedy|Musical|Romance
## 8360                                                                   Action|Horror
## 8361                                                                   Drama|Romance
## 8362                                                                          Comedy
## 8363                                                                     Crime|Drama
## 8364                                                                 Action|Thriller
## 8365                                                Crime|Film-Noir|Mystery|Thriller
## 8366                                                                           Drama
## 8367                                                                   Action|Sci-Fi
## 8368                                                             Comedy|Drama|Sci-Fi
## 8369                                                                   Drama|Romance
## 8370                                                                   Drama|Romance
## 8371                                                                    Comedy|Crime
## 8372                                                            Comedy|Drama|Romance
## 8373                       Adventure|Animation|Children|Comedy|Drama|Musical|Romance
## 8374                                                                  Comedy|Romance
## 8375                                                           Drama|Musical|Romance
## 8376                                                                           Drama
## 8377                                                           Action|Crime|Thriller
## 8378                                                                           Drama
## 8379                                                                           Drama
## 8380                                                                    Comedy|Drama
## 8381                                                                           Drama
## 8382                                                                    Comedy|Drama
## 8383                                                       Action|Comedy|Crime|Drama
## 8384                                        Action|Adventure|Children|Comedy|Fantasy
## 8385                                                           Action|Comedy|Romance
## 8386                                                         Adventure|Comedy|Sci-Fi
## 8387                                                                Action|Drama|War
## 8388                                                                 Children|Comedy
## 8389                                                  Children|Comedy|Fantasy|Horror
## 8390                                                                          Comedy
## 8391                                                                          Comedy
## 8392                                                                 Children|Comedy
## 8393                                                        Action|Adventure|Fantasy
## 8394                                                                  Comedy|Romance
## 8395                                                  Crime|Drama|Film-Noir|Thriller
## 8396                                                              Action|Crime|Drama
## 8397                                                            Comedy|Drama|Romance
## 8398                                                                  Comedy|Fantasy
## 8399                                                                          Comedy
## 8400                                                            Comedy|Drama|Fantasy
## 8401                                                        Comedy|Drama|Romance|War
## 8402                                                                     Crime|Drama
## 8403                                                                    Comedy|Drama
## 8404                                                                           Drama
## 8405                                                                    Comedy|Crime
## 8406                                                           Comedy|Crime|Thriller
## 8407                                                                  Comedy|Romance
## 8408                                                                          Comedy
## 8409                                 Action|Adventure|Comedy|Fantasy|Horror|Thriller
## 8410                                                                          Comedy
## 8411                                                        Animation|Comedy|Musical
## 8412                                                            Action|Comedy|Sci-Fi
## 8413                                                           Comedy|Horror|Musical
## 8414                                       Adventure|Animation|Children|Drama|Sci-Fi
## 8415                                                                          Comedy
## 8416                                                    Comedy|Drama|Fantasy|Romance
## 8417                                                                 Children|Comedy
## 8418                                                                   Drama|Romance
## 8419                                                        Adventure|Comedy|Musical
## 8420                                                                          Comedy
## 8421                                                                           Drama
## 8422                                                       Action|Adventure|Thriller
## 8423                                                                  Action|Western
## 8424                                                                 Children|Comedy
## 8425                                                     Action|Crime|Drama|Thriller
## 8426                                     Adventure|Animation|Children|Comedy|Musical
## 8427                                                                          Comedy
## 8428                                                                  Comedy|Romance
## 8429                                                            Comedy|Drama|Romance
## 8430                                                 Children|Comedy|Fantasy|Musical
## 8431                                                                           Drama
## 8432                                                                           Drama
## 8433                                                    Action|Comedy|Crime|Thriller
## 8434                                     Adventure|Animation|Children|Comedy|Fantasy
## 8435                                                                           Drama
## 8436                                                                           Drama
## 8437                                                            Comedy|Drama|Romance
## 8438                                                                          Comedy
## 8439                                                                    Comedy|Drama
## 8440                                                                   Action|Comedy
## 8441                                                                   Drama|Romance
## 8442                                                            Comedy|Drama|Romance
## 8443                                                                   Drama|Western
## 8444                                                                          Comedy
## 8445                                                                           Drama
## 8446                                                                           Drama
## 8447                                                                   Drama|Romance
## 8448                                                        Adventure|Comedy|Fantasy
## 8449                                                                    Comedy|Drama
## 8450                                                                          Comedy
## 8451                                                          Comedy|Musical|Romance
## 8452                                                                Adventure|Comedy
## 8453                                                                     Documentary
## 8454                                                                  Comedy|Western
## 8455                                                           Crime|Drama|Film-Noir
## 8456                                                       Animation|Children|Comedy
## 8457                                                                     Crime|Drama
## 8458                                                                           Drama
## 8459                                                     Action|Comedy|Crime|Romance
## 8460                                                                           Drama
## 8461                                                                           Drama
## 8462                                                                   Action|Comedy
## 8463                                                         Children|Comedy|Fantasy
## 8464                                     Adventure|Animation|Children|Comedy|Fantasy
## 8465                                                                           Drama
## 8466                                                          Adventure|Comedy|Crime
## 8467                                                            Crime|Drama|Thriller
## 8468                                                                   Drama|Romance
## 8469                                                       Action|Comedy|Crime|Drama
## 8470                                                                  Comedy|Romance
## 8471                                                              Comedy|Documentary
## 8472                                                                Mystery|Thriller
## 8473                                                              Action|Crime|Drama
## 8474                             Adventure|Animation|Children|Comedy|Fantasy|Romance
## 8475                                                          Adventure|Drama|Sci-Fi
## 8476                                                             Crime|Drama|Western
## 8477                                                                  Comedy|Romance
## 8478                                                         Adventure|Comedy|Sci-Fi
## 8479                                                                          Comedy
## 8480                                                                           Drama
## 8481                                                            Crime|Drama|Thriller
## 8482                                                                          Comedy
## 8483                                          Crime|Drama|Film-Noir|Mystery|Thriller
## 8484                                                   Drama|Mystery|Sci-Fi|Thriller
## 8485                                                                     Crime|Drama
## 8486                                     Adventure|Animation|Children|Comedy|Fantasy
## 8487                                                      Adventure|Children|Fantasy
## 8488                                                                  Comedy|Romance
## 8489                                                               Adventure|Fantasy
## 8490                                                           Children|Comedy|Drama
## 8491                                                            Comedy|Drama|Romance
## 8492                                                                          Comedy
## 8493                                                         Action|Mystery|Thriller
## 8494                                            Action|Crime|Mystery|Sci-Fi|Thriller
## 8495                                                            Comedy|Drama|Romance
## 8496                                                       Action|Comedy|Documentary
## 8497                                                               Adventure|Fantasy
## 8498                                                            Comedy|Drama|Romance
## 8499                                                               Adventure|Fantasy
## 8500                                                            Comedy|Drama|Romance
## 8501                                                                       Drama|War
## 8502                                                     Comedy|Crime|Drama|Thriller
## 8503                                           Action|Adventure|Crime|Drama|Thriller
## 8504                                                                          Comedy
## 8505                                                    Comedy|Drama|Fantasy|Romance
## 8506                                             Adventure|Animation|Children|Comedy
## 8507                                                                   Action|Comedy
## 8508                                                          Comedy|Musical|Romance
## 8509                                                                     Crime|Drama
## 8510                                                                  Comedy|Musical
## 8511                                                                    Comedy|Drama
## 8512                                                             Crime|Drama|Mystery
## 8513                                                                  Comedy|Romance
## 8514                                                           Action|Crime|Thriller
## 8515                                                                     Crime|Drama
## 8516                                                         Children|Comedy|Fantasy
## 8517                                                            Comedy|Drama|Romance
## 8518                                                                    Comedy|Drama
## 8519                                                            Crime|Drama|Thriller
## 8520                                                    Action|Drama|Horror|Thriller
## 8521                                                                  Comedy|Fantasy
## 8522                                                    Action|Drama|Romance|Western
## 8523                                                          Comedy|Musical|Romance
## 8524                                                           Drama|Fantasy|Romance
## 8525                                                  Action|Adventure|Drama|Fantasy
## 8526                                                                           Drama
## 8527                                                            Drama|Romance|Sci-Fi
## 8528                                                           Action|Drama|Thriller
## 8529                                                                          Comedy
## 8530                             Adventure|Animation|Children|Comedy|Musical|Romance
## 8531                                                          Adventure|Fantasy|IMAX
## 8532                                                                          Comedy
## 8533                                                                          Comedy
## 8534                                                                          Comedy
## 8535                                                           Action|Crime|Thriller
## 8536                                                            Comedy|Drama|Romance
## 8537                                                                Adventure|Comedy
## 8538                                                                   Comedy|Horror
## 8539                                                                    Drama|Sci-Fi
## 8540                                               Action|Adventure|Animation|Comedy
## 8541                                      Action|Adventure|Animation|Children|Comedy
## 8542                                         Action|Adventure|Drama|Mystery|Thriller
## 8543                                                 Children|Comedy|Musical|Romance
## 8544                                                              Comedy|Documentary
## 8545                                                       Animation|Children|Comedy
## 8546                                                                Mystery|Thriller
## 8547                                         Action|Crime|Film-Noir|Mystery|Thriller
## 8548                                                                  Comedy|Romance
## 8549                                                                     Crime|Drama
## 8550                                                                          Comedy
## 8551                                                                   Drama|Romance
## 8552                                                               Action|Crime|IMAX
## 8553                                                                    Comedy|Drama
## 8554                                                                  Comedy|Romance
## 8555                                                                    Comedy|Drama
## 8556                                                                  Comedy|Romance
## 8557                                                     Action|Crime|Drama|Thriller
## 8558                                             Adventure|Animation|Children|Comedy
## 8559                                                   Comedy|Crime|Mystery|Thriller
## 8560                                                                    Comedy|Drama
## 8561                                                                     Crime|Drama
## 8562                                                                   Drama|Romance
## 8563                                                 Adventure|Fantasy|Thriller|IMAX
## 8564                                                      Adventure|Children|Fantasy
## 8565                                                     Action|Sci-Fi|Thriller|IMAX
## 8566                                                            Crime|Drama|Thriller
## 8567                                                          Adventure|Comedy|Drama
## 8568                                              Animation|Children|Fantasy|Mystery
## 8569                                                                   Action|Comedy
## 8570                                                                           Drama
## 8571                                                              Comedy|Documentary
## 8572                                                            Crime|Drama|Thriller
## 8573                                                                     Documentary
## 8574                                                                Animation|Comedy
## 8575                                                       Action|Adventure|Thriller
## 8576                                                                           Drama
## 8577                                                        Animation|Children|Drama
## 8578                                                     Action|Comedy|Crime|Mystery
## 8579                                                            Crime|Drama|Thriller
## 8580                                                         Action|Fantasy|War|IMAX
## 8581                                                                  Comedy|Romance
## 8582                                                Animation|Comedy|Fantasy|Musical
## 8583                                                           Drama|Musical|Romance
## 8584                                                 Action|Adventure|Comedy|Fantasy
## 8585                                                    Adventure|Drama|Fantasy|IMAX
## 8586                                                                          Comedy
## 8587                                                           Action|Crime|Thriller
## 8588                                                                          Comedy
## 8589                                                                     Documentary
## 8590                                                               Drama|Romance|War
## 8591                                                            Crime|Drama|Thriller
## 8592                                                          Action|Adventure|Drama
## 8593                                                            Crime|Drama|Thriller
## 8594                                                            Crime|Drama|Thriller
## 8595                                                                     Crime|Drama
## 8596                                              Action|Horror|Sci-Fi|Thriller|IMAX
## 8597                                                                    Comedy|Drama
## 8598                                                            Comedy|Drama|Romance
## 8599                                                   Drama|Horror|Musical|Thriller
## 8600                                                                   Drama|Western
## 8601                                                                          Comedy
## 8602                                                     Comedy|Crime|Drama|Thriller
## 8603                                          Action|Adventure|Drama|Sci-Fi|Thriller
## 8604                                                         Action|Crime|Drama|IMAX
## 8605                                                                    Comedy|Drama
## 8606                                                         Action|Adventure|Sci-Fi
## 8607                                                     Action|Crime|Drama|Thriller
## 8608                                       Action|Drama|Mystery|Sci-Fi|Thriller|IMAX
## 8609                                                                          Comedy
## 8610                                                            Comedy|Drama|Romance
## 8611                                                             Action|Comedy|Crime
## 8612                                                     Action|Adventure|Comedy|War
## 8613                                                             Crime|Drama|Romance
## 8614                                                       Action|Adventure|Thriller
## 8615                                                                          Comedy
## 8616                                                                          Comedy
## 8617                                                              Drama|Thriller|War
## 8618                                                                     Documentary
## 8619                                                                          Comedy
## 8620                                                                    Comedy|Drama
## 8621                                                                          Comedy
## 8622                                                                Action|Drama|War
## 8623                                              Adventure|Animation|Children|Drama
## 8624                                                                    Comedy|Crime
## 8625                                                            Crime|Drama|Thriller
## 8626                                          Adventure|Fantasy|Mystery|Romance|IMAX
## 8627                                                         Mystery|Sci-Fi|Thriller
## 8628                                                            Comedy|Drama|Romance
## 8629                                                    Action|Comedy|Drama|Thriller
## 8630                                                 Animation|Children|Fantasy|IMAX
## 8631                                                                    Comedy|Drama
## 8632                                                            Action|Comedy|Horror
## 8633                                                                   Drama|Romance
## 8634                                                                   Drama|Romance
## 8635                                                                   Action|Comedy
## 8636                                       Adventure|Animation|Children|Comedy|Crime
## 8637                                                                           Drama
## 8638                                                                   Drama|Romance
## 8639                                                            Comedy|Drama|Romance
## 8640                                                                           Drama
## 8641                                                            Comedy|Drama|Romance
## 8642                                                                    Comedy|Drama
## 8643                                                                   Drama|Mystery
## 8644                                                                   Action|Comedy
## 8645                                Adventure|Animation|Children|Comedy|Fantasy|IMAX
## 8646                                                 Animation|Children|Comedy|Crime
## 8647                                 Action|Crime|Drama|Mystery|Sci-Fi|Thriller|IMAX
## 8648                                                                   Action|Comedy
## 8649                                                               Crime|Documentary
## 8650                                           Action|Comedy|Fantasy|Musical|Romance
## 8651                                                                           Drama
## 8652                                                                  Comedy|Romance
## 8653                                                       Action|Comedy|Documentary
## 8654                                                        Adventure|Drama|Thriller
## 8655                                                                  Drama|Thriller
## 8656                                                   Action|Adventure|Fantasy|IMAX
## 8657                                                           Drama|Musical|Romance
## 8658                                                                    Comedy|Drama
## 8659                                                                           Drama
## 8660                                            Action|Drama|Mystery|Sci-Fi|Thriller
## 8661                                                                   Drama|Romance
## 8662                                                                    Comedy|Drama
## 8663                                                                           Drama
## 8664                                                                          Comedy
## 8665                                            Action|Adventure|Sci-Fi|Thriller|War
## 8666                                                                           Drama
## 8667                                                            Comedy|Drama|Romance
## 8668                                                                    Comedy|Crime
## 8669                                     Action|Adventure|Drama|Fantasy|Mystery|IMAX
## 8670                                                    Action|Drama|Sci-Fi|Thriller
## 8671                                                                           Drama
## 8672                                                             Action|Comedy|Crime
## 8673                                                                           Drama
## 8674                                                                           Drama
## 8675                                                                  Drama|Thriller
## 8676                                                                  Drama|Thriller
## 8677                                                           Action|Crime|Thriller
## 8678                                                                           Drama
## 8679                                                                   Drama|Romance
## 8680                                                     Action|Adventure|Crime|IMAX
## 8681                                                          Action|Sci-Fi|Thriller
## 8682                                                                          Comedy
## 8683                                                                          Comedy
## 8684                                                                    Comedy|Drama
## 8685                                                             Action|Comedy|Crime
## 8686                                                                    Comedy|Drama
## 8687                                                                     Documentary
## 8688                                                              Comedy|Crime|Drama
## 8689                                                            Comedy|Drama|Romance
## 8690                                                                    Comedy|Drama
## 8691                                                                  Comedy|Fantasy
## 8692                                                    Action|Adventure|Sci-Fi|IMAX
## 8693                                                  Action|Adventure|Thriller|IMAX
## 8694                                                                          Comedy
## 8695                                                                    Comedy|Drama
## 8696                                                                           Drama
## 8697                                                                           Drama
## 8698                                                                   Drama|Romance
## 8699                                                                    Comedy|Crime
## 8700                                                                   Action|Comedy
## 8701                                                                     Documentary
## 8702                                                                    Comedy|Drama
## 8703                                                                           Drama
## 8704                                                            Adventure|Drama|IMAX
## 8705                                                            Action|Drama|Western
## 8706                                                                           Drama
## 8707                                           Animation|Comedy|Drama|Fantasy|Sci-Fi
## 8708                                                         Romance|Sci-Fi|Thriller
## 8709                                                                           Drama
## 8710                                                                     Documentary
## 8711                                                        Action|Adventure|Romance
## 8712                                                                   Action|Comedy
## 8713                                                                    Comedy|Drama
## 8714                                                                    Comedy|Drama
## 8715                                                      Adventure|Animation|Comedy
## 8716                                                                           Drama
## 8717                                                                           Drama
## 8718                                                                 Horror|Thriller
## 8719                                                                           Drama
## 8720                                                                 Adventure|Drama
## 8721                                                                     Documentary
## 8722                                                                  Comedy|Romance
## 8723                                                                           Drama
## 8724                                                                          Comedy
## 8725                                                                           Drama
## 8726                                                                           Drama
## 8727                                                                     Documentary
## 8728                                                                    Comedy|Drama
## 8729                                                                     Crime|Drama
## 8730                                                            Drama|Romance|Sci-Fi
## 8731                                                                    Comedy|Drama
## 8732                                                                          Comedy
## 8733                                                                           Drama
## 8734                                                                   Action|Comedy
## 8735                              Action|Adventure|Animation|Children|Comedy|Fantasy
## 8736                                                           Children|Comedy|Drama
## 8737                                                         Action|Adventure|Sci-Fi
## 8738                                                                          Comedy
## 8739                                                             Action|Comedy|Crime
## 8740                                                                    Comedy|Drama
## 8741                                                            Comedy|Drama|Mystery
## 8742                                                           Drama|Horror|Thriller
## 8743                                                                           Drama
## 8744                                                                  Drama|Thriller
## 8745                                                         Action|Adventure|Sci-Fi
## 8746                                                                    Comedy|Drama
## 8747                                                                    Comedy|Crime
## 8748                                                                           Drama
## 8749                                                            Comedy|Drama|Romance
## 8750                                                                        Thriller
## 8751                                                                           Drama
## 8752                                                                           Drama
## 8753                                                                     Documentary
## 8754                                                            Crime|Drama|Thriller
## 8755                                                              Drama|Thriller|War
## 8756                                                Action|Adventure|Sci-Fi|Thriller
## 8757                                            Action|Adventure|Fantasy|Sci-Fi|IMAX
## 8758                                                                   Drama|Romance
## 8759                                                                     Documentary
## 8760                                                                    Comedy|Drama
## 8761                                                                          Comedy
## 8762                                                                         Western
## 8763                                                              (no genres listed)
## 8764                                                                           Drama
## 8765                                                           Comedy|Romance|Sci-Fi
## 8766                                                    Action|Comedy|Fantasy|Sci-Fi
## 8767                               Adventure|Animation|Children|Comedy|Drama|Fantasy
## 8768                                                 Action|Adventure|Fantasy|Sci-Fi
## 8769                                                                     Documentary
## 8770                                                                 Adventure|Drama
## 8771                                                                     Documentary
## 8772                                                                           Drama
## 8773                                                                       Drama|War
## 8774                                                                          Comedy
## 8775                                                                        Thriller
## 8776                                                                           Drama
## 8777                                                                           Drama
## 8778                                                                Animation|Comedy
## 8779                                      Action|Adventure|Animation|Children|Comedy
## 8780                                                                           Drama
## 8781                                                                          Comedy
## 8782                                                              (no genres listed)
## 8783                                                            Comedy|Drama|Romance
## 8784                                                                   Drama|Romance
## 8785                                                           Comedy|Crime|Thriller
## 8786                                                                  Children|Drama
## 8787                                                                Action|Drama|War
## 8788                                                        Action|Drama|Romance|War
## 8789                                                          Action|Romance|Western
## 8790                                                Crime|Film-Noir|Mystery|Thriller
## 8791                                                         Action|Adventure|Sci-Fi
## 8792                                                           Drama|Fantasy|Romance
## 8793                                                     Action|Crime|Drama|Thriller
## 8794                                                                     Crime|Drama
## 8795                                                                           Drama
## 8796                                                          Drama|Mystery|Thriller
## 8797                                                        Comedy|Drama|Romance|War
## 8798                                                                  Comedy|Romance
## 8799                                        Action|Adventure|Comedy|Romance|Thriller
## 8800                                                                  Comedy|Romance
## 8801                                                                  Comedy|Romance
## 8802                                                                  Comedy|Romance
## 8803                                                                   Drama|Romance
## 8804                                                                       Drama|War
## 8805                                                                   Drama|Romance
## 8806                                                                           Drama
## 8807                                                                  Crime|Thriller
## 8808                                                         Adventure|Drama|Western
## 8809                                                           Action|Crime|Thriller
## 8810                                                     Comedy|Crime|Drama|Thriller
## 8811                                                                    Comedy|Drama
## 8812                                               Action|Adventure|Mystery|Thriller
## 8813                                                                          Comedy
## 8814                                                           Drama|Mystery|Western
## 8815                                                                     Crime|Drama
## 8816                                                    Comedy|Drama|Musical|Romance
## 8817                                                                          Comedy
## 8818                                                         Children|Comedy|Western
## 8819                                                      Adventure|Children|Fantasy
## 8820                                                 Children|Comedy|Fantasy|Musical
## 8821                                                                 Musical|Romance
## 8822                                                           Action|Crime|Thriller
## 8823                                                 Children|Comedy|Fantasy|Musical
## 8824                                                                    Comedy|Crime
## 8825                                                                          Comedy
## 8826                                                          Comedy|Musical|Romance
## 8827                                                           Drama|Musical|Romance
## 8828                                                                          Comedy
## 8829                                                          Crime|Mystery|Thriller
## 8830                                                          Drama|Romance|Thriller
## 8831                                                           Children|Drama|Sci-Fi
## 8832                                                                  Action|Romance
## 8833                                                                           Drama
## 8834                                                                    Comedy|Crime
## 8835                                                Action|Adventure|Sci-Fi|Thriller
## 8836                                                                          Horror
## 8837                                                Action|Adventure|Sci-Fi|Thriller
## 8838                                                                  Horror|Mystery
## 8839                                                                          Comedy
## 8840                                                        Adventure|Comedy|Fantasy
## 8841                                                 Animation|Children|Comedy|Crime
## 8842                                                                           Drama
## 8843                                                                           Drama
## 8844                                                                           Drama
## 8845                                                                          Comedy
## 8846                                                         Action|Adventure|Sci-Fi
## 8847                                         Action|Adventure|Comedy|Fantasy|Romance
## 8848                                                                Action|Adventure
## 8849                                                  Action|Adventure|Horror|Sci-Fi
## 8850                                                                Action|Drama|War
## 8851                                                                   Horror|Sci-Fi
## 8852                                                           Action|Comedy|Musical
## 8853                                                                     Crime|Drama
## 8854                                                                       Drama|War
## 8855                                                        Action|Drama|Romance|War
## 8856                                                                           Drama
## 8857                                                                     Crime|Drama
## 8858                                                                    Comedy|Crime
## 8859                                                          Action|Sci-Fi|Thriller
## 8860                                                                       Drama|War
## 8861                                                                    Comedy|Drama
## 8862                                                                           Drama
## 8863                                                Crime|Film-Noir|Mystery|Thriller
## 8864                                                                          Horror
## 8865                                                                 Adventure|Drama
## 8866                                                                       Drama|War
## 8867                                                          Comedy|Fantasy|Romance
## 8868                                                         Adventure|Comedy|Sci-Fi
## 8869                                                                       Drama|War
## 8870                                                        Action|Adventure|Fantasy
## 8871                                                                  Comedy|Fantasy
## 8872                                                                   Drama|Romance
## 8873                                                                          Comedy
## 8874                                                                Action|Adventure
## 8875                                                                   Drama|Romance
## 8876                                                                       Drama|War
## 8877                                                          Children|Drama|Fantasy
## 8878                                                                  Comedy|Romance
## 8879                                                          Comedy|Horror|Thriller
## 8880                                                                          Horror
## 8881                                                                          Horror
## 8882                                                   Drama|Horror|Mystery|Thriller
## 8883                                                   Drama|Fantasy|Horror|Thriller
## 8884                                                            Drama|Fantasy|Horror
## 8885                                                                 Horror|Thriller
## 8886                                                         Horror|Mystery|Thriller
## 8887                                                                   Drama|Romance
## 8888                                                                           Drama
## 8889                                                           Action|Comedy|Western
## 8890                                                          Comedy|Musical|Romance
## 8891                                                                   Action|Horror
## 8892                                                                   Drama|Romance
## 8893                                                                          Comedy
## 8894                                                      Action|Romance|War|Western
## 8895                                                    Crime|Drama|Mystery|Thriller
## 8896                                                                Mystery|Thriller
## 8897                                                                    Comedy|Drama
## 8898                                                        Action|Adventure|Fantasy
## 8899                                                     Action|Crime|Drama|Thriller
## 8900                                                  Drama|Mystery|Romance|Thriller
## 8901                                                Crime|Film-Noir|Mystery|Thriller
## 8902                                                          Drama|Mystery|Thriller
## 8903                                                                    Comedy|Drama
## 8904                                                          Drama|Mystery|Thriller
## 8905                                                                      Comedy|War
## 8906                                                          Drama|Romance|Thriller
## 8907                                                                   Drama|Romance
## 8908                                                                           Drama
## 8909                                                                   Drama|Romance
## 8910                                                                    Comedy|Crime
## 8911                                                    Crime|Drama|Fantasy|Thriller
## 8912                                                            Comedy|Drama|Romance
## 8913                                                                        Thriller
## 8914                                            Action|Crime|Mystery|Sci-Fi|Thriller
## 8915                                                                    Comedy|Drama
## 8916                                                  Action|Romance|Sci-Fi|Thriller
## 8917                                                    Action|Comedy|Crime|Thriller
## 8918                                                                  Comedy|Romance
## 8919                                                           Drama|Musical|Romance
## 8920                                                                   Drama|Musical
## 8921                                                           Action|Crime|Thriller
## 8922                                                                           Drama
## 8923                                                                           Drama
## 8924                                                                           Drama
## 8925                                                                           Drama
## 8926                                                                    Comedy|Drama
## 8927                                                                           Drama
## 8928                                                                           Drama
## 8929                                                                   Drama|Mystery
## 8930                                                       Adventure|Fantasy|Musical
## 8931                                                                    Comedy|Drama
## 8932                                                         Horror|Mystery|Thriller
## 8933                                                                          Horror
## 8934                                                                          Horror
## 8935                                                                          Horror
## 8936                                                                          Horror
## 8937                                                                          Horror
## 8938                                                                          Horror
## 8939                                                                          Horror
## 8940                                                                          Horror
## 8941                                                                          Horror
## 8942                                                                 Horror|Thriller
## 8943                                                                 Horror|Thriller
## 8944                                                                 Horror|Thriller
## 8945                                                                  Horror|Mystery
## 8946                                                       Action|Comedy|Crime|Drama
## 8947                                                       Action|Comedy|Crime|Drama
## 8948                                                                   Comedy|Horror
## 8949                                        Action|Adventure|Children|Comedy|Fantasy
## 8950                                                           Action|Comedy|Romance
## 8951                                                   Drama|Mystery|Sci-Fi|Thriller
## 8952                                                          Action|Adventure|Drama
## 8953                                                                   Drama|Romance
## 8954                                                                    Comedy|Crime
## 8955                                                                Action|Drama|War
## 8956                                                       Adventure|Children|Comedy
## 8957                                                                  Comedy|Fantasy
## 8958                                        Adventure|Children|Comedy|Fantasy|Sci-Fi
## 8959                                                           Drama|Romance|Western
## 8960                                                        Adventure|Comedy|Musical
## 8961                                         Children|Drama|Fantasy|Mystery|Thriller
## 8962                                                          Comedy|Fantasy|Romance
## 8963                                                                          Comedy
## 8964                                                           Comedy|Crime|Thriller
## 8965                                                                          Comedy
## 8966                                                                           Drama
## 8967                                                        Action|Adventure|Fantasy
## 8968                                                                        Thriller
## 8969                                                                 Horror|Thriller
## 8970                                                                 Horror|Thriller
## 8971                                                            Comedy|Drama|Romance
## 8972                                                             Crime|Drama|Romance
## 8973                                                       Adventure|Fantasy|Romance
## 8974                                                                  Comedy|Romance
## 8975                                                                Action|Adventure
## 8976                                                      Adventure|Children|Fantasy
## 8977                                                                   Comedy|Horror
## 8978                                                                  Comedy|Fantasy
## 8979                                                                        Thriller
## 8980                                                        Action|Adventure|Fantasy
## 8981                                                              Action|Crime|Drama
## 8982                                                                           Drama
## 8983                                                            Comedy|Drama|Romance
## 8984                                                            Crime|Drama|Thriller
## 8985                                                   Action|Horror|Sci-Fi|Thriller
## 8986                                                           Drama|Fantasy|Romance
## 8987                                                                          Comedy
## 8988                                                                  Comedy|Musical
## 8989                                                                          Comedy
## 8990                                                                           Drama
## 8991                                                                Comedy|Drama|War
## 8992                                                            Comedy|Drama|Romance
## 8993                                                                          Comedy
## 8994                                                            Adventure|Drama|IMAX
## 8995                                                                          Comedy
## 8996                                                         Children|Comedy|Fantasy
## 8997                                                                 Comedy|Thriller
## 8998                                                              Animation|Children
## 8999                                                          Action|Sci-Fi|Thriller
## 9000                                                            Comedy|Drama|Romance
## 9001                                                          Adventure|Drama|Sci-Fi
## 9002                                                        Action|Adventure|Romance
## 9003                                                                Adventure|Comedy
## 9004                                                          Drama|Mystery|Thriller
## 9005                                                    Adventure|Comedy|Romance|War
## 9006                                                                 Crime|Film-Noir
## 9007                                                         Children|Comedy|Western
## 9008                                                          Adventure|Drama|Sci-Fi
## 9009                                                                 Children|Comedy
## 9010                                                Action|Adventure|Sci-Fi|Thriller
## 9011                                                  Action|Adventure|Horror|Sci-Fi
## 9012                                                                           Drama
## 9013                                                                   Horror|Sci-Fi
## 9014                                                                           Drama
## 9015                                                                  Comedy|Romance
## 9016                                                         Comedy|Mystery|Thriller
## 9017                                                   Action|Horror|Sci-Fi|Thriller
## 9018                                                          Comedy|Horror|Thriller
## 9019                                                       Adventure|Children|Comedy
## 9020                                                                Mystery|Thriller
## 9021                                                       Action|Adventure|Thriller
## 9022                                                         Action|Adventure|Comedy
## 9023                                                                 Action|Thriller
## 9024                                                            Action|Horror|Sci-Fi
## 9025                                                            Comedy|Drama|Romance
## 9026                                                  Action|Romance|Sci-Fi|Thriller
## 9027                                                                Action|Drama|War
## 9028                                                         Children|Comedy|Fantasy
## 9029                                                         Children|Comedy|Western
## 9030                                                                          Comedy
## 9031                                                    Adventure|Animation|Children
## 9032                                                         Children|Comedy|Fantasy
## 9033                                                                Adventure|Comedy
## 9034                                                                Action|Adventure
## 9035                                                                   Comedy|Horror
## 9036                                                                        Thriller
## 9037                                                                       Drama|War
## 9038                                                                          Sci-Fi
## 9039                                                         Action|Mystery|Thriller
## 9040                                                          Drama|Mystery|Thriller
## 9041                                                                           Drama
## 9042                                                                           Drama
## 9043                                                           Drama|Horror|Thriller
## 9044                                                         Action|Adventure|Comedy
## 9045                                                                          Comedy
## 9046                                                                          Comedy
## 9047                                                                          Comedy
## 9048                                                                          Action
## 9049                                                          Horror|Sci-Fi|Thriller
## 9050                                                 Adventure|Children|Comedy|Drama
## 9051                                                         Adventure|Comedy|Sci-Fi
## 9052                                                        Action|Adventure|Fantasy
## 9053                                                                   Drama|Mystery
## 9054                                                                  Drama|Thriller
## 9055                                                                          Comedy
## 9056                                                                  Drama|Thriller
## 9057                                                                  Comedy|Romance
## 9058                                                   Crime|Horror|Mystery|Thriller
## 9059                                                             Action|Thriller|War
## 9060                                                                           Drama
## 9061                                                              Adventure|Children
## 9062                                                     Crime|Drama|Sci-Fi|Thriller
## 9063                                               Film-Noir|Horror|Mystery|Thriller
## 9064                                                    Action|Comedy|Crime|Thriller
## 9065                                                            Comedy|Drama|Romance
## 9066                                                         Mystery|Sci-Fi|Thriller
## 9067                                                          Crime|Mystery|Thriller
## 9068                                                            Crime|Drama|Thriller
## 9069                                                            Adventure|Drama|IMAX
## 9070                                                                          Comedy
## 9071                                                                Adventure|Comedy
## 9072                                                    Action|Drama|Sci-Fi|Thriller
## 9073                                                     Comedy|Crime|Drama|Thriller
## 9074                                                                           Drama
## 9075                                                                     Crime|Drama
## 9076                                                     Action|Comedy|Crime|Fantasy
## 9077                                        Action|Adventure|Comedy|Romance|Thriller
## 9078                                                         Children|Comedy|Fantasy
## 9079                                                                           Drama
## 9080                                                Action|Adventure|Sci-Fi|Thriller
## 9081                                                                       Drama|War
## 9082                                                          Action|Sci-Fi|Thriller
## 9083                                                                 Children|Comedy
## 9084                                                         Adventure|Drama|Western
## 9085                                                           Crime|Horror|Thriller
## 9086                                                      Adventure|Animation|Comedy
## 9087                                                       Animation|Children|Comedy
## 9088                                                                     Crime|Drama
## 9089                                                                   Drama|Romance
## 9090                                              Adventure|Children|Fantasy|Musical
## 9091                                                        Adventure|Comedy|Fantasy
## 9092                                                 Animation|Children|Comedy|Crime
## 9093                                                                           Drama
## 9094                                                                     Crime|Drama
## 9095                                                                     Crime|Drama
## 9096                                                Action|Adventure|Sci-Fi|Thriller
## 9097                                                                           Drama
## 9098                                                       Action|Adventure|Thriller
## 9099                                                                  Comedy|Romance
## 9100                                                                           Drama
## 9101                                                                    Comedy|Drama
## 9102                                                                Action|Drama|War
## 9103                                                         Action|Adventure|Sci-Fi
## 9104                                                      Adventure|Children|Fantasy
## 9105                                                          Action|Horror|Thriller
## 9106                                                        Action|Adventure|Fantasy
## 9107                                                              Action|Crime|Drama
## 9108                                                                          Comedy
## 9109                                                                     Crime|Drama
## 9110                                                            Comedy|Drama|Romance
## 9111                                                                Adventure|Comedy
## 9112                                                           Comedy|Crime|Thriller
## 9113                                 Action|Adventure|Comedy|Fantasy|Horror|Thriller
## 9114                                                         Action|Adventure|Sci-Fi
## 9115                                                                  Comedy|Romance
## 9116                                                         Action|Adventure|Comedy
## 9117                                                                    Action|Crime
## 9118                                                            Action|Comedy|Sci-Fi
## 9119                                                                  Action|Mystery
## 9120                                                    Comedy|Drama|Fantasy|Romance
## 9121                                                                   Drama|Romance
## 9122                                                     Action|Crime|Drama|Thriller
## 9123                                                            Comedy|Drama|Fantasy
## 9124                                                                          Comedy
## 9125                                                          Action|Adventure|Drama
## 9126                                                       Action|Adventure|Thriller
## 9127                                                       Animation|Children|Comedy
## 9128                                                                          Comedy
## 9129                                                                          Comedy
## 9130                             Adventure|Animation|Children|Comedy|Fantasy|Romance
## 9131                                                               Adventure|Fantasy
## 9132                                                                Comedy|Drama|War
## 9133                                                Action|Adventure|Sci-Fi|Thriller
## 9134                                                               Adventure|Fantasy
## 9135                                                                  Drama|Thriller
## 9136                                                     Action|Crime|Drama|Thriller
## 9137                                                  Action|Adventure|Drama|Fantasy
## 9138                                                            Drama|Romance|Sci-Fi
## 9139                                      Action|Adventure|Animation|Children|Comedy
## 9140                                                                           Drama
## 9141                                                               Action|Crime|IMAX
## 9142                                                                     Documentary
## 9143                                                                     Crime|Drama
## 9144                                                           Comedy|Crime|Thriller
## 9145                                                            Crime|Drama|Thriller
## 9146                                                          Action|Romance|Western
## 9147                                                             Action|Crime|Sci-Fi
## 9148                                                                    Comedy|Drama
## 9149                                                               Action|Comedy|War
## 9150                                                          Action|Sci-Fi|Thriller
## 9151                                                     Comedy|Crime|Drama|Thriller
## 9152                                                        Action|Adventure|Fantasy
## 9153                                                      Adventure|Animation|Comedy
## 9154                                                       Animation|Children|Comedy
## 9155                                                                     Crime|Drama
## 9156                                                                          Comedy
## 9157                                                                       Drama|War
## 9158                                                                Action|Drama|War
## 9159                                                            Action|Drama|Western
## 9160                                                                    Crime|Horror
## 9161                                                                     Crime|Drama
## 9162                                                          Comedy|Musical|Romance
## 9163                                                                          Comedy
## 9164                                                           Drama|Sci-Fi|Thriller
## 9165                                                                           Drama
## 9166                                                                    Comedy|Crime
## 9167                                                 Adventure|Comedy|Sci-Fi|Western
## 9168                                                        Action|Adventure|Fantasy
## 9169                                                                  Comedy|Fantasy
## 9170                                                        Comedy|Drama|Romance|War
## 9171                                                         Action|Adventure|Sci-Fi
## 9172                                                           Drama|Horror|Thriller
## 9173                                                    Comedy|Drama|Fantasy|Romance
## 9174                                                            Comedy|Horror|Sci-Fi
## 9175                                                                           Drama
## 9176                                                                Adventure|Comedy
## 9177                                                                 Action|Thriller
## 9178                                                                           Drama
## 9179                                                                  Comedy|Romance
## 9180                                                                Comedy|Drama|War
## 9181                                                     Adventure|Animation|Fantasy
## 9182                                                             Animation|Drama|War
## 9183                                                                    Comedy|Drama
## 9184                                                               Adventure|Fantasy
## 9185                                                            Crime|Drama|Thriller
## 9186                                                                       Drama|War
## 9187                              Action|Adventure|Animation|Children|Fantasy|Sci-Fi
## 9188                                                            Action|Horror|Sci-Fi
## 9189                                                                    Comedy|Crime
## 9190                                                            Drama|Romance|Sci-Fi
## 9191                                                             Action|Drama|Horror
## 9192                                                                   Drama|Romance
## 9193                                                                   Drama|Romance
## 9194                                                                Mystery|Thriller
## 9195                                                                 Action|Thriller
## 9196                                                                           Drama
## 9197                                                                       Drama|War
## 9198                                                      Adventure|Children|Fantasy
## 9199                                                                  Children|Drama
## 9200                                        Animation|Children|Drama|Musical|Romance
## 9201                                                          Crime|Mystery|Thriller
## 9202                                                                          Comedy
## 9203                                                              Adventure|Children
## 9204                                                                Adventure|Comedy
## 9205                                                            Comedy|Drama|Fantasy
## 9206                                 Adventure|Animation|Children|Drama|Musical|IMAX
## 9207                                                                    Comedy|Drama
## 9208                                              Animation|Children|Fantasy|Musical
## 9209                                                                          Comedy
## 9210                                                                 Children|Comedy
## 9211                                           Comedy|Drama|Fantasy|Romance|Thriller
## 9212                                     Adventure|Animation|Children|Comedy|Musical
## 9213                                                           Action|Crime|Thriller
## 9214                                                           Crime|Horror|Thriller
## 9215                                        Animation|Children|Drama|Fantasy|Musical
## 9216                                 Animation|Children|Fantasy|Musical|Romance|IMAX
## 9217                                              Animation|Children|Fantasy|Musical
## 9218                                                              Animation|Children
## 9219                                    Adventure|Animation|Children|Fantasy|Musical
## 9220                              Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi
## 9221                                                                 Children|Comedy
## 9222                                              Adventure|Children|Fantasy|Musical
## 9223                                                  Children|Drama|Fantasy|Romance
## 9224                                                                 Children|Comedy
## 9225                                      Animation|Children|Fantasy|Musical|Romance
## 9226                                                 Children|Comedy|Fantasy|Musical
## 9227                                                Animation|Children|Drama|Musical
## 9228                                                                 Musical|Romance
## 9229                                                                   Drama|Romance
## 9230                                                 Children|Comedy|Fantasy|Musical
## 9231                                                           Children|Drama|Sci-Fi
## 9232                                                        Adventure|Comedy|Fantasy
## 9233                                         Action|Adventure|Comedy|Fantasy|Romance
## 9234                                                                           Drama
## 9235                                                           Action|Comedy|Musical
## 9236                                                       Adventure|Children|Comedy
## 9237                                                          Comedy|Musical|Romance
## 9238                                                            Comedy|Crime|Romance
## 9239                                                            Action|Comedy|Sci-Fi
## 9240                                                                  Comedy|Romance
## 9241                       Adventure|Animation|Children|Comedy|Drama|Musical|Romance
## 9242                                                                           Drama
## 9243                                                                    Comedy|Drama
## 9244                                                        Animation|Children|Drama
## 9245                                        Adventure|Children|Comedy|Fantasy|Sci-Fi
## 9246                                               Animation|Children|Comedy|Musical
## 9247                                               Animation|Children|Comedy|Romance
## 9248                                       Animation|Children|Comedy|Musical|Romance
## 9249                                                    Adventure|Animation|Children
## 9250                                              Animation|Children|Fantasy|Musical
## 9251                                         Animation|Children|Comedy|Drama|Fantasy
## 9252                                                                  Comedy|Romance
## 9253                                                      Adventure|Children|Fantasy
## 9254                                                                  Comedy|Fantasy
## 9255                                                    Action|Comedy|Crime|Thriller
## 9256                                                                          Comedy
## 9257                                             Adventure|Animation|Children|Comedy
## 9258                                                        Adventure|Children|Drama
## 9259                                                                    Comedy|Crime
## 9260                                                          Action|Sci-Fi|Thriller
## 9261                                                                  Comedy|Romance
## 9262                                                            Action|Comedy|Sci-Fi
## 9263                                       Adventure|Animation|Children|Drama|Sci-Fi
## 9264                                                                 Children|Comedy
## 9265                                      Adventure|Animation|Comedy|Fantasy|Musical
## 9266                                                                          Comedy
## 9267                                                                 Children|Comedy
## 9268                                     Adventure|Animation|Children|Comedy|Fantasy
## 9269                                                                   Drama|Romance
## 9270                                                       Animation|Children|Comedy
## 9271                                                         Children|Comedy|Fantasy
## 9272                                     Adventure|Animation|Children|Comedy|Fantasy
## 9273                                                                    Comedy|Crime
## 9274                                                Action|Adventure|Children|Comedy
## 9275                                                            Comedy|Drama|Romance
## 9276                             Adventure|Animation|Children|Comedy|Fantasy|Romance
## 9277                                                                    Comedy|Crime
## 9278                                                                   Action|Comedy
## 9279                                     Adventure|Animation|Children|Comedy|Fantasy
## 9280                                                          Comedy|Fantasy|Romance
## 9281                                                      Adventure|Children|Fantasy
## 9282                                                               Adventure|Fantasy
## 9283                                                                  Comedy|Romance
## 9284                                                Action|Adventure|Sci-Fi|Thriller
## 9285                                             Adventure|Animation|Children|Sci-Fi
## 9286                                                                  Comedy|Romance
## 9287                                                            Action|Comedy|Sci-Fi
## 9288                                                                          Comedy
## 9289                                                     Adventure|Animation|Fantasy
## 9290                                                            Comedy|Drama|Romance
## 9291                                                               Adventure|Fantasy
## 9292                                                               Adventure|Fantasy
## 9293                                                Animation|Children|Drama|Fantasy
## 9294                                                            Comedy|Drama|Romance
## 9295                              Action|Adventure|Animation|Children|Fantasy|Sci-Fi
## 9296                                                    Comedy|Drama|Fantasy|Romance
## 9297                                             Adventure|Animation|Children|Comedy
## 9298                                                 Action|Adventure|Comedy|Fantasy
## 9299                                                               Adventure|Fantasy
## 9300                                                                  Comedy|Musical
## 9301                                                         Children|Comedy|Fantasy
## 9302                                                    Action|Comedy|Crime|Thriller
## 9303                                                  Action|Adventure|Drama|Fantasy
## 9304                                                                 Children|Comedy
## 9305                                                                          Comedy
## 9306                             Adventure|Animation|Children|Comedy|Musical|Romance
## 9307                                                          Adventure|Fantasy|IMAX
## 9308                                                                          Comedy
## 9309                                                        Comedy|Documentary|Drama
## 9310                                                                   Comedy|Sci-Fi
## 9311                                      Action|Adventure|Animation|Children|Comedy
## 9312                                                                           Drama
## 9313                                      Adventure|Animation|Children|Drama|Fantasy
## 9314                                               Adventure|Children|Comedy|Fantasy
## 9315                                          Adventure|Children|Comedy|Fantasy|IMAX
## 9316                                                         Adventure|Comedy|Sci-Fi
## 9317                                             Adventure|Animation|Children|Comedy
## 9318                                                                   Drama|Romance
## 9319                                                 Action|Adventure|Comedy|Romance
## 9320                                                               Action|Crime|IMAX
## 9321                                                         Action|Adventure|Sci-Fi
## 9322                                                                  Comedy|Romance
## 9323                                                                   Drama|Romance
## 9324                                                 Adventure|Fantasy|Thriller|IMAX
## 9325                                                      Adventure|Children|Fantasy
## 9326                                                     Action|Sci-Fi|Thriller|IMAX
## 9327                                                                    Comedy|Drama
## 9328                                             Adventure|Animation|Children|Comedy
## 9329                                                       Animation|Children|Comedy
## 9330                                                                    Comedy|Drama
## 9331                                                        Action|Adventure|Fantasy
## 9332                                                          Adventure|Comedy|Drama
## 9333                                                                   Action|Comedy
## 9334                                                      Action|Comedy|Fantasy|IMAX
## 9335                                                    Comedy|Drama|Fantasy|Romance
## 9336                                                   Drama|Fantasy|Mystery|Romance
## 9337                                                          Drama|Fantasy|Thriller
## 9338                                                   Drama|Mystery|Sci-Fi|Thriller
## 9339                                                        Animation|Children|Drama
## 9340                                                            Comedy|Drama|Romance
## 9341                                     Adventure|Animation|Children|Comedy|Fantasy
## 9342                                                 Action|Adventure|Comedy|Fantasy
## 9343                                                                  Crime|Thriller
## 9344                                                         Action|Adventure|Sci-Fi
## 9345                                                     Action|Sci-Fi|Thriller|IMAX
## 9346                                                    Adventure|Drama|Fantasy|IMAX
## 9347                                                                Animation|Comedy
## 9348                                                                    Comedy|Drama
## 9349                                                                          Comedy
## 9350                                                                     Documentary
## 9351                                                      Adventure|Children|Fantasy
## 9352                                              Action|Horror|Sci-Fi|Thriller|IMAX
## 9353                                                            Comedy|Drama|Romance
## 9354                                                   Drama|Horror|Musical|Thriller
## 9355                                                 Action|Adventure|Fantasy|Sci-Fi
## 9356                                                     Comedy|Crime|Drama|Thriller
## 9357                                          Action|Adventure|Drama|Sci-Fi|Thriller
## 9358                                                         Action|Crime|Drama|IMAX
## 9359                                                                  Comedy|Romance
## 9360                                                         Action|Adventure|Sci-Fi
## 9361                                     Adventure|Animation|Children|Romance|Sci-Fi
## 9362                                           Action|Adventure|Comedy|Crime|Fantasy
## 9363                                                                   Action|Comedy
## 9364                                                            Crime|Drama|Thriller
## 9365                                                         Action|Adventure|Sci-Fi
## 9366                                                                     Crime|Drama
## 9367                                                         Action|Adventure|Sci-Fi
## 9368                                                         Action|Adventure|Sci-Fi
## 9369                                                         Adventure|Comedy|Sci-Fi
## 9370                                                                Action|Drama|War
## 9371                                                                          Comedy
## 9372                                                     Action|Crime|Drama|Thriller
## 9373                                                                Mystery|Thriller
## 9374                                                         Action|Mystery|Thriller
## 9375                                           Action|Adventure|Crime|Drama|Thriller
## 9376                                                           Action|Crime|Thriller
## 9377                                          Action|Adventure|Drama|Sci-Fi|Thriller
## 9378                                       Action|Adventure|Crime|Drama|Thriller|War
## 9379                                                           Action|Crime|Thriller
## 9380                                                         Action|Crime|Drama|IMAX
## 9381                                                                Action|Drama|War
## 9382                                                   Drama|Mystery|Sci-Fi|Thriller
## 9383                                                       Action|Drama|Thriller|War
## 9384                                                         Mystery|Sci-Fi|Thriller
## 9385                                                                     Documentary
## 9386                                 Action|Crime|Drama|Mystery|Sci-Fi|Thriller|IMAX
## 9387                                                                  Drama|Thriller
## 9388                                            Action|Drama|Mystery|Sci-Fi|Thriller
## 9389                                            Action|Adventure|Drama|Thriller|IMAX
## 9390                                                                    Comedy|Drama
## 9391                                                                  Drama|Thriller
## 9392                                                    Action|Adventure|Sci-Fi|IMAX
## 9393                                                                     Documentary
## 9394                                                    Action|Adventure|Sci-Fi|IMAX
## 9395                                                           Drama|Fantasy|Romance
## 9396                                                              Action|Sci-Fi|IMAX
## 9397                                                              Comedy|Crime|Drama
## 9398                                                            Drama|Romance|Sci-Fi
## 9399                                                                     Sci-Fi|IMAX
## 9400                                                              Action|Sci-Fi|IMAX
## 9401                                                                    Comedy|Drama
## 9402                                                                           Drama
## 9403                                                                           Drama
## 9404                                                                      Action|War
## 9405                                                                 Action|Thriller
## 9406                                                            Crime|Drama|Thriller
## 9407                                                           Drama|Sci-Fi|Thriller
## 9408                                                   Action|Adventure|Comedy|Crime
## 9409                                             Action|Crime|Drama|Mystery|Thriller
## 9410                                                Action|Adventure|Sci-Fi|Thriller
## 9411                                                         Action|Adventure|Sci-Fi
## 9412                                                          Adventure|Drama|Sci-Fi
## 9413                               Adventure|Animation|Children|Comedy|Drama|Fantasy
## 9414                                                             Crime|Drama|Mystery
## 9415                                                                           Drama
## 9416                                                                          Action
## 9417                                     Adventure|Animation|Children|Comedy|Fantasy
## 9418                                                            Comedy|Drama|Romance
## 9419                                                                     Crime|Drama
## 9420                                                            Comedy|Drama|Romance
## 9421                                                   Action|Adventure|Comedy|Crime
## 9422                                                            Adventure|Drama|IMAX
## 9423                                                        Action|Drama|Romance|War
## 9424                                                                     Documentary
## 9425                                                         Action|Adventure|Sci-Fi
## 9426                                                           Action|Drama|Thriller
## 9427                                                                     Crime|Drama
## 9428                                        Action|Adventure|Comedy|Romance|Thriller
## 9429                                                        Adventure|Comedy|Western
## 9430                                                                        Thriller
## 9431                                                Action|Adventure|Sci-Fi|Thriller
## 9432                                                                   Drama|Romance
## 9433                                                                          Comedy
## 9434                                                           Action|Crime|Thriller
## 9435                                                           Crime|Horror|Thriller
## 9436                                                      Adventure|Animation|Comedy
## 9437                                                                  Crime|Thriller
## 9438                                                        Adventure|Children|Drama
## 9439                                                                   Drama|Romance
## 9440                                                                          Comedy
## 9441                                                                          Horror
## 9442                                                                           Drama
## 9443                                                                Action|Adventure
## 9444                                                                   Horror|Sci-Fi
## 9445                                                                     Crime|Drama
## 9446                                                                  Comedy|Romance
## 9447                                                                    Comedy|Crime
## 9448                                                                 Adventure|Drama
## 9449                                                                  Action|Western
## 9450                                                                  Comedy|Romance
## 9451                                                Action|Adventure|Sci-Fi|Thriller
## 9452                                                           Action|Mystery|Sci-Fi
## 9453                                                Action|Adventure|Sci-Fi|Thriller
## 9454                                                         Adventure|Comedy|Sci-Fi
## 9455                                                      Action|Romance|War|Western
## 9456                                                                 Children|Comedy
## 9457                                                                          Comedy
## 9458                                                         Action|Adventure|Comedy
## 9459                                                     Action|Crime|Drama|Thriller
## 9460                                                       Action|Adventure|Thriller
## 9461                                                            Comedy|Drama|Romance
## 9462                                                                    Comedy|Drama
## 9463                                                  Action|Romance|Sci-Fi|Thriller
## 9464                                                                           Drama
## 9465                                                                           Drama
## 9466                                                                   Comedy|Horror
## 9467                                                       Adventure|Children|Sci-Fi
## 9468                                            Adventure|Animation|Children|Fantasy
## 9469                                                                  Comedy|Fantasy
## 9470                                                            Crime|Drama|Thriller
## 9471                                                                          Comedy
## 9472                                                     Action|Drama|Romance|Sci-Fi
## 9473                                                          Action|Sci-Fi|Thriller
## 9474                                                         Action|Adventure|Sci-Fi
## 9475                                                         Action|Adventure|Sci-Fi
## 9476                                                                   Comedy|Horror
## 9477                                                           Drama|Horror|Thriller
## 9478                                                            Drama|Horror|Mystery
## 9479                                                                          Comedy
## 9480                                                    Comedy|Drama|Fantasy|Romance
## 9481                                                                   Drama|Romance
## 9482                                                                          Comedy
## 9483                                                     Action|Crime|Drama|Thriller
## 9484                       Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery
## 9485                                                            Comedy|Drama|Fantasy
## 9486                                     Adventure|Animation|Children|Comedy|Fantasy
## 9487                                                          Drama|Mystery|Thriller
## 9488                                                                     Crime|Drama
## 9489                                                                           Drama
## 9490                                                          Adventure|Drama|Sci-Fi
## 9491                                                            Comedy|Drama|Romance
## 9492                                                          Action|Adventure|Drama
## 9493                                                       Animation|Children|Comedy
## 9494                                                         Action|Adventure|Sci-Fi
## 9495                                                     Action|Comedy|Crime|Romance
## 9496                                                                          Comedy
## 9497                                                                           Drama
## 9498                                                            Action|Drama|Romance
## 9499                                                                           Drama
## 9500                             Adventure|Animation|Children|Comedy|Fantasy|Romance
## 9501                                                                Action|Adventure
## 9502                                                           Action|Crime|Thriller
## 9503                                              Adventure|Animation|Fantasy|Sci-Fi
## 9504                                                                   Action|Comedy
## 9505                                                               Adventure|Fantasy
## 9506                                                Action|Adventure|Sci-Fi|Thriller
## 9507                                                               Adventure|Fantasy
## 9508                                                Action|Adventure|Sci-Fi|Thriller
## 9509                                                           Action|Fantasy|Sci-Fi
## 9510                                                            Comedy|Drama|Romance
## 9511                                                                  Comedy|Musical
## 9512                                                  Action|Adventure|Drama|Fantasy
## 9513                                                                           Drama
## 9514                                                                Action|Drama|War
## 9515                                                            Adventure|Drama|IMAX
## 9516                                                   Action|Adventure|Comedy|Crime
## 9517                                                           Action|Crime|Thriller
## 9518                                                            Action|Drama|Romance
## 9519                                                                Adventure|Comedy
## 9520                                                                    Drama|Horror
## 9521                                                       Drama|Romance|War|Western
## 9522                                                     Comedy|Crime|Drama|Thriller
## 9523                                                                     Crime|Drama
## 9524                                                          Adventure|Drama|Sci-Fi
## 9525                                                                          Comedy
## 9526                                                     Action|Crime|Drama|Thriller
## 9527                                                        Comedy|Drama|Romance|War
## 9528                                        Action|Adventure|Comedy|Romance|Thriller
## 9529                                                       Action|Adventure|Thriller
## 9530                                                                        Thriller
## 9531                                                         Adventure|Drama|Western
## 9532                                                           Action|Crime|Thriller
## 9533                                                           Crime|Horror|Thriller
## 9534                                 Animation|Children|Fantasy|Musical|Romance|IMAX
## 9535                                                         Action|Adventure|Sci-Fi
## 9536                                                                     Crime|Drama
## 9537                                                            Comedy|Drama|Romance
## 9538                                                               Drama|Romance|War
## 9539                                                          Adventure|Drama|Sci-Fi
## 9540                                                                   Comedy|Sci-Fi
## 9541                                                                      Comedy|War
## 9542                                                                     Crime|Drama
## 9543                                                         Action|Adventure|Sci-Fi
## 9544                                                                     Crime|Drama
## 9545                                                                  Comedy|Romance
## 9546                                                                          Comedy
## 9547                                                              Comedy|Musical|War
## 9548                                                         Adventure|Comedy|Sci-Fi
## 9549                                                                  Comedy|Fantasy
## 9550                                                                          Comedy
## 9551                                                                    Comedy|Drama
## 9552                                                                       Drama|War
## 9553                                                                  Action|Western
## 9554                                                                           Drama
## 9555                                                                           Drama
## 9556                                                                     Documentary
## 9557                                                              Comedy|Crime|Drama
## 9558                                                        Adventure|Comedy|Musical
## 9559                                                        Adventure|Drama|Thriller
## 9560                                                           Drama|Fantasy|Musical
## 9561                                                                Comedy|Drama|War
## 9562                                                           Comedy|Crime|Thriller
## 9563                                             Crime|Drama|Horror|Mystery|Thriller
## 9564                                                                   Drama|Romance
## 9565                                                                Action|Drama|War
## 9566                                                         Action|Adventure|Sci-Fi
## 9567                                                        Comedy|Drama|Romance|War
## 9568                                                         Action|Romance|Thriller
## 9569                                                                        Thriller
## 9570                                                Action|Adventure|Sci-Fi|Thriller
## 9571                                                                   Action|Sci-Fi
## 9572                                                           Crime|Horror|Thriller
## 9573                                                     Comedy|Crime|Drama|Thriller
## 9574                                                                  Crime|Thriller
## 9575                                                                     Crime|Drama
## 9576                                       Action|Adventure|Mystery|Romance|Thriller
## 9577                                                           Action|Crime|Thriller
## 9578                                                          Crime|Mystery|Thriller
## 9579                                                Action|Adventure|Sci-Fi|Thriller
## 9580                                                           Crime|Drama|Film-Noir
## 9581                                                         Action|Adventure|Sci-Fi
## 9582                                                                Action|Adventure
## 9583                                                  Action|Adventure|Horror|Sci-Fi
## 9584                                                                           Drama
## 9585                                                          Action|Sci-Fi|Thriller
## 9586                                                   Action|Crime|Romance|Thriller
## 9587                                                         Adventure|Comedy|Sci-Fi
## 9588                                                        Action|Adventure|Fantasy
## 9589                                                     Action|Crime|Drama|Thriller
## 9590                                                            Action|Comedy|Sci-Fi
## 9591                                                          Drama|Mystery|Thriller
## 9592                                                                    Comedy|Crime
## 9593                                                                           Drama
## 9594                                                       Action|Comedy|Crime|Drama
## 9595                                             Action|Crime|Drama|Mystery|Thriller
## 9596                                                                    Drama|Sci-Fi
## 9597                                                              Action|Crime|Drama
## 9598                                                            Crime|Drama|Thriller
## 9599                                                            Crime|Drama|Thriller
## 9600                                                    Drama|Horror|Sci-Fi|Thriller
## 9601                                                                   Horror|Sci-Fi
## 9602                                                          Action|Sci-Fi|Thriller
## 9603                                                                  Crime|Thriller
## 9604                                                                   Drama|Romance
## 9605                                                       Action|Adventure|Thriller
## 9606                                              Action|Crime|Drama|Sci-Fi|Thriller
## 9607                                                          Action|Sci-Fi|Thriller
## 9608                                               Action|Adventure|Romance|Thriller
## 9609                                                           Action|Crime|Thriller
## 9610                                                                    Action|Drama
## 9611                                     Adventure|Animation|Children|Comedy|Fantasy
## 9612                                                           Action|Crime|Thriller
## 9613                                                                   Comedy|Horror
## 9614                                                                     Crime|Drama
## 9615                                                                   Drama|Romance
## 9616                                                                          Comedy
## 9617                                                                   Drama|Romance
## 9618                                                                  Children|Drama
## 9619                                                              Action|Crime|Drama
## 9620                                                                           Drama
## 9621                                                      Adventure|Children|Fantasy
## 9622                                                                           Drama
## 9623                                                          Action|Adventure|Drama
## 9624                                                                          Comedy
## 9625                                                            Comedy|Drama|Romance
## 9626                                                       Action|Adventure|Thriller
## 9627                                                                          Comedy
## 9628                                               Adventure|Children|Comedy|Musical
## 9629                                                                Action|Drama|War
## 9630                                                   Action|Adventure|Comedy|Crime
## 9631                                                                          Comedy
## 9632                                                        Action|Drama|Romance|War
## 9633                                      Action|Crime|Drama|Mystery|Sci-Fi|Thriller
## 9634                                                              Adventure|Children
## 9635                                                         Action|Adventure|Sci-Fi
## 9636                                                           Drama|Fantasy|Romance
## 9637                                                       Drama|Romance|War|Western
## 9638                                                                    Comedy|Drama
## 9639                                                                           Drama
## 9640                                                                           Drama
## 9641                                                                  Drama|Thriller
## 9642                                                                           Drama
## 9643                                                           Action|Crime|Thriller
## 9644                                                     Action|Crime|Drama|Thriller
## 9645                                                                  Comedy|Romance
## 9646                                                     Comedy|Crime|Drama|Thriller
## 9647                                                  Children|Drama|Fantasy|Mystery
## 9648                                                         Action|Adventure|Sci-Fi
## 9649                                                                     Crime|Drama
## 9650                                                                           Drama
## 9651                                                          Drama|Mystery|Thriller
## 9652                                                   Action|Crime|Fantasy|Thriller
## 9653                                                        Comedy|Drama|Romance|War
## 9654                                                      Adventure|Children|Romance
## 9655                                 Adventure|Animation|Children|Drama|Musical|IMAX
## 9656                                                        Adventure|Comedy|Western
## 9657                                                                         Western
## 9658                                                                           Drama
## 9659                                                                     Crime|Drama
## 9660                                                       Action|Adventure|Thriller
## 9661                                                                           Drama
## 9662                                                                  Drama|Thriller
## 9663                                                                        Thriller
## 9664                                                                 Action|Thriller
## 9665                                                                           Drama
## 9666                                                Action|Adventure|Sci-Fi|Thriller
## 9667                                                                           Drama
## 9668                                                              Action|Crime|Drama
## 9669                                                                   Drama|Romance
## 9670                                                                   Drama|Romance
## 9671                                                                           Drama
## 9672                                                                  Children|Drama
## 9673                                                          Action|Sci-Fi|Thriller
## 9674                                                            Action|Drama|Western
## 9675                                                                 Children|Comedy
## 9676                                           Comedy|Drama|Fantasy|Romance|Thriller
## 9677                                                                   Action|Sci-Fi
## 9678                                                         Adventure|Drama|Western
## 9679                                                           Action|Crime|Thriller
## 9680                                                           Crime|Horror|Thriller
## 9681                                 Animation|Children|Fantasy|Musical|Romance|IMAX
## 9682                                                                  Comedy|Romance
## 9683                                                              Adventure|Children
## 9684                                        Action|Adventure|Animation|Horror|Sci-Fi
## 9685                                                                   Drama|Romance
## 9686                                                              Animation|Children
## 9687                                                    Crime|Drama|Mystery|Thriller
## 9688                            Adventure|Animation|Children|Fantasy|Musical|Romance
## 9689                                                                          Comedy
## 9690                                               Action|Adventure|Mystery|Thriller
## 9691                                                                           Drama
## 9692                                                        Action|Adventure|Fantasy
## 9693                                                                          Comedy
## 9694                                                              Action|Crime|Drama
## 9695                                                            Crime|Drama|Thriller
## 9696                                                                  Comedy|Romance
## 9697                                     Adventure|Animation|Children|Comedy|Musical
## 9698                                                              Adventure|Children
## 9699                                                                          Comedy
## 9700                                                   Drama|Fantasy|Horror|Thriller
## 9701                                                       Action|Adventure|Thriller
## 9702                                               Action|Adventure|Romance|Thriller
## 9703                                                                          Comedy
## 9704                                                Action|Adventure|Sci-Fi|Thriller
## 9705                                                                 Comedy|Thriller
## 9706                                                   Comedy|Fantasy|Romance|Sci-Fi
## 9707                                                Action|Adventure|Sci-Fi|Thriller
## 9708                                                            Comedy|Drama|Romance
## 9709                                                                 Adventure|Drama
## 9710                                                                 Musical|Romance
## 9711                                                 Children|Comedy|Fantasy|Musical
## 9712                                                                     Crime|Drama
## 9713                                                           Children|Drama|Sci-Fi
## 9714                                     Adventure|Animation|Children|Comedy|Fantasy
## 9715                                                      Adventure|Children|Fantasy
## 9716                                                            Comedy|Drama|Romance
## 9717                                                            Adventure|Drama|IMAX
## 9718                                                         Action|Adventure|Sci-Fi
## 9719                                                            Comedy|Drama|Fantasy
## 9720                                                                     Crime|Drama
## 9721                                                        Comedy|Drama|Romance|War
## 9722                                                     Action|Comedy|Crime|Fantasy
## 9723                                        Action|Adventure|Comedy|Romance|Thriller
## 9724                                                                  Drama|Thriller
## 9725                                                                        Thriller
## 9726                                                                  Comedy|Romance
## 9727                                                Action|Adventure|Sci-Fi|Thriller
## 9728                                                                    Comedy|Drama
## 9729                                                                       Drama|War
## 9730                                                            Comedy|Drama|Romance
## 9731                                                          Action|Sci-Fi|Thriller
## 9732                                                                 Children|Comedy
## 9733                                           Comedy|Drama|Fantasy|Romance|Thriller
## 9734                                                         Adventure|Drama|Western
## 9735                                                           Action|Crime|Thriller
## 9736                                                                  Comedy|Romance
## 9737                                                              Comedy|Crime|Drama
## 9738                                                Action|Adventure|Sci-Fi|Thriller
## 9739                                                                Mystery|Thriller
## 9740                                       Action|Adventure|Mystery|Romance|Thriller
## 9741                                                                   Drama|Romance
## 9742                                                    Comedy|Drama|Musical|Romance
## 9743                                                  Crime|Mystery|Romance|Thriller
## 9744                                                                          Comedy
## 9745                                                  Children|Drama|Fantasy|Romance
## 9746                                                                 Musical|Romance
## 9747                                                 Children|Comedy|Fantasy|Musical
## 9748                                                           Children|Drama|Sci-Fi
## 9749                                                                           Drama
## 9750                                                         Action|Adventure|Sci-Fi
## 9751                                         Action|Adventure|Comedy|Fantasy|Romance
## 9752                                                                Action|Adventure
## 9753                                                  Action|Adventure|Horror|Sci-Fi
## 9754                                                                           Drama
## 9755                                                          Comedy|Fantasy|Romance
## 9756                                                         Adventure|Comedy|Sci-Fi
## 9757                                                                  Comedy|Fantasy
## 9758                                                                Action|Adventure
## 9759                                                                    Comedy|Drama
## 9760                                                          Children|Drama|Fantasy
## 9761                                                         Adventure|Comedy|Sci-Fi
## 9762                                                                   Drama|Romance
## 9763                                                    Comedy|Drama|Fantasy|Romance
## 9764                                                            Action|Comedy|Sci-Fi
## 9765                                                                 Action|Thriller
## 9766                                                                   Drama|Romance
## 9767                                                                  Comedy|Romance
## 9768                                                                   Drama|Musical
## 9769                                                                   Drama|Romance
## 9770                                                                  Comedy|Fantasy
## 9771                                                        Adventure|Children|Drama
## 9772                                                                           Drama
## 9773                                                  Action|Comedy|Romance|Thriller
## 9774                                                                    Comedy|Drama
## 9775                                                            Action|Comedy|Sci-Fi
## 9776                                                           Comedy|Horror|Musical
## 9777                                                            Drama|Horror|Mystery
## 9778                                                                          Comedy
## 9779                                                                          Comedy
## 9780                                                    Comedy|Drama|Fantasy|Romance
## 9781                                                                          Comedy
## 9782                                                 Adventure|Comedy|Fantasy|Sci-Fi
## 9783                                                                  Comedy|Romance
## 9784                                                                           Drama
## 9785                                                                    Comedy|Crime
## 9786                                                                  Drama|Thriller
## 9787                                                          Action|Adventure|Drama
## 9788                                                  Adventure|Drama|Romance|Sci-Fi
## 9789                                                                  Drama|Thriller
## 9790                                                                           Drama
## 9791                             Adventure|Animation|Children|Comedy|Fantasy|Romance
## 9792                                     Adventure|Animation|Children|Comedy|Fantasy
## 9793                                                                  Crime|Thriller
## 9794                                                                  Comedy|Romance
## 9795                                                               Adventure|Fantasy
## 9796                                                                   Drama|Romance
## 9797                                             Adventure|Animation|Children|Comedy
## 9798                                                                  Comedy|Romance
## 9799                                                Action|Adventure|Sci-Fi|Thriller
## 9800                                                         Action|Mystery|Thriller
## 9801                                                               Adventure|Fantasy
## 9802                                                               Adventure|Fantasy
## 9803                                                                     Crime|Drama
## 9804                                                                       Drama|War
## 9805                                                            Comedy|Drama|Romance
## 9806                                               Adventure|Children|Comedy|Mystery
## 9807                                                    Comedy|Drama|Fantasy|Romance
## 9808                                             Adventure|Animation|Children|Comedy
## 9809                                                 Action|Adventure|Comedy|Fantasy
## 9810                                                                  Comedy|Musical
## 9811                                                           Action|Crime|Thriller
## 9812                                                           Drama|Fantasy|Romance
## 9813                                                  Action|Adventure|Drama|Fantasy
## 9814                                                            Drama|Romance|Sci-Fi
## 9815                             Adventure|Animation|Children|Comedy|Musical|Romance
## 9816                                                            Comedy|Drama|Romance
## 9817                                                                  Comedy|Romance
## 9818                                                    Action|Adventure|Sci-Fi|IMAX
## 9819                                                         Action|Adventure|Sci-Fi
## 9820                                      Action|Adventure|Animation|Children|Comedy
## 9821                                         Action|Adventure|Drama|Mystery|Thriller
## 9822                                                                 Adventure|Drama
## 9823                                                                           Drama
## 9824                                                                           Drama
## 9825                                                                       Drama|War
## 9826                                                                           Drama
## 9827                                                            Comedy|Drama|Romance
## 9828                                             Adventure|Animation|Fantasy|Romance
## 9829                                                                  Comedy|Romance
## 9830                                                         Adventure|Comedy|Sci-Fi
## 9831                                             Adventure|Animation|Children|Comedy
## 9832                                                       Animation|Children|Comedy
## 9833                                                           Drama|Fantasy|Romance
## 9834                                                    Comedy|Drama|Fantasy|Romance
## 9835                                                Adventure|Comedy|Fantasy|Romance
## 9836                                                            Comedy|Drama|Romance
## 9837                                     Adventure|Animation|Children|Comedy|Fantasy
## 9838                                                      Adventure|Children|Fantasy
## 9839                                                                          Comedy
## 9840                                                                          Comedy
## 9841                                                                  Children|Drama
## 9842                                                                  Comedy|Romance
## 9843                                        Animation|Children|Drama|Musical|Romance
## 9844                                                                          Comedy
## 9845                                                              Adventure|Children
## 9846                                                                Adventure|Comedy
## 9847                                                                  Children|Drama
## 9848                                                     Comedy|Crime|Drama|Thriller
## 9849                                                                     Crime|Drama
## 9850                                                                          Comedy
## 9851                                                        Comedy|Drama|Romance|War
## 9852                                                                  Comedy|Romance
## 9853                                 Adventure|Animation|Children|Drama|Musical|IMAX
## 9854                                                                 Children|Comedy
## 9855                                                         Children|Comedy|Fantasy
## 9856                                                                    Comedy|Drama
## 9857                                                                       Drama|War
## 9858                                                                 Children|Comedy
## 9859                                           Comedy|Drama|Fantasy|Romance|Thriller
## 9860                                 Animation|Children|Fantasy|Musical|Romance|IMAX
## 9861                                              Animation|Children|Fantasy|Musical
## 9862                                                                  Comedy|Romance
## 9863                                                   Comedy|Fantasy|Romance|Sci-Fi
## 9864                                              Adventure|Children|Fantasy|Musical
## 9865                                                                          Comedy
## 9866                                                                          Comedy
## 9867                                                 Children|Comedy|Fantasy|Musical
## 9868                                                                 Musical|Romance
## 9869                                                 Children|Comedy|Fantasy|Musical
## 9870                                                                           Drama
## 9871                                                          Comedy|Fantasy|Romance
## 9872                                                         Adventure|Comedy|Sci-Fi
## 9873                                                                          Comedy
## 9874                                                             Comedy|Drama|Sci-Fi
## 9875                                                                   Drama|Romance
## 9876                                                                   Drama|Romance
## 9877                                                                           Drama
## 9878                                                                    Comedy|Drama
## 9879                                                         Adventure|Comedy|Sci-Fi
## 9880                                                 Adventure|Comedy|Sci-Fi|Western
## 9881                                                                Action|Drama|War
## 9882                                        Adventure|Children|Comedy|Fantasy|Sci-Fi
## 9883                                                         Children|Comedy|Romance
## 9884                                                                   Comedy|Sci-Fi
## 9885                                                                           Drama
## 9886                                                                          Comedy
## 9887                                                            Comedy|Drama|Fantasy
## 9888                                             Adventure|Animation|Children|Comedy
## 9889                                                                    Comedy|Crime
## 9890                                                                  Comedy|Romance
## 9891                                                                          Comedy
## 9892                       Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery
## 9893                                     Adventure|Animation|Children|Comedy|Fantasy
## 9894                                                                          Comedy
## 9895                                                                   Drama|Romance
## 9896                                                                           Drama
## 9897                                                                          Comedy
## 9898                                                                          Comedy
## 9899                                                                   Action|Comedy
## 9900                                                                    Comedy|Drama
## 9901                             Adventure|Animation|Children|Comedy|Fantasy|Romance
## 9902                                                   Drama|Mystery|Sci-Fi|Thriller
## 9903                                     Adventure|Animation|Children|Comedy|Fantasy
## 9904                                                      Adventure|Children|Fantasy
## 9905                                                               Adventure|Fantasy
## 9906                                                                          Comedy
## 9907                                                Action|Adventure|Sci-Fi|Thriller
## 9908                                                               Adventure|Fantasy
## 9909                                                               Adventure|Fantasy
## 9910                                             Adventure|Animation|Children|Comedy
## 9911                                                 Action|Adventure|Comedy|Fantasy
## 9912                                                  Action|Adventure|Drama|Fantasy
## 9913                                                            Drama|Romance|Sci-Fi
## 9914                                      Action|Adventure|Animation|Children|Comedy
## 9915                                                            Comedy|Drama|Romance
## 9916                                                    Crime|Drama|Mystery|Thriller
## 9917                                                            Comedy|Drama|Romance
## 9918                                     Adventure|Animation|Children|Comedy|Fantasy
## 9919                                                                  Comedy|Romance
## 9920                                                                          Comedy
## 9921                                                                  Comedy|Romance
## 9922                                                                          Action
## 9923                                                                   Comedy|Horror
## 9924                                                                           Drama
## 9925                                                                   Drama|Romance
## 9926                                                                   Drama|Romance
## 9927                                                                           Drama
## 9928                                                         Mystery|Sci-Fi|Thriller
## 9929                                                                     Crime|Drama
## 9930                                                            Comedy|Drama|Romance
## 9931                                                            Comedy|Drama|Romance
## 9932                                                                  Drama|Thriller
## 9933                                                                           Drama
## 9934                                                                    Comedy|Crime
## 9935                                                                          Comedy
## 9936                                                          Action|Sci-Fi|Thriller
## 9937                                                                  Drama|Thriller
## 9938                                                             Crime|Drama|Romance
## 9939                                                                    Comedy|Drama
## 9940                                                          Action|Adventure|Drama
## 9941                                                                          Comedy
## 9942                                                           Drama|Horror|Thriller
## 9943                                                       Action|Adventure|Thriller
## 9944                                                                  Drama|Thriller
## 9945                                                                          Comedy
## 9946                                               Adventure|Children|Comedy|Musical
## 9947                                                   Action|Adventure|Comedy|Crime
## 9948                                                                          Comedy
## 9949                                                                          Comedy
## 9950                                                                 Action|Thriller
## 9951                                                       Action|Adventure|Thriller
## 9952                                                     Comedy|Crime|Drama|Thriller
## 9953                                                              Adventure|Children
## 9954                                                                   Drama|Romance
## 9955                                                    Crime|Drama|Mystery|Thriller
## 9956                            Adventure|Animation|Children|Fantasy|Musical|Romance
## 9957                                                                          Comedy
## 9958                                                                  Drama|Thriller
## 9959                                               Action|Adventure|Mystery|Thriller
## 9960                                                        Action|Adventure|Fantasy
## 9961                                    Adventure|Animation|Children|Fantasy|Musical
## 9962                                                                          Comedy
## 9963                                                                          Action
## 9964                                                                   Comedy|Sci-Fi
## 9965                              Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi
## 9966                                                              Action|Crime|Drama
## 9967                                                                Action|Adventure
## 9968                                                            Crime|Drama|Thriller
## 9969                                                                  Comedy|Romance
## 9970                                                              Adventure|Children
## 9971                                                                          Comedy
## 9972                                                   Drama|Fantasy|Horror|Thriller
## 9973                                                       Action|Adventure|Thriller
## 9974                                               Action|Adventure|Romance|Thriller
## 9975                                                                   Action|Sci-Fi
## 9976                                                                          Comedy
## 9977                                                       Animation|Children|Comedy
## 9978                                                          Action|Sci-Fi|Thriller
## 9979                                                                Action|Adventure
## 9980                                                                    Comedy|Crime
## 9981                                                Action|Adventure|Sci-Fi|Thriller
## 9982                                                                 Comedy|Thriller
## 9983                                                                          Comedy
## 9984                                                           Action|Drama|Thriller
## 9985                                                   Comedy|Fantasy|Romance|Sci-Fi
## 9986                                                          Comedy|Horror|Thriller
## 9987                                                                   Drama|Romance
## 9988                                                                  Drama|Thriller
## 9989                                                         Children|Comedy|Fantasy
## 9990                                                                  Crime|Thriller
## 9991                                                                 Action|Thriller
## 9992                                                Action|Adventure|Sci-Fi|Thriller
## 9993                                                            Comedy|Drama|Romance
## 9994                                                                 Sci-Fi|Thriller
## 9995                                                                 Horror|Thriller
## 9996                                                                   Drama|Romance
## 9997                                                                        Thriller
## 9998                                                 Children|Comedy|Fantasy|Musical
## 9999                                                Action|Adventure|Sci-Fi|Thriller
## 10000                                                      Adventure|Children|Comedy
## 10001                                                                    Documentary
## 10002                                                                  Action|Sci-Fi
## 10003                                      Action|Adventure|Mystery|Romance|Thriller
## 10004                                                                         Comedy
## 10005                                                                Adventure|Drama
## 10006                                                        Crime|Film-Noir|Mystery
## 10007                                               Crime|Film-Noir|Mystery|Thriller
## 10008                                                                          Drama
## 10009                                                                          Drama
## 10010                                                                  Drama|Romance
## 10011                                                                          Drama
## 10012                                                                          Drama
## 10013                                                                          Drama
## 10014                                                                 Comedy|Romance
## 10015                                                           Comedy|Drama|Romance
## 10016                                                                         Comedy
## 10017                                                  Drama|Fantasy|Mystery|Romance
## 10018                                                                   Comedy|Drama
## 10019                                                        Adventure|Horror|Sci-Fi
## 10020                                                                  Horror|Sci-Fi
## 10021                                                                        Musical
## 10022                                                                Drama|Film-Noir
## 10023                                                                Crime|Film-Noir
## 10024                                    Adventure|Animation|Children|Comedy|Fantasy
## 10025                                                     Adventure|Children|Fantasy
## 10026                                                               Mystery|Thriller
## 10027                                                         Crime|Mystery|Thriller
## 10028                                                               Action|Drama|War
## 10029                                                           Adventure|Drama|IMAX
## 10030                                                        Action|Adventure|Sci-Fi
## 10031                                                    Comedy|Crime|Drama|Thriller
## 10032                                                                    Crime|Drama
## 10033                                                       Comedy|Drama|Romance|War
## 10034                                               Action|Adventure|Sci-Fi|Thriller
## 10035                                                                      Drama|War
## 10036                                                         Action|Sci-Fi|Thriller
## 10037                                                          Crime|Horror|Thriller
## 10038                                                    Comedy|Crime|Drama|Thriller
## 10039                                                             Comedy|Crime|Drama
## 10040                                                                    Crime|Drama
## 10041                                                                  Drama|Romance
## 10042                                                         Adventure|Drama|Sci-Fi
## 10043                                                          Action|Crime|Thriller
## 10044                                                        Action|Adventure|Sci-Fi
## 10045                                                 Action|Adventure|Horror|Sci-Fi
## 10046                                                    Crime|Drama|Sci-Fi|Thriller
## 10047                                                               Action|Drama|War
## 10048                                                                    Crime|Drama
## 10049                                                                    Crime|Drama
## 10050                                                                      Drama|War
## 10051                                                                          Drama
## 10052                                                                         Horror
## 10053                                                        Adventure|Comedy|Sci-Fi
## 10054                                                            Comedy|Drama|Sci-Fi
## 10055                                                                          Drama
## 10056                                                          Action|Comedy|Romance
## 10057                                                               Action|Drama|War
## 10058                                                       Comedy|Drama|Romance|War
## 10059                                                                   Comedy|Drama
## 10060                                                         Action|Sci-Fi|Thriller
## 10061                                                        Action|Adventure|Sci-Fi
## 10062                                                                   Action|Crime
## 10063                                                           Drama|Horror|Mystery
## 10064                                                                  Drama|Romance
## 10065                                                                         Comedy
## 10066                                                    Action|Crime|Drama|Thriller
## 10067                                    Adventure|Animation|Children|Comedy|Fantasy
## 10068                                                           Comedy|Drama|Romance
## 10069                                                         Action|Adventure|Drama
## 10070                                                                   Action|Crime
## 10071                                                               Action|Drama|War
## 10072                                                        Action|Adventure|Sci-Fi
## 10073                                                                          Drama
## 10074                                                                          Drama
## 10075                                                           Action|Drama|Romance
## 10076                                                          Comedy|Crime|Thriller
## 10077                                                                 Comedy|Romance
## 10078                                                                          Drama
## 10079                                                                   Comedy|Crime
## 10080                                                         Adventure|Comedy|Crime
## 10081                                                               Mystery|Thriller
## 10082                                                           Comedy|Drama|Romance
## 10083                                                             Action|Crime|Drama
## 10084                            Adventure|Animation|Children|Comedy|Fantasy|Romance
## 10085                                                                 Comedy|Romance
## 10086                                                  Drama|Horror|Mystery|Thriller
## 10087                                                  Drama|Mystery|Sci-Fi|Thriller
## 10088                                    Adventure|Animation|Children|Comedy|Fantasy
## 10089                                                                 Crime|Thriller
## 10090                                                                 Comedy|Romance
## 10091                                                                   Comedy|Drama
## 10092                                                              Adventure|Fantasy
## 10093                                                                  Drama|Romance
## 10094                                            Adventure|Animation|Children|Comedy
## 10095                                               Action|Adventure|Sci-Fi|Thriller
## 10096                                                   Action|Adventure|Sci-Fi|IMAX
## 10097                                                        Action|Mystery|Thriller
## 10098                                           Action|Crime|Mystery|Sci-Fi|Thriller
## 10099                                                        Horror|Mystery|Thriller
## 10100                                                         Action|Sci-Fi|Thriller
## 10101                                                              Adventure|Fantasy
## 10102                                                                    Crime|Drama
## 10103                                                                      Drama|War
## 10104                                               Action|Adventure|Sci-Fi|Thriller
## 10105                                            Adventure|Animation|Children|Comedy
## 10106                                                           Action|Horror|Sci-Fi
## 10107                                                Action|Adventure|Comedy|Fantasy
## 10108                                                           Comedy|Drama|Romance
## 10109                                                                 Comedy|Musical
## 10110                                                          Action|Crime|Thriller
## 10111                                          Action|Adventure|Sci-Fi|Thriller|IMAX
## 10112                                                     Action|Adventure|Drama|War
## 10113                                                          Drama|Fantasy|Romance
## 10114                                                 Action|Adventure|Drama|Fantasy
## 10115                                                          Drama|Sci-Fi|Thriller
## 10116                                                           Drama|Romance|Sci-Fi
## 10117                                                          Action|Drama|Thriller
## 10118                                                     Action|Adventure|Drama|War
## 10119                                                               Action|Drama|War
## 10120                                               Action|Adventure|Sci-Fi|Thriller
## 10121                                                                  Comedy|Horror
## 10122                                                         Drama|Mystery|Thriller
## 10123                                     Action|Adventure|Animation|Children|Comedy
## 10124                                                 Action|Fantasy|Horror|Thriller
## 10125                                                              Action|Crime|IMAX
## 10126                                                Action|Crime|Drama|Thriller|War
## 10127                                                     Adventure|Children|Fantasy
## 10128                                                    Action|Sci-Fi|Thriller|IMAX
## 10129                                                                   Comedy|Drama
## 10130                                                         Drama|Mystery|Thriller
## 10131                                                         Adventure|Comedy|Drama
## 10132                                                  Drama|Fantasy|Mystery|Romance
## 10133                                                                         Comedy
## 10134                                                         Drama|Fantasy|Thriller
## 10135                                                           Crime|Drama|Thriller
## 10136                                                      Action|Adventure|Thriller
## 10137                                                       Animation|Children|Drama
## 10138                                                    Action|Comedy|Crime|Mystery
## 10139                                                           Crime|Drama|Thriller
## 10140                                                        Action|Fantasy|War|IMAX
## 10141                                            Action|Crime|Horror|Sci-Fi|Thriller
## 10142                                          Action|Adventure|Sci-Fi|Thriller|IMAX
## 10143                                                           Comedy|Drama|Romance
## 10144                                                         Horror|Sci-Fi|Thriller
## 10145                                                Action|Adventure|Comedy|Fantasy
## 10146                                                                 Crime|Thriller
## 10147                                         Action|Adventure|Crime|Horror|Thriller
## 10148                                                Action|Adventure|Crime|Thriller
## 10149                                                    Action|Sci-Fi|Thriller|IMAX
## 10150                                                   Adventure|Drama|Fantasy|IMAX
## 10151                                               Adventure|Comedy|Fantasy|Romance
## 10152                                                               Animation|Comedy
## 10153                                                          Action|Crime|Thriller
## 10154                                                                         Comedy
## 10155                                                     Action|Crime|Drama|Western
## 10156                                                         Action|Adventure|Drama
## 10157                                                         Adventure|Comedy|Drama
## 10158                                                           Crime|Drama|Thriller
## 10159                                                                    Crime|Drama
## 10160                                             Action|Horror|Sci-Fi|Thriller|IMAX
## 10161                                                           Comedy|Drama|Romance
## 10162                                                  Drama|Horror|Musical|Thriller
## 10163                                                                  Drama|Western
## 10164                                                        Action|Crime|Drama|IMAX
## 10165                                                        Action|Adventure|Sci-Fi
## 10166                                    Adventure|Animation|Children|Romance|Sci-Fi
## 10167                                                             Comedy|Crime|Drama
## 10168                                                  Drama|Fantasy|Mystery|Romance
## 10169                                                               Action|Drama|War
## 10170                                                         Action|Sci-Fi|Thriller
## 10171                                                   Action|Adventure|Sci-Fi|IMAX
## 10172                                             Adventure|Animation|Children|Drama
## 10173                                                                   Comedy|Crime
## 10174                                                   Action|Adventure|Sci-Fi|IMAX
## 10175                                                         Drama|Mystery|Thriller
## 10176                                Action|Crime|Drama|Mystery|Sci-Fi|Thriller|IMAX
## 10177                                          Action|Comedy|Fantasy|Musical|Romance
## 10178                                                       Adventure|Drama|Thriller
## 10179                                                                 Drama|Thriller
## 10180                                                                        Western
## 10181                                                         Comedy|Fantasy|Romance
## 10182                                           Action|Adventure|Sci-Fi|Thriller|War
## 10183                                                   Action|Drama|Sci-Fi|Thriller
## 10184                                                                          Drama
## 10185                                                   Action|Adventure|Sci-Fi|IMAX
## 10186                                                    Action|Adventure|Crime|IMAX
## 10187                                                                   Comedy|Drama
## 10188                                                           Comedy|Drama|Romance
## 10189                                                              Drama|Sci-Fi|IMAX
## 10190                                                           Adventure|Drama|IMAX
## 10191                                                           Action|Drama|Western
## 10192                                                   Action|Adventure|Sci-Fi|IMAX
## 10193                                                       Action|Drama|Horror|IMAX
## 10194                                                          Drama|Fantasy|Romance
## 10195                                                             Action|Sci-Fi|IMAX
## 10196                                                                          Drama
## 10197                                                                          Drama
## 10198                                                           Drama|Romance|Sci-Fi
## 10199                                                                    Sci-Fi|IMAX
## 10200                                                                          Drama
## 10201                                                        Action|Adventure|Sci-Fi
## 10202                                                                     Action|War
## 10203                                                          Drama|Sci-Fi|Thriller
## 10204                                                             Drama|Thriller|War
## 10205                                                                  Drama|Romance
## 10206                                               Action|Adventure|Sci-Fi|Thriller
## 10207                                           Action|Adventure|Fantasy|Sci-Fi|IMAX
## 10208                                                 Action|Adventure|Comedy|Sci-Fi
## 10209                                                         Action|Sci-Fi|Thriller
## 10210                                                         Adventure|Drama|Sci-Fi
## 10211                                                Action|Adventure|Fantasy|Sci-Fi
## 10212                                                                Adventure|Drama
## 10213                                                                       Thriller
## 10214                                                 Action|Adventure|Drama|Fantasy
## 10215                                    Adventure|Animation|Children|Comedy|Fantasy
## 10216                                                     Adventure|Children|Fantasy
## 10217                                                          Action|Crime|Thriller
## 10218                                                      Action|Adventure|Thriller
## 10219                                                       Action|Adventure|Romance
## 10220                                                                    Crime|Drama
## 10221                                                                         Comedy
## 10222                                                          Comedy|Crime|Thriller
## 10223                                                                  Drama|Romance
## 10224                                                                          Drama
## 10225                                                        Mystery|Sci-Fi|Thriller
## 10226                                                                 Children|Drama
## 10227                                                                    Crime|Drama
## 10228                                                                 Comedy|Romance
## 10229                                                       Action|Adventure|Fantasy
## 10230                                                               Mystery|Thriller
## 10231                                       Animation|Children|Drama|Musical|Romance
## 10232                                                         Crime|Mystery|Thriller
## 10233                                                     Adventure|Children|Fantasy
## 10234                                                                   Comedy|Crime
## 10235                                                                         Comedy
## 10236                                                                         Comedy
## 10237                                                  Action|Comedy|Horror|Thriller
## 10238                                                                Action|Thriller
## 10239                                                 Adventure|Comedy|Crime|Romance
## 10240                                                                         Comedy
## 10241                                              Adventure|Children|Comedy|Musical
## 10242                                                               Action|Drama|War
## 10243                                                           Crime|Drama|Thriller
## 10244                                                  Action|Adventure|Comedy|Crime
## 10245                                             Action|Comedy|Crime|Drama|Thriller
## 10246                                                                          Drama
## 10247                                                           Adventure|Drama|IMAX
## 10248                                                  Action|Adventure|Comedy|Crime
## 10249                                                             Adventure|Children
## 10250                                                Action|Adventure|Mystery|Sci-Fi
## 10251                                                         Action|Romance|Western
## 10252                                                          Action|Crime|Thriller
## 10253                                                           Action|Drama|Romance
## 10254                                                       Adventure|Children|Drama
## 10255                                                         Action|Sci-Fi|Thriller
## 10256                                                            Action|Crime|Sci-Fi
## 10257                                                                          Drama
## 10258                                                                         Horror
## 10259                                                                 Comedy|Romance
## 10260                                                          Action|Crime|Thriller
## 10261                                                                          Drama
## 10262                                     Action|Crime|Drama|Mystery|Sci-Fi|Thriller
## 10263                                                        Action|Adventure|Sci-Fi
## 10264                                                                  Drama|Romance
## 10265                                                                         Comedy
## 10266                                                                         Comedy
## 10267                                                               Adventure|Comedy
## 10268                                                                          Drama
## 10269                                                                   Comedy|Drama
## 10270                                              Animation|Children|Comedy|Romance
## 10271                                                                    Documentary
## 10272                                                                    Crime|Drama
## 10273                                                                   Drama|Horror
## 10274                                                                  Comedy|Sci-Fi
## 10275                                      Adventure|Children|Comedy|Fantasy|Romance
## 10276                                                        Action|Adventure|Sci-Fi
## 10277                                                      Drama|Romance|War|Western
## 10278                                                                         Comedy
## 10279                                                          Action|Crime|Thriller
## 10280                                                   Action|Drama|Sci-Fi|Thriller
## 10281                                                    Action|Crime|Drama|Thriller
## 10282                                                    Comedy|Crime|Drama|Thriller
## 10283                                                                          Drama
## 10284                                                        Action|Adventure|Sci-Fi
## 10285                                                                    Crime|Drama
## 10286                                                          Comedy|Drama|Thriller
## 10287                                                                   Comedy|Drama
## 10288                                                           Action|Comedy|Sci-Fi
## 10289                                                                         Comedy
## 10290                                                                          Drama
## 10291                                                         Action|Sci-Fi|Thriller
## 10292                                                                         Comedy
## 10293                                                    Action|Crime|Drama|Thriller
## 10294                                                                   Comedy|Drama
## 10295                                                  Action|Crime|Fantasy|Thriller
## 10296                                                       Comedy|Drama|Romance|War
## 10297                                Adventure|Animation|Children|Drama|Musical|IMAX
## 10298                                                    Action|Comedy|Crime|Fantasy
## 10299                                                       Adventure|Comedy|Western
## 10300                                                                Children|Comedy
## 10301                                                        Action|Romance|Thriller
## 10302                                       Action|Adventure|Comedy|Romance|Thriller
## 10303                                                                Horror|Thriller
## 10304                                                                    Crime|Drama
## 10305                                                        Children|Comedy|Fantasy
## 10306                                                                         Comedy
## 10307                                                                          Drama
## 10308                                                                    Crime|Drama
## 10309                                                                  Comedy|Sci-Fi
## 10310                                                                         Comedy
## 10311                                                        Action|Adventure|Sci-Fi
## 10312                                                           Crime|Drama|Thriller
## 10313                                                                       Thriller
## 10314                                                              Action|Comedy|War
## 10315                                                                         Comedy
## 10316                                                                Action|Thriller
## 10317                                               Action|Adventure|Sci-Fi|Thriller
## 10318                                                                 Drama|Thriller
## 10319                                                           Crime|Drama|Thriller
## 10320                                                Action|Adventure|Comedy|Fantasy
## 10321                                                             Action|Crime|Drama
## 10322                                                                 Comedy|Romance
## 10323                                                                   Comedy|Drama
## 10324                                                        Action|Children|Romance
## 10325                                                           Crime|Drama|Thriller
## 10326                                                                          Drama
## 10327                                                                          Drama
## 10328                                                                         Comedy
## 10329                                                                         Comedy
## 10330                                                                   Action|Drama
## 10331                                                                      Drama|War
## 10332                                                         Action|Sci-Fi|Thriller
## 10333                                             Animation|Children|Fantasy|Musical
## 10334                                                           Action|Drama|Western
## 10335                                                                 Crime|Thriller
## 10336                                                                Children|Comedy
## 10337                                                                         Comedy
## 10338                                                                Children|Comedy
## 10339                                    Adventure|Animation|Children|Comedy|Musical
## 10340                                                                  Action|Sci-Fi
## 10341                                                        Adventure|Drama|Western
## 10342                                                          Action|Crime|Thriller
## 10343                                                          Crime|Horror|Thriller
## 10344                                       Animation|Children|Drama|Fantasy|Musical
## 10345                                Animation|Children|Fantasy|Musical|Romance|IMAX
## 10346                                             Animation|Children|Fantasy|Musical
## 10347                                                                 Comedy|Romance
## 10348                                                    Comedy|Crime|Drama|Thriller
## 10349                                       Action|Adventure|Animation|Horror|Sci-Fi
## 10350                                                   Crime|Drama|Mystery|Thriller
## 10351                           Adventure|Animation|Children|Fantasy|Musical|Romance
## 10352                                              Action|Adventure|Mystery|Thriller
## 10353                                                       Action|Adventure|Fantasy
## 10354                             Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi
## 10355                                                             Action|Crime|Drama
## 10356                                                               Action|Adventure
## 10357                                                                 Comedy|Romance
## 10358                                                                         Comedy
## 10359                                                      Action|Adventure|Thriller
## 10360                                                                         Horror
## 10361                                              Action|Adventure|Romance|Thriller
## 10362                                                                  Action|Sci-Fi
## 10363                                                               Animation|Sci-Fi
## 10364                                                                Horror|Thriller
## 10365                                                      Animation|Children|Comedy
## 10366                                                         Action|Sci-Fi|Thriller
## 10367                                                               Action|Adventure
## 10368                                                             Comedy|Crime|Drama
## 10369                                               Action|Adventure|Sci-Fi|Thriller
## 10370                                                                Comedy|Thriller
## 10371                                                                         Comedy
## 10372                                                          Action|Drama|Thriller
## 10373                                                  Comedy|Fantasy|Romance|Sci-Fi
## 10374                                                         Comedy|Horror|Thriller
## 10375                                                                  Drama|Romance
## 10376                                                                 Crime|Thriller
## 10377                                               Action|Adventure|Sci-Fi|Thriller
## 10378                                                                    Crime|Drama
## 10379                                                                Sci-Fi|Thriller
## 10380                                                               Mystery|Thriller
## 10381                                                           Comedy|Drama|Romance
## 10382                                             Adventure|Children|Fantasy|Musical
## 10383                                                         Adventure|Drama|Sci-Fi
## 10384                                                       Action|Adventure|Romance
## 10385                                                         Horror|Sci-Fi|Thriller
## 10386                                                       Adventure|Children|Drama
## 10387                                                                         Comedy
## 10388                                     Animation|Children|Fantasy|Musical|Romance
## 10389                                             Animation|Children|Fantasy|Musical
## 10390                                                                Adventure|Drama
## 10391                                               Animation|Children|Drama|Musical
## 10392                                   Adventure|Animation|Children|Fantasy|Musical
## 10393                                                       Animation|Children|Drama
## 10394                                                          Action|Crime|Thriller
## 10395                                                               Action|Adventure
## 10396                                                                  Drama|Romance
## 10397                                                                   Comedy|Drama
## 10398                                                                       Thriller
## 10399                                                                         Comedy
## 10400                                                         Crime|Mystery|Thriller
## 10401                                                                      Drama|War
## 10402                                                                          Drama
## 10403                                                         Drama|Romance|Thriller
## 10404                                                          Children|Drama|Sci-Fi
## 10405                                                                 Action|Romance
## 10406                                                                   Comedy|Drama
## 10407                                               Action|Adventure|Sci-Fi|Thriller
## 10408                                               Action|Adventure|Sci-Fi|Thriller
## 10409                                                       Adventure|Comedy|Fantasy
## 10410                                                Animation|Children|Comedy|Crime
## 10411                                                                          Drama
## 10412                                                                          Drama
## 10413                                                                          Drama
## 10414                                                                         Comedy
## 10415                                                        Action|Adventure|Sci-Fi
## 10416                                        Action|Adventure|Comedy|Fantasy|Romance
## 10417                                                               Action|Adventure
## 10418                                                                 Fantasy|Sci-Fi
## 10419                                                 Action|Adventure|Horror|Sci-Fi
## 10420                                                       Action|Adventure|Western
## 10421                                                                          Drama
## 10422                                                            Adventure|Drama|War
## 10423                                                    Crime|Drama|Sci-Fi|Thriller
## 10424                                                               Action|Drama|War
## 10425                                                        Action|Adventure|Sci-Fi
## 10426                                                                    Crime|Drama
## 10427                                                                  Horror|Sci-Fi
## 10428                                         Action|Adventure|Comedy|Fantasy|Horror
## 10429                                                    Action|Crime|Drama|Thriller
## 10430                                                          Action|Comedy|Musical
## 10431                                                                    Crime|Drama
## 10432                                                                      Drama|War
## 10433                                                                          Drama
## 10434                                                                          Drama
## 10435                                                         Action|Sci-Fi|Thriller
## 10436                                                          Comedy|Fantasy|Horror
## 10437                                                                      Drama|War
## 10438                                                 Crime|Drama|Film-Noir|Thriller
## 10439                                                                          Drama
## 10440                                               Crime|Film-Noir|Mystery|Thriller
## 10441                                                           Comedy|Horror|Sci-Fi
## 10442                                                                 Comedy|Romance
## 10443                                                                         Horror
## 10444                                                                Adventure|Drama
## 10445                                                   Action|Comedy|Fantasy|Horror
## 10446                                                     Action|Adventure|Drama|War
## 10447                                                                      Drama|War
## 10448                                                         Comedy|Fantasy|Romance
## 10449                                                                  Drama|Western
## 10450                                                        Adventure|Comedy|Sci-Fi
## 10451                                              Action|Adventure|Animation|Sci-Fi
## 10452                                                       Action|Adventure|Fantasy
## 10453                                             Animation|Children|Fantasy|Musical
## 10454                                                                         Comedy
## 10455                                                                         Comedy
## 10456                                                               Action|Adventure
## 10457                                                                          Drama
## 10458                                                                  Drama|Musical
## 10459                                                                      Drama|War
## 10460                                                         Children|Drama|Fantasy
## 10461                                                  Action|Horror|Sci-Fi|Thriller
## 10462                                                         Comedy|Horror|Thriller
## 10463                                                Fantasy|Horror|Romance|Thriller
## 10464                                                                Horror|Thriller
## 10465                                                                       Thriller
## 10466                                                  Drama|Fantasy|Horror|Thriller
## 10467                                                                Horror|Thriller
## 10468                                                        Horror|Mystery|Thriller
## 10469                                               Action|Adventure|Sci-Fi|Thriller
## 10470                                                                          Drama
## 10471                                                                Children|Comedy
## 10472                                                      Adventure|Children|Comedy
## 10473                                                      Action|Adventure|Thriller
## 10474                                                          Action|Mystery|Sci-Fi
## 10475                                               Action|Adventure|Sci-Fi|Thriller
## 10476                                                                   Action|Crime
## 10477                                                         Comedy|Musical|Romance
## 10478                                                                  Action|Horror
## 10479                                                           Action|Comedy|Sci-Fi
## 10480                                                                  Drama|Romance
## 10481                                                                         Comedy
## 10482                                               Action|Comedy|Crime|Drama|Sci-Fi
## 10483                                               Adventure|Animation|Comedy|Crime
## 10484                                                 Comedy|Horror|Mystery|Thriller
## 10485                                                     Action|Romance|War|Western
## 10486                                                                Action|Thriller
## 10487                                                                         Comedy
## 10488                                  Crime|Drama|Fantasy|Film-Noir|Mystery|Romance
## 10489                                                                    Crime|Drama
## 10490                                                 Action|Romance|Sci-Fi|Thriller
## 10491                                                                         Comedy
## 10492                                                      Action|Adventure|Thriller
## 10493                                                           Comedy|Crime|Romance
## 10494                                                          Action|Drama|Thriller
## 10495                                                        Action|Adventure|Comedy
## 10496                                                 Action|Adventure|Comedy|Sci-Fi
## 10497                                               Action|Adventure|Sci-Fi|Thriller
## 10498                                                      Action|Adventure|Thriller
## 10499                                              Action|Adventure|Fantasy|Thriller
## 10500                                    Adventure|Animation|Children|Comedy|Musical
## 10501                                                    Action|Crime|Drama|Thriller
## 10502                                                           Action|Comedy|Sci-Fi
## 10503                                                                   Drama|Sci-Fi
## 10504                                                       Action|Adventure|Fantasy
## 10505                                                         Horror|Sci-Fi|Thriller
## 10506                                               Action|Adventure|Sci-Fi|Thriller
## 10507                                                       Adventure|Children|Drama
## 10508                                                 Drama|Mystery|Romance|Thriller
## 10509                                                                         Action
## 10510                                                         Horror|Sci-Fi|Thriller
## 10511                                                                Action|Thriller
## 10512                                               Crime|Film-Noir|Mystery|Thriller
## 10513                                                         Drama|Mystery|Thriller
## 10514                                                           Comedy|Drama|Romance
## 10515                                                        Horror|Mystery|Thriller
## 10516                                                         Drama|Mystery|Thriller
## 10517                                                          Drama|Sci-Fi|Thriller
## 10518                                                                          Drama
## 10519                                                         Drama|Romance|Thriller
## 10520                                                                  Action|Sci-Fi
## 10521                                                       Action|Adventure|Fantasy
## 10522                                                            Comedy|Drama|Sci-Fi
## 10523                                                           Action|Horror|Sci-Fi
## 10524                                                                  Drama|Romance
## 10525                                                                Children|Comedy
## 10526                                                                  Drama|Romance
## 10527                                                           Crime|Drama|Thriller
## 10528                                                                   Comedy|Crime
## 10529                                            Adventure|Film-Noir|Sci-Fi|Thriller
## 10530                                                          Action|Crime|Thriller
## 10531                                                                         Comedy
## 10532                                                                         Comedy
## 10533                                                           Action|Horror|Sci-Fi
## 10534                                                                 Comedy|Romance
## 10535                                                                Sci-Fi|Thriller
## 10536                                                           Comedy|Drama|Romance
## 10537                                                                 Crime|Thriller
## 10538                                                          Action|Crime|Thriller
## 10539                                                             Adventure|Children
## 10540                                                                          Drama
## 10541                                                                  Action|Comedy
## 10542                                                                  Horror|Sci-Fi
## 10543                                                          Drama|Sci-Fi|Thriller
## 10544                                                         Action|Sci-Fi|Thriller
## 10545                                                         Adventure|Comedy|Drama
## 10546                                           Action|Crime|Mystery|Sci-Fi|Thriller
## 10547                                                                         Comedy
## 10548                                            Comedy|Crime|Drama|Romance|Thriller
## 10549                                                                  Drama|Romance
## 10550                                                 Action|Romance|Sci-Fi|Thriller
## 10551                                                 Animation|Children|Fantasy|War
## 10552                                                                 Comedy|Romance
## 10553                                                          Action|Crime|Thriller
## 10554                                                                          Drama
## 10555                                                                          Drama
## 10556                                                                  Comedy|Sci-Fi
## 10557                                                      Adventure|Fantasy|Musical
## 10558                                                                   Comedy|Drama
## 10559                                                        Horror|Mystery|Thriller
## 10560                                                                         Horror
## 10561                                                                Horror|Thriller
## 10562                                                                Horror|Thriller
## 10563                                                                 Horror|Mystery
## 10564                                                      Action|Comedy|Crime|Drama
## 10565                                                                  Comedy|Horror
## 10566                                                                  Comedy|Horror
## 10567                                       Action|Adventure|Children|Comedy|Fantasy
## 10568                                                          Action|Comedy|Romance
## 10569                                                  Drama|Mystery|Sci-Fi|Thriller
## 10570                                                        Adventure|Comedy|Sci-Fi
## 10571                                                Adventure|Comedy|Sci-Fi|Western
## 10572                                                       Animation|Children|Drama
## 10573                                                               Adventure|Sci-Fi
## 10574                                                   Crime|Drama|Mystery|Thriller
## 10575                                                               Action|Drama|War
## 10576                                           Adventure|Animation|Children|Fantasy
## 10577                                                 Children|Comedy|Fantasy|Horror
## 10578                                       Adventure|Children|Comedy|Fantasy|Sci-Fi
## 10579                                            Action|Crime|Drama|Mystery|Thriller
## 10580                                                                         Comedy
## 10581                                                         Drama|Mystery|Thriller
## 10582                                              Animation|Children|Comedy|Musical
## 10583                                              Animation|Children|Comedy|Romance
## 10584                                      Animation|Children|Comedy|Musical|Romance
## 10585                                                                Children|Comedy
## 10586                                             Animation|Children|Fantasy|Musical
## 10587                                                   Adventure|Animation|Children
## 10588                                       Adventure|Animation|Children|Crime|Drama
## 10589                                                     Adventure|Children|Fantasy
## 10590                                                     Animation|Children|Musical
## 10591                                                        Action|Adventure|Sci-Fi
## 10592                                                       Action|Adventure|Fantasy
## 10593                                        Animation|Children|Comedy|Drama|Fantasy
## 10594                                                        Children|Comedy|Fantasy
## 10595                                                          Comedy|Fantasy|Sci-Fi
## 10596                                     Adventure|Animation|Children|Drama|Fantasy
## 10597                                             Adventure|Animation|Children|Drama
## 10598                                                              Adventure|Fantasy
## 10599                                   Adventure|Animation|Children|Musical|Western
## 10600                                                      Adventure|Fantasy|Romance
## 10601                                                                 Comedy|Romance
## 10602                                                          Comedy|Fantasy|Horror
## 10603                                                               Adventure|Comedy
## 10604                                                          Crime|Horror|Thriller
## 10605                                                     Adventure|Children|Fantasy
## 10606                                                     Action|Comedy|Drama|Horror
## 10607                                                         Action|Horror|Thriller
## 10608                                                                 Comedy|Fantasy
## 10609                                                       Action|Adventure|Fantasy
## 10610                                                             Action|Crime|Drama
## 10611                                                                         Comedy
## 10612                                                                          Drama
## 10613                                                 Horror|Mystery|Sci-Fi|Thriller
## 10614                                                           Comedy|Drama|Romance
## 10615                                                                   Comedy|Drama
## 10616                                                   Action|Comedy|Crime|Thriller
## 10617                                                          Action|Crime|Thriller
## 10618                                                  Action|Horror|Sci-Fi|Thriller
## 10619                                                             Comedy|Crime|Drama
## 10620                                                          Drama|Fantasy|Romance
## 10621                                    Adventure|Animation|Children|Comedy|Fantasy
## 10622                                                                         Comedy
## 10623                                                                          Drama
## 10624                                                         Comedy|Horror|Thriller
## 10625                                                                   Comedy|Drama
## 10626                                                           Comedy|Drama|Fantasy
## 10627                                                       Comedy|Drama|Romance|War
## 10628                                                        Fantasy|Horror|Thriller
## 10629                                                                    Crime|Drama
## 10630                                                                         Comedy
## 10631                                                                        Romance
## 10632                                                                Action|Thriller
## 10633                                            Adventure|Animation|Children|Comedy
## 10634                                                                          Drama
## 10635                                                                   Comedy|Crime
## 10636                                                                   Comedy|Crime
## 10637                                                           Crime|Drama|Thriller
## 10638                                                              Animation|Musical
## 10639                                                                   Comedy|Drama
## 10640                                                           Comedy|Drama|Romance
## 10641                                                      Action|Adventure|Thriller
## 10642                                                Action|Adventure|Drama|Thriller
## 10643                                                  Action|Adventure|Thriller|War
## 10644                                                Action|Adventure|Comedy|Romance
## 10645                                                                   Action|Drama
## 10646                                                                   Action|Drama
## 10647                                                                   Action|Drama
## 10648                                                                   Action|Drama
## 10649                                                                          Drama
## 10650                                                         Action|Adventure|Drama
## 10651                                                Action|Adventure|Children|Drama
## 10652                                                                 Comedy|Romance
## 10653                                                               Action|Drama|War
## 10654                                                                  Horror|Sci-Fi
## 10655                                        Action|Adventure|Drama|Fantasy|Thriller
## 10656                                                                   Comedy|Drama
## 10657                                                                         Horror
## 10658                                                   Drama|Horror|Sci-Fi|Thriller
## 10659                                                                         Horror
## 10660                                                                         Horror
## 10661                                                   Crime|Drama|Mystery|Thriller
## 10662                                                               Adventure|Comedy
## 10663                                                                Action|Thriller
## 10664                                                               Animation|Sci-Fi
## 10665                                                                   Comedy|Crime
## 10666                                                        Action|Adventure|Sci-Fi
## 10667                                                            Action|Drama|Sci-Fi
## 10668                                                                          Drama
## 10669                                                          Comedy|Crime|Thriller
## 10670                                                          Drama|Horror|Thriller
## 10671                                                                         Comedy
## 10672                                                                Horror|Thriller
## 10673                                                         Action|Sci-Fi|Thriller
## 10674                                                                 Comedy|Romance
## 10675                                                                   Comedy|Crime
## 10676                                                                  Action|Comedy
## 10677                                                                   Comedy|Drama
## 10678                                                                         Comedy
## 10679                                                                 Crime|Thriller
## 10680                                                                  Comedy|Horror
## 10681                                Action|Adventure|Comedy|Fantasy|Horror|Thriller
## 10682                                                        Action|Adventure|Sci-Fi
## 10683                                                   Comedy|Horror|Musical|Sci-Fi
## 10684                                                                 Comedy|Romance
## 10685                                                        Action|Adventure|Comedy
## 10686                                             Adventure|Animation|Children|Drama
## 10687                                                                   Action|Crime
## 10688                                                                         Comedy
## 10689                                                                  Comedy|Horror
## 10690                                                       Animation|Comedy|Musical
## 10691                                                   Action|Comedy|Sci-Fi|Western
## 10692                                                                 Comedy|Romance
## 10693                                                                       Thriller
## 10694                                                          Drama|Horror|Thriller
## 10695                                                         Drama|Mystery|Thriller
## 10696                                                                Horror|Thriller
## 10697                                                           Action|Comedy|Sci-Fi
## 10698                                                          Comedy|Fantasy|Sci-Fi
## 10699                                               Action|Adventure|Children|Comedy
## 10700                                                  Action|Horror|Sci-Fi|Thriller
## 10701                                                          Action|Comedy|Fantasy
## 10702                                                                 Comedy|Romance
## 10703                                                       Action|Drama|Romance|War
## 10704                                                       Adventure|Drama|Thriller
## 10705                                                          Comedy|Horror|Musical
## 10706                                      Adventure|Animation|Children|Drama|Sci-Fi
## 10707                                                           Drama|Horror|Mystery
## 10708                                                                         Comedy
## 10709                                                                         Comedy
## 10710                                                   Comedy|Drama|Fantasy|Romance
## 10711                                                                Children|Comedy
## 10712                                                                Children|Comedy
## 10713                                                                  Action|Sci-Fi
## 10714                                                        Horror|Mystery|Thriller
## 10715                                                                  Drama|Romance
## 10716                                                                         Comedy
## 10717                                                                          Drama
## 10718                                                         Comedy|Horror|Thriller
## 10719                                                       Adventure|Drama|Thriller
## 10720                                                              Adventure|Fantasy
## 10721                                                        Action|Adventure|Comedy
## 10722                                              Action|Adventure|Comedy|Drama|War
## 10723                                                                  Horror|Sci-Fi
## 10724                                                                  Horror|Sci-Fi
## 10725                                                                         Comedy
## 10726                                               Action|Adventure|Sci-Fi|Thriller
## 10727                                                                         Comedy
## 10728                                                                        Western
## 10729                                                                  Action|Comedy
## 10730                                                      Action|Adventure|Thriller
## 10731                                                      Action|Adventure|Thriller
## 10732                                                                 Action|Western
## 10733                                                           Crime|Drama|Thriller
## 10734                                                                Children|Comedy
## 10735                                                    Action|Crime|Drama|Thriller
## 10736                                                Adventure|Comedy|Fantasy|Sci-Fi
## 10737                                                                Horror|Thriller
## 10738                                             Action|Crime|Drama|Sci-Fi|Thriller
## 10739                      Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery
## 10740                                                           Comedy|Drama|Fantasy
## 10741                                                                 Drama|Thriller
## 10742                                                                  Comedy|Horror
## 10743                                                                         Horror
## 10744                                                           Comedy|Horror|Sci-Fi
## 10745                                                                    Crime|Drama
## 10746                                                                   Action|Drama
## 10747                                                                  Comedy|Sci-Fi
## 10748                                    Adventure|Animation|Children|Comedy|Musical
## 10749                                                                Adventure|Drama
## 10750                                                       Adventure|Comedy|Fantasy
## 10751                                                        Adventure|Comedy|Sci-Fi
## 10752                                                 Fantasy|Horror|Mystery|Romance
## 10753                                                      Action|Adventure|Thriller
## 10754                                                                 Drama|Thriller
## 10755                                                   Action|Comedy|Crime|Thriller
## 10756                                                   Comedy|Drama|Fantasy|Romance
## 10757                                         Action|Fantasy|Horror|Mystery|Thriller
## 10758                                    Adventure|Animation|Children|Comedy|Fantasy
## 10759                                                                         Comedy
## 10760                                                                    Crime|Drama
## 10761                                                       Action|Adventure|Fantasy
## 10762                                                                          Drama
## 10763                                                                          Drama
## 10764                                                                   Comedy|Drama
## 10765                                                        Adventure|Comedy|Sci-Fi
## 10766                                                                          Drama
## 10767                                                           Comedy|Drama|Romance
## 10768                                                             Animation|Children
## 10769                                                                          Drama
## 10770                                                                         Comedy
## 10771                                                                         Comedy
## 10772                                                                   Comedy|Drama
## 10773                                                    Action|Crime|Drama|Thriller
## 10774                                                                   Comedy|Drama
## 10775                                                    Action|Crime|Drama|Thriller
## 10776                                                  Action|Crime|Thriller|Western
## 10777                                                 Comedy|Horror|Mystery|Thriller
## 10778                                                    Action|Crime|Drama|Thriller
## 10779                                                           Crime|Drama|Thriller
## 10780                                                         Horror|Sci-Fi|Thriller
## 10781                                                                    Crime|Drama
## 10782                                                                  Drama|Romance
## 10783                                                           Comedy|Drama|Romance
## 10784                                                                    Crime|Drama
## 10785                                                                   Comedy|Drama
## 10786                                                                          Drama
## 10787                                                                  Drama|Romance
## 10788                                          Action|Children|Comedy|Fantasy|Sci-Fi
## 10789                                                        Action|Children|Fantasy
## 10790                                       Action|Adventure|Children|Comedy|Fantasy
## 10791                                                               Comedy|Drama|War
## 10792                                                         Adventure|Drama|Sci-Fi
## 10793                                                                 Horror|Mystery
## 10794                                                      Adventure|Fantasy|Romance
## 10795                                                           Comedy|Drama|Romance
## 10796                                                       Adventure|Comedy|Fantasy
## 10797                                                          Drama|Horror|Thriller
## 10798                                                         Action|Sci-Fi|Thriller
## 10799                                                  Crime|Horror|Mystery|Thriller
## 10800                                                                         Comedy
## 10801                                                                  Drama|Romance
## 10802                                                            Action|Thriller|War
## 10803                                                                  Horror|Sci-Fi
## 10804                                                                  Horror|Sci-Fi
## 10805                                                         Action|Adventure|Drama
## 10806                                                                         Comedy
## 10807                                                                  Action|Sci-Fi
## 10808                                                                         Comedy
## 10809                                                      Action|Adventure|Thriller
## 10810                                                                 Comedy|Western
## 10811                                                  Action|Drama|Thriller|Western
## 10812                                             Adventure|Animation|Fantasy|Sci-Fi
## 10813                                                                         Comedy
## 10814                                                  Comedy|Horror|Sci-Fi|Thriller
## 10815                                                                  Action|Sci-Fi
## 10816                                                        Action|Adventure|Sci-Fi
## 10817                                               Action|Adventure|Sci-Fi|Thriller
## 10818                                                        Action|Adventure|Sci-Fi
## 10819                                              Film-Noir|Horror|Mystery|Thriller
## 10820                                                                   Action|Crime
## 10821                                                                 Horror|Western
## 10822                                                 Crime|Drama|Film-Noir|Thriller
## 10823                                                                    Crime|Drama
## 10824                                                Action|Adventure|Comedy|Fantasy
## 10825                                     Action|Adventure|Animation|Children|Sci-Fi
## 10826                                                      Animation|Children|Comedy
## 10827                                                               Adventure|Comedy
## 10828                                                               Action|Drama|War
## 10829                                                                 Drama|Thriller
## 10830                                                    Action|Crime|Drama|Thriller
## 10831                                                                  Comedy|Horror
## 10832                                                        Action|Adventure|Sci-Fi
## 10833                                                                         Comedy
## 10834                                                         Horror|Sci-Fi|Thriller
## 10835                                                                         Horror
## 10836                                                                         Comedy
## 10837                                                                         Comedy
## 10838                                                                         Comedy
## 10839                                                                          Drama
## 10840                                                                          Drama
## 10841                                                                         Horror
## 10842                                                                         Comedy
## 10843                                                                          Drama
## 10844                                                                          Drama
## 10845                                                                         Comedy
## 10846                                                                         Horror
## 10847                                                                  Comedy|Horror
## 10848                                                                          Drama
## 10849                                                                         Horror
## 10850                                                                  Action|Comedy
## 10851                                                                  Action|Comedy
## 10852                                                                         Comedy
## 10853                                                         Action|Sci-Fi|Thriller
## 10854                                                                   Drama|Sci-Fi
## 10855                                                           Action|Drama|Romance
## 10856                                                                         Comedy
## 10857                                            Adventure|Animation|Children|Sci-Fi
## 10858                                                                          Drama
## 10859                                                          Comedy|Crime|Thriller
## 10860                                                                  Drama|Romance
## 10861                                                                  Comedy|Sci-Fi
## 10862                                                                 Comedy|Romance
## 10863                                                                          Drama
## 10864                                                                          Drama
## 10865                                                                   Comedy|Crime
## 10866                                                         Adventure|Comedy|Crime
## 10867                                                           Crime|Drama|Thriller
## 10868                                                                  Drama|Romance
## 10869                                                                 Comedy|Romance
## 10870                                                      Action|Comedy|Crime|Drama
## 10871                                                     Action|Adventure|Drama|War
## 10872                                                        Fantasy|Horror|Thriller
## 10873                                                         Comedy|Horror|Thriller
## 10874                                                        Adventure|Comedy|Horror
## 10875                                                                Horror|Thriller
## 10876                                                                         Comedy
## 10877                                                                      Drama|War
## 10878                                                               Mystery|Thriller
## 10879                                               Action|Adventure|Children|Comedy
## 10880                                                                    Crime|Drama
## 10881                                                           Comedy|Drama|Romance
## 10882                                                                         Comedy
## 10883                                                             Action|Crime|Drama
## 10884                                               Action|Adventure|Comedy|Thriller
## 10885                                                Action|Adventure|Fantasy|Sci-Fi
## 10886                                                          Action|Comedy|Romance
## 10887                            Adventure|Animation|Children|Comedy|Fantasy|Romance
## 10888                                                          Drama|Musical|Romance
## 10889                                                       Action|Drama|Romance|War
## 10890                                                                         Comedy
## 10891                                                                  Comedy|Sci-Fi
## 10892                                                             Action|Crime|Drama
## 10893                                                          Action|Crime|Thriller
## 10894                                                                 Comedy|Romance
## 10895                                                               Action|Adventure
## 10896                                                          Action|Crime|Thriller
## 10897                                                         Adventure|Drama|Sci-Fi
## 10898                                                                    Crime|Drama
## 10899                                                                         Comedy
## 10900                                                                         Comedy
## 10901                                                                         Horror
## 10902                                                  Action|Drama|Romance|Thriller
## 10903                                                                         Action
## 10904                                                         Action|Sci-Fi|Thriller
## 10905                                                                   Action|Crime
## 10906                                                                 Comedy|Romance
## 10907                                                                   Action|Drama
## 10908                                                    Animation|Drama|Sci-Fi|IMAX
## 10909                                                       Adventure|Comedy|Fantasy
## 10910                                                             Action|Crime|Drama
## 10911                                           Adventure|Animation|Children|Fantasy
## 10912                                                           Comedy|Horror|Sci-Fi
## 10913                                                         Action|Sci-Fi|Thriller
## 10914                                                        Adventure|Comedy|Sci-Fi
## 10915                                                                      Drama|War
## 10916                                                                         Action
## 10917                                                         Horror|Sci-Fi|Thriller
## 10918                                                                         Comedy
## 10919                                                                 Comedy|Romance
## 10920                                                       Animation|Comedy|Musical
## 10921                                               Action|Adventure|Sci-Fi|Thriller
## 10922                                                                   Comedy|Drama
## 10923                                                           Comedy|Drama|Musical
## 10924                                                  Action|Adventure|Drama|Sci-Fi
## 10925                                                                  Comedy|Horror
## 10926                                                                  Action|Comedy
## 10927                                                                   Drama|Sci-Fi
## 10928                                                                         Comedy
## 10929                                                  Drama|Horror|Mystery|Thriller
## 10930                                                                         Comedy
## 10931                                                               Adventure|Comedy
## 10932                                                                         Horror
## 10933                                                          Drama|Musical|Romance
## 10934                                                           Crime|Drama|Thriller
## 10935                                        Action|Adventure|Drama|Romance|Thriller
## 10936                                                                         Comedy
## 10937                                                                 Comedy|Romance
## 10938                                                                  Action|Comedy
## 10939                                         Crime|Drama|Film-Noir|Mystery|Thriller
## 10940                                                          Action|Crime|Thriller
## 10941                                                  Crime|Horror|Mystery|Thriller
## 10942                                                        Animation|Drama|Fantasy
## 10943                                                   Drama|Fantasy|Mystery|Sci-Fi
## 10944                                                  Drama|Mystery|Sci-Fi|Thriller
## 10945                                    Adventure|Animation|Children|Comedy|Fantasy
## 10946                                                         Comedy|Fantasy|Romance
## 10947                                                     Adventure|Children|Fantasy
## 10948                                                       Adventure|Comedy|Fantasy
## 10949                                                       Action|Adventure|Fantasy
## 10950                                                                 Crime|Thriller
## 10951                                                                         Comedy
## 10952                                                Mystery|Romance|Sci-Fi|Thriller
## 10953                                                                   Comedy|Drama
## 10954                                                Adventure|Comedy|Fantasy|Sci-Fi
## 10955                                                        Action|Adventure|Sci-Fi
## 10956                                                                         Comedy
## 10957                                                              Adventure|Fantasy
## 10958                                                                  Drama|Romance
## 10959                                                               Action|Drama|War
## 10960                                                                          Drama
## 10961                                                                         Comedy
## 10962                                                       Action|Adventure|Fantasy
## 10963                                                                   Action|Drama
## 10964                                                Action|Adventure|Drama|Thriller
## 10965                                                                  Action|Sci-Fi
## 10966                                                          Children|Comedy|Drama
## 10967                                                           Comedy|Crime|Mystery
## 10968                                                                         Comedy
## 10969                                                Animation|Fantasy|Horror|Sci-Fi
## 10970                                                                 Comedy|Romance
## 10971                                                               Action|Drama|War
## 10972                                              Animation|Children|Comedy|Musical
## 10973                                                                         Horror
## 10974                                                                  Comedy|Horror
## 10975                                                                         Horror
## 10976                                            Adventure|Animation|Children|Comedy
## 10977                                                  Action|Horror|Sci-Fi|Thriller
## 10978                                                               Action|Adventure
## 10979                                                                       Thriller
## 10980                                                                         Comedy
## 10981                                                           Crime|Drama|Thriller
## 10982                                                                 Comedy|Romance
## 10983                                              Action|Adventure|Fantasy|Thriller
## 10984                                                           Crime|Drama|Thriller
## 10985                                               Action|Adventure|Sci-Fi|Thriller
## 10986                                                   Action|Adventure|Sci-Fi|IMAX
## 10987                                            Action|Crime|Drama|Mystery|Thriller
## 10988                                                                         Comedy
## 10989                                                        Action|Mystery|Thriller
## 10990                                           Action|Crime|Mystery|Sci-Fi|Thriller
## 10991                                                                 Comedy|Romance
## 10992                                                        Children|Comedy|Romance
## 10993                                                           Action|Comedy|Sci-Fi
## 10994                                                       Action|Adventure|Fantasy
## 10995                                                                    Crime|Drama
## 10996                                                                         Comedy
## 10997                                                         Horror|Sci-Fi|Thriller
## 10998                                                             Adventure|Children
## 10999                                                          Action|Crime|Thriller
## 11000                                                        Adventure|Drama|Romance
## 11001                                               Action|Adventure|Fantasy|Romance
## 11002                                                      Action|Comedy|Romance|War
## 11003                                                                         Comedy
## 11004                                                                   Action|Crime
## 11005                                                                         Comedy
## 11006                                                           Comedy|Drama|Romance
## 11007                                                    Adventure|Animation|Fantasy
## 11008                                                                  Action|Comedy
## 11009                                                         Crime|Mystery|Thriller
## 11010                                                  Comedy|Drama|Romance|Thriller
## 11011                                                                    Documentary
## 11012                                                           Comedy|Drama|Romance
## 11013                                                        Horror|Mystery|Thriller
## 11014                                                            Animation|Drama|War
## 11015                                                                  Action|Horror
## 11016                                                             Documentary|Horror
## 11017                                                             Documentary|Horror
## 11018                                                             Documentary|Horror
## 11019                                                             Documentary|Horror
## 11020                                                   Action|Horror|Mystery|Sci-Fi
## 11021                                                                          Drama
## 11022                                                              Adventure|Fantasy
## 11023                                       Adventure|Animation|Children|Sci-Fi|IMAX
## 11024                                                           Comedy|Drama|Romance
## 11025                                                         Action|Sci-Fi|Thriller
## 11026                                                                         Comedy
## 11027                                                                 Comedy|Romance
## 11028                                                              Adventure|Fantasy
## 11029                                                                    Crime|Drama
## 11030                                                                          Drama
## 11031                                                                    Crime|Drama
## 11032                                                           Crime|Drama|Thriller
## 11033                                                                    Crime|Drama
## 11034                                                     Comedy|Crime|Drama|Musical
## 11035                                          Action|Adventure|Crime|Drama|Thriller
## 11036                                                                         Comedy
## 11037                                                                 Comedy|Romance
## 11038                                                        Action|Adventure|Comedy
## 11039                                                                   Action|Crime
## 11040                                                                         Comedy
## 11041                                                                         Comedy
## 11042                                                          Action|Drama|Thriller
## 11043                                                           Comedy|Drama|Romance
## 11044                                                             Comedy|Crime|Drama
## 11045                                                                 Drama|Thriller
## 11046                                                                         Comedy
## 11047                                                                   Comedy|Crime
## 11048                                                                 Mystery|Sci-Fi
## 11049                                                  Crime|Horror|Mystery|Thriller
## 11050                                               Action|Adventure|Sci-Fi|Thriller
## 11051                                                                Children|Comedy
## 11052                                          Action|Adventure|Sci-Fi|Thriller|IMAX
## 11053                                                   Comedy|Drama|Fantasy|Romance
## 11054                                            Adventure|Animation|Children|Comedy
## 11055                                                                   Action|Crime
## 11056                                                                Horror|Thriller
## 11057                                                          Action|Crime|Thriller
## 11058                                                                 Drama|Thriller
## 11059                                                           Action|Horror|Sci-Fi
## 11060                                         Action|Adventure|Comedy|Crime|Thriller
## 11061                                                        Action|Adventure|Sci-Fi
## 11062                                                        Action|Adventure|Sci-Fi
## 11063                                                Action|Adventure|Comedy|Fantasy
## 11064                                                   Action|Comedy|Crime|Thriller
## 11065                                                                Children|Comedy
## 11066                                       Action|Adventure|Comedy|Romance|Thriller
## 11067                                                                          Drama
## 11068                                                      Action|Adventure|Children
## 11069                                                   Action|Comedy|Crime|Thriller
## 11070                                                                         Comedy
## 11071                                                        Children|Comedy|Fantasy
## 11072                                                                Action|Thriller
## 11073                                                                  Comedy|Horror
## 11074                                                         Action|Horror|Thriller
## 11075                                                           Comedy|Horror|Sci-Fi
## 11076                                                               Action|Adventure
## 11077                                                                Horror|Thriller
## 11078                                                                Horror|Thriller
## 11079                                                             Comedy|Crime|Drama
## 11080                                                           Comedy|Drama|Romance
## 11081                                                         Horror|Sci-Fi|Thriller
## 11082                                                          Action|Fantasy|Horror
## 11083                                                                  Comedy|Horror
## 11084                                                 Fantasy|Horror|Sci-Fi|Thriller
## 11085                                                                    Crime|Drama
## 11086                                                        Horror|Mystery|Thriller
## 11087                                                                         Comedy
## 11088                                                                         Comedy
## 11089                                                          Drama|Horror|Thriller
## 11090                                             Action|Adventure|Animation|Fantasy
## 11091                                                                 Comedy|Musical
## 11092                                                            Crime|Drama|Mystery
## 11093                                                          Action|Crime|Thriller
## 11094                                                                          Drama
## 11095                                                                  Comedy|Horror
## 11096                         Adventure|Comedy|Drama|Fantasy|Mystery|Sci-Fi|Thriller
## 11097                                          Action|Adventure|Sci-Fi|Thriller|IMAX
## 11098                                                        Children|Comedy|Fantasy
## 11099                                                            Adventure|Drama|War
## 11100                                                                Horror|Thriller
## 11101                                           Crime|Drama|Mystery|Romance|Thriller
## 11102                                                                   Comedy|Crime
## 11103                                                             Action|Crime|Drama
## 11104                                                 Horror|Mystery|Sci-Fi|Thriller
## 11105                                             Action|Comedy|Crime|Drama|Thriller
## 11106                                                   Action|Drama|Horror|Thriller
## 11107                                                                 Comedy|Fantasy
## 11108                                                               Children|Fantasy
## 11109                                                 Comedy|Fantasy|Horror|Thriller
## 11110                                                                Adventure|Drama
## 11111                                                         Action|Adventure|Drama
## 11112                                       Adventure|Animation|Drama|Fantasy|Sci-Fi
## 11113                                                                  Comedy|Horror
## 11114                                                           Comedy|Drama|Romance
## 11115                                                     Action|Adventure|Drama|War
## 11116                                                          Drama|Fantasy|Romance
## 11117                                                 Action|Adventure|Drama|Fantasy
## 11118                                                                Children|Comedy
## 11119                                      Action|Comedy|Crime|Drama|Horror|Thriller
## 11120                                                          Drama|Sci-Fi|Thriller
## 11121                                                                          Drama
## 11122                                                                 Comedy|Romance
## 11123                                                               Adventure|Comedy
## 11124                                                               Adventure|Comedy
## 11125                                                                          Drama
## 11126                                                                Adventure|Drama
## 11127                                                   Action|Comedy|Crime|Thriller
## 11128                                                                 Comedy|Romance
## 11129                                                   Action|Drama|Horror|Thriller
## 11130                                                           Drama|Romance|Sci-Fi
## 11131                                                                   Comedy|Crime
## 11132                                                Action|Adventure|Fantasy|Horror
## 11133                                                            Action|Drama|Horror
## 11134                                                                  Comedy|Horror
## 11135                                                                Comedy|Thriller
## 11136                                                          Action|Drama|Thriller
## 11137                                            Action|Crime|Drama|Mystery|Thriller
## 11138                                                Action|Adventure|Fantasy|Horror
## 11139                                                     Action|Adventure|Drama|War
## 11140                                                         Adventure|Drama|Sci-Fi
## 11141                                                                   Action|Crime
## 11142                                                               Action|Drama|War
## 11143                                                                 Comedy|Romance
## 11144                                                      Adventure|Children|Sci-Fi
## 11145                                                Action|Adventure|Crime|Thriller
## 11146                                                           Drama|Fantasy|Sci-Fi
## 11147                                                                  Action|Comedy
## 11148                                                           Comedy|Horror|Sci-Fi
## 11149                                                           Comedy|Horror|Sci-Fi
## 11150                                                        Action|Adventure|Comedy
## 11151                                                                          Drama
## 11152                                                                  Horror|Sci-Fi
## 11153                                                                         Horror
## 11154                                                                 Comedy|Romance
## 11155                                                                 Drama|Thriller
## 11156                            Adventure|Animation|Children|Comedy|Musical|Romance
## 11157                                         Action|Adventure|Drama|Sci-Fi|Thriller
## 11158                                                                         Comedy
## 11159                                                         Adventure|Fantasy|IMAX
## 11160                                                         Action|Sci-Fi|Thriller
## 11161                                                      Animation|Children|Comedy
## 11162                                                        Comedy|Fantasy|Thriller
## 11163                                                                         Comedy
## 11164                                                             Crime|Drama|Horror
## 11165                                                      Adventure|Children|Comedy
## 11166                                                                         Comedy
## 11167                                                           Comedy|Drama|Romance
## 11168                                                            Action|Comedy|Crime
## 11169                                                                    Documentary
## 11170                                                   Action|Adventure|Sci-Fi|IMAX
## 11171                                                                  Drama|Romance
## 11172                                                     Action|Adventure|Drama|War
## 11173                                                                         Comedy
## 11174                                               Action|Adventure|Sci-Fi|Thriller
## 11175                                                          Action|Crime|Thriller
## 11176                                                         Drama|Mystery|Thriller
## 11177                                                           Comedy|Drama|Romance
## 11178                                                    Action|Crime|Drama|Thriller
## 11179                                                               Adventure|Comedy
## 11180                                                  Action|Horror|Sci-Fi|Thriller
## 11181                                             Action|Adventure|Animation|Fantasy
## 11182                                                                         Horror
## 11183                                                                         Comedy
## 11184                                                  Action|Horror|Sci-Fi|Thriller
## 11185                                                                  Comedy|Horror
## 11186                                                                         Horror
## 11187                                                                         Comedy
## 11188                                                                   Drama|Sci-Fi
## 11189                                              Action|Adventure|Animation|Comedy
## 11190                                                                  Comedy|Horror
## 11191                                                        Horror|Mystery|Thriller
## 11192                                                           Comedy|Drama|Romance
## 11193                                                         Drama|Mystery|Thriller
## 11194                                                        Horror|Mystery|Thriller
## 11195                                     Action|Adventure|Animation|Children|Comedy
## 11196                                        Action|Adventure|Drama|Mystery|Thriller
## 11197                                                   Action|Comedy|Crime|Thriller
## 11198                                                       Action|Adventure|Romance
## 11199                                                                Fantasy|Western
## 11200                                                     Animation|Children|Fantasy
## 11201                                                          Action|Mystery|Sci-Fi
## 11202                                                   Action|Comedy|Crime|Thriller
## 11203                                                           Crime|Drama|Thriller
## 11204                                                 Fantasy|Horror|Sci-Fi|Thriller
## 11205                                                  Action|Fantasy|Horror|Romance
## 11206                                                                  Comedy|Horror
## 11207                                                           Crime|Drama|Thriller
## 11208                                                                    Documentary
## 11209                                                          Action|Crime|Thriller
## 11210                                                  Action|Adventure|Comedy|Drama
## 11211                                              Action|Documentary|Drama|Thriller
## 11212                                                          Action|Crime|Thriller
## 11213                                        Action|Adventure|Comedy|Sci-Fi|Thriller
## 11214                                                    Action|Crime|Drama|Thriller
## 11215                                          Drama|Horror|Mystery|Romance|Thriller
## 11216                                                               Animation|Comedy
## 11217                                                                         Comedy
## 11218                                                                         Comedy
## 11219                                                        Horror|Mystery|Thriller
## 11220                                                               Drama|Sci-Fi|War
## 11221                                                                          Drama
## 11222                                                  Action|Animation|Drama|Sci-Fi
## 11223                                                      Action|Drama|Thriller|War
## 11224                                              Adventure|Children|Comedy|Fantasy
## 11225                                                                         Horror
## 11226                                                               Mystery|Thriller
## 11227                                                                 Fantasy|Horror
## 11228                                                       Action|Horror|Sci-Fi|War
## 11229                                     Adventure|Animation|Fantasy|Musical|Sci-Fi
## 11230                                                                Action|Thriller
## 11231                                                           Comedy|Drama|Romance
## 11232                                                           Crime|Drama|Thriller
## 11233                                        Animation|Drama|Mystery|Sci-Fi|Thriller
## 11234                                                                          Drama
## 11235                                                                      Drama|War
## 11236                                                       Adventure|Comedy|Fantasy
## 11237                                                                          Drama
## 11238                                                                          Drama
## 11239                                                                         Comedy
## 11240                                                   Animation|Fantasy|Sci-Fi|War
## 11241                                                                          Drama
## 11242                                                Action|Adventure|Fantasy|Sci-Fi
## 11243                                                                Children|Comedy
## 11244                                                  Drama|Horror|Mystery|Thriller
## 11245                                                                          Drama
## 11246                                                                 Comedy|Romance
## 11247                                                 Action|Fantasy|Horror|Thriller
## 11248                                                                  Action|Comedy
## 11249                                             Adventure|Animation|Comedy|Fantasy
## 11250                                                                   Action|Drama
## 11251                                        Action|Crime|Film-Noir|Mystery|Thriller
## 11252                                                        Action|Adventure|Comedy
## 11253                                                        Adventure|Comedy|Sci-Fi
## 11254                                                       Action|Drama|Romance|War
## 11255                                                                Horror|Thriller
## 11256                                                                    Crime|Drama
## 11257                                                                  Drama|Mystery
## 11258                                                        Action|Adventure|Sci-Fi
## 11259                                                Action|Adventure|Comedy|Romance
## 11260                                                              Action|Crime|IMAX
## 11261                                                         Action|Horror|Thriller
## 11262                                               Action|Adventure|Sci-Fi|Thriller
## 11263                                                        Action|Adventure|Sci-Fi
## 11264                                                                 Comedy|Romance
## 11265                                                         Action|Sci-Fi|Thriller
## 11266                                                        Action|Adventure|Sci-Fi
## 11267                                                                   Comedy|Drama
## 11268                                                                         Comedy
## 11269                                                                 Comedy|Romance
## 11270                                                          Action|Crime|Thriller
## 11271                                                Action|Crime|Drama|Thriller|War
## 11272                                                     Adventure|Animation|Comedy
## 11273                                                                  Action|Sci-Fi
## 11274                                                                    Crime|Drama
## 11275                                                    Action|Crime|Drama|Thriller
## 11276                                                  Comedy|Crime|Mystery|Thriller
## 11277                                                            Crime|Drama|Western
## 11278                                                                Horror|Thriller
## 11279                                                               Action|Drama|War
## 11280                                                             Action|Crime|Drama
## 11281                                                                  Drama|Romance
## 11282                                                Adventure|Drama|Horror|Thriller
## 11283                                                Adventure|Fantasy|Thriller|IMAX
## 11284                                                            Crime|Drama|Romance
## 11285                                                     Adventure|Children|Fantasy
## 11286                                        Action|Adventure|Drama|Fantasy|Thriller
## 11287                                                    Action|Crime|Drama|Thriller
## 11288                                                                   Comedy|Crime
## 11289                                                                         Horror
## 11290                                                                         Comedy
## 11291                                                          Comedy|Fantasy|Horror
## 11292                                                                 Comedy|Romance
## 11293                                                          Action|Crime|Thriller
## 11294                                                                 Crime|Thriller
## 11295                                                    Action|Sci-Fi|Thriller|IMAX
## 11296                                                                   Comedy|Drama
## 11297                                                           Crime|Drama|Thriller
## 11298                                                           Action|Comedy|Horror
## 11299                                                          Drama|Horror|Thriller
## 11300                                                            Crime|Drama|Mystery
## 11301                                                  Crime|Drama|Film-Noir|Mystery
## 11302                                                                  Comedy|Horror
## 11303                                                                 Drama|Thriller
## 11304                                                   Action|Comedy|Crime|Thriller
## 11305                                                      Action|Adventure|Thriller
## 11306                                                         Drama|Mystery|Thriller
## 11307                                                                          Drama
## 11308                                                                         Comedy
## 11309                                         Adventure|Comedy|Drama|Fantasy|Romance
## 11310                                                       Action|Adventure|Fantasy
## 11311                                                                         Comedy
## 11312                                                                         Comedy
## 11313                                                                   Action|Drama
## 11314                                                    Action|Crime|Drama|Thriller
## 11315                                                      Animation|Children|Comedy
## 11316                                                         Adventure|Comedy|Drama
## 11317                                                                         Comedy
## 11318                                                  Action|Comedy|Horror|Thriller
## 11319                                                                  Action|Comedy
## 11320                                                     Action|Comedy|Fantasy|IMAX
## 11321                                                   Comedy|Drama|Fantasy|Romance
## 11322                                                                          Drama
## 11323                                                                Action|Thriller
## 11324                                                  Drama|Fantasy|Mystery|Romance
## 11325                                                                         Comedy
## 11326                                                                   Action|Drama
## 11327                                               Adventure|Comedy|Sci-Fi|Thriller
## 11328                                                          Drama|Fantasy|Romance
## 11329                                                       Adventure|Drama|Thriller
## 11330                                                                         Comedy
## 11331                                                         Drama|Fantasy|Thriller
## 11332                                                           Crime|Drama|Thriller
## 11333                                                  Drama|Horror|Mystery|Thriller
## 11334                                                                  Drama|Romance
## 11335                                                           Comedy|Drama|Romance
## 11336                                         Action|Adventure|Drama|Sci-Fi|Thriller
## 11337                                                  Drama|Mystery|Sci-Fi|Thriller
## 11338                                                          Crime|Horror|Thriller
## 11339                                                      Action|Adventure|Thriller
## 11340                                                         Action|Sci-Fi|Thriller
## 11341                                                                         Comedy
## 11342                                        Adventure|Drama|Horror|Mystery|Thriller
## 11343                                      Action|Adventure|Crime|Drama|Thriller|War
## 11344                                                       Action|Adventure|Fantasy
## 11345                                                                   Action|Drama
## 11346                                                      Adventure|Animation|Drama
## 11347                                                          Comedy|Fantasy|Horror
## 11348                                                                         Comedy
## 11349                                                    Action|Crime|Drama|Thriller
## 11350                                                               Adventure|Comedy
## 11351                                                                 Comedy|Romance
## 11352                                                       Animation|Children|Drama
## 11353                                                    Action|Comedy|Crime|Mystery
## 11354                                                               Action|Adventure
## 11355                                                           Crime|Drama|Thriller
## 11356                                                        Action|Fantasy|War|IMAX
## 11357                                                                          Drama
## 11358                                                                Horror|Thriller
## 11359                                                                 Comedy|Romance
## 11360                                            Action|Crime|Horror|Sci-Fi|Thriller
## 11361                                                Adventure|Drama|Sci-Fi|Thriller
## 11362                                                                 Drama|Thriller
## 11363                       Action|Adventure|Animation|Comedy|Fantasy|Mystery|Sci-Fi
## 11364                                                   Crime|Drama|Mystery|Thriller
## 11365                                          Action|Adventure|Sci-Fi|Thriller|IMAX
## 11366                                                                          Drama
## 11367                                                           Comedy|Drama|Romance
## 11368                                                         Horror|Sci-Fi|Thriller
## 11369                                    Adventure|Animation|Children|Comedy|Fantasy
## 11370                                                Action|Adventure|Comedy|Fantasy
## 11371                                                           Comedy|Drama|Romance
## 11372                                                                 Crime|Thriller
## 11373                                                         Comedy|Horror|Thriller
## 11374                                         Action|Adventure|Crime|Horror|Thriller
## 11375                                                     Action|Adventure|Drama|War
## 11376                                                Action|Adventure|Crime|Thriller
## 11377                                                    Action|Sci-Fi|Thriller|IMAX
## 11378                                                   Adventure|Drama|Fantasy|IMAX
## 11379                                                  Drama|Fantasy|Musical|Romance
## 11380                                                               Animation|Comedy
## 11381                                                          Action|Crime|Thriller
## 11382                                                                         Comedy
## 11383                                                          Comedy|Crime|Thriller
## 11384                                                                         Comedy
## 11385                                                   Action|Comedy|Crime|Thriller
## 11386                                                                   Comedy|Drama
## 11387                                                           Action|Horror|Sci-Fi
## 11388                                                     Action|Crime|Drama|Western
## 11389                                                              Drama|Romance|War
## 11390                                                                  Drama|Mystery
## 11391                                                                   Comedy|Drama
## 11392                                                  Action|Horror|Sci-Fi|Thriller
## 11393                                                                 Comedy|Romance
## 11394                                                         Action|Adventure|Drama
## 11395                                                         Adventure|Comedy|Drama
## 11396                                                            Crime|Drama|Mystery
## 11397                                                          Crime|Horror|Thriller
## 11398                                                    Action|Crime|Drama|Thriller
## 11399                                                           Crime|Drama|Thriller
## 11400                                                           Crime|Drama|Thriller
## 11401                                                                    Crime|Drama
## 11402                                                                         Comedy
## 11403                                        Action|Adventure|Animation|Fantasy|IMAX
## 11404                                                   Comedy|Drama|Sci-Fi|Thriller
## 11405                                                                  Horror|Sci-Fi
## 11406                                             Action|Horror|Sci-Fi|Thriller|IMAX
## 11407                                                        Animation|Comedy|Sci-Fi
## 11408                                                           Comedy|Drama|Romance
## 11409                                                                   Comedy|Drama
## 11410                                                  Drama|Horror|Musical|Thriller
## 11411                                                               Action|Adventure
## 11412                                                                  Drama|Western
## 11413                                                           Action|Horror|Sci-Fi
## 11414                                                 Action|Mystery|Sci-Fi|Thriller
## 11415                                                      Action|Drama|Thriller|War
## 11416                                                                         Comedy
## 11417                                                Action|Adventure|Fantasy|Sci-Fi
## 11418                                                    Comedy|Crime|Drama|Thriller
## 11419                                         Action|Adventure|Drama|Sci-Fi|Thriller
## 11420                                                                         Comedy
## 11421                                                     Adventure|Romance|Thriller
## 11422                                                          Action|Crime|Thriller
## 11423                                                                 Drama|Thriller
## 11424                                                                         Comedy
## 11425                                                                          Drama
## 11426                                                        Action|Crime|Drama|IMAX
## 11427                                                                         Action
## 11428                                                   Crime|Drama|Romance|Thriller
## 11429                                                                Horror|Thriller
## 11430                                                                 Comedy|Romance
## 11431                                                           Action|Comedy|Sci-Fi
## 11432                                                               Adventure|Comedy
## 11433                                                        Action|Adventure|Sci-Fi
## 11434                                                    Action|Crime|Drama|Thriller
## 11435                                                        Adventure|Drama|Fantasy
## 11436                                                 Action|Adventure|Comedy|Sci-Fi
## 11437                                          Action|Animation|Children|Comedy|IMAX
## 11438                                                                         Comedy
## 11439                                                                    Crime|Drama
## 11440                                                          Drama|Sci-Fi|Thriller
## 11441                                    Adventure|Animation|Children|Romance|Sci-Fi
## 11442                                                                Action|Thriller
## 11443                                          Action|Adventure|Comedy|Crime|Fantasy
## 11444                                                                  Action|Comedy
## 11445                                         Action|Animation|Comedy|Romance|Sci-Fi
## 11446                                                           Comedy|Drama|Romance
## 11447                                                      Animation|Children|Comedy
## 11448                                           Adventure|Crime|Drama|Horror|Mystery
## 11449                                      Action|Drama|Mystery|Sci-Fi|Thriller|IMAX
## 11450                                                                    Crime|Drama
## 11451                                                                         Comedy
## 11452                                                            Action|Comedy|Crime
## 11453                                                    Action|Adventure|Comedy|War
## 11454                                               Action|Adventure|Sci-Fi|Thriller
## 11455                                                             Comedy|Crime|Drama
## 11456                                                                         Comedy
## 11457                                                                         Comedy
## 11458                                                    Action|Crime|Drama|Thriller
## 11459                                                           Comedy|Drama|Romance
## 11460                                                                   Action|Drama
## 11461                                                                        Musical
## 11462                               Action|Adventure|Animation|Comedy|Fantasy|Sci-Fi
## 11463                                                       Adventure|Drama|Thriller
## 11464                                                            Crime|Drama|Romance
## 11465                                                      Action|Adventure|Thriller
## 11466                                                                         Comedy
## 11467                                                      Adventure|Children|Comedy
## 11468                                                         Action|Horror|Thriller
## 11469                                                                          Drama
## 11470                                                 Drama|Fantasy|Romance|Thriller
## 11471                                                                          Drama
## 11472                                                              Action|Sci-Fi|War
## 11473                                                                    Crime|Drama
## 11474                                                                          Drama
## 11475                                                                          Drama
## 11476                                        Action|Adventure|Fantasy|Horror|Romance
## 11477                                                  Drama|Fantasy|Mystery|Romance
## 11478                                                             Drama|Thriller|War
## 11479                                                                   Comedy|Drama
## 11480                                                          Comedy|Horror|Musical
## 11481                                                               Action|Drama|War
## 11482                                                        Action|Adventure|Sci-Fi
## 11483                                                                         Horror
## 11484                                                                Horror|Thriller
## 11485                                                 Action|Animation|Comedy|Sci-Fi
## 11486                                                                      Animation
## 11487                                                    Comedy|Drama|Musical|Sci-Fi
## 11488                                                                         Action
## 11489                                                   Crime|Drama|Mystery|Thriller
## 11490                                                            Documentary|Musical
## 11491                                                                  Action|Comedy
## 11492                                                                   Comedy|Drama
## 11493                                                    Action|Crime|Drama|Thriller
## 11494                                                                   Comedy|Drama
## 11495                                                               Action|Drama|War
## 11496                                                           Crime|Drama|Thriller
## 11497                                                  Drama|Mystery|Sci-Fi|Thriller
## 11498                                                         Action|Sci-Fi|Thriller
## 11499                                                   Action|Adventure|Sci-Fi|IMAX
## 11500                                                                         Comedy
## 11501                                                   Crime|Drama|Mystery|Thriller
## 11502                                                                          Drama
## 11503                                                                  Comedy|Horror
## 11504                                             Adventure|Animation|Children|Drama
## 11505                                               Action|Adventure|Animation|Drama
## 11506                                                                 Comedy|Musical
## 11507                                                                   Comedy|Crime
## 11508                                                           Crime|Drama|Thriller
## 11509                                                      Action|Drama|Thriller|War
## 11510                                                           Crime|Drama|Thriller
## 11511                                                               Animation|Comedy
## 11512                                              Action|Adventure|Animation|Horror
## 11513                                                           Comedy|Drama|Romance
## 11514                                         Adventure|Fantasy|Mystery|Romance|IMAX
## 11515                                                        Mystery|Sci-Fi|Thriller
## 11516                                                             Action|Crime|Drama
## 11517                                                                 Fantasy|Horror
## 11518                                                     Adventure|Animation|Sci-Fi
## 11519                                                                  Comedy|Sci-Fi
## 11520                                                         Horror|Sci-Fi|Thriller
## 11521                                                                         Comedy
## 11522                                                                Horror|Thriller
## 11523                                                                   Comedy|Drama
## 11524                                                                   Comedy|Drama
## 11525                                                                         Comedy
## 11526                                                            Action|Comedy|Crime
## 11527                                                           Action|Comedy|Horror
## 11528                                          Adventure|Children|Drama|Fantasy|IMAX
## 11529                                                                 Drama|Thriller
## 11530                                                                  Drama|Romance
## 11531                                                                  Action|Comedy
## 11532                                      Adventure|Animation|Children|Comedy|Crime
## 11533                                                                      Animation
## 11534                                                                          Drama
## 11535                                                                          Drama
## 11536                                                   Action|Adventure|Sci-Fi|IMAX
## 11537                                                                  Drama|Romance
## 11538                                                   Action|Drama|Horror|Thriller
## 11539                                                         Action|Adventure|Drama
## 11540                                                        Action|Animation|Horror
## 11541                                                                          Drama
## 11542                                                         Drama|Mystery|Thriller
## 11543                                                         Drama|Mystery|Thriller
## 11544                                                                   Action|Crime
## 11545                                                           Crime|Drama|Thriller
## 11546                                                           Crime|Drama|Thriller
## 11547                                                    Comedy|Crime|Drama|Thriller
## 11548                                                                         Comedy
## 11549                                                                  Comedy|Sci-Fi
## 11550                                      Adventure|Animation|Children|Fantasy|IMAX
## 11551                                                                  Action|Comedy
## 11552                                                           Crime|Drama|Thriller
## 11553                                          Action|Adventure|Sci-Fi|Thriller|IMAX
## 11554                                                                   Comedy|Drama
## 11555                                                                          Drama
## 11556                                             Action|Adventure|Drama|Romance|War
## 11557                                                                         Comedy
## 11558                                                         Horror|Sci-Fi|Thriller
## 11559                                                               Mystery|Thriller
## 11560                                                         Action|Comedy|Thriller
## 11561                               Adventure|Animation|Children|Comedy|Fantasy|IMAX
## 11562                                                                 Drama|Thriller
## 11563                                                  Fantasy|Romance|Thriller|IMAX
## 11564                                                       Animation|Comedy|Fantasy
## 11565                                                         Action|Sci-Fi|Thriller
## 11566                                                Animation|Children|Comedy|Crime
## 11567                                Action|Crime|Drama|Mystery|Sci-Fi|Thriller|IMAX
## 11568                                                                   Comedy|Drama
## 11569                                                                Horror|Thriller
## 11570                                                               Action|Animation
## 11571                                                   Drama|Fantasy|Romance|Sci-Fi
## 11572                                                                         Action
## 11573                                                      Action|Adventure|Thriller
## 11574                                          Action|Comedy|Fantasy|Musical|Romance
## 11575                                                                    Crime|Drama
## 11576                                                         Action|Horror|Thriller
## 11577                                      Action|Adventure|Animation|Fantasy|Sci-Fi
## 11578                                         Action|Adventure|Comedy|Crime|Thriller
## 11579                                                                          Drama
## 11580                                                           Crime|Drama|Thriller
## 11581                                                                   Comedy|Drama
## 11582                                                           Drama|Horror|Mystery
## 11583                                                        Horror|Mystery|Thriller
## 11584                                                                  Comedy|Sci-Fi
## 11585                                                       Adventure|Drama|Thriller
## 11586                                   Action|Animation|Children|Comedy|Sci-Fi|IMAX
## 11587                                                                 Drama|Thriller
## 11588                                                                  Action|Sci-Fi
## 11589                                                   Crime|Drama|Romance|Thriller
## 11590                                                  Action|Adventure|Fantasy|IMAX
## 11591                                                                          Drama
## 11592                                                                         Horror
## 11593                                                                        Western
## 11594                                                                          Drama
## 11595                                                                 Crime|Thriller
## 11596                                                                  Comedy|Horror
## 11597                                            Action|Sci-Fi|Thriller|Western|IMAX
## 11598                                                                Sci-Fi|Thriller
## 11599                                                        Adventure|Comedy|Sci-Fi
## 11600                             Action|Adventure|Animation|Children|Comedy|Western
## 11601                                                             Action|Crime|Drama
## 11602                                                            Action|Comedy|Drama
## 11603                                           Action|Drama|Mystery|Sci-Fi|Thriller
## 11604                                                        Fantasy|Horror|Thriller
## 11605                                                                   Comedy|Drama
## 11606                                                                         Action
## 11607                                               Action|Crime|Drama|Thriller|IMAX
## 11608                                                         Comedy|Fantasy|Romance
## 11609                                                           Action|Comedy|Sci-Fi
## 11610                                           Action|Adventure|Sci-Fi|Thriller|War
## 11611                                                           Comedy|Drama|Romance
## 11612                                                                   Comedy|Drama
## 11613                                                   Mystery|Sci-Fi|Thriller|IMAX
## 11614                                                                   Comedy|Crime
## 11615                                                           Crime|Drama|Thriller
## 11616                                    Action|Adventure|Drama|Fantasy|Mystery|IMAX
## 11617                                                 Crime|Drama|Film-Noir|Thriller
## 11618                                           Action|Adventure|Sci-Fi|Thriller|War
## 11619                                                           Comedy|Drama|Romance
## 11620                                                   Action|Drama|Sci-Fi|Thriller
## 11621                                                           Drama|Romance|Sci-Fi
## 11622                                                                 Drama|Thriller
## 11623                                                   Action|Crime|Horror|Thriller
## 11624                                                           Sci-Fi|Thriller|IMAX
## 11625                                                   Action|Adventure|Sci-Fi|IMAX
## 11626                                                                          Drama
## 11627                                                                   Comedy|Drama
## 11628                                                                 Drama|Thriller
## 11629                                                                   Comedy|Drama
## 11630                                                                 Drama|Thriller
## 11631                                                                          Drama
## 11632                                                               Action|Adventure
## 11633                                         Action|Adventure|Drama|Sci-Fi|Thriller
## 11634                                                    Action|Adventure|Crime|IMAX
## 11635                                                 Action|Adventure|Thriller|IMAX
## 11636                                                                 Drama|Thriller
## 11637                                                                   Action|Drama
## 11638                                                                Horror|Thriller
## 11639                                                                   Comedy|Crime
## 11640                                                   Action|Adventure|Sci-Fi|IMAX
## 11641                                                                   Comedy|Drama
## 11642                                                            Action|Comedy|Crime
## 11643                                                                         Comedy
## 11644                                                                   Action|Crime
## 11645                                                  Comedy|Horror|Sci-Fi|Thriller
## 11646                                                                   Comedy|Drama
## 11647                                                    Action|Sci-Fi|Thriller|IMAX
## 11648                                                                   Comedy|Drama
## 11649                                                                         Comedy
## 11650                                            Adventure|Animation|Children|Comedy
## 11651                                                      Action|Horror|Sci-Fi|IMAX
## 11652                                                           Comedy|Drama|Romance
## 11653                                                                   Comedy|Drama
## 11654                                            Action|Adventure|Animation|Children
## 11655                                     Action|Adventure|Animation|Sci-Fi|Thriller
## 11656                                              Action|Adventure|Animation|Sci-Fi
## 11657                                                                 Comedy|Fantasy
## 11658                                                     Action|Adventure|Animation
## 11659                                                     Action|Adventure|Animation
## 11660                                                     Action|Adventure|Animation
## 11661                                                   Action|Adventure|Sci-Fi|IMAX
## 11662                                                                  Drama|Fantasy
## 11663                                                     Action|Adventure|Animation
## 11664                                                     Action|Adventure|Animation
## 11665                                                         Action|Sci-Fi|Thriller
## 11666                                                     Action|Adventure|Animation
## 11667                                                     Action|Adventure|Animation
## 11668                                                     Action|Adventure|Animation
## 11669                                                     Action|Adventure|Animation
## 11670                                                 Action|Adventure|Thriller|IMAX
## 11671                                                                         Comedy
## 11672                                                     Adventure|Animation|Comedy
## 11673                                                                    Crime|Drama
## 11674                                                                 Comedy|Musical
## 11675                                                            Action|Crime|Sci-Fi
## 11676                                                                  Action|Sci-Fi
## 11677                                                           Crime|Drama|Thriller
## 11678                                                                  Drama|Romance
## 11679                                                                   Comedy|Crime
## 11680                                                              Drama|Sci-Fi|IMAX
## 11681                                                           Crime|Drama|Thriller
## 11682                                                               Animation|Comedy
## 11683                                                                   Comedy|Drama
## 11684                                                                          Drama
## 11685                                                           Adventure|Drama|IMAX
## 11686                                                        Action|Animation|Sci-Fi
## 11687                                                         Adventure|Fantasy|IMAX
## 11688                                                                 Action|Fantasy
## 11689                                                          Action|Drama|Thriller
## 11690                                                          Action|Crime|Thriller
## 11691                                                           Action|Drama|Western
## 11692                                                                 Drama|Thriller
## 11693                                                             Action|Crime|Drama
## 11694                                                                         Comedy
## 11695                                                   Crime|Drama|Mystery|Thriller
## 11696                                                                  Drama|Romance
## 11697                                                                    Crime|Drama
## 11698                                                   Action|Adventure|Sci-Fi|IMAX
## 11699                                                            Action|Comedy|Crime
## 11700                                                                  Action|Comedy
## 11701                                                          Adventure|Crime|Drama
## 11702                                                               Action|Adventure
## 11703                                                                          Drama
## 11704                                                   Action|Adventure|Sci-Fi|IMAX
## 11705                                                     Action|Crime|Thriller|IMAX
## 11706                                                                   Comedy|Drama
## 11707                                           Action|Adventure|Fantasy|Sci-Fi|IMAX
## 11708                                                                         Comedy
## 11709                                                   Action|Adventure|Sci-Fi|IMAX
## 11710                                                       Action|Drama|Horror|IMAX
## 11711                                                       Action|Drama|Sci-Fi|IMAX
## 11712                                                  Action|Adventure|Western|IMAX
## 11713                                                                          Drama
## 11714                                                                Horror|Thriller
## 11715                                                Action|Adventure|Fantasy|Sci-Fi
## 11716                                                             Action|Sci-Fi|IMAX
## 11717                                                                   Action|Drama
## 11718                                                                          Drama
## 11719                                                           Comedy|Drama|Romance
## 11720                                                  Adventure|Drama|Thriller|IMAX
## 11721                                                   Action|Adventure|Sci-Fi|IMAX
## 11722                                                      Animation|Children|Comedy
## 11723                                                                          Drama
## 11724                                                   Action|Adventure|Sci-Fi|IMAX
## 11725                                                         Adventure|Fantasy|IMAX
## 11726                                                       Action|Adventure|Fantasy
## 11727                                                             Comedy|Crime|Drama
## 11728                                                                    Crime|Drama
## 11729                                                         Adventure|Comedy|Drama
## 11730                                                           Drama|Romance|Sci-Fi
## 11731                                                      Action|Drama|Thriller|War
## 11732                                                                         Comedy
## 11733                                                            Action|Drama|Sci-Fi
## 11734                                                  Action|Animation|Fantasy|IMAX
## 11735                                                             Animation|Children
## 11736                                            Action|Adventure|Animation|Children
## 11737                                                  Adventure|Romance|Sci-Fi|IMAX
## 11738                                                                         Comedy
## 11739                             Action|Adventure|Animation|Children|Comedy|Fantasy
## 11740                                                                  Drama|Mystery
## 11741                                                           Action|Crime|Fantasy
## 11742                                                                   Comedy|Drama
## 11743                                                                    Sci-Fi|IMAX
## 11744                                                        Action|Crime|Drama|IMAX
## 11745                                                                         Comedy
## 11746                                                           Adventure|Drama|IMAX
## 11747                                                                   Comedy|Drama
## 11748                                                          Action|Crime|Thriller
## 11749                                                                          Drama
## 11750                                                                  Action|Sci-Fi
## 11751                                                        Action|Adventure|Sci-Fi
## 11752                                                   Action|Adventure|Sci-Fi|IMAX
## 11753                                                                   Comedy|Drama
## 11754                                                 Action|Adventure|Children|IMAX
## 11755                                                             Action|Sci-Fi|IMAX
## 11756                                                      Action|Adventure|Thriller
## 11757                                                                  Drama|Romance
## 11758                                                                   Comedy|Drama
## 11759                                                                          Drama
## 11760                                                          Drama|Horror|Thriller
## 11761                                                                          Drama
## 11762                                                                 Drama|Thriller
## 11763                                                                         Sci-Fi
## 11764                                                         Action|Horror|Thriller
## 11765                                                        Action|Adventure|Sci-Fi
## 11766                                                         Comedy|Horror|Thriller
## 11767                                                        Action|Adventure|Comedy
## 11768                                                          Action|Crime|Thriller
## 11769                                                           Crime|Drama|Thriller
## 11770                                                          Action|Mystery|Sci-Fi
## 11771                                                                     Action|War
## 11772                                                            Comedy|Drama|Horror
## 11773                                                 Action|Mystery|Sci-Fi|Thriller
## 11774                                                                  Comedy|Horror
## 11775                                                                Action|Thriller
## 11776                                                                  Drama|Western
## 11777                                                           Crime|Drama|Thriller
## 11778                                                          Drama|Sci-Fi|Thriller
## 11779                                                               Animation|Comedy
## 11780                                                              Animation|Fantasy
## 11781                                                                       Thriller
## 11782                                                             Drama|Thriller|War
## 11783                                                      Adventure|Sci-Fi|Thriller
## 11784                                                                   Comedy|Drama
## 11785                                                                  Drama|Romance
## 11786                                         Action|Adventure|Drama|Sci-Fi|Thriller
## 11787                                                          Comedy|Crime|Thriller
## 11788                                                              Adventure|Fantasy
## 11789                                                  Action|Adventure|Comedy|Crime
## 11790                                                                Action|Thriller
## 11791                                                                         Horror
## 11792                                               Action|Adventure|Sci-Fi|Thriller
## 11793                                           Action|Adventure|Fantasy|Sci-Fi|IMAX
## 11794                                                       Action|Adventure|Fantasy
## 11795                                                        Action|Adventure|Sci-Fi
## 11796                                                 Action|Adventure|Comedy|Sci-Fi
## 11797                                                Action|Adventure|Fantasy|Sci-Fi
## 11798                                                     Animation|Children|Fantasy
## 11799                                                                   Comedy|Drama
## 11800                                                                        Western
## 11801                                                          Drama|Horror|Thriller
## 11802                                                                         Horror
## 11803                                                          Comedy|Romance|Sci-Fi
## 11804                                                         Adventure|Drama|Sci-Fi
## 11805                                            Adventure|Animation|Children|Comedy
## 11806                                                        Adventure|Drama|Fantasy
## 11807                                       Action|Adventure|Animation|Drama|Fantasy
## 11808                                                                Adventure|Drama
## 11809                                                            Crime|Drama|Mystery
## 11810                                                                         Horror
## 11811                                                                          Drama
## 11812                                                                  Comedy|Horror
## 11813                                                             (no genres listed)
## 11814                                                                          Drama
## 11815                                                                          Drama
## 11816                                                                       Thriller
## 11817                                                                         Comedy
## 11818                                                                         Horror
## 11819                                                                       Thriller
## 11820                                                         Crime|Mystery|Thriller
## 11821                                                                         Horror
## 11822                                                                         Horror
## 11823                                Action|Adventure|Animation|Drama|Fantasy|Sci-Fi
## 11824                                                                          Drama
## 11825                                                      Action|Adventure|Thriller
## 11826                                                                    Crime|Drama
## 11827                                                                  Drama|Romance
## 11828                                                                         Comedy
## 11829                                                               Action|Drama|War
## 11830                                                  Action|Adventure|Comedy|Crime
## 11831                                                        Action|Adventure|Sci-Fi
## 11832                                                       Comedy|Drama|Romance|War
## 11833                                                                      Drama|War
## 11834                                                          Action|Crime|Thriller
## 11835                                                                         Comedy
## 11836                                                                  Drama|Romance
## 11837                                                                  Drama|Romance
## 11838                                                                         Comedy
## 11839                                                          Children|Drama|Sci-Fi
## 11840                                                       Adventure|Comedy|Fantasy
## 11841                                                        Action|Adventure|Sci-Fi
## 11842                                                        Action|Adventure|Sci-Fi
## 11843                                                                      Drama|War
## 11844                                                         Children|Drama|Fantasy
## 11845                                                                   Action|Crime
## 11846                                              Action|Adventure|Fantasy|Thriller
## 11847                                                                   Drama|Sci-Fi
## 11848                                                                  Drama|Romance
## 11849                                                                  Drama|Romance
## 11850                                                      Action|Adventure|Thriller
## 11851                                                          Drama|Sci-Fi|Thriller
## 11852                                                 Action|Romance|Sci-Fi|Thriller
## 11853                                                   Action|Comedy|Crime|Thriller
## 11854                                                                          Drama
## 11855                                                                          Drama
## 11856                                                      Action|Comedy|Crime|Drama
## 11857                                                      Action|Comedy|Crime|Drama
## 11858                                                               Action|Drama|War
## 11859                                                                      Drama|War
## 11860                                                         Action|Horror|Thriller
## 11861                                                                          Drama
## 11862                                                                          Drama
## 11863                                                           Comedy|Drama|Romance
## 11864                                                                Action|Thriller
## 11865                                                                          Drama
## 11866                                                                  Action|Sci-Fi
## 11867                                                         Action|Sci-Fi|Thriller
## 11868                                                                 Comedy|Romance
## 11869                                                        Action|Adventure|Sci-Fi
## 11870                                                        Action|Adventure|Sci-Fi
## 11871                                                       Animation|Comedy|Musical
## 11872                                                          Drama|Horror|Thriller
## 11873                                                           Drama|Horror|Mystery
## 11874                                    Adventure|Animation|Children|Comedy|Fantasy
## 11875                                                                 Comedy|Romance
## 11876                                                        Mystery|Sci-Fi|Thriller
## 11877                                                             Drama|Thriller|War
## 11878                                                                   Drama|Horror
## 11879                                                        Action|Adventure|Sci-Fi
## 11880                                                        Action|Adventure|Sci-Fi
## 11881                                                                    Crime|Drama
## 11882                                                         Drama|Mystery|Thriller
## 11883                                                  Action|Crime|Fantasy|Thriller
## 11884                                                       Comedy|Drama|Romance|War
## 11885                                                       Adventure|Comedy|Western
## 11886                                                        Action|Romance|Thriller
## 11887                                                         Action|Sci-Fi|Thriller
## 11888                                                        Action|Adventure|Sci-Fi
## 11889                                               Action|Adventure|Sci-Fi|Thriller
## 11890                                                                  Drama|Romance
## 11891                                                                         Comedy
## 11892                                                                      Drama|War
## 11893                                                         Action|Sci-Fi|Thriller
## 11894                                                                  Action|Sci-Fi
## 11895                                                          Action|Crime|Thriller
## 11896                                                                 Comedy|Romance
## 11897                                                          Action|Drama|Thriller
## 11898                                                          Drama|Mystery|Western
## 11899                                                                    Crime|Drama
## 11900                                                                Sci-Fi|Thriller
## 11901                                                         Comedy|Musical|Romance
## 11902                                                               Mystery|Thriller
## 11903                                      Action|Adventure|Mystery|Romance|Thriller
## 11904                                                                  Drama|Mystery
## 11905                                                 Crime|Mystery|Romance|Thriller
## 11906                                                 Children|Drama|Fantasy|Romance
## 11907                                                                 Comedy|Romance
## 11908                                                                         Comedy
## 11909                                               Action|Adventure|Sci-Fi|Thriller
## 11910                                                        Action|Adventure|Sci-Fi
## 11911                                        Action|Adventure|Comedy|Fantasy|Romance
## 11912                                                               Action|Adventure
## 11913                                                       Action|Adventure|Western
## 11914                                                                          Drama
## 11915                                                               Action|Drama|War
## 11916                                                                  Horror|Sci-Fi
## 11917                                                                   Crime|Horror
## 11918                                                                    Crime|Drama
## 11919                                                                          Drama
## 11920                                                                   Comedy|Crime
## 11921                                                         Action|Sci-Fi|Thriller
## 11922                                                          Drama|Sci-Fi|Thriller
## 11923                                                                         Horror
## 11924                                                                Adventure|Drama
## 11925                                                         Comedy|Fantasy|Romance
## 11926                                                        Adventure|Comedy|Sci-Fi
## 11927                                                                      Drama|War
## 11928                                                                 Comedy|Fantasy
## 11929                                                                         Comedy
## 11930                                                               Action|Adventure
## 11931                                                                         Comedy
## 11932                                               Action|Adventure|Sci-Fi|Thriller
## 11933                                                                          Drama
## 11934                                                        Adventure|Comedy|Sci-Fi
## 11935                                                                 Comedy|Romance
## 11936                                                        Action|Adventure|Comedy
## 11937                                                           Action|Comedy|Sci-Fi
## 11938                                                                   Drama|Sci-Fi
## 11939                                                                          Drama
## 11940                                                                  Drama|Romance
## 11941                                                 Action|Romance|Sci-Fi|Thriller
## 11942                                                      Adventure|Fantasy|Musical
## 11943                                                                Horror|Thriller
## 11944                                                                  Comedy|Horror
## 11945                                       Action|Adventure|Children|Comedy|Fantasy
## 11946                                                        Adventure|Comedy|Sci-Fi
## 11947                                                Adventure|Comedy|Sci-Fi|Western
## 11948                                                       Action|Adventure|Fantasy
## 11949                                                          Comedy|Fantasy|Sci-Fi
## 11950                                                     Adventure|Children|Fantasy
## 11951                                                         Action|Horror|Thriller
## 11952                                                                 Comedy|Fantasy
## 11953                                                           Crime|Drama|Thriller
## 11954                                                                          Drama
## 11955                                                                         Comedy
## 11956                                                                         Comedy
## 11957                                                                         Sci-Fi
## 11958                                            Adventure|Animation|Children|Comedy
## 11959                                                           Comedy|Crime|Mystery
## 11960                                                                         Comedy
## 11961                                                                 Comedy|Romance
## 11962                                                   Drama|Horror|Sci-Fi|Thriller
## 11963                                                                   Comedy|Crime
## 11964                                                         Action|Sci-Fi|Thriller
## 11965                                                         Action|Sci-Fi|Thriller
## 11966                                                                   Action|Crime
## 11967                                                                       Thriller
## 11968                                                          Drama|Horror|Thriller
## 11969                                                   Comedy|Drama|Fantasy|Romance
## 11970                                                        Horror|Mystery|Thriller
## 11971                                               Action|Adventure|Sci-Fi|Thriller
## 11972                                                    Action|Crime|Drama|Thriller
## 11973                                                      Action|Adventure|Thriller
## 11974                                                                    Documentary
## 11975                                                                   Action|Drama
## 11976                                                                  Comedy|Sci-Fi
## 11977                                                         Comedy|Fantasy|Romance
## 11978                                                                    Crime|Drama
## 11979                                                                          Drama
## 11980                                                                          Drama
## 11981                                                                 Drama|Thriller
## 11982                                                                 Comedy|Western
## 11983                                                        Action|Adventure|Sci-Fi
## 11984                                                                         Comedy
## 11985                                                        Action|Adventure|Sci-Fi
## 11986                                                                      Drama|War
## 11987                                                               Mystery|Thriller
## 11988                            Adventure|Animation|Children|Comedy|Fantasy|Romance
## 11989                                                        Adventure|Comedy|Sci-Fi
## 11990                                                  Action|Adventure|Comedy|Crime
## 11991                                                  Drama|Mystery|Sci-Fi|Thriller
## 11992                                                                 Comedy|Romance
## 11993                                                Mystery|Romance|Sci-Fi|Thriller
## 11994                                                Adventure|Comedy|Fantasy|Sci-Fi
## 11995                                                              Adventure|Fantasy
## 11996                                                                Sci-Fi|Thriller
## 11997                                                        Action|Adventure|Sci-Fi
## 11998                                           Action|Crime|Mystery|Sci-Fi|Thriller
## 11999                                                          Action|Drama|Thriller
## 12000                                                              Adventure|Fantasy
## 12001                                                  Crime|Horror|Mystery|Thriller
## 12002                                                        Action|Adventure|Sci-Fi
## 12003                                                          Drama|Horror|Thriller
## 12004                                                 Action|Adventure|Drama|Fantasy
## 12005                                                          Drama|Sci-Fi|Thriller
## 12006                                                           Drama|Romance|Sci-Fi
## 12007                                                      Adventure|Children|Sci-Fi
## 12008                                                              Documentary|Drama
## 12009                                                                  Drama|Romance
## 12010                                                        Horror|Mystery|Thriller
## 12011                                                 Action|Fantasy|Horror|Thriller
## 12012                                                  Drama|Mystery|Sci-Fi|Thriller
## 12013                                                                    Crime|Drama
## 12014                                                              Action|Crime|IMAX
## 12015                                                         Action|Sci-Fi|Thriller
## 12016                                                                Horror|Thriller
## 12017                                                                 Comedy|Musical
## 12018                                                          Drama|Horror|Thriller
## 12019                                                          Comedy|Drama|Thriller
## 12020                                                        Action|Thriller|Western
## 12021                                                                 Children|Drama
## 12022                                                                 Comedy|Romance
## 12023                                                                          Drama
## 12024                                                                          Drama
## 12025                                                                          Drama
## 12026                                                        Comedy|Mystery|Thriller
## 12027                                                                         Comedy
## 12028                                                                  Drama|Romance
## 12029                                             Animation|Children|Fantasy|Musical
## 12030                                                                          Drama
## 12031                                                      Action|Adventure|Thriller
## 12032                                                                 Comedy|Western
## 12033                                                                         Comedy
## 12034                                                        Children|Comedy|Fantasy
## 12035                                                                 Comedy|Western
## 12036                                                                   Comedy|Drama
## 12037                                      Action|Adventure|Crime|Drama|Thriller|War
## 12038                                               Adventure|Comedy|Fantasy|Romance
## 12039                                    Adventure|Animation|Children|Comedy|Fantasy
## 12040                                                          Action|Crime|Thriller
## 12041                                                      Action|Adventure|Thriller
## 12042                                                        Mystery|Sci-Fi|Thriller
## 12043                                                                 Children|Drama
## 12044                                                                 Comedy|Romance
## 12045                                                               Mystery|Thriller
## 12046                                                                          Drama
## 12047                                                  Action|Comedy|Horror|Thriller
## 12048                                                         Action|Sci-Fi|Thriller
## 12049                                                      Action|Adventure|Thriller
## 12050                                                               Action|Drama|War
## 12051                                                           Crime|Drama|Thriller
## 12052                                                                         Comedy
## 12053                                                             Drama|Thriller|War
## 12054                                                         Action|Romance|Western
## 12055                                                          Action|Crime|Thriller
## 12056                                                            Action|Crime|Sci-Fi
## 12057                                                          Action|Crime|Thriller
## 12058                                                        Action|Adventure|Sci-Fi
## 12059                                                                         Comedy
## 12060                                                               Adventure|Comedy
## 12061                                                                   Drama|Horror
## 12062                                                        Action|Adventure|Sci-Fi
## 12063                                                          Action|Crime|Thriller
## 12064                                                   Action|Drama|Sci-Fi|Thriller
## 12065                                                    Action|Crime|Drama|Thriller
## 12066                                                    Comedy|Crime|Drama|Thriller
## 12067                                                        Action|Adventure|Sci-Fi
## 12068                                                                    Crime|Drama
## 12069                                                         Adventure|Drama|Sci-Fi
## 12070                                                                 Comedy|Romance
## 12071                                                                         Comedy
## 12072                                                    Action|Crime|Drama|Thriller
## 12073                                                  Action|Crime|Fantasy|Thriller
## 12074                                                       Comedy|Drama|Romance|War
## 12075                                Adventure|Animation|Children|Drama|Musical|IMAX
## 12076                                                    Action|Comedy|Crime|Fantasy
## 12077                                                        Action|Romance|Thriller
## 12078                                       Action|Adventure|Comedy|Romance|Thriller
## 12079                                                                         Comedy
## 12080                                                        Action|Adventure|Sci-Fi
## 12081                                                                       Thriller
## 12082                                               Action|Adventure|Sci-Fi|Thriller
## 12083                                                                   Comedy|Drama
## 12084                                                         Action|Sci-Fi|Thriller
## 12085                                             Animation|Children|Fantasy|Musical
## 12086                                                                Children|Comedy
## 12087                                          Comedy|Drama|Fantasy|Romance|Thriller
## 12088                                    Adventure|Animation|Children|Comedy|Musical
## 12089                                                                  Action|Sci-Fi
## 12090                                                        Adventure|Drama|Western
## 12091                                                          Action|Crime|Thriller
## 12092                                                          Crime|Horror|Thriller
## 12093                                Animation|Children|Fantasy|Musical|Romance|IMAX
## 12094                                                                 Comedy|Romance
## 12095                                                    Comedy|Crime|Drama|Thriller
## 12096                                              Action|Adventure|Mystery|Thriller
## 12097                                                     Adventure|Animation|Comedy
## 12098                                                      Action|Adventure|Thriller
## 12099                                              Action|Adventure|Romance|Thriller
## 12100                                                               Animation|Sci-Fi
## 12101                                                      Animation|Children|Comedy
## 12102                                                                     Comedy|War
## 12103                                               Action|Adventure|Sci-Fi|Thriller
## 12104                                                                Action|Thriller
## 12105                                               Action|Adventure|Sci-Fi|Thriller
## 12106                                             Adventure|Children|Fantasy|Musical
## 12107                                                         Adventure|Drama|Sci-Fi
## 12108                                                          Action|Crime|Thriller
## 12109                                                Children|Comedy|Fantasy|Musical
## 12110                                                                   Comedy|Crime
## 12111                                                                         Comedy
## 12112                                                          Children|Drama|Sci-Fi
## 12113                                               Action|Adventure|Sci-Fi|Thriller
## 12114                                                       Adventure|Comedy|Fantasy
## 12115                                                Animation|Children|Comedy|Crime
## 12116                                                        Action|Adventure|Sci-Fi
## 12117                                        Action|Adventure|Comedy|Fantasy|Romance
## 12118                                                               Action|Adventure
## 12119                                                                 Fantasy|Sci-Fi
## 12120                                                 Action|Adventure|Horror|Sci-Fi
## 12121                                                    Crime|Drama|Sci-Fi|Thriller
## 12122                                                               Action|Drama|War
## 12123                                                        Action|Adventure|Sci-Fi
## 12124                                                                  Horror|Sci-Fi
## 12125                                         Action|Adventure|Comedy|Fantasy|Horror
## 12126                                                                      Drama|War
## 12127                                                          Action|Comedy|Musical
## 12128                                                                      Drama|War
## 12129                                     Adventure|Animation|Children|Comedy|Sci-Fi
## 12130                                                         Action|Sci-Fi|Thriller
## 12131                                                                         Horror
## 12132                                                     Action|Adventure|Drama|War
## 12133                                                         Comedy|Fantasy|Romance
## 12134                                                        Adventure|Comedy|Sci-Fi
## 12135                                              Action|Adventure|Animation|Sci-Fi
## 12136                                                                 Comedy|Fantasy
## 12137                                             Animation|Children|Fantasy|Musical
## 12138                                                               Action|Adventure
## 12139                                                         Comedy|Horror|Thriller
## 12140                                                         Comedy|Musical|Romance
## 12141                                                                  Action|Horror
## 12142                                                                  Drama|Romance
## 12143                                                        Action|Adventure|Comedy
## 12144                                                 Action|Adventure|Comedy|Sci-Fi
## 12145                                                      Action|Adventure|Thriller
## 12146                                                           Action|Comedy|Sci-Fi
## 12147                                                                   Drama|Sci-Fi
## 12148                                               Action|Adventure|Sci-Fi|Thriller
## 12149                                                      Action|Adventure|Thriller
## 12150                                                          Drama|Sci-Fi|Thriller
## 12151                                                                  Action|Sci-Fi
## 12152                                                            Comedy|Drama|Sci-Fi
## 12153                                                                  Drama|Romance
## 12154                                                                  Drama|Romance
## 12155                                                                   Comedy|Crime
## 12156                                                          Action|Comedy|Musical
## 12157                                                                Sci-Fi|Thriller
## 12158                                                           Comedy|Drama|Romance
## 12159                                                 Action|Romance|Sci-Fi|Thriller
## 12160                                                                 Comedy|Romance
## 12161                                                                          Drama
## 12162                                                      Adventure|Fantasy|Musical
## 12163                                                                   Comedy|Drama
## 12164                                                      Action|Comedy|Crime|Drama
## 12165                                                      Action|Comedy|Crime|Drama
## 12166                                       Action|Adventure|Children|Comedy|Fantasy
## 12167                                                        Adventure|Comedy|Sci-Fi
## 12168                                                Adventure|Comedy|Sci-Fi|Western
## 12169                                                               Adventure|Sci-Fi
## 12170                                       Adventure|Children|Comedy|Fantasy|Sci-Fi
## 12171                                      Animation|Children|Comedy|Musical|Romance
## 12172                                                        Action|Adventure|Sci-Fi
## 12173                                                       Action|Adventure|Fantasy
## 12174                                             Adventure|Animation|Children|Drama
## 12175                                                              Adventure|Fantasy
## 12176                                                         Action|Horror|Thriller
## 12177                                                                 Comedy|Fantasy
## 12178                                                        Action|Adventure|Sci-Fi
## 12179                                                          Drama|Fantasy|Romance
## 12180                                                           Comedy|Drama|Fantasy
## 12181                                            Adventure|Animation|Children|Comedy
## 12182                                                                   Comedy|Drama
## 12183                                                        Adventure|Comedy|Sci-Fi
## 12184                                                                   Comedy|Crime
## 12185                                                        Action|Adventure|Sci-Fi
## 12186                                                            Action|Drama|Sci-Fi
## 12187                                                                          Drama
## 12188                                                          Comedy|Crime|Thriller
## 12189                                                         Action|Sci-Fi|Thriller
## 12190                                                                         Comedy
## 12191                                                         Action|Sci-Fi|Thriller
## 12192                                                        Action|Adventure|Sci-Fi
## 12193                                                        Action|Adventure|Sci-Fi
## 12194                                                                  Action|Sci-Fi
## 12195                                                                 Comedy|Romance
## 12196                                                        Action|Adventure|Comedy
## 12197                                                       Animation|Comedy|Musical
## 12198                                                                 Comedy|Romance
## 12199                                                                Children|Comedy
## 12200                                                          Drama|Horror|Thriller
## 12201                                                           Action|Comedy|Sci-Fi
## 12202                                                           Drama|Horror|Mystery
## 12203                                                                         Comedy
## 12204                                                   Comedy|Drama|Fantasy|Romance
## 12205                                                                  Action|Sci-Fi
## 12206                                                                  Drama|Romance
## 12207                                               Action|Adventure|Sci-Fi|Thriller
## 12208                                                                         Comedy
## 12209                                                    Action|Crime|Drama|Thriller
## 12210                                                Adventure|Comedy|Fantasy|Sci-Fi
## 12211                                             Action|Crime|Drama|Sci-Fi|Thriller
## 12212                                                   Action|Crime|Sci-Fi|Thriller
## 12213                      Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery
## 12214                                       Action|Adventure|Animation|Drama|Fantasy
## 12215                                                                  Comedy|Sci-Fi
## 12216                                                       Adventure|Comedy|Fantasy
## 12217                                                        Adventure|Comedy|Sci-Fi
## 12218                                                 Fantasy|Horror|Mystery|Romance
## 12219                                    Adventure|Animation|Children|Comedy|Fantasy
## 12220                                                                    Crime|Drama
## 12221                                                                          Drama
## 12222                                                        Adventure|Comedy|Sci-Fi
## 12223                                                                      Drama|War
## 12224                                                        Action|Mystery|Thriller
## 12225                                                           Action|Comedy|Horror
## 12226                                                    Action|Crime|Drama|Thriller
## 12227                                              Adventure|Children|Comedy|Musical
## 12228                                                                Children|Comedy
## 12229                                                        Children|Comedy|Musical
## 12230                                                                          Drama
## 12231                                                          Adventure|Crime|Drama
## 12232                                                                         Comedy
## 12233                                                               Animation|Comedy
## 12234                                          Action|Children|Comedy|Fantasy|Sci-Fi
## 12235                                                        Action|Children|Fantasy
## 12236                                                         Adventure|Drama|Sci-Fi
## 12237                                                         Action|Sci-Fi|Thriller
## 12238                                                         Action|Adventure|Drama
## 12239                                                      Action|Adventure|Thriller
## 12240                                                                 Comedy|Western
## 12241                                                        Action|Adventure|Sci-Fi
## 12242                                               Action|Adventure|Sci-Fi|Thriller
## 12243                                                        Action|Adventure|Sci-Fi
## 12244                                                      Animation|Children|Comedy
## 12245                                                               Action|Drama|War
## 12246                                                        Action|Adventure|Sci-Fi
## 12247                                                                         Comedy
## 12248                                                                          Drama
## 12249                                                                  Action|Comedy
## 12250                                                                   Drama|Sci-Fi
## 12251                                                           Action|Drama|Romance
## 12252                                                          Comedy|Crime|Thriller
## 12253                                                         Adventure|Comedy|Crime
## 12254                                                                         Comedy
## 12255                                                                 Romance|Sci-Fi
## 12256                                                           Comedy|Drama|Romance
## 12257                                               Action|Adventure|Comedy|Thriller
## 12258                            Adventure|Animation|Children|Comedy|Fantasy|Romance
## 12259                                             Adventure|Animation|Fantasy|Sci-Fi
## 12260                                                                 Comedy|Romance
## 12261                                                       Adventure|Comedy|Fantasy
## 12262                                                                         Comedy
## 12263                                                           Comedy|Horror|Sci-Fi
## 12264                                    Adventure|Animation|Children|Comedy|Fantasy
## 12265                                                     Adventure|Children|Fantasy
## 12266                                                                 Crime|Thriller
## 12267                                                                   Comedy|Drama
## 12268                                                              Adventure|Fantasy
## 12269                                                        Action|Adventure|Sci-Fi
## 12270                                            Adventure|Animation|Children|Comedy
## 12271                                                         Action|Horror|Thriller
## 12272                                               Action|Adventure|Sci-Fi|Thriller
## 12273                                                   Action|Adventure|Sci-Fi|IMAX
## 12274                                           Action|Crime|Mystery|Sci-Fi|Thriller
## 12275                                                         Horror|Sci-Fi|Thriller
## 12276                                                            Action|Drama|Sci-Fi
## 12277                                                    Adventure|Animation|Fantasy
## 12278                                                                         Comedy
## 12279                                                                    Documentary
## 12280                                                          Action|Drama|Thriller
## 12281                                                              Adventure|Fantasy
## 12282                                                         Action|Sci-Fi|Thriller
## 12283                                                     Animation|Children|Fantasy
## 12284                                                                   Action|Crime
## 12285                                                                 Drama|Thriller
## 12286                                                                 Mystery|Sci-Fi
## 12287                                                                   Drama|Sci-Fi
## 12288                                      Adventure|Children|Comedy|Fantasy|Musical
## 12289                                               Action|Adventure|Sci-Fi|Thriller
## 12290                             Action|Adventure|Animation|Children|Fantasy|Sci-Fi
## 12291                                          Action|Adventure|Sci-Fi|Thriller|IMAX
## 12292                                            Adventure|Animation|Children|Comedy
## 12293                                                        Action|Adventure|Sci-Fi
## 12294                                                Action|Adventure|Comedy|Fantasy
## 12295                                                          Action|Fantasy|Sci-Fi
## 12296                                                  Action|Adventure|Drama|Sci-Fi
## 12297                                                                   Comedy|Crime
## 12298                                                                  Comedy|Horror
## 12299                                                                         Comedy
## 12300                                                                         Comedy
## 12301                                                          Action|Crime|Thriller
## 12302                                          Action|Adventure|Sci-Fi|Thriller|IMAX
## 12303                                       Adventure|Animation|Drama|Fantasy|Sci-Fi
## 12304                                                     Action|Adventure|Drama|War
## 12305                                                          Drama|Fantasy|Romance
## 12306                                                         Action|Sci-Fi|Thriller
## 12307                                                                         Sci-Fi
## 12308                                                   Action|Drama|Horror|Thriller
## 12309                                                Action|Adventure|Fantasy|Horror
## 12310                                                            Action|Drama|Horror
## 12311                                                          Action|Drama|Thriller
## 12312                                                               Adventure|Sci-Fi
## 12313                                                                 Comedy|Fantasy
## 12314                                                               Adventure|Sci-Fi
## 12315                                                                   Drama|Sci-Fi
## 12316                                                                   Drama|Sci-Fi
## 12317                                                                 Fantasy|Sci-Fi
## 12318                                                           Drama|Fantasy|Sci-Fi
## 12319                                                     Animation|Fantasy|Thriller
## 12320                                                         Adventure|Fantasy|IMAX
## 12321                                     Action|Adventure|Animation|Children|Sci-Fi
## 12322                                                                    Documentary
## 12323                                                   Action|Adventure|Sci-Fi|IMAX
## 12324                                               Action|Adventure|Sci-Fi|Thriller
## 12325                                                          Action|Crime|Thriller
## 12326                                                                  Comedy|Horror
## 12327                                                                          Drama
## 12328                                     Action|Adventure|Animation|Children|Comedy
## 12329                                                 Fantasy|Horror|Sci-Fi|Thriller
## 12330                                                                   Comedy|Crime
## 12331                                                                         Comedy
## 12332                                                           Crime|Drama|Thriller
## 12333                                                   Animation|Fantasy|Sci-Fi|War
## 12334                                                   Action|Adventure|Crime|Drama
## 12335                                            Adventure|Animation|Fantasy|Romance
## 12336                                                                  Action|Comedy
## 12337                                        Action|Crime|Film-Noir|Mystery|Thriller
## 12338                                                        Action|Adventure|Sci-Fi
## 12339                                                              Action|Crime|IMAX
## 12340                                                         Action|Sci-Fi|Thriller
## 12341                                                        Action|Adventure|Sci-Fi
## 12342                                                     Adventure|Animation|Comedy
## 12343                                       Animation|Comedy|Fantasy|Musical|Romance
## 12344                                               Adventure|Children|Drama|Fantasy
## 12345                                            Adventure|Animation|Children|Comedy
## 12346                                                Adventure|Drama|Horror|Thriller
## 12347                                                          Drama|Musical|Romance
## 12348                                                    Action|Sci-Fi|Thriller|IMAX
## 12349                                                         Action|Sci-Fi|Thriller
## 12350                                                       Action|Adventure|Fantasy
## 12351                                                                          Drama
## 12352                                                                         Comedy
## 12353                                                              Documentary|Drama
## 12354                                                     Adventure|Children|Fantasy
## 12355                                                      Action|Adventure|Thriller
## 12356                                                                    Crime|Drama
## 12357                                                        Mystery|Sci-Fi|Thriller
## 12358                                                                 Children|Drama
## 12359                                                                 Comedy|Romance
## 12360                                                               Mystery|Thriller
## 12361                                                         Crime|Mystery|Thriller
## 12362                                                               Action|Drama|War
## 12363                                                           Crime|Drama|Thriller
## 12364                                                                         Comedy
## 12365                                                           Adventure|Drama|IMAX
## 12366                                                         Action|Sci-Fi|Thriller
## 12367                                                          Action|Crime|Thriller
## 12368                                                                          Drama
## 12369                                                                         Comedy
## 12370                                                                   Drama|Horror
## 12371                                                        Action|Adventure|Sci-Fi
## 12372                                                    Comedy|Crime|Drama|Thriller
## 12373                                                        Action|Adventure|Sci-Fi
## 12374                                                                    Crime|Drama
## 12375                                                         Adventure|Drama|Sci-Fi
## 12376                                                                   Comedy|Drama
## 12377                                                    Action|Crime|Drama|Thriller
## 12378                                                       Comedy|Drama|Romance|War
## 12379                                Adventure|Animation|Children|Drama|Musical|IMAX
## 12380                                                        Action|Romance|Thriller
## 12381                                               Action|Adventure|Sci-Fi|Thriller
## 12382                                                                   Comedy|Drama
## 12383                                                                          Drama
## 12384                                                                       Thriller
## 12385                                    Adventure|Animation|Children|Comedy|Musical
## 12386                                                                  Action|Sci-Fi
## 12387                                                          Crime|Horror|Thriller
## 12388                                              Action|Adventure|Mystery|Thriller
## 12389                                              Action|Adventure|Romance|Thriller
## 12390                                                             Comedy|Crime|Drama
## 12391                                               Action|Adventure|Sci-Fi|Thriller
## 12392                                                  Comedy|Fantasy|Romance|Sci-Fi
## 12393                                                                    Crime|Drama
## 12394                                             Adventure|Children|Fantasy|Musical
## 12395                                                         Adventure|Drama|Sci-Fi
## 12396                                                                  Drama|Romance
## 12397                                                         Crime|Mystery|Thriller
## 12398                                                         Drama|Romance|Thriller
## 12399                                                          Children|Drama|Sci-Fi
## 12400                                                       Adventure|Comedy|Fantasy
## 12401                                                        Action|Adventure|Sci-Fi
## 12402                                                 Action|Adventure|Horror|Sci-Fi
## 12403                                                    Crime|Drama|Sci-Fi|Thriller
## 12404                                                               Action|Drama|War
## 12405                                                        Action|Adventure|Sci-Fi
## 12406                                                                    Crime|Drama
## 12407                                                                  Horror|Sci-Fi
## 12408                                                                      Drama|War
## 12409                                                         Action|Sci-Fi|Thriller
## 12410                                                         Comedy|Fantasy|Romance
## 12411                                                        Adventure|Comedy|Sci-Fi
## 12412                                                                          Drama
## 12413                                                  Action|Horror|Sci-Fi|Thriller
## 12414                                                  Drama|Fantasy|Horror|Thriller
## 12415                                               Action|Adventure|Sci-Fi|Thriller
## 12416                                                               Adventure|Sci-Fi
## 12417                                               Action|Adventure|Sci-Fi|Thriller
## 12418                                                        Action|Adventure|Sci-Fi
## 12419                                                        Adventure|Comedy|Sci-Fi
## 12420                                                 Comedy|Horror|Mystery|Thriller
## 12421                                                                         Comedy
## 12422                                                        Action|Adventure|Comedy
## 12423                                                 Action|Adventure|Comedy|Sci-Fi
## 12424                                                      Action|Adventure|Thriller
## 12425                                                           Action|Comedy|Sci-Fi
## 12426                                                                   Drama|Sci-Fi
## 12427                                                                   Action|Drama
## 12428                                                      Action|Adventure|Thriller
## 12429                                                         Drama|Mystery|Thriller
## 12430                                                        Horror|Mystery|Thriller
## 12431                                                                  Action|Sci-Fi
## 12432                                                                  Drama|Romance
## 12433                                                            Comedy|Drama|Sci-Fi
## 12434                                                           Action|Horror|Sci-Fi
## 12435                                                                  Drama|Romance
## 12436                                                 Comedy|Horror|Mystery|Thriller
## 12437                                                                  Drama|Romance
## 12438                                                      Action|Adventure|Thriller
## 12439                                                                   Comedy|Crime
## 12440                                                                         Comedy
## 12441                                                   Crime|Drama|Mystery|Thriller
## 12442                                                          Drama|Sci-Fi|Thriller
## 12443                                                 Action|Romance|Sci-Fi|Thriller
## 12444                                                                 Comedy|Romance
## 12445                                                                   Comedy|Drama
## 12446                                                                 Horror|Mystery
## 12447                                                        Adventure|Comedy|Sci-Fi
## 12448                                                Adventure|Comedy|Sci-Fi|Western
## 12449                                                               Action|Drama|War
## 12450                                                                Horror|Thriller
## 12451                                                                 Comedy|Fantasy
## 12452                                                                          Drama
## 12453                                                Adventure|Drama|Fantasy|Romance
## 12454                                                                    Crime|Drama
## 12455                                                                Action|Thriller
## 12456                                                                          Drama
## 12457                                                                Action|Thriller
## 12458                                                    Action|Drama|Romance|Sci-Fi
## 12459                                                              Animation|Musical
## 12460                                                                          Drama
## 12461                                                          Comedy|Crime|Thriller
## 12462                                                         Action|Sci-Fi|Thriller
## 12463                                Action|Adventure|Comedy|Fantasy|Horror|Thriller
## 12464                                                        Action|Adventure|Sci-Fi
## 12465                                                   Comedy|Horror|Musical|Sci-Fi
## 12466                                                        Action|Adventure|Comedy
## 12467                                                       Animation|Comedy|Musical
## 12468                                                                 Comedy|Romance
## 12469                                                          Drama|Horror|Thriller
## 12470                                                                  Drama|Romance
## 12471                                                                          Drama
## 12472                                               Action|Adventure|Sci-Fi|Thriller
## 12473                                                      Action|Adventure|Thriller
## 12474                                                    Action|Crime|Drama|Thriller
## 12475                      Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery
## 12476                                                                Horror|Thriller
## 12477                                                       Adventure|Comedy|Fantasy
## 12478                                                                    Documentary
## 12479                                                      Action|Adventure|Thriller
## 12480                                                                    Crime|Drama
## 12481                                                    Action|Crime|Drama|Thriller
## 12482                                                 Comedy|Horror|Mystery|Thriller
## 12483                                                           Crime|Drama|Thriller
## 12484                                                         Drama|Mystery|Thriller
## 12485                                                          Adventure|Crime|Drama
## 12486                                                                   Comedy|Drama
## 12487                                                                  Drama|Romance
## 12488                                                         Action|Adventure|Drama
## 12489                                                                         Comedy
## 12490                                                      Action|Adventure|Thriller
## 12491                                                               Action|Drama|War
## 12492                                                                 Drama|Thriller
## 12493                                                                  Comedy|Horror
## 12494                                                        Action|Adventure|Sci-Fi
## 12495                                                                          Drama
## 12496                                                                         Horror
## 12497                                                                          Drama
## 12498                                                                          Drama
## 12499                                                                  Action|Comedy
## 12500                                                                         Comedy
## 12501                                                         Action|Sci-Fi|Thriller
## 12502                                                                   Drama|Sci-Fi
## 12503                                                           Action|Drama|Romance
## 12504                                                                          Drama
## 12505                                                          Comedy|Crime|Thriller
## 12506                                                                  Comedy|Sci-Fi
## 12507                                                                 Comedy|Romance
## 12508                                                                          Drama
## 12509                                                                   Comedy|Crime
## 12510                                                         Comedy|Horror|Thriller
## 12511                                                               Mystery|Thriller
## 12512                                                                    Crime|Drama
## 12513                                               Action|Adventure|Comedy|Thriller
## 12514                            Adventure|Animation|Children|Comedy|Fantasy|Romance
## 12515                                                          Drama|Musical|Romance
## 12516                                                               Action|Adventure
## 12517                                                          Action|Crime|Thriller
## 12518                                                         Adventure|Drama|Sci-Fi
## 12519                                                                         Comedy
## 12520                                             Adventure|Animation|Fantasy|Sci-Fi
## 12521                                                                   Comedy|Drama
## 12522                                                  Action|Adventure|Drama|Sci-Fi
## 12523                                                                         Comedy
## 12524                                                                         Horror
## 12525                                                  Drama|Mystery|Sci-Fi|Thriller
## 12526                                                     Adventure|Children|Fantasy
## 12527                                                                 Comedy|Romance
## 12528                                                                         Comedy
## 12529                                                              Adventure|Fantasy
## 12530                                                                  Drama|Romance
## 12531                                                               Action|Drama|War
## 12532                                                  Action|Horror|Sci-Fi|Thriller
## 12533                                                   Action|Adventure|Sci-Fi|IMAX
## 12534                                                        Action|Mystery|Thriller
## 12535                                           Action|Crime|Mystery|Sci-Fi|Thriller
## 12536                                                       Action|Adventure|Fantasy
## 12537                                                         Horror|Sci-Fi|Thriller
## 12538                                                                    Documentary
## 12539                                                           Comedy|Drama|Romance
## 12540                                                                         Horror
## 12541                                                      Action|Adventure|Thriller
## 12542                                                              Adventure|Fantasy
## 12543                                                                    Crime|Drama
## 12544                                                                  Drama|Romance
## 12545                                          Action|Adventure|Crime|Drama|Thriller
## 12546                                                                Horror|Thriller
## 12547                                          Action|Adventure|Sci-Fi|Thriller|IMAX
## 12548                                            Adventure|Animation|Children|Comedy
## 12549                                                           Action|Horror|Sci-Fi
## 12550                                                        Action|Adventure|Sci-Fi
## 12551                                                Action|Adventure|Comedy|Fantasy
## 12552                                                           Crime|Drama|Thriller
## 12553                                       Action|Adventure|Comedy|Romance|Thriller
## 12554                                                          Children|Comedy|Drama
## 12555                                                                    Crime|Drama
## 12556                                                          Action|Crime|Thriller
## 12557                                                                  Comedy|Horror
## 12558                                          Action|Adventure|Sci-Fi|Thriller|IMAX
## 12559                                                          Drama|Sci-Fi|Thriller
## 12560                                                 Action|Adventure|Drama|Fantasy
## 12561                                                          Drama|Sci-Fi|Thriller
## 12562                                                                   Comedy|Drama
## 12563                                                          Action|Drama|Thriller
## 12564                                                     Action|Adventure|Drama|War
## 12565                                                                    Documentary
## 12566                                         Action|Adventure|Drama|Sci-Fi|Thriller
## 12567                                                         Adventure|Fantasy|IMAX
## 12568                                                       Comedy|Documentary|Drama
## 12569                                                                  Drama|Romance
## 12570                                                                    Documentary
## 12571                                               Action|Adventure|Sci-Fi|Thriller
## 12572                                                          Action|Crime|Thriller
## 12573                                                  Action|Horror|Sci-Fi|Thriller
## 12574                                                                  Comedy|Horror
## 12575                                                        Horror|Mystery|Thriller
## 12576                                        Action|Adventure|Drama|Mystery|Thriller
## 12577                                        Action|Adventure|Drama|Mystery|Thriller
## 12578                                                                    Documentary
## 12579                                                           Crime|Drama|Thriller
## 12580                                                                    Crime|Drama
## 12581                                                        Action|Adventure|Sci-Fi
## 12582                                                              Action|Crime|IMAX
## 12583                                               Action|Adventure|Sci-Fi|Thriller
## 12584                                                Action|Crime|Drama|Thriller|War
## 12585                                                                  Drama|Fantasy
## 12586                                                                  Drama|Romance
## 12587                                                Adventure|Fantasy|Thriller|IMAX
## 12588                                                        Horror|Mystery|Thriller
## 12589                                                    Action|Sci-Fi|Thriller|IMAX
## 12590                                                         Drama|Romance|Thriller
## 12591                                                    Action|Crime|Drama|Thriller
## 12592                                                                 Drama|Thriller
## 12593                                         Action|Adventure|Drama|Sci-Fi|Thriller
## 12594                                                      Action|Adventure|Thriller
## 12595                                                                    Documentary
## 12596                                                                    Documentary
## 12597                                                                    Documentary
## 12598                                                        Action|Fantasy|War|IMAX
## 12599                                                          Action|Drama|Thriller
## 12600                                                                    Documentary
## 12601                                                                          Drama
## 12602                                                   Adventure|Drama|Fantasy|IMAX
## 12603                                                               Animation|Comedy
## 12604                                                          Action|Crime|Thriller
## 12605                                             Action|Horror|Sci-Fi|Thriller|IMAX
## 12606                                                        Action|Crime|Drama|IMAX
## 12607                                                                  Drama|Romance
## 12608                                                   Action|Adventure|Sci-Fi|IMAX
## 12609                                                           Comedy|Drama|Romance
## 12610                                                                          Drama
## 12611                                                   Action|Adventure|Sci-Fi|IMAX
## 12612                                Action|Crime|Drama|Mystery|Sci-Fi|Thriller|IMAX
## 12613                                                  Action|Adventure|Fantasy|IMAX
## 12614                                    Action|Adventure|Drama|Fantasy|Mystery|IMAX
## 12615                                                 Crime|Drama|Film-Noir|Thriller
## 12616                                                                    Documentary
## 12617                                    Adventure|Animation|Children|Comedy|Fantasy
## 12618                                                     Adventure|Children|Fantasy
## 12619                                                                 Comedy|Romance
## 12620                                                           Adventure|Drama|IMAX
## 12621                                                        Action|Adventure|Sci-Fi
## 12622                                                                         Comedy
## 12623                                                       Comedy|Drama|Romance|War
## 12624                                                    Action|Comedy|Crime|Fantasy
## 12625                                                                 Comedy|Romance
## 12626                                               Action|Adventure|Sci-Fi|Thriller
## 12627                                             Action|Crime|Drama|Sci-Fi|Thriller
## 12628                                          Comedy|Drama|Fantasy|Romance|Thriller
## 12629                                    Adventure|Animation|Children|Comedy|Musical
## 12630                                                          Action|Crime|Thriller
## 12631                                              Action|Adventure|Mystery|Thriller
## 12632                                              Action|Adventure|Romance|Thriller
## 12633                                                             Comedy|Crime|Drama
## 12634                                               Action|Adventure|Sci-Fi|Thriller
## 12635                                                         Adventure|Drama|Sci-Fi
## 12636                                                          Children|Drama|Sci-Fi
## 12637                                                                 Action|Romance
## 12638                                                        Action|Adventure|Sci-Fi
## 12639                                                        Action|Adventure|Sci-Fi
## 12640                                                               Action|Adventure
## 12641                                                        Action|Adventure|Comedy
## 12642                                                           Action|Comedy|Sci-Fi
## 12643                                                                  Drama|Romance
## 12644                                                 Action|Romance|Sci-Fi|Thriller
## 12645                                                         Action|Adventure|Drama
## 12646                                                               Adventure|Comedy
## 12647                                                Action|Adventure|Children|Drama
## 12648                                                         Action|Sci-Fi|Thriller
## 12649                                                        Action|Adventure|Sci-Fi
## 12650                                                        Action|Adventure|Sci-Fi
## 12651                                                                  Action|Sci-Fi
## 12652                                                        Action|Adventure|Comedy
## 12653                                                                         Comedy
## 12654                                                                          Drama
## 12655                                                         Action|Adventure|Drama
## 12656                                                         Action|Sci-Fi|Thriller
## 12657                                                        Action|Adventure|Sci-Fi
## 12658                                                        Action|Adventure|Sci-Fi
## 12659                                                        Action|Adventure|Sci-Fi
## 12660                            Adventure|Animation|Children|Comedy|Fantasy|Romance
## 12661                                    Adventure|Animation|Children|Comedy|Fantasy
## 12662                                                              Adventure|Fantasy
## 12663                                               Action|Adventure|Sci-Fi|Thriller
## 12664                                                              Adventure|Fantasy
## 12665                                                Action|Adventure|Comedy|Fantasy
## 12666                                                 Action|Adventure|Drama|Fantasy
## 12667                        Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi|IMAX
## 12668                                                                    Crime|Drama
## 12669                                                          Action|Fantasy|Horror
## 12670                                                        Fantasy|Horror|Thriller
## 12671                                      Action|Adventure|Crime|Drama|Thriller|War
## 12672                                                     Adventure|Children|Fantasy
## 12673                                                          Action|Crime|Thriller
## 12674                                                                 Comedy|Romance
## 12675                                                      Action|Adventure|Thriller
## 12676                                                                    Crime|Drama
## 12677                                             Action|Comedy|Crime|Drama|Thriller
## 12678                                                          Comedy|Crime|Thriller
## 12679                                                                  Drama|Romance
## 12680                                                        Mystery|Sci-Fi|Thriller
## 12681                                                          Comedy|Drama|Thriller
## 12682                                                                  Drama|Romance
## 12683                                                         Crime|Mystery|Thriller
## 12684                                                                      Drama|War
## 12685                                                                Action|Thriller
## 12686                                                          Comedy|Horror|Romance
## 12687                                                      Action|Adventure|Thriller
## 12688                                                                 Drama|Thriller
## 12689                                                                  Drama|Romance
## 12690                                                  Action|Adventure|Comedy|Crime
## 12691                                                                         Comedy
## 12692                                                                   Comedy|Drama
## 12693                                                                  Drama|Romance
## 12694                                                    Comedy|Crime|Drama|Thriller
## 12695                                       Action|Adventure|Animation|Horror|Sci-Fi
## 12696                                                             Animation|Children
## 12697                                   Adventure|Animation|Children|Fantasy|Musical
## 12698                                                                  Comedy|Sci-Fi
## 12699                                                      Animation|Children|Comedy
## 12700                                                                   Comedy|Crime
## 12701                                                             Comedy|Crime|Drama
## 12702                                               Action|Adventure|Sci-Fi|Thriller
## 12703                                       Animation|Children|Drama|Musical|Romance
## 12704                                                          Drama|Mystery|Western
## 12705                                                                  Drama|Romance
## 12706                                                                 Drama|Thriller
## 12707                                                                    Crime|Drama
## 12708                                                                          Drama
## 12709                                                           Crime|Drama|Thriller
## 12710                                                                          Drama
## 12711                                                                       Thriller
## 12712                                                                          Drama
## 12713                                                                   Comedy|Drama
## 12714                                                                    Crime|Drama
## 12715                                                                          Drama
## 12716                                                                  Drama|Romance
## 12717                                                                  Drama|Musical
## 12718                                                                          Drama
## 12719                                                                     Comedy|War
## 12720                                                                          Drama
## 12721                                                         Comedy|Musical|Romance
## 12722                                                 Drama|Mystery|Romance|Thriller
## 12723                                                               Mystery|Thriller
## 12724                                                                   Comedy|Crime
## 12725                                                        Drama|Film-Noir|Romance
## 12726                                                         Adventure|Drama|Sci-Fi
## 12727                                                                          Drama
## 12728                                                       Adventure|Comedy|Fantasy
## 12729                                                                   Comedy|Drama
## 12730                                                          Drama|Fantasy|Romance
## 12731                                                                 Fantasy|Sci-Fi
## 12732                                                       Action|Adventure|Western
## 12733                                                    Crime|Drama|Sci-Fi|Thriller
## 12734                                                                    Crime|Drama
## 12735                                                                   Crime|Horror
## 12736                                                                      Drama|War
## 12737                                                                 Comedy|Romance
## 12738                                                           Drama|Mystery|Sci-Fi
## 12739                                                                  Drama|Fantasy
## 12740                                                                         Horror
## 12741                                                                          Drama
## 12742                                                                  Drama|Musical
## 12743                                                Fantasy|Horror|Romance|Thriller
## 12744                                                                          Drama
## 12745                                                                  Drama|Mystery
## 12746                                                          Drama|Sci-Fi|Thriller
## 12747                                                                   Drama|Sci-Fi
## 12748                                                          Drama|Fantasy|Mystery
## 12749                                                                          Drama
## 12750                                                                 Comedy|Romance
## 12751                                                          Drama|Horror|Thriller
## 12752                                                                          Drama
## 12753                                                         Drama|Mystery|Thriller
## 12754                                                              Drama|Romance|War
## 12755                                                    Action|Crime|Drama|Thriller
## 12756                                                           Comedy|Drama|Fantasy
## 12757                                       Action|Adventure|Animation|Drama|Fantasy
## 12758                                                                          Drama
## 12759                                                                          Drama
## 12760                                                                          Drama
## 12761                                                         Action|Adventure|Drama
## 12762                                                                          Drama
## 12763                                                                  Drama|Mystery
## 12764                                                                         Comedy
## 12765                                                                  Drama|Musical
## 12766                                                                   Comedy|Drama
## 12767                                                                          Drama
## 12768                                                                          Drama
## 12769                                                                  Drama|Romance
## 12770                                                           Action|Drama|Romance
## 12771                                                                  Drama|Romance
## 12772                                                                          Drama
## 12773                                                                Adventure|Drama
## 12774                                                                          Drama
## 12775                                                                          Drama
## 12776                                                                         Horror
## 12777                                                                          Drama
## 12778                                                  Drama|Horror|Mystery|Thriller
## 12779                                         Crime|Drama|Film-Noir|Mystery|Thriller
## 12780                                                  Drama|Mystery|Sci-Fi|Thriller
## 12781                                                                          Drama
## 12782                                                                          Drama
## 12783                                                          Drama|Horror|Thriller
## 12784                                                                          Drama
## 12785                                                                          Drama
## 12786                                                    Comedy|Drama|Fantasy|Sci-Fi
## 12787                                                    Adventure|Animation|Fantasy
## 12788                                                                          Drama
## 12789                                                              Drama|Fantasy|War
## 12790                                               Animation|Children|Drama|Fantasy
## 12791                                                                    Documentary
## 12792                                                   Crime|Drama|Mystery|Thriller
## 12793                                                                 Drama|Thriller
## 12794                                                                 Drama|Thriller
## 12795                                                                  Drama|Romance
## 12796                                                                          Drama
## 12797                                                                          Drama
## 12798                                                           Comedy|Drama|Fantasy
## 12799                                                           Comedy|Drama|Romance
## 12800                                                                         Comedy
## 12801                                                           Comedy|Drama|Romance
## 12802                                                                          Drama
## 12803                                                                          Drama
## 12804                                                                   Comedy|Drama
## 12805                                                                          Drama
## 12806                                                           Drama|Romance|Sci-Fi
## 12807                                                                   Comedy|Drama
## 12808                                                                         Horror
## 12809                                                                          Drama
## 12810                                                                    Documentary
## 12811                                                                    Crime|Drama
## 12812                                                                          Drama
## 12813                                                            Documentary|Musical
## 12814                                                                          Drama
## 12815                                                                 Drama|Thriller
## 12816                                                                   Comedy|Drama
## 12817                                                                  Drama|Romance
## 12818                                                                          Drama
## 12819                                                                          Drama
## 12820                                                        Adventure|Drama|Romance
## 12821                                                                  Drama|Romance
## 12822                                                                  Drama|Romance
## 12823                                                           Action|Drama|Romance
## 12824                                                                      Drama|War
## 12825                                                                  Drama|Romance
## 12826                                                                Fantasy|Western
## 12827                                                                   Comedy|Drama
## 12828                                                                          Drama
## 12829                                                                          Drama
## 12830                                     Adventure|Animation|Children|Drama|Fantasy
## 12831                                                                          Drama
## 12832                                                                          Drama
## 12833                                                                          Drama
## 12834                                                         Drama|Mystery|Thriller
## 12835                                                                    Crime|Drama
## 12836                                                                   Comedy|Drama
## 12837                                                                          Drama
## 12838                                                                   Comedy|Drama
## 12839                                                                   Comedy|Drama
## 12840                                                                          Drama
## 12841                                                  Drama|Fantasy|Mystery|Romance
## 12842                                                          Drama|Fantasy|Romance
## 12843                                                                          Drama
## 12844                                                                          Drama
## 12845                                                                   Comedy|Drama
## 12846                                                       Animation|Mystery|Sci-Fi
## 12847                                                                    Crime|Drama
## 12848                                                                  Drama|Western
## 12849                                                                    Documentary
## 12850                                                           Comedy|Drama|Romance
## 12851                                                                          Drama
## 12852                                                                  Drama|Mystery
## 12853                                                                  Drama|Romance
## 12854                                                                          Drama
## 12855                                                                          Drama
## 12856                                                          Crime|Drama|Film-Noir
## 12857                                                           Comedy|Drama|Romance
## 12858                                                                  Drama|Mystery
## 12859                                                                          Drama
## 12860                                                   Action|Adventure|Sci-Fi|IMAX
## 12861                                                                    Crime|Drama
## 12862                                                                          Drama
## 12863                                Action|Crime|Drama|Mystery|Sci-Fi|Thriller|IMAX
## 12864                                                                          Drama
## 12865                                                           Comedy|Crime|Romance
## 12866                                                                 Drama|Thriller
## 12867                                                                          Drama
## 12868                                                                        Western
## 12869                                                      Action|Adventure|Thriller
## 12870                                                          Comedy|Crime|Thriller
## 12871                                                                 Children|Drama
## 12872                                                                 Comedy|Romance
## 12873                                                               Mystery|Thriller
## 12874                                                         Crime|Mystery|Thriller
## 12875                                                               Action|Drama|War
## 12876                                                           Adventure|Drama|IMAX
## 12877                                                  Action|Adventure|Comedy|Crime
## 12878                                                Action|Adventure|Mystery|Sci-Fi
## 12879                                                          Action|Crime|Thriller
## 12880                                                        Action|Adventure|Sci-Fi
## 12881                                                               Adventure|Comedy
## 12882                                                                   Drama|Horror
## 12883                                                      Drama|Romance|War|Western
## 12884                                                          Action|Crime|Thriller
## 12885                                                   Action|Drama|Sci-Fi|Thriller
## 12886                                                    Comedy|Crime|Drama|Thriller
## 12887                                                                          Drama
## 12888                                                        Action|Adventure|Sci-Fi
## 12889                                                                    Crime|Drama
## 12890                                                         Adventure|Drama|Sci-Fi
## 12891                                                                 Comedy|Romance
## 12892                                                                         Comedy
## 12893                                                       Comedy|Drama|Romance|War
## 12894                                Adventure|Animation|Children|Drama|Musical|IMAX
## 12895                                                    Action|Comedy|Crime|Fantasy
## 12896                                       Action|Adventure|Comedy|Romance|Thriller
## 12897                                                        Children|Comedy|Fantasy
## 12898                                                   Action|Comedy|Crime|Thriller
## 12899                                                      Action|Adventure|Thriller
## 12900                                                                  Comedy|Sci-Fi
## 12901                                                                 Drama|Thriller
## 12902                                                                       Thriller
## 12903                                    Adventure|Animation|Children|Comedy|Musical
## 12904                                                        Adventure|Drama|Western
## 12905                                                          Action|Crime|Thriller
## 12906                                                          Crime|Horror|Thriller
## 12907                                Animation|Children|Fantasy|Musical|Romance|IMAX
## 12908                                                          Action|Crime|Thriller
## 12909                                                          Comedy|Crime|Thriller
## 12910                                                                 Comedy|Romance
## 12911                                                         Crime|Mystery|Thriller
## 12912                                                                         Comedy
## 12913                                                 Adventure|Comedy|Crime|Romance
## 12914                                                                         Comedy
## 12915                                                           Adventure|Drama|IMAX
## 12916                                                       Action|Drama|Romance|War
## 12917                                                                   Comedy|Drama
## 12918                                                           Comedy|Drama|Romance
## 12919                                                                   Comedy|Drama
## 12920                                                      Drama|Romance|War|Western
## 12921                                                                   Comedy|Drama
## 12922                                                           Comedy|Drama|Romance
## 12923                                                       Comedy|Drama|Romance|War
## 12924                                                                  Action|Comedy
## 12925                                                        Action|Romance|Thriller
## 12926                                                                         Comedy
## 12927                                               Action|Adventure|Sci-Fi|Thriller
## 12928                                                                         Comedy
## 12929                                                            Comedy|Crime|Horror
## 12930                                                    Comedy|Crime|Drama|Thriller
## 12931                                                                         Comedy
## 12932                                                                     Comedy|War
## 12933                                                             Comedy|Crime|Drama
## 12934                                                         Comedy|Horror|Thriller
## 12935                                                               Mystery|Thriller
## 12936                                      Action|Adventure|Mystery|Romance|Thriller
## 12937                                                                  Drama|Mystery
## 12938                                                                   Comedy|Drama
## 12939                                                                  Comedy|Sci-Fi
## 12940                                                                     Comedy|War
## 12941                                        Action|Adventure|Comedy|Fantasy|Romance
## 12942                                                               Action|Drama|War
## 12943                                                        Action|Adventure|Sci-Fi
## 12944                                                                 Comedy|Romance
## 12945                                                               Action|Drama|War
## 12946                                                         Action|Sci-Fi|Thriller
## 12947                                                           Comedy|Drama|Romance
## 12948                                                                 Comedy|Romance
## 12949                                                                Adventure|Drama
## 12950                                                         Comedy|Fantasy|Romance
## 12951                                                        Adventure|Comedy|Sci-Fi
## 12952                                                                          Drama
## 12953                                                                 Comedy|Fantasy
## 12954                                                                         Comedy
## 12955                                                                         Horror
## 12956                                                                          Drama
## 12957                                                                         Comedy
## 12958                                                                   Comedy|Drama
## 12959                                                           Comedy|Crime|Romance
## 12960                                                         Horror|Sci-Fi|Thriller
## 12961                                                           Comedy|Drama|Romance
## 12962                                                          Drama|Sci-Fi|Thriller
## 12963                                                                   Comedy|Crime
## 12964                                                                         Comedy
## 12965                                                                 Comedy|Romance
## 12966                                            Comedy|Crime|Drama|Mystery|Thriller
## 12967                                                 Action|Romance|Sci-Fi|Thriller
## 12968                                                 Animation|Children|Fantasy|War
## 12969                                                                 Comedy|Romance
## 12970                                                                          Drama
## 12971                                                      Action|Comedy|Crime|Drama
## 12972                                                                         Comedy
## 12973                                                                   Comedy|Drama
## 12974                                                          Drama|Fantasy|Romance
## 12975                                                                         Comedy
## 12976                                                                         Comedy
## 12977                                                       Comedy|Drama|Romance|War
## 12978                                                                         Comedy
## 12979                                                           Comedy|Crime|Mystery
## 12980                                                                   Comedy|Drama
## 12981                                                Action|Adventure|Comedy|Romance
## 12982                                                                   Comedy|Crime
## 12983                                                         Action|Sci-Fi|Thriller
## 12984                                                                         Comedy
## 12985                                                       Animation|Comedy|Musical
## 12986                                                           Action|Comedy|Sci-Fi
## 12987                                                                         Comedy
## 12988                                                                         Comedy
## 12989                                                                Children|Comedy
## 12990                                                                  Drama|Romance
## 12991                                                       Adventure|Comedy|Musical
## 12992                                                                         Comedy
## 12993                                                           Comedy|Drama|Fantasy
## 12994                                                                     Comedy|War
## 12995                                                                  Comedy|Sci-Fi
## 12996                                                                        Western
## 12997                                                       Mystery|Romance|Thriller
## 12998                                                         Comedy|Fantasy|Romance
## 12999                                    Adventure|Animation|Children|Comedy|Fantasy
## 13000                                                                          Drama
## 13001                                                         Drama|Mystery|Thriller
## 13002                                                                    Crime|Drama
## 13003                                                           Comedy|Drama|Romance
## 13004                                                                          Drama
## 13005                                                                         Comedy
## 13006                                                           Comedy|Drama|Romance
## 13007                                                Fantasy|Horror|Mystery|Thriller
## 13008                                                                   Comedy|Drama
## 13009                                                           Comedy|Drama|Romance
## 13010                                                                    Crime|Drama
## 13011                                              Adventure|Children|Comedy|Musical
## 13012                                                        Children|Comedy|Musical
## 13013                                                                          Drama
## 13014                                                                         Comedy
## 13015                                                                         Comedy
## 13016                                                           Comedy|Drama|Romance
## 13017                                                                         Comedy
## 13018                                                                 Comedy|Western
## 13019                                                                    Crime|Drama
## 13020                                                      Animation|Children|Comedy
## 13021                                                               Action|Drama|War
## 13022                                                                         Comedy
## 13023                                                                         Comedy
## 13024                                                    Action|Comedy|Crime|Romance
## 13025                                                                         Comedy
## 13026                                                                          Drama
## 13027                                                                         Comedy
## 13028                                                                          Drama
## 13029                                                                   Comedy|Crime
## 13030                                                         Adventure|Comedy|Crime
## 13031                                                           Crime|Drama|Thriller
## 13032                                                                  Action|Comedy
## 13033                                                                          Drama
## 13034                                                                         Comedy
## 13035                                                                 Comedy|Western
## 13036                                                                          Drama
## 13037                                                                 Comedy|Romance
## 13038                                                                         Comedy
## 13039                                                                         Comedy
## 13040                                                        Adventure|Comedy|Sci-Fi
## 13041                                                                Adventure|Drama
## 13042                                    Adventure|Animation|Children|Comedy|Fantasy
## 13043                                                  Comedy|Crime|Mystery|Thriller
## 13044                                                                 Crime|Thriller
## 13045                                                Mystery|Romance|Sci-Fi|Thriller
## 13046                                                               Comedy|Drama|War
## 13047                                                          Children|Comedy|Drama
## 13048                                                                 Comedy|Romance
## 13049                                                               Action|Drama|War
## 13050                                                           Comedy|Drama|Romance
## 13051                                           Action|Crime|Mystery|Sci-Fi|Thriller
## 13052                                                                   Comedy|Crime
## 13053                                                                         Comedy
## 13054                                                                    Documentary
## 13055                                                           Comedy|Drama|Romance
## 13056                                                           Comedy|Drama|Romance
## 13057                                                   Comedy|Drama|Fantasy|Romance
## 13058                                                           Comedy|Horror|Sci-Fi
## 13059                                                                 Comedy|Musical
## 13060                                                            Adventure|Drama|War
## 13061                                                                   Comedy|Crime
## 13062                                                                         Comedy
## 13063                                                               Action|Drama|War
## 13064                                                                         Comedy
## 13065                                                           Comedy|Drama|Romance
## 13066                                                               Adventure|Comedy
## 13067                                                                  Comedy|Horror
## 13068                                                                 Comedy|Romance
## 13069                                    Adventure|Animation|Children|Comedy|Fantasy
## 13070                                                               Action|Drama|War
## 13071                                                        Action|Adventure|Sci-Fi
## 13072                                                    Comedy|Crime|Drama|Thriller
## 13073                                                       Comedy|Drama|Romance|War
## 13074                                                                  Action|Sci-Fi
## 13075                                                          Action|Crime|Thriller
## 13076                                                        Action|Adventure|Sci-Fi
## 13077                                                               Action|Adventure
## 13078                                                        Action|Adventure|Sci-Fi
## 13079                                                      Action|Adventure|Thriller
## 13080                                                               Action|Drama|War
## 13081                                                           Crime|Drama|Thriller
## 13082                                                                    Crime|Drama
## 13083                                                         Action|Sci-Fi|Thriller
## 13084                                                                  Drama|Romance
## 13085                                               Action|Adventure|Sci-Fi|Thriller
## 13086                                                    Action|Crime|Drama|Thriller
## 13087                                    Adventure|Animation|Children|Comedy|Fantasy
## 13088                                                                   Comedy|Crime
## 13089                                                         Action|Adventure|Drama
## 13090                                                      Action|Adventure|Thriller
## 13091                                                Action|Adventure|Comedy|Western
## 13092                                                                   Action|Crime
## 13093                                                               Adventure|Comedy
## 13094                                                               Action|Drama|War
## 13095                                                                          Drama
## 13096                                                                   Drama|Sci-Fi
## 13097                                                           Comedy|Drama|Romance
## 13098                                                                Horror|Thriller
## 13099                                               Action|Adventure|Comedy|Thriller
## 13100                            Adventure|Animation|Children|Comedy|Fantasy|Romance
## 13101                                                       Action|Drama|Romance|War
## 13102                                                                  Action|Comedy
## 13103                                                  Drama|Horror|Mystery|Thriller
## 13104                                                           Crime|Drama|Thriller
## 13105                                    Adventure|Animation|Children|Comedy|Fantasy
## 13106                                                     Adventure|Children|Fantasy
## 13107                                                                 Crime|Thriller
## 13108                                                              Adventure|Fantasy
## 13109                                                                  Drama|Romance
## 13110                                                               Action|Drama|War
## 13111                                                        Action|Mystery|Thriller
## 13112                                           Action|Crime|Mystery|Sci-Fi|Thriller
## 13113                                                           Action|Comedy|Sci-Fi
## 13114                                                                         Comedy
## 13115                                                         Crime|Mystery|Thriller
## 13116                                                              Adventure|Fantasy
## 13117                                                                    Crime|Drama
## 13118                                          Action|Adventure|Crime|Drama|Thriller
## 13119                                                                         Comedy
## 13120                                          Action|Adventure|Sci-Fi|Thriller|IMAX
## 13121                                                   Comedy|Drama|Fantasy|Romance
## 13122                                            Adventure|Animation|Children|Comedy
## 13123                                                                   Action|Crime
## 13124                                                Action|Adventure|Comedy|Fantasy
## 13125                                                          Action|Crime|Thriller
## 13126                                                 Action|Adventure|Drama|Fantasy
## 13127                                                          Drama|Sci-Fi|Thriller
## 13128                                                                 Comedy|Romance
## 13129                                                          Action|Drama|Thriller
## 13130                                                     Action|Adventure|Drama|War
## 13131                                         Action|Adventure|Drama|Sci-Fi|Thriller
## 13132                                                         Adventure|Fantasy|IMAX
## 13133                                                            Action|Comedy|Crime
## 13134                                               Action|Adventure|Sci-Fi|Thriller
## 13135                                                          Action|Crime|Thriller
## 13136                                     Action|Adventure|Animation|Children|Comedy
## 13137                                        Action|Adventure|Drama|Mystery|Thriller
## 13138                                                                         Comedy
## 13139                                                 Action|Fantasy|Horror|Thriller
## 13140                                        Action|Crime|Film-Noir|Mystery|Thriller
## 13141                                                                   Comedy|Drama
## 13142                                                              Action|Crime|IMAX
## 13143                                                                 Comedy|Romance
## 13144                                                                 Comedy|Romance
## 13145                                                Action|Crime|Drama|Thriller|War
## 13146                                                Adventure|Fantasy|Thriller|IMAX
## 13147                                                           Crime|Drama|Thriller
## 13148                                                         Drama|Mystery|Thriller
## 13149                                                         Action|Sci-Fi|Thriller
## 13150                                                       Action|Adventure|Fantasy
## 13151                                                Action|Adventure|Comedy|Fantasy
## 13152                                                   Adventure|Drama|Fantasy|IMAX
## 13153                                                               Animation|Comedy
## 13154                                                          Action|Crime|Thriller
## 13155                                             Action|Horror|Sci-Fi|Thriller|IMAX
## 13156                                                        Action|Crime|Drama|IMAX
## 13157                                                   Crime|Drama|Romance|Thriller
## 13158                                                        Action|Adventure|Sci-Fi
## 13159                                                             Drama|Thriller|War
## 13160                                                               Action|Drama|War
## 13161                                                               Action|Drama|War
## 13162                                                   Action|Adventure|Sci-Fi|IMAX
## 13163                                                                   Comedy|Crime
## 13164                                         Adventure|Fantasy|Mystery|Romance|IMAX
## 13165                                                   Action|Adventure|Sci-Fi|IMAX
## 13166                                                         Drama|Mystery|Thriller
## 13167                                                      Action|Drama|Thriller|War
## 13168                                      Adventure|Animation|Children|Fantasy|IMAX
## 13169                                                                  Action|Comedy
## 13170                                                             Action|Crime|Drama
## 13171                                                   Action|Adventure|Sci-Fi|IMAX
## 13172                                         Action|Adventure|Drama|Sci-Fi|Thriller
## 13173                                                    Action|Adventure|Crime|IMAX
## 13174                                                                 Drama|Thriller
## 13175                                                                   Comedy|Drama
## 13176                                                      Action|Comedy|Sci-Fi|IMAX
## 13177                                                 Action|Adventure|Thriller|IMAX
## 13178                                                           Action|Drama|Western
## 13179                                                    Action|Sci-Fi|Thriller|IMAX
## 13180                                                   Action|Adventure|Sci-Fi|IMAX
## 13181                                                         Adventure|Fantasy|IMAX
## 13182                                                   Action|Adventure|Sci-Fi|IMAX
## 13183                                                             Drama|Thriller|War
## 13184                                                                  Drama|Romance
## 13185                                                     Adventure|Children|Fantasy
## 13186                                                                 Comedy|Romance
## 13187                                                                         Comedy
## 13188                                                      Action|Adventure|Thriller
## 13189                                                                         Comedy
## 13190                                                          Comedy|Crime|Thriller
## 13191                                                          Action|Crime|Thriller
## 13192                                                       Action|Adventure|Fantasy
## 13193                                                           Comedy|Drama|Romance
## 13194                                                               Action|Drama|War
## 13195                                                  Action|Adventure|Comedy|Crime
## 13196                                                             Adventure|Children
## 13197                                                Action|Adventure|Mystery|Sci-Fi
## 13198                                                             Drama|Thriller|War
## 13199                                                          Action|Crime|Thriller
## 13200                                                Action|Adventure|Crime|Thriller
## 13201                                                         Action|Sci-Fi|Thriller
## 13202                                                            Action|Crime|Sci-Fi
## 13203                                                                         Horror
## 13204                                                                Action|Children
## 13205                                                          Action|Crime|Thriller
## 13206                                                                 Comedy|Romance
## 13207                                                         Fantasy|Horror|Mystery
## 13208                                                                  Horror|Sci-Fi
## 13209                                                                         Comedy
## 13210                                                        Action|Adventure|Sci-Fi
## 13211                                                                         Comedy
## 13212                                                                Action|Thriller
## 13213                                                                 Drama|Thriller
## 13214                                                               Adventure|Comedy
## 13215                                                                         Comedy
## 13216                                                                    Crime|Drama
## 13217                                                                   Drama|Horror
## 13218                                                                         Comedy
## 13219                                                                  Comedy|Sci-Fi
## 13220                                                                          Drama
## 13221                                                                         Comedy
## 13222                                                                          Drama
## 13223                                                                          Drama
## 13224                                                          Action|Crime|Thriller
## 13225                                                                 Drama|Thriller
## 13226                                                   Action|Drama|Sci-Fi|Thriller
## 13227                                                    Action|Crime|Drama|Thriller
## 13228                                                    Comedy|Crime|Drama|Thriller
## 13229                                                          Action|Drama|Thriller
## 13230                                                        Action|Adventure|Sci-Fi
## 13231                                                           Comedy|Drama|Fantasy
## 13232                                                                    Crime|Drama
## 13233                                                           Action|Comedy|Sci-Fi
## 13234                                                         Adventure|Drama|Sci-Fi
## 13235                                                                         Comedy
## 13236                                                                 Comedy|Romance
## 13237                                                                         Comedy
## 13238                                                    Action|Crime|Drama|Thriller
## 13239                                                         Drama|Mystery|Thriller
## 13240                                                        Children|Comedy|Fantasy
## 13241                                                       Comedy|Drama|Romance|War
## 13242                                                                 Comedy|Romance
## 13243                                Adventure|Animation|Children|Drama|Musical|IMAX
## 13244                                                  Drama|Horror|Mystery|Thriller
## 13245                                                    Action|Comedy|Crime|Fantasy
## 13246                                                       Adventure|Comedy|Western
## 13247                                                                  Action|Comedy
## 13248                                                                Children|Comedy
## 13249                                                        Action|Romance|Thriller
## 13250                                       Action|Adventure|Comedy|Romance|Thriller
## 13251                                                                 Action|Fantasy
## 13252                                                        Children|Comedy|Fantasy
## 13253                                                                Comedy|Thriller
## 13254                                                   Action|Comedy|Crime|Thriller
## 13255                                                       Adventure|Comedy|Western
## 13256                                                      Action|Adventure|Thriller
## 13257                                                                         Comedy
## 13258                                                        Action|Adventure|Sci-Fi
## 13259                                                                 Drama|Thriller
## 13260                                                                       Thriller
## 13261                                                              Action|Comedy|War
## 13262                                                                         Comedy
## 13263                                               Action|Adventure|Sci-Fi|Thriller
## 13264                                                Action|Adventure|Comedy|Fantasy
## 13265                                                                   Comedy|Drama
## 13266                                                                          Drama
## 13267                                             Action|Crime|Drama|Sci-Fi|Thriller
## 13268                                                                         Comedy
## 13269                                                                      Drama|War
## 13270                                                        Comedy|Romance|Thriller
## 13271                                Action|Adventure|Children|Comedy|Fantasy|Sci-Fi
## 13272                                                        Action|Mystery|Thriller
## 13273                                             Animation|Children|Fantasy|Musical
## 13274                                                           Action|Drama|Western
## 13275                                                                 Crime|Thriller
## 13276                                                                Children|Comedy
## 13277                                          Comedy|Drama|Fantasy|Romance|Thriller
## 13278                                    Adventure|Animation|Children|Comedy|Musical
## 13279                                                                  Action|Sci-Fi
## 13280                                                        Adventure|Drama|Western
## 13281                                                          Action|Crime|Thriller
## 13282                                                          Crime|Horror|Thriller
## 13283                                       Animation|Children|Drama|Fantasy|Musical
## 13284                                Animation|Children|Fantasy|Musical|Romance|IMAX
## 13285                                                                 Comedy|Romance
## 13286                                       Action|Adventure|Animation|Horror|Sci-Fi
## 13287                                                             Animation|Children
## 13288                                              Action|Adventure|Mystery|Thriller
## 13289                                                    Action|Adventure|Comedy|War
## 13290                                    Adventure|Animation|Children|Comedy|Musical
## 13291                                                      Action|Adventure|Thriller
## 13292                                    Adventure|Animation|Children|Comedy|Fantasy
## 13293                                                           Comedy|Drama|Romance
## 13294                                                                          Drama
## 13295                                                                  Drama|Romance
## 13296                                                                         Comedy
## 13297                                                                         Comedy
## 13298                                                          Comedy|Crime|Thriller
## 13299                                                                  Drama|Romance
## 13300                                                                          Drama
## 13301                                                                  Drama|Romance
## 13302                                         Adventure|Drama|Fantasy|Mystery|Sci-Fi
## 13303                                                                    Crime|Drama
## 13304                                                        Mystery|Sci-Fi|Thriller
## 13305                                                                 Children|Drama
## 13306                                                                  Drama|Romance
## 13307                                                                    Crime|Drama
## 13308                                                                 Comedy|Romance
## 13309                                                                      Drama|War
## 13310                                                                  Drama|Romance
## 13311                                                               Mystery|Thriller
## 13312                                                           Comedy|Drama|Romance
## 13313                                                                          Drama
## 13314                                                                 Comedy|Romance
## 13315                                                                   Comedy|Drama
## 13316                                                                      Drama|War
## 13317                                                            Crime|Drama|Romance
## 13318                                                                   Comedy|Drama
## 13319                                                                  Drama|Romance
## 13320                                                                    Crime|Drama
## 13321                                                                  Drama|Romance
## 13322                                                               Action|Drama|War
## 13323                                                                    Documentary
## 13324                                                                          Drama
## 13325                                                                          Drama
## 13326                                                     Adventure|Children|Fantasy
## 13327                                                                         Comedy
## 13328                                                                         Comedy
## 13329                                                                          Drama
## 13330                                                           Adventure|Drama|IMAX
## 13331                                                       Action|Drama|Romance|War
## 13332                                                                          Drama
## 13333                                                            Crime|Drama|Mystery
## 13334                                                Action|Adventure|Mystery|Sci-Fi
## 13335                                                                    Documentary
## 13336                                                                   Comedy|Drama
## 13337                                                         Action|Sci-Fi|Thriller
## 13338                                                                   Comedy|Drama
## 13339                                                                 Comedy|Romance
## 13340                                                                 Comedy|Romance
## 13341                                                                   Comedy|Drama
## 13342                                     Action|Crime|Drama|Mystery|Sci-Fi|Thriller
## 13343                                                                         Comedy
## 13344                                                        Action|Adventure|Sci-Fi
## 13345                                                                          Drama
## 13346                                                                   Comedy|Drama
## 13347                                                                         Comedy
## 13348                                                           Comedy|Drama|Romance
## 13349                                                                 Drama|Thriller
## 13350                                                               Adventure|Comedy
## 13351                                                           Comedy|Drama|Romance
## 13352                                                                   Comedy|Drama
## 13353                                                                  Drama|Musical
## 13354                                                                    Documentary
## 13355                                                                    Crime|Drama
## 13356                                                                  Drama|Romance
## 13357                                                                 Comedy|Romance
## 13358                                                                   Drama|Horror
## 13359                                                                          Drama
## 13360                                                        Action|Adventure|Sci-Fi
## 13361                                                                          Drama
## 13362                                                                          Drama
## 13363                                                          Drama|Fantasy|Romance
## 13364                                                      Drama|Romance|War|Western
## 13365                                                                          Drama
## 13366                                                                   Comedy|Drama
## 13367                                                            Drama|Horror|Sci-Fi
## 13368                                                                          Drama
## 13369                                                                 Comedy|Romance
## 13370                                                          Action|Crime|Thriller
## 13371                                                                    Crime|Drama
## 13372                                                   Action|Drama|Sci-Fi|Thriller
## 13373                                                    Comedy|Crime|Drama|Thriller
## 13374                                                                          Drama
## 13375                                                                          Drama
## 13376                                                                  Drama|Romance
## 13377                                                                         Comedy
## 13378                                                                          Drama
## 13379                                                                          Drama
## 13380                                                                   Comedy|Drama
## 13381                                                 Children|Drama|Fantasy|Mystery
## 13382                                                        Action|Adventure|Sci-Fi
## 13383                                                                    Crime|Drama
## 13384                                                          Comedy|Drama|Thriller
## 13385                                                                          Drama
## 13386                                                                   Comedy|Drama
## 13387                                                         Adventure|Drama|Sci-Fi
## 13388                                                                          Drama
## 13389                                                                  Horror|Sci-Fi
## 13390                                                                          Drama
## 13391                                                                         Comedy
## 13392                                                                   Comedy|Drama
## 13393                                                                         Comedy
## 13394                                                                 Comedy|Romance
## 13395                                                     Adventure|Children|Romance
## 13396                                Adventure|Animation|Children|Drama|Musical|IMAX
## 13397                                                                          Drama
## 13398                                                                          Drama
## 13399                                                           Comedy|Drama|Romance
## 13400                                                                 Action|Fantasy
## 13401                                                                         Comedy
## 13402                                                 Drama|Mystery|Romance|Thriller
## 13403                                                                  Comedy|Sci-Fi
## 13404                                                                 Comedy|Romance
## 13405                                                                  Drama|Romance
## 13406                                                                 Drama|Thriller
## 13407                                                                  Drama|Romance
## 13408                                                                 Comedy|Romance
## 13409                                                                  Drama|Romance
## 13410                                                                         Comedy
## 13411                                                                          Drama
## 13412                                                                  Drama|Musical
## 13413                                               Action|Adventure|Sci-Fi|Thriller
## 13414                                                                 Drama|Thriller
## 13415                                                           Crime|Drama|Thriller
## 13416                                                                 Comedy|Romance
## 13417                                                                   Comedy|Drama
## 13418                                                                          Drama
## 13419                                                                          Drama
## 13420                                                                  Drama|Romance
## 13421                                                                  Drama|Romance
## 13422                                                                      Drama|War
## 13423                                                                 Children|Drama
## 13424                                                                  Drama|Romance
## 13425                                                                          Drama
## 13426                                                                          Drama
## 13427                                                           Comedy|Drama|Romance
## 13428                                                         Action|Sci-Fi|Thriller
## 13429                                                                 Comedy|Romance
## 13430                                             Animation|Children|Fantasy|Musical
## 13431                                                                 Crime|Thriller
## 13432                                                                   Comedy|Drama
## 13433                                                                         Comedy
## 13434                                                                Children|Comedy
## 13435                                          Comedy|Drama|Fantasy|Romance|Thriller
## 13436                                    Adventure|Animation|Children|Comedy|Musical
## 13437                                                                  Action|Sci-Fi
## 13438                                                        Adventure|Drama|Western
## 13439                                                          Action|Crime|Thriller
## 13440                                                          Crime|Horror|Thriller
## 13441                                       Animation|Children|Drama|Fantasy|Musical
## 13442                                Animation|Children|Fantasy|Musical|Romance|IMAX
## 13443                                             Animation|Children|Fantasy|Musical
## 13444                                                                 Comedy|Romance
## 13445                                                    Comedy|Crime|Drama|Thriller
## 13446                                                                  Drama|Romance
## 13447                                                             Animation|Children
## 13448                                                                         Comedy
## 13449                                                                 Drama|Thriller
## 13450                                                                          Drama
## 13451                                   Adventure|Animation|Children|Fantasy|Musical
## 13452                                                               Comedy|Drama|War
## 13453                                                                  Comedy|Sci-Fi
## 13454                                                                 Comedy|Romance
## 13455                                                     Adventure|Animation|Comedy
## 13456                                                  Drama|Fantasy|Horror|Thriller
## 13457                                                                         Comedy
## 13458                                                           Comedy|Drama|Romance
## 13459                                                                    Documentary
## 13460                                                                          Drama
## 13461                                                             Comedy|Crime|Drama
## 13462                                               Action|Adventure|Sci-Fi|Thriller
## 13463                                       Animation|Children|Drama|Musical|Romance
## 13464                                                                Comedy|Thriller
## 13465                                                             Adventure|Children
## 13466                                                                         Comedy
## 13467                                                                          Drama
## 13468                                                           Comedy|Drama|Romance
## 13469                                                                Musical|Romance
## 13470                                                          Action|Crime|Thriller
## 13471                                                                          Drama
## 13472                                                                  Drama|Romance
## 13473                                                                  Drama|Romance
## 13474                                                Children|Comedy|Fantasy|Musical
## 13475                                                                   Comedy|Crime
## 13476                                                                    Crime|Drama
## 13477                                                Animation|Children|Comedy|Crime
## 13478                                                                      Drama|War
## 13479                                                                          Drama
## 13480                                                                  Drama|Mystery
## 13481                                                                  Drama|Romance
## 13482                                    Adventure|Animation|Children|Comedy|Fantasy
## 13483                                                                 Comedy|Romance
## 13484                                                                  Drama|Romance
## 13485                                                        Mystery|Sci-Fi|Thriller
## 13486                                                           Comedy|Drama|Romance
## 13487                                                                          Drama
## 13488                                                                         Comedy
## 13489                                                      Action|Adventure|Thriller
## 13490                                                                         Comedy
## 13491                                                  Action|Adventure|Comedy|Crime
## 13492                                                                         Comedy
## 13493                                                        Action|Adventure|Sci-Fi
## 13494                                                    Action|Crime|Drama|Thriller
## 13495                                                      Action|Adventure|Thriller
## 13496                                                    Comedy|Crime|Drama|Thriller
## 13497                                              Action|Adventure|Mystery|Thriller
## 13498                                                                         Comedy
## 13499                                                                         Comedy
## 13500                                                      Action|Adventure|Thriller
## 13501                                              Action|Adventure|Romance|Thriller
## 13502                                                                   Comedy|Crime
## 13503                                                             Comedy|Crime|Drama
## 13504                                               Action|Adventure|Sci-Fi|Thriller
## 13505                                                                         Comedy
## 13506                                                          Action|Drama|Thriller
## 13507                                                                  Drama|Romance
## 13508                                                           Comedy|Drama|Romance
## 13509                                                Children|Comedy|Fantasy|Musical
## 13510                                                        Action|Adventure|Sci-Fi
## 13511                                                                  Drama|Romance
## 13512                                               Adventure|Animation|Comedy|Crime
## 13513                                                     Adventure|Children|Fantasy
## 13514                                                                 Comedy|Romance
## 13515                                                           Comedy|Drama|Romance
## 13516                                                          Comedy|Crime|Thriller
## 13517                                                                          Drama
## 13518                                                                    Crime|Drama
## 13519                                                                 Comedy|Romance
## 13520                                                               Mystery|Thriller
## 13521                                                                          Drama
## 13522                                                      Action|Adventure|Thriller
## 13523                                                                         Comedy
## 13524                                                                         Comedy
## 13525                                                           Adventure|Drama|IMAX
## 13526                                                  Action|Adventure|Comedy|Crime
## 13527                                                Action|Adventure|Mystery|Sci-Fi
## 13528                                                         Action|Romance|Western
## 13529                                                          Action|Crime|Thriller
## 13530                                                          Action|Crime|Thriller
## 13531                                                                         Comedy
## 13532                                                               Adventure|Comedy
## 13533                                                                   Drama|Horror
## 13534                                                                  Comedy|Sci-Fi
## 13535                                                        Action|Adventure|Sci-Fi
## 13536                                                                          Drama
## 13537                                                          Action|Crime|Thriller
## 13538                                                    Comedy|Crime|Drama|Thriller
## 13539                                                        Action|Adventure|Sci-Fi
## 13540                                                                    Crime|Drama
## 13541                                                                          Drama
## 13542                                                                 Comedy|Romance
## 13543                                                                         Comedy
## 13544                                                                   Comedy|Drama
## 13545                                                         Drama|Mystery|Thriller
## 13546                                                  Action|Crime|Fantasy|Thriller
## 13547                                                       Comedy|Drama|Romance|War
## 13548                                                                 Comedy|Romance
## 13549                                Adventure|Animation|Children|Drama|Musical|IMAX
## 13550                                                        Action|Romance|Thriller
## 13551                                       Action|Adventure|Comedy|Romance|Thriller
## 13552                                                                  Comedy|Sci-Fi
## 13553                                                                 Comedy|Romance
## 13554                                                                 Drama|Thriller
## 13555                                                                       Thriller
## 13556                                               Action|Adventure|Sci-Fi|Thriller
## 13557                                                                 Comedy|Romance
## 13558                                                                   Comedy|Drama
## 13559                                                                          Drama
## 13560                                                                  Drama|Romance
## 13561                                                                         Comedy
## 13562                                                                      Drama|War
## 13563                                                           Comedy|Drama|Romance
## 13564                                                         Action|Sci-Fi|Thriller
## 13565                                             Animation|Children|Fantasy|Musical
## 13566                                                Action|Adventure|Comedy|Romance
## 13567                                                           Action|Drama|Western
## 13568                                                                Children|Comedy
## 13569                                    Adventure|Animation|Children|Comedy|Musical
## 13570                                                          Action|Crime|Thriller
## 13571                                                          Crime|Horror|Thriller
## 13572                                       Animation|Children|Drama|Fantasy|Musical
## 13573                                Animation|Children|Fantasy|Musical|Romance|IMAX
## 13574                                             Animation|Children|Fantasy|Musical
## 13575                                                    Comedy|Crime|Drama|Thriller
## 13576                                              Action|Adventure|Mystery|Thriller
## 13577                                                                 Comedy|Romance
## 13578                                                      Action|Adventure|Thriller
## 13579                                              Action|Adventure|Romance|Thriller
## 13580                                                      Animation|Children|Comedy
## 13581                                                             Comedy|Crime|Drama
## 13582                                               Action|Adventure|Sci-Fi|Thriller
## 13583                                                                  Drama|Romance
## 13584                                                              Film-Noir|Mystery
## 13585                                                   Comedy|Drama|Musical|Romance
## 13586                                             Adventure|Children|Fantasy|Musical
## 13587                                                         Adventure|Drama|Sci-Fi
## 13588                                                Children|Comedy|Fantasy|Musical
## 13589                                                Children|Comedy|Fantasy|Musical
## 13590                                                                   Comedy|Crime
## 13591                                                                         Comedy
## 13592                                                          Children|Drama|Sci-Fi
## 13593                                                                 Action|Romance
## 13594                                                       Adventure|Comedy|Fantasy
## 13595                                                              Drama|Romance|War
## 13596                                                                          Drama
## 13597                                                        Action|Adventure|Sci-Fi
## 13598                                        Action|Adventure|Comedy|Fantasy|Romance
## 13599                                                                          Drama
## 13600                                                                          Drama
## 13601                                                                          Drama
## 13602                                                                         Horror
## 13603                                                                Adventure|Drama
## 13604                                                         Comedy|Fantasy|Romance
## 13605                                                        Adventure|Comedy|Sci-Fi
## 13606                                                                 Comedy|Fantasy
## 13607                                             Animation|Children|Fantasy|Musical
## 13608                                                               Action|Adventure
## 13609                                                                          Drama
## 13610                                                         Children|Drama|Fantasy
## 13611                                                                 Comedy|Romance
## 13612                                                         Comedy|Musical|Romance
## 13613                                                           Action|Comedy|Sci-Fi
## 13614                                                                  Drama|Romance
## 13615                                                                         Comedy
## 13616                                                 Comedy|Horror|Mystery|Thriller
## 13617                                                                         Comedy
## 13618                                                           Comedy|Crime|Romance
## 13619                                                        Action|Adventure|Comedy
## 13620                                                 Action|Adventure|Comedy|Sci-Fi
## 13621                                                    Action|Crime|Drama|Thriller
## 13622                                                           Action|Comedy|Sci-Fi
## 13623                                                           Comedy|Drama|Romance
## 13624                                                                   Comedy|Drama
## 13625                                                         Drama|Romance|Thriller
## 13626                                                                  Drama|Romance
## 13627                                                                   Comedy|Crime
## 13628                                                                 Comedy|Romance
## 13629                                                           Comedy|Drama|Romance
## 13630                                           Action|Crime|Mystery|Sci-Fi|Thriller
## 13631                                                 Action|Romance|Sci-Fi|Thriller
## 13632                                                                          Drama
## 13633                                                                   Comedy|Drama
## 13634                                                        Adventure|Comedy|Sci-Fi
## 13635                                       Adventure|Children|Comedy|Fantasy|Sci-Fi
## 13636                                                         Comedy|Fantasy|Romance
## 13637                                                       Action|Adventure|Fantasy
## 13638                                                                 Comedy|Fantasy
## 13639                                                           Crime|Drama|Thriller
## 13640                                                          Drama|Fantasy|Romance
## 13641                                                                         Comedy
## 13642                                                           Comedy|Drama|Fantasy
## 13643                                                                    Crime|Drama
## 13644                                                                Action|Thriller
## 13645                                            Adventure|Animation|Children|Comedy
## 13646                                                           Comedy|Drama|Romance
## 13647                                                                   Comedy|Crime
## 13648                                                         Action|Sci-Fi|Thriller
## 13649                                                                         Comedy
## 13650                                Action|Adventure|Comedy|Fantasy|Horror|Thriller
## 13651                                                        Action|Adventure|Sci-Fi
## 13652                                                        Action|Adventure|Sci-Fi
## 13653                                                                 Comedy|Romance
## 13654                                                                   Action|Crime
## 13655                                                          Drama|Horror|Thriller
## 13656                                                         Drama|Mystery|Thriller
## 13657                                                           Action|Comedy|Sci-Fi
## 13658                                                           Drama|Horror|Mystery
## 13659                                                                 Action|Mystery
## 13660                                                                         Comedy
## 13661                                                   Comedy|Drama|Fantasy|Romance
## 13662                                                                  Drama|Romance
## 13663                                                    Action|Crime|Drama|Thriller
## 13664                                                                 Comedy|Romance
## 13665                                                           Comedy|Drama|Fantasy
## 13666                                                       Adventure|Comedy|Fantasy
## 13667                                                 Fantasy|Horror|Mystery|Romance
## 13668                                                                    Crime|Drama
## 13669                                                                          Drama
## 13670                                                                   Comedy|Drama
## 13671                                                                          Drama
## 13672                                                          Adventure|Crime|Drama
## 13673                                                          Crime|Drama|Film-Noir
## 13674                                                               Comedy|Drama|War
## 13675                                                           Comedy|Drama|Romance
## 13676                                                         Action|Adventure|Drama
## 13677                                                      Animation|Children|Comedy
## 13678                                                               Action|Drama|War
## 13679                                                                 Drama|Thriller
## 13680                                                        Action|Adventure|Sci-Fi
## 13681                                                                          Drama
## 13682                                                           Action|Drama|Romance
## 13683                                                                          Drama
## 13684                                                                          Drama
## 13685                                                         Adventure|Comedy|Crime
## 13686                                                           Crime|Drama|Thriller
## 13687                                                               Mystery|Thriller
## 13688                                                           Comedy|Drama|Romance
## 13689                                                          Drama|Musical|Romance
## 13690                                                  Drama|Horror|Mystery|Thriller
## 13691                                    Adventure|Animation|Children|Comedy|Fantasy
## 13692                                                     Adventure|Children|Fantasy
## 13693                                                                 Crime|Thriller
## 13694                                                                 Comedy|Romance
## 13695                                                                   Comedy|Drama
## 13696                                                              Adventure|Fantasy
## 13697                                                                  Drama|Romance
## 13698                                            Adventure|Animation|Children|Comedy
## 13699                                                                 Comedy|Romance
## 13700                                               Action|Adventure|Sci-Fi|Thriller
## 13701                                                           Comedy|Drama|Romance
## 13702                                                   Action|Adventure|Sci-Fi|IMAX
## 13703                                                        Action|Mystery|Thriller
## 13704                                           Action|Crime|Mystery|Sci-Fi|Thriller
## 13705                                                           Action|Comedy|Sci-Fi
## 13706                                                    Adventure|Animation|Fantasy
## 13707                                                        Horror|Mystery|Thriller
## 13708                                                              Adventure|Fantasy
## 13709                                                     Comedy|Crime|Drama|Musical
## 13710                                                                      Drama|War
## 13711                                          Action|Adventure|Crime|Drama|Thriller
## 13712                                                   Comedy|Drama|Fantasy|Romance
## 13713                                            Adventure|Animation|Children|Comedy
## 13714                                                Action|Adventure|Comedy|Fantasy
## 13715                                                           Comedy|Drama|Romance
## 13716                                                                         Comedy
## 13717                                                                 Comedy|Musical
## 13718                                                                 Comedy|Romance
## 13719                                                          Action|Crime|Thriller
## 13720                                                                   Comedy|Drama
## 13721                                                           Comedy|Drama|Romance
## 13722                                                          Drama|Fantasy|Romance
## 13723                                                 Action|Adventure|Drama|Fantasy
## 13724                                                                          Drama
## 13725                                                           Drama|Romance|Sci-Fi
## 13726                                                          Action|Drama|Thriller
## 13727                                                                        Mystery
## 13728                                                         Adventure|Fantasy|IMAX
## 13729                                                   Action|Adventure|Sci-Fi|IMAX
## 13730                                               Action|Adventure|Sci-Fi|Thriller
## 13731                                                          Action|Crime|Thriller
## 13732                                                           Comedy|Drama|Romance
## 13733                                                                  Comedy|Horror
## 13734                                                                          Drama
## 13735                                         Adventure|Children|Comedy|Fantasy|IMAX
## 13736                                        Action|Crime|Film-Noir|Mystery|Thriller
## 13737                                                                 Comedy|Romance
## 13738                                                              Action|Crime|IMAX
## 13739                                                        Action|Adventure|Sci-Fi
## 13740                                                                 Comedy|Romance
## 13741                                                                 Drama|Thriller
## 13742                                                Adventure|Fantasy|Thriller|IMAX
## 13743                                                          Drama|Musical|Romance
## 13744                                                     Adventure|Children|Fantasy
## 13745                                                         Drama|Mystery|Thriller
## 13746                                                   Comedy|Drama|Fantasy|Romance
## 13747                                                       Animation|Children|Drama
## 13748                                                                 Comedy|Romance
## 13749                                                           Comedy|Drama|Romance
## 13750                                                           Comedy|Drama|Romance
## 13751                                                   Adventure|Drama|Fantasy|IMAX
## 13752                                                         Adventure|Comedy|Drama
## 13753                                                           Comedy|Drama|Romance
## 13754                                                    Comedy|Crime|Drama|Thriller
## 13755                                                 Action|Adventure|Comedy|Sci-Fi
## 13756                                      Action|Drama|Mystery|Sci-Fi|Thriller|IMAX
## 13757                                                                  Drama|Romance
## 13758                                                                  Drama|Mystery
## 13759                                                                          Drama
## 13760                                           Adventure|Animation|Children|Fantasy
## 13761                                                     Animation|Fantasy|Thriller
## 13762                                                                 Drama|Thriller
## 13763                                                         Crime|Romance|Thriller
## 13764                                                  Drama|Fantasy|Sci-Fi|Thriller
## 13765                                             Adventure|Animation|Children|Drama
## 13766                                         Adventure|Fantasy|Mystery|Romance|IMAX
## 13767                                                           Comedy|Drama|Romance
## 13768                                    Adventure|Animation|Children|Comedy|Fantasy
## 13769                                              Adventure|Children|Comedy|Musical
## 13770                                                               Action|Drama|War
## 13771                                                          Action|Crime|Thriller
## 13772                                                               Adventure|Comedy
## 13773                                                        Action|Adventure|Sci-Fi
## 13774                                                    Comedy|Crime|Drama|Thriller
## 13775                                                        Action|Thriller|Western
## 13776                                                        Action|Adventure|Sci-Fi
## 13777                                                                    Crime|Drama
## 13778                                                           Action|Comedy|Sci-Fi
## 13779                                                                         Comedy
## 13780                                Adventure|Animation|Children|Drama|Musical|IMAX
## 13781                                                                          Drama
## 13782                                               Action|Adventure|Sci-Fi|Thriller
## 13783                                                                   Comedy|Drama
## 13784                                    Adventure|Animation|Children|Comedy|Musical
## 13785                                                                  Action|Sci-Fi
## 13786                                                        Adventure|Drama|Western
## 13787                                              Action|Adventure|Mystery|Thriller
## 13788                                               Action|Adventure|Sci-Fi|Thriller
## 13789                                                         Adventure|Drama|Sci-Fi
## 13790                                                Children|Comedy|Fantasy|Musical
## 13791                                                                  Horror|Sci-Fi
## 13792                                                         Action|Sci-Fi|Thriller
## 13793                                                         Comedy|Fantasy|Romance
## 13794                                                          Action|Drama|Thriller
## 13795                                               Crime|Film-Noir|Mystery|Thriller
## 13796                                                          Action|Comedy|Musical
## 13797                                                               Action|Drama|War
## 13798                                                                   Comedy|Crime
## 13799                                                         Action|Sci-Fi|Thriller
## 13800                                                        Action|Adventure|Sci-Fi
## 13801                                                        Action|Adventure|Comedy
## 13802                                                                 Comedy|Romance
## 13803                                                           Drama|Horror|Mystery
## 13804                                                                 Action|Western
## 13805                                                    Action|Crime|Drama|Thriller
## 13806                      Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery
## 13807                                                      Action|Adventure|Thriller
## 13808                                    Adventure|Animation|Children|Comedy|Fantasy
## 13809                                                                         Comedy
## 13810                                                         Action|Adventure|Drama
## 13811                                               Action|Adventure|Sci-Fi|Thriller
## 13812                                                        Action|Adventure|Sci-Fi
## 13813                                    Adventure|Animation|Children|Comedy|Fantasy
## 13814                                                     Adventure|Children|Fantasy
## 13815                                                                 Crime|Thriller
## 13816                                                  Action|Horror|Sci-Fi|Thriller
## 13817                                               Action|Adventure|Sci-Fi|Thriller
## 13818                                                        Action|Mystery|Thriller
## 13819                                                              Adventure|Fantasy
## 13820                                          Action|Adventure|Sci-Fi|Thriller|IMAX
## 13821                                                Action|Adventure|Comedy|Fantasy
## 13822                                                          Action|Crime|Thriller
## 13823                                                 Action|Adventure|Drama|Fantasy
## 13824                                                          Action|Drama|Thriller
## 13825                                                Action|Adventure|Fantasy|Horror
## 13826                                                                         Comedy
## 13827                                                              Action|Crime|IMAX
## 13828                                                       Action|Adventure|Fantasy
## 13829                                                           Crime|Drama|Thriller
## 13830                                                      Action|Adventure|Thriller
## 13831                                                        Action|Fantasy|War|IMAX
## 13832                                                        Action|Crime|Drama|IMAX
## 13833                                                        Action|Adventure|Sci-Fi
## 13834                                    Adventure|Animation|Children|Comedy|Fantasy
## 13835                                                          Action|Crime|Thriller
## 13836                                                                  Drama|Romance
## 13837                                         Adventure|Drama|Fantasy|Mystery|Sci-Fi
## 13838                                                        Mystery|Sci-Fi|Thriller
## 13839                                                                    Crime|Drama
## 13840                                                                 Drama|Thriller
## 13841                                                            Crime|Drama|Romance
## 13842                                                                         Comedy
## 13843                                                        Action|Adventure|Sci-Fi
## 13844                                                    Comedy|Crime|Drama|Thriller
## 13845                                              Action|Adventure|Mystery|Thriller
## 13846                                   Adventure|Animation|Children|Fantasy|Musical
## 13847                                                      Action|Adventure|Thriller
## 13848                                              Action|Adventure|Romance|Thriller
## 13849                                                                          Drama
## 13850                                                             Comedy|Crime|Drama
## 13851                                               Action|Adventure|Sci-Fi|Thriller
## 13852                                       Animation|Children|Drama|Musical|Romance
## 13853                                                          Drama|Mystery|Western
## 13854                                                                  Drama|Romance
## 13855                                                                         Comedy
## 13856                                                                 Crime|Thriller
## 13857                                                        Children|Comedy|Fantasy
## 13858                                                   Crime|Drama|Romance|Thriller
## 13859                                                             Adventure|Children
## 13860                                                          Action|Drama|Thriller
## 13861                                                                       Thriller
## 13862                                                Children|Comedy|Fantasy|Musical
## 13863                                                              Drama|Romance|War
## 13864                                                           Crime|Drama|Thriller
## 13865                                               Action|Adventure|Sci-Fi|Thriller
## 13866                                                      Adventure|Children|Comedy
## 13867                                                 Comedy|Horror|Mystery|Thriller
## 13868                                                   Crime|Drama|Mystery|Thriller
## 13869                                                                Action|Thriller
## 13870                                                                 Crime|Thriller
## 13871                                                 Action|Romance|Sci-Fi|Thriller
## 13872                                                           Comedy|Crime|Romance
## 13873                                                                         Comedy
## 13874                                                          Action|Drama|Thriller
## 13875                                                 Action|Adventure|Comedy|Sci-Fi
## 13876                                                      Action|Adventure|Thriller
## 13877                                                                  Drama|Romance
## 13878                                                                 Comedy|Romance
## 13879                                                           Action|Comedy|Sci-Fi
## 13880                                                                   Drama|Sci-Fi
## 13881                                                         Horror|Sci-Fi|Thriller
## 13882                                                 Drama|Mystery|Romance|Thriller
## 13883                                                                Action|Thriller
## 13884                                    Adventure|Animation|Children|Comedy|Fantasy
## 13885                                                                  Comedy|Horror
## 13886                                                                         Comedy
## 13887                                                          Action|Crime|Thriller
## 13888                                                                 Children|Drama
## 13889                                                                         Comedy
## 13890                                                               Action|Drama|War
## 13891                                                                         Comedy
## 13892                                                               Adventure|Comedy
## 13893                                                        Action|Adventure|Sci-Fi
## 13894                                                                         Comedy
## 13895                                                                    Crime|Drama
## 13896                                                       Comedy|Drama|Romance|War
## 13897                                                                  Action|Comedy
## 13898                                       Action|Adventure|Comedy|Romance|Thriller
## 13899                                                              Action|Comedy|War
## 13900                                                                      Drama|War
## 13901                                    Adventure|Animation|Children|Comedy|Musical
## 13902                                                                  Action|Sci-Fi
## 13903                                                                         Comedy
## 13904                                                          Action|Crime|Thriller
## 13905                                                          Action|Drama|Thriller
## 13906                                                          Children|Drama|Sci-Fi
## 13907                                                        Action|Adventure|Sci-Fi
## 13908                                                               Action|Adventure
## 13909                                                 Action|Adventure|Horror|Sci-Fi
## 13910                                                        Action|Adventure|Sci-Fi
## 13911                                                                  Horror|Sci-Fi
## 13912                                                         Action|Sci-Fi|Thriller
## 13913                                                         Comedy|Fantasy|Romance
## 13914                                                        Adventure|Comedy|Sci-Fi
## 13915                                                               Action|Adventure
## 13916                                                    Action|Crime|Drama|Thriller
## 13917                                                            Comedy|Drama|Sci-Fi
## 13918                                                               Action|Drama|War
## 13919                                                                         Comedy
## 13920                                                                   Comedy|Crime
## 13921                                                                   Comedy|Crime
## 13922                                                                   Comedy|Crime
## 13923                                                                   Comedy|Crime
## 13924                                                         Action|Sci-Fi|Thriller
## 13925                                                                 Comedy|Romance
## 13926                                                                         Comedy
## 13927                                                      Action|Adventure|Thriller
## 13928                                    Adventure|Animation|Children|Comedy|Fantasy
## 13929                                                                         Comedy
## 13930                                                                 Comedy|Mystery
## 13931                                                         Action|Adventure|Drama
## 13932                                                      Action|Adventure|Thriller
## 13933                                                                         Comedy
## 13934                                                                         Comedy
## 13935                                                                         Comedy
## 13936                                                           Action|Drama|Romance
## 13937                                                                  Comedy|Sci-Fi
## 13938                                                   Action|Comedy|Crime|Thriller
## 13939                            Adventure|Animation|Children|Comedy|Fantasy|Romance
## 13940                                                                         Comedy
## 13941                                                                         Comedy
## 13942                                    Adventure|Animation|Children|Comedy|Fantasy
## 13943                                                                 Comedy|Romance
## 13944                                                              Adventure|Fantasy
## 13945                                            Adventure|Animation|Children|Comedy
## 13946                                                        Action|Mystery|Thriller
## 13947                                                              Adventure|Fantasy
## 13948                                                                         Comedy
## 13949                                                         Action|Comedy|Thriller
## 13950                                                                   Comedy|Crime
## 13951                                                 Action|Adventure|Drama|Fantasy
## 13952                                                               Adventure|Comedy
## 13953                                                                 Comedy|Romance
## 13954                            Adventure|Animation|Children|Comedy|Musical|Romance
## 13955                                                            Action|Comedy|Crime
## 13956                                                                         Comedy
## 13957                                                Action|Adventure|Comedy|Romance
## 13958                                                              Action|Crime|IMAX
## 13959                                                                 Comedy|Romance
## 13960                                                                 Comedy|Romance
## 13961                                                         Adventure|Comedy|Crime
## 13962                                            Adventure|Animation|Children|Comedy
## 13963                                                    Action|Sci-Fi|Thriller|IMAX
## 13964                                                                  Comedy|Horror
## 13965                                                      Action|Adventure|Thriller
## 13966                                                                         Comedy
## 13967                                                                 Comedy|Romance
## 13968                                                                         Comedy
## 13969                                                               Animation|Comedy
## 13970                                                          Action|Crime|Thriller
## 13971                                                                         Comedy
## 13972                                                                         Comedy
## 13973                                                                         Comedy
## 13974                                                        Action|Crime|Drama|IMAX
## 13975                                                           Action|Comedy|Sci-Fi
## 13976                                                        Action|Adventure|Sci-Fi
## 13977                                                    Action|Crime|Drama|Thriller
## 13978                                                                         Comedy
## 13979                                                       Adventure|Comedy|Mystery
## 13980                                                   Action|Adventure|Sci-Fi|IMAX
## 13981                                             Adventure|Animation|Children|Drama
## 13982                                                                   Comedy|Crime
## 13983                                                           Action|Comedy|Horror
## 13984                                                  Action|Crime|Mystery|Thriller
## 13985                                                                   Action|Crime
## 13986                                      Adventure|Animation|Children|Fantasy|IMAX
## 13987                                                                  Action|Comedy
## 13988                               Adventure|Animation|Children|Comedy|Fantasy|IMAX
## 13989                                Action|Crime|Drama|Mystery|Sci-Fi|Thriller|IMAX
## 13990                                                          Action|Comedy|Romance
## 13991                                                                Action|Thriller
## 13992                                                                         Comedy
## 13993                                                                 Comedy|Romance
## 13994                                                                  Action|Comedy
## 13995                                   Action|Animation|Children|Comedy|Sci-Fi|IMAX
## 13996                                                                         Comedy
## 13997                                           Action|Drama|Mystery|Sci-Fi|Thriller
## 13998                                           Action|Adventure|Sci-Fi|Thriller|War
## 13999                                                   Action|Adventure|Sci-Fi|IMAX
## 14000                                         Action|Adventure|Drama|Sci-Fi|Thriller
## 14001                                 Action|Adventure|Comedy|Crime|Mystery|Thriller
## 14002                                                 Action|Adventure|Thriller|IMAX
## 14003                                                                   Comedy|Drama
## 14004                                                  Action|Crime|Mystery|Thriller
## 14005                                                          Action|Comedy|Romance
## 14006                                                            Action|Comedy|Crime
## 14007                                                                   Drama|Sci-Fi
## 14008                                                            Action|Crime|Sci-Fi
## 14009                                                                         Comedy
## 14010                                                               Animation|Comedy
## 14011                                                         Adventure|Fantasy|IMAX
## 14012                                                 Animation|Children|Comedy|IMAX
## 14013                                                           Action|Comedy|Sci-Fi
## 14014                                                   Action|Comedy|Crime|Thriller
## 14015                                                            Action|Comedy|Crime
## 14016                                                                         Comedy
## 14017                                                          Drama|Fantasy|Romance
## 14018                                                   Action|Adventure|Sci-Fi|IMAX
## 14019                                                         Adventure|Fantasy|IMAX
## 14020                                                             Comedy|Crime|Drama
## 14021                                                                   Comedy|Drama
## 14022                                                   Action|Adventure|Sci-Fi|IMAX
## 14023                                                      Action|Adventure|Thriller
## 14024                                                            Action|Comedy|Crime
## 14025                                                     Action|Adventure|Animation
## 14026                                                                         Sci-Fi
## 14027                                                        Action|Adventure|Sci-Fi
## 14028                                                        Action|Animation|Comedy
## 14029                                                                         Comedy
## 14030                                                            Action|Comedy|Crime
## 14031                                                            Action|Comedy|Crime
## 14032                              Adventure|Animation|Children|Comedy|Drama|Fantasy
## 14033                                                        Action|Adventure|Comedy
## 14034                                    Adventure|Animation|Children|Comedy|Fantasy
## 14035                                                     Adventure|Children|Fantasy
## 14036                                                          Action|Crime|Thriller
## 14037                                                      Action|Adventure|Thriller
## 14038                                                           Comedy|Drama|Romance
## 14039                                                                         Comedy
## 14040                                                          Comedy|Crime|Thriller
## 14041                                                        Mystery|Sci-Fi|Thriller
## 14042                                                                 Children|Drama
## 14043                                                                 Comedy|Romance
## 14044                                                       Action|Adventure|Fantasy
## 14045                                                          Comedy|Drama|Thriller
## 14046                                                               Mystery|Thriller
## 14047                                                         Crime|Mystery|Thriller
## 14048                                                                          Drama
## 14049                                                         Action|Sci-Fi|Thriller
## 14050                                                      Action|Adventure|Thriller
## 14051                                                               Action|Drama|War
## 14052                                                  Action|Adventure|Comedy|Crime
## 14053                                                                         Comedy
## 14054                                             Action|Comedy|Crime|Drama|Thriller
## 14055                                                           Adventure|Drama|IMAX
## 14056                                                       Action|Drama|Romance|War
## 14057                                                  Action|Adventure|Comedy|Crime
## 14058                                                Action|Adventure|Mystery|Sci-Fi
## 14059                                                             Drama|Thriller|War
## 14060                                                         Action|Romance|Western
## 14061                                                          Action|Crime|Thriller
## 14062                                                         Action|Sci-Fi|Thriller
## 14063                                                            Action|Crime|Sci-Fi
## 14064                                                                         Horror
## 14065                                                                Action|Children
## 14066                                                                 Comedy|Romance
## 14067                                                         Fantasy|Horror|Mystery
## 14068                                                                          Drama
## 14069                                                                  Horror|Sci-Fi
## 14070                                                                         Action
## 14071                                                        Action|Adventure|Sci-Fi
## 14072                                                                         Comedy
## 14073                                                           Comedy|Drama|Romance
## 14074                                                               Adventure|Comedy
## 14075                                                                   Comedy|Drama
## 14076                                                                 Comedy|Romance
## 14077                                                                    Crime|Drama
## 14078                                                                 Comedy|Romance
## 14079                                                                   Drama|Horror
## 14080                                                      Drama|Romance|War|Western
## 14081                                                            Drama|Horror|Sci-Fi
## 14082                                                          Action|Crime|Thriller
## 14083                                                   Action|Drama|Sci-Fi|Thriller
## 14084                                                    Action|Crime|Drama|Thriller
## 14085                                                    Comedy|Crime|Drama|Thriller
## 14086                                                                          Drama
## 14087                                                          Action|Drama|Thriller
## 14088                                                        Action|Adventure|Sci-Fi
## 14089                                                           Comedy|Drama|Fantasy
## 14090                                                                    Crime|Drama
## 14091                                                          Comedy|Drama|Thriller
## 14092                                                                Horror|Thriller
## 14093                                                         Adventure|Drama|Sci-Fi
## 14094                                                            Action|Crime|Horror
## 14095                                                                  Horror|Sci-Fi
## 14096                                                                         Comedy
## 14097                                                                 Comedy|Romance
## 14098                                                                         Comedy
## 14099                                                    Action|Crime|Drama|Thriller
## 14100                                                         Drama|Mystery|Thriller
## 14101                                                  Action|Crime|Fantasy|Thriller
## 14102                                                        Children|Comedy|Fantasy
## 14103                                                       Comedy|Drama|Romance|War
## 14104                                                                 Comedy|Romance
## 14105                                                     Adventure|Children|Romance
## 14106                                Adventure|Animation|Children|Drama|Musical|IMAX
## 14107                                                  Drama|Horror|Mystery|Thriller
## 14108                                                    Action|Comedy|Crime|Fantasy
## 14109                                                       Adventure|Comedy|Western
## 14110                                                                  Action|Comedy
## 14111                                                        Action|Romance|Thriller
## 14112                                       Action|Adventure|Comedy|Romance|Thriller
## 14113                                                                         Comedy
## 14114                                                   Action|Comedy|Crime|Thriller
## 14115                                                         Horror|Sci-Fi|Thriller
## 14116                                                       Adventure|Comedy|Western
## 14117                                                      Action|Adventure|Thriller
## 14118                                                                  Comedy|Sci-Fi
## 14119                                                                 Comedy|Romance
## 14120                                                        Action|Adventure|Sci-Fi
## 14121                                                                 Drama|Thriller
## 14122                                                       Adventure|Children|Drama
## 14123                                                                       Thriller
## 14124                                                              Action|Comedy|War
## 14125                                                                         Comedy
## 14126                                                                Action|Thriller
## 14127                                               Action|Adventure|Sci-Fi|Thriller
## 14128                                                Action|Adventure|Comedy|Fantasy
## 14129                                                                 Comedy|Romance
## 14130                                                                   Comedy|Drama
## 14131                                                                          Drama
## 14132                                                                  Drama|Romance
## 14133                                                                         Comedy
## 14134                                                                      Drama|War
## 14135                                                                          Drama
## 14136                                                            Comedy|Crime|Horror
## 14137                                                           Comedy|Drama|Romance
## 14138                                                        Comedy|Romance|Thriller
## 14139                                             Animation|Children|Fantasy|Musical
## 14140                                                Action|Adventure|Comedy|Romance
## 14141                                                           Action|Drama|Western
## 14142                                                                 Crime|Thriller
## 14143                                          Comedy|Drama|Fantasy|Romance|Thriller
## 14144                                    Adventure|Animation|Children|Comedy|Musical
## 14145                                                                  Action|Sci-Fi
## 14146                                                        Adventure|Drama|Western
## 14147                                                          Action|Crime|Thriller
## 14148                                Animation|Children|Fantasy|Musical|Romance|IMAX
## 14149                                                                 Comedy|Romance
## 14150                                                                 Fantasy|Horror
## 14151                                                    Comedy|Crime|Drama|Thriller
## 14152                                       Action|Adventure|Animation|Horror|Sci-Fi
## 14153                                              Action|Adventure|Mystery|Thriller
## 14154                                              Action|Adventure|Romance|Thriller
## 14155                                                             Comedy|Crime|Drama
## 14156                                               Action|Adventure|Sci-Fi|Thriller
## 14157                                    Adventure|Animation|Children|Comedy|Fantasy
## 14158                                                           Comedy|Drama|Romance
## 14159                                                                  Drama|Romance
## 14160                                                          Comedy|Crime|Thriller
## 14161                                                                  Drama|Romance
## 14162                                                                 Children|Drama
## 14163                                                                 Comedy|Romance
## 14164                                                                          Drama
## 14165                                                           Adventure|Drama|IMAX
## 14166                                                        Action|Adventure|Sci-Fi
## 14167                                                        Action|Adventure|Sci-Fi
## 14168                                                          Drama|Fantasy|Romance
## 14169                                                      Drama|Romance|War|Western
## 14170                                                                          Drama
## 14171                                                                 Comedy|Romance
## 14172                                                                         Comedy
## 14173                                                                 Comedy|Romance
## 14174                                Adventure|Animation|Children|Drama|Musical|IMAX
## 14175                                                       Adventure|Comedy|Western
## 14176                                                        Action|Romance|Thriller
## 14177                                                                       Thriller
## 14178                                                                          Drama
## 14179                                                                  Drama|Romance
## 14180                                                                          Drama
## 14181                                                           Comedy|Drama|Romance
## 14182                                                                Children|Comedy
## 14183                                          Comedy|Drama|Fantasy|Romance|Thriller
## 14184                                    Adventure|Animation|Children|Comedy|Musical
## 14185                                                        Adventure|Drama|Western
## 14186                                                          Action|Crime|Thriller
## 14187                                Animation|Children|Fantasy|Musical|Romance|IMAX
## 14188                                                                 Comedy|Romance
## 14189                                              Action|Adventure|Mystery|Thriller
## 14190                                                      Action|Adventure|Thriller
## 14191                                                                    Crime|Drama
## 14192                                                           Comedy|Drama|Romance
## 14193                                                                  Drama|Romance
## 14194                                                               Mystery|Thriller
## 14195                                      Action|Adventure|Mystery|Romance|Thriller
## 14196                                                                   Comedy|Crime
## 14197                                                                  Drama|Romance
## 14198                                                   Comedy|Drama|Musical|Romance
## 14199                                             Adventure|Children|Fantasy|Musical
## 14200                                                              Drama|Romance|War
## 14201                                                                  Drama|Mystery
## 14202                                                Children|Comedy|Fantasy|Musical
## 14203                                                                   Comedy|Crime
## 14204                                                          Children|Drama|Sci-Fi
## 14205                                                                          Drama
## 14206                                        Action|Adventure|Comedy|Fantasy|Romance
## 14207                                                               Action|Adventure
## 14208                                                                          Drama
## 14209                                                                   Comedy|Crime
## 14210                                                         Action|Sci-Fi|Thriller
## 14211                                                                      Drama|War
## 14212                                                                          Drama
## 14213                                                           Comedy|Drama|Romance
## 14214                                                                Adventure|Drama
## 14215                                                         Comedy|Fantasy|Romance
## 14216                                                        Adventure|Comedy|Sci-Fi
## 14217                                                                 Comedy|Fantasy
## 14218                                                               Action|Adventure
## 14219                                                                 Action|Western
## 14220                                                                 Comedy|Romance
## 14221                                                         Comedy|Musical|Romance
## 14222                                                                  Action|Horror
## 14223                                                                  Drama|Romance
## 14224                                                                         Comedy
## 14225                                                           Action|Comedy|Sci-Fi
## 14226                                                      Action|Adventure|Thriller
## 14227                                                                   Comedy|Drama
## 14228                                                            Comedy|Drama|Sci-Fi
## 14229                                                                  Drama|Romance
## 14230                                                                  Drama|Romance
## 14231                                                                         Comedy
## 14232                                                           Comedy|Drama|Romance
## 14233                                            Comedy|Crime|Drama|Romance|Thriller
## 14234                                                                 Comedy|Romance
## 14235                                                                          Drama
## 14236                                                                   Comedy|Drama
## 14237                                                        Adventure|Comedy|Sci-Fi
## 14238                                      Animation|Children|Comedy|Musical|Romance
## 14239                                                         Comedy|Fantasy|Romance
## 14240                                                       Action|Adventure|Fantasy
## 14241                                                             Action|Crime|Drama
## 14242                                                           Crime|Drama|Thriller
## 14243                                                          Drama|Fantasy|Romance
## 14244                                                                         Comedy
## 14245                                                           Comedy|Drama|Fantasy
## 14246                                            Adventure|Animation|Children|Comedy
## 14247                                                           Comedy|Drama|Romance
## 14248                                                Action|Adventure|Comedy|Romance
## 14249                                                               Adventure|Comedy
## 14250                                                                         Comedy
## 14251                                                   Comedy|Horror|Musical|Sci-Fi
## 14252                                                           Action|Comedy|Sci-Fi
## 14253                                                   Comedy|Drama|Fantasy|Romance
## 14254                                                                         Comedy
## 14255                                                                 Comedy|Romance
## 14256                                                                 Drama|Thriller
## 14257                                    Adventure|Animation|Children|Comedy|Fantasy
## 14258                                                         Drama|Mystery|Thriller
## 14259                                                                   Comedy|Drama
## 14260                                                    Action|Crime|Drama|Thriller
## 14261                                                                   Comedy|Drama
## 14262                                                                          Drama
## 14263                                                         Adventure|Drama|Sci-Fi
## 14264                                                      Animation|Children|Comedy
## 14265                                                                          Drama
## 14266                                                                  Drama|Romance
## 14267                                                                          Drama
## 14268                                                         Adventure|Comedy|Crime
## 14269                                                                   Comedy|Drama
## 14270                                                      Action|Comedy|Crime|Drama
## 14271                                                           Comedy|Drama|Romance
## 14272                            Adventure|Animation|Children|Comedy|Fantasy|Romance
## 14273                                                                 Comedy|Romance
## 14274                                    Adventure|Animation|Children|Comedy|Fantasy
## 14275                                                                 Crime|Thriller
## 14276                                                                   Comedy|Drama
## 14277                                                              Adventure|Fantasy
## 14278                                                                  Drama|Romance
## 14279                                                                 Comedy|Romance
## 14280                                                           Comedy|Drama|Romance
## 14281                                                              Adventure|Fantasy
## 14282                                                                    Crime|Drama
## 14283                                            Adventure|Animation|Children|Comedy
## 14284                                                           Comedy|Drama|Romance
## 14285                                                                 Comedy|Musical
##        n_year
## 1        2009
## 2        2009
## 3        2009
## 4        2009
## 5        2009
## 6        2009
## 7        2009
## 8        2009
## 9        2009
## 10       2009
## 11       2009
## 12       2009
## 13       2009
## 14       2009
## 15       2009
## 16       2009
## 17       2009
## 18       2009
## 19       2009
## 20       2009
## 21       1996
## 22       1996
## 23       1996
## 24       1996
## 25       1996
## 26       1996
## 27       1996
## 28       1996
## 29       1996
## 30       1996
## 31       1996
## 32       1996
## 33       1996
## 34       1996
## 35       1996
## 36       1996
## 37       1996
## 38       1996
## 39       1996
## 40       1996
## 41       1996
## 42       1996
## 43       1996
## 44       1996
## 45       1996
## 46       1996
## 47       1996
## 48       1996
## 49       1996
## 50       1996
## 51       1996
## 52       1996
## 53       1996
## 54       1996
## 55       1996
## 56       1996
## 57       1996
## 58       1996
## 59       1996
## 60       1996
## 61       1996
## 62       1996
## 63       1996
## 64       1996
## 65       1996
## 66       1996
## 67       1996
## 68       1996
## 69       1996
## 70       1996
## 71       1996
## 72       1996
## 73       1996
## 74       1996
## 75       1996
## 76       1996
## 77       1996
## 78       1996
## 79       1996
## 80       1996
## 81       1996
## 82       1996
## 83       1996
## 84       1996
## 85       1996
## 86       1996
## 87       1996
## 88       1996
## 89       1996
## 90       1996
## 91       1996
## 92       1996
## 93       1996
## 94       1996
## 95       1996
## 96       1996
## 97       2011
## 98       2011
## 99       2011
## 100      2011
## 101      2011
## 102      2011
## 103      2011
## 104      2011
## 105      2011
## 106      2011
## 107      2011
## 108      2011
## 109      2011
## 110      2011
## 111      2011
## 112      2011
## 113      2011
## 114      2011
## 115      2011
## 116      2011
## 117      2011
## 118      2011
## 119      2011
## 120      2011
## 121      2011
## 122      2011
## 123      2011
## 124      2011
## 125      2011
## 126      2011
## 127      2011
## 128      2011
## 129      2011
## 130      2011
## 131      2011
## 132      2011
## 133      2011
## 134      2011
## 135      2011
## 136      2011
## 137      2011
## 138      2011
## 139      2011
## 140      2011
## 141      2011
## 142      2011
## 143      2011
## 144      2011
## 145      2011
## 146      2011
## 147      2011
## 148      2000
## 149      2000
## 150      2000
## 151      2000
## 152      2000
## 153      2000
## 154      2000
## 155      2000
## 156      2000
## 157      2000
## 158      2000
## 159      2000
## 160      2000
## 161      2000
## 162      2000
## 163      2000
## 164      2000
## 165      2000
## 166      2000
## 167      2000
## 168      2000
## 169      2000
## 170      2000
## 171      2000
## 172      2000
## 173      2000
## 174      2000
## 175      2000
## 176      2000
## 177      2000
## 178      2000
## 179      2000
## 180      2000
## 181      2000
## 182      2000
## 183      2000
## 184      2000
## 185      2000
## 186      2000
## 187      2000
## 188      2000
## 189      2000
## 190      2000
## 191      2000
## 192      2000
## 193      2000
## 194      2000
## 195      2000
## 196      2000
## 197      2000
## 198      2000
## 199      2000
## 200      2000
## 201      2000
## 202      2000
## 203      2000
## 204      2000
## 205      2000
## 206      2000
## 207      2000
## 208      2000
## 209      2000
## 210      2000
## 211      2000
## 212      2000
## 213      2000
## 214      2000
## 215      2000
## 216      2000
## 217      2000
## 218      2000
## 219      2000
## 220      2000
## 221      2000
## 222      2000
## 223      2000
## 224      2000
## 225      2000
## 226      2000
## 227      2000
## 228      2000
## 229      2000
## 230      2000
## 231      2000
## 232      2000
## 233      2000
## 234      2000
## 235      2000
## 236      2000
## 237      2000
## 238      2000
## 239      2000
## 240      2000
## 241      2000
## 242      2000
## 243      2000
## 244      2000
## 245      2000
## 246      2000
## 247      2000
## 248      2000
## 249      2000
## 250      2000
## 251      2000
## 252      2000
## 253      2000
## 254      2000
## 255      2000
## 256      2000
## 257      2000
## 258      2000
## 259      2000
## 260      2000
## 261      2000
## 262      2000
## 263      2000
## 264      2000
## 265      2000
## 266      2000
## 267      2000
## 268      2000
## 269      2000
## 270      2000
## 271      2000
## 272      2000
## 273      2000
## 274      2000
## 275      2000
## 276      2000
## 277      2000
## 278      2000
## 279      2000
## 280      2000
## 281      2000
## 282      2000
## 283      2000
## 284      2000
## 285      2000
## 286      2000
## 287      2000
## 288      2000
## 289      2000
## 290      2000
## 291      2000
## 292      2000
## 293      2000
## 294      2000
## 295      2000
## 296      2000
## 297      2000
## 298      2000
## 299      2000
## 300      2000
## 301      2000
## 302      2000
## 303      2000
## 304      2000
## 305      2000
## 306      2000
## 307      2000
## 308      2000
## 309      2000
## 310      2000
## 311      2000
## 312      2000
## 313      2000
## 314      2000
## 315      2000
## 316      2000
## 317      2000
## 318      2000
## 319      2000
## 320      2000
## 321      2000
## 322      2000
## 323      2000
## 324      2000
## 325      2000
## 326      2000
## 327      2000
## 328      2000
## 329      2000
## 330      2000
## 331      2000
## 332      2000
## 333      2000
## 334      2000
## 335      2000
## 336      2000
## 337      2000
## 338      2000
## 339      2000
## 340      2000
## 341      2000
## 342      2000
## 343      2000
## 344      2000
## 345      2000
## 346      2000
## 347      2000
## 348      2000
## 349      2000
## 350      2000
## 351      2000
## 352      2006
## 353      2006
## 354      2006
## 355      2006
## 356      2006
## 357      2006
## 358      2006
## 359      2006
## 360      2006
## 361      2006
## 362      2006
## 363      2006
## 364      2006
## 365      2006
## 366      2006
## 367      2006
## 368      2006
## 369      2006
## 370      2006
## 371      2006
## 372      2006
## 373      2006
## 374      2006
## 375      2006
## 376      2006
## 377      2006
## 378      2006
## 379      2006
## 380      2006
## 381      2006
## 382      2006
## 383      2006
## 384      2006
## 385      2006
## 386      2006
## 387      2006
## 388      2006
## 389      2006
## 390      2006
## 391      2006
## 392      2006
## 393      2006
## 394      2006
## 395      2006
## 396      2006
## 397      2006
## 398      2006
## 399      2006
## 400      2006
## 401      2006
## 402      2006
## 403      2006
## 404      2006
## 405      2006
## 406      2006
## 407      2006
## 408      2006
## 409      2006
## 410      2006
## 411      2006
## 412      2006
## 413      2006
## 414      2006
## 415      2006
## 416      2006
## 417      2006
## 418      2006
## 419      2006
## 420      2006
## 421      2006
## 422      2006
## 423      2006
## 424      2006
## 425      2006
## 426      2006
## 427      2006
## 428      2006
## 429      2006
## 430      2006
## 431      2006
## 432      2006
## 433      2006
## 434      2006
## 435      2006
## 436      2006
## 437      2006
## 438      2006
## 439      2006
## 440      2006
## 441      2006
## 442      2006
## 443      2006
## 444      2006
## 445      2006
## 446      2006
## 447      2006
## 448      2006
## 449      2006
## 450      2006
## 451      2006
## 452      2005
## 453      2005
## 454      2005
## 455      2005
## 456      2005
## 457      2005
## 458      2005
## 459      2005
## 460      2005
## 461      2005
## 462      2005
## 463      2005
## 464      2005
## 465      2005
## 466      2005
## 467      2005
## 468      2005
## 469      2005
## 470      2005
## 471      2005
## 472      2005
## 473      2005
## 474      2005
## 475      2005
## 476      2005
## 477      2005
## 478      2005
## 479      2005
## 480      2005
## 481      2005
## 482      2005
## 483      2005
## 484      2005
## 485      2005
## 486      2005
## 487      2005
## 488      2005
## 489      2005
## 490      2005
## 491      2005
## 492      2005
## 493      2005
## 494      2005
## 495      2005
## 496      1996
## 497      1996
## 498      1996
## 499      1996
## 500      1996
## 501      1996
## 502      1996
## 503      1996
## 504      1996
## 505      1996
## 506      1996
## 507      1996
## 508      1996
## 509      1996
## 510      1996
## 511      1996
## 512      1996
## 513      1996
## 514      1996
## 515      1996
## 516      1996
## 517      1996
## 518      1996
## 519      1996
## 520      1996
## 521      1996
## 522      1996
## 523      1996
## 524      1996
## 525      1996
## 526      1996
## 527      1996
## 528      1996
## 529      1996
## 530      1996
## 531      1996
## 532      1996
## 533      1996
## 534      1996
## 535      1996
## 536      1996
## 537      1996
## 538      1996
## 539      1996
## 540      1996
## 541      1996
## 542      1996
## 543      1996
## 544      1996
## 545      1996
## 546      1996
## 547      1996
## 548      1996
## 549      1996
## 550      1996
## 551      1996
## 552      1996
## 553      1996
## 554      1996
## 555      1996
## 556      1996
## 557      1996
## 558      1996
## 559      1996
## 560      1996
## 561      1996
## 562      1996
## 563      1996
## 564      1996
## 565      1996
## 566      1996
## 567      1996
## 568      1996
## 569      1996
## 570      1996
## 571      1996
## 572      1996
## 573      1996
## 574      1996
## 575      1996
## 576      1996
## 577      1996
## 578      1996
## 579      1996
## 580      1996
## 581      1996
## 582      1996
## 583      1996
## 584      2006
## 585      2006
## 586      2006
## 587      2006
## 588      2006
## 589      2006
## 590      2006
## 591      2006
## 592      2006
## 593      2006
## 594      2006
## 595      2006
## 596      2006
## 597      2006
## 598      2006
## 599      2006
## 600      2006
## 601      2006
## 602      2006
## 603      2006
## 604      2006
## 605      2006
## 606      2006
## 607      2006
## 608      2006
## 609      2006
## 610      2006
## 611      2006
## 612      2006
## 613      2006
## 614      2006
## 615      2006
## 616      2006
## 617      2006
## 618      2006
## 619      2006
## 620      2006
## 621      2006
## 622      2006
## 623      2006
## 624      2006
## 625      2006
## 626      2006
## 627      2006
## 628      2006
## 629      2006
## 630      2006
## 631      2006
## 632      2006
## 633      2006
## 634      2006
## 635      2006
## 636      2006
## 637      2006
## 638      2006
## 639      2006
## 640      2006
## 641      2006
## 642      2006
## 643      2006
## 644      2006
## 645      2006
## 646      2006
## 647      2006
## 648      2006
## 649      2006
## 650      2006
## 651      2006
## 652      2006
## 653      2006
## 654      2006
## 655      2006
## 656      2006
## 657      2006
## 658      2006
## 659      2006
## 660      2006
## 661      2006
## 662      2006
## 663      2006
## 664      2006
## 665      2006
## 666      2006
## 667      2006
## 668      2006
## 669      2006
## 670      2006
## 671      2006
## 672      2006
## 673      2006
## 674      2006
## 675      2006
## 676      2006
## 677      2006
## 678      2006
## 679      2006
## 680      2006
## 681      2006
## 682      2006
## 683      2006
## 684      2006
## 685      2006
## 686      2006
## 687      2006
## 688      2006
## 689      2006
## 690      2006
## 691      2006
## 692      2006
## 693      2006
## 694      2006
## 695      2006
## 696      2006
## 697      2006
## 698      2006
## 699      2006
## 700      1999
## 701      1999
## 702      1999
## 703      1999
## 704      1999
## 705      1999
## 706      1999
## 707      1999
## 708      1999
## 709      1999
## 710      1999
## 711      1999
## 712      1999
## 713      1999
## 714      1999
## 715      1999
## 716      1999
## 717      1999
## 718      1999
## 719      1999
## 720      1999
## 721      1999
## 722      1999
## 723      1999
## 724      1999
## 725      1999
## 726      1999
## 727      1999
## 728      1999
## 729      1999
## 730      1999
## 731      1999
## 732      1999
## 733      1999
## 734      1999
## 735      1999
## 736      1999
## 737      1999
## 738      1999
## 739      1999
## 740      1999
## 741      1999
## 742      1999
## 743      1999
## 744      1999
## 745      1999
## 746      1999
## 747      1999
## 748      1999
## 749      1999
## 750      1999
## 751      1999
## 752      1999
## 753      1999
## 754      1999
## 755      1999
## 756      1999
## 757      1999
## 758      1999
## 759      1999
## 760      1999
## 761      1999
## 762      1999
## 763      1999
## 764      1999
## 765      1999
## 766      1999
## 767      1999
## 768      1999
## 769      1999
## 770      1999
## 771      1999
## 772      1999
## 773      1999
## 774      1999
## 775      1999
## 776      1999
## 777      1999
## 778      1999
## 779      1999
## 780      1999
## 781      1999
## 782      1999
## 783      1999
## 784      1999
## 785      1999
## 786      1999
## 787      1999
## 788      1999
## 789      1999
## 790      1999
## 791      2014
## 792      2014
## 793      2014
## 794      2014
## 795      2014
## 796      2014
## 797      2014
## 798      2014
## 799      2014
## 800      2014
## 801      2014
## 802      2014
## 803      2014
## 804      2014
## 805      2014
## 806      2014
## 807      2014
## 808      2014
## 809      2014
## 810      2014
## 811      2014
## 812      2014
## 813      2014
## 814      2014
## 815      2014
## 816      2014
## 817      2014
## 818      2014
## 819      2014
## 820      2014
## 821      2014
## 822      2014
## 823      2014
## 824      2014
## 825      2014
## 826      2014
## 827      2014
## 828      2014
## 829      2000
## 830      2000
## 831      2000
## 832      2000
## 833      2000
## 834      2000
## 835      2000
## 836      2000
## 837      2000
## 838      2000
## 839      2000
## 840      2000
## 841      2000
## 842      2000
## 843      2000
## 844      2000
## 845      2000
## 846      2000
## 847      2000
## 848      2000
## 849      2000
## 850      2000
## 851      2000
## 852      2000
## 853      2000
## 854      2000
## 855      2000
## 856      2000
## 857      2000
## 858      2000
## 859      2000
## 860      2000
## 861      2000
## 862      2000
## 863      2000
## 864      2000
## 865      2000
## 866      2000
## 867      2000
## 868      2000
## 869      2000
## 870      2000
## 871      2000
## 872      2000
## 873      2000
## 874      2000
## 875      2000
## 876      2000
## 877      2000
## 878      2000
## 879      2000
## 880      2000
## 881      2000
## 882      2000
## 883      2000
## 884      2000
## 885      2000
## 886      2000
## 887      2000
## 888      2000
## 889      2000
## 890      2012
## 891      2012
## 892      2012
## 893      2012
## 894      2012
## 895      2012
## 896      2012
## 897      2012
## 898      2012
## 899      2012
## 900      2012
## 901      2012
## 902      2012
## 903      2012
## 904      2012
## 905      2012
## 906      2012
## 907      2012
## 908      2012
## 909      2012
## 910      2012
## 911      2012
## 912      2012
## 913      2012
## 914      2012
## 915      2012
## 916      2012
## 917      2012
## 918      2012
## 919      2012
## 920      2012
## 921      2012
## 922      2012
## 923      2012
## 924      2012
## 925      2012
## 926      2012
## 927      2012
## 928      2012
## 929      2012
## 930      2012
## 931      2012
## 932      2012
## 933      2012
## 934      2012
## 935      2012
## 936      2012
## 937      2012
## 938      2012
## 939      2012
## 940      2012
## 941      2012
## 942      2012
## 943      2000
## 944      2000
## 945      2000
## 946      2000
## 947      2000
## 948      2000
## 949      2000
## 950      2000
## 951      2000
## 952      2000
## 953      2000
## 954      2000
## 955      2000
## 956      2000
## 957      2000
## 958      2000
## 959      2000
## 960      2000
## 961      2000
## 962      2000
## 963      2001
## 964      2005
## 965      2004
## 966      2002
## 967      2004
## 968      2004
## 969      2006
## 970      2004
## 971      2001
## 972      2004
## 973      2003
## 974      2004
## 975      2002
## 976      2001
## 977      2001
## 978      2002
## 979      2004
## 980      2005
## 981      2003
## 982      2001
## 983      2004
## 984      2004
## 985      2004
## 986      2003
## 987      2006
## 988      2004
## 989      2005
## 990      2004
## 991      2006
## 992      2002
## 993      2001
## 994      2004
## 995      2001
## 996      2009
## 997      2005
## 998      2004
## 999      2001
## 1000     2005
## 1001     2003
## 1002     2004
## 1003     2004
## 1004     2001
## 1005     2006
## 1006     2001
## 1007     2004
## 1008     2006
## 1009     2004
## 1010     2006
## 1011     2003
## 1012     2006
## 1013     2003
## 1014     2007
## 1015     2004
## 1016     2005
## 1017     2007
## 1018     2002
## 1019     2003
## 1020     2012
## 1021     2001
## 1022     2005
## 1023     2002
## 1024     2004
## 1025     2002
## 1026     2002
## 1027     2001
## 1028     2006
## 1029     2001
## 1030     2001
## 1031     2004
## 1032     2004
## 1033     2001
## 1034     2003
## 1035     2004
## 1036     2004
## 1037     2001
## 1038     2001
## 1039     2003
## 1040     2001
## 1041     2001
## 1042     2003
## 1043     2003
## 1044     2004
## 1045     2001
## 1046     2005
## 1047     2004
## 1048     2001
## 1049     2005
## 1050     2003
## 1051     2004
## 1052     2001
## 1053     2004
## 1054     2005
## 1055     2003
## 1056     2003
## 1057     2001
## 1058     2013
## 1059     2005
## 1060     2015
## 1061     2016
## 1062     2003
## 1063     2002
## 1064     2001
## 1065     2006
## 1066     2016
## 1067     2005
## 1068     2004
## 1069     2004
## 1070     2003
## 1071     2001
## 1072     2007
## 1073     2004
## 1074     2001
## 1075     2005
## 1076     2006
## 1077     2004
## 1078     2001
## 1079     2006
## 1080     2001
## 1081     2004
## 1082     2004
## 1083     2002
## 1084     2004
## 1085     2004
## 1086     2015
## 1087     2006
## 1088     2001
## 1089     2002
## 1090     2004
## 1091     2009
## 1092     2001
## 1093     2004
## 1094     2001
## 1095     2001
## 1096     2002
## 1097     2013
## 1098     2006
## 1099     2006
## 1100     2004
## 1101     2004
## 1102     2004
## 1103     2001
## 1104     2004
## 1105     2001
## 1106     2001
## 1107     2009
## 1108     2004
## 1109     2001
## 1110     2003
## 1111     2004
## 1112     2005
## 1113     2004
## 1114     2002
## 1115     2001
## 1116     2003
## 1117     2003
## 1118     2004
## 1119     2002
## 1120     2006
## 1121     2004
## 1122     2004
## 1123     2001
## 1124     2006
## 1125     2001
## 1126     2004
## 1127     2003
## 1128     2004
## 1129     2004
## 1130     2002
## 1131     2004
## 1132     2005
## 1133     2006
## 1134     2001
## 1135     2005
## 1136     2003
## 1137     2005
## 1138     2006
## 1139     2006
## 1140     2002
## 1141     2001
## 1142     2001
## 1143     2003
## 1144     2001
## 1145     2001
## 1146     2001
## 1147     2001
## 1148     2005
## 1149     2003
## 1150     2001
## 1151     2014
## 1152     2003
## 1153     2005
## 1154     2001
## 1155     2004
## 1156     2002
## 1157     2001
## 1158     2001
## 1159     2003
## 1160     2003
## 1161     2001
## 1162     2001
## 1163     2006
## 1164     2002
## 1165     2001
## 1166     2001
## 1167     2012
## 1168     2006
## 1169     2003
## 1170     2001
## 1171     2001
## 1172     2001
## 1173     2005
## 1174     2001
## 1175     2007
## 1176     2006
## 1177     2002
## 1178     2002
## 1179     2001
## 1180     2016
## 1181     2004
## 1182     2003
## 1183     2001
## 1184     2012
## 1185     2005
## 1186     2013
## 1187     2001
## 1188     2003
## 1189     2007
## 1190     2001
## 1191     2001
## 1192     2002
## 1193     2015
## 1194     2006
## 1195     2013
## 1196     2001
## 1197     2001
## 1198     2002
## 1199     2001
## 1200     2004
## 1201     2001
## 1202     2012
## 1203     2001
## 1204     2001
## 1205     2001
## 1206     2003
## 1207     2001
## 1208     2012
## 1209     2001
## 1210     2003
## 1211     2006
## 1212     2001
## 1213     2001
## 1214     2003
## 1215     2003
## 1216     2001
## 1217     2001
## 1218     2004
## 1219     2001
## 1220     2001
## 1221     2001
## 1222     2002
## 1223     2001
## 1224     2003
## 1225     2003
## 1226     2001
## 1227     2003
## 1228     2006
## 1229     2001
## 1230     2002
## 1231     2001
## 1232     2004
## 1233     2001
## 1234     2001
## 1235     2001
## 1236     2001
## 1237     2001
## 1238     2001
## 1239     2012
## 1240     2001
## 1241     2001
## 1242     2001
## 1243     2005
## 1244     2005
## 1245     2001
## 1246     2001
## 1247     2001
## 1248     2001
## 1249     2001
## 1250     2003
## 1251     2003
## 1252     2001
## 1253     2003
## 1254     2014
## 1255     2012
## 1256     2002
## 1257     2006
## 1258     2016
## 1259     2002
## 1260     2001
## 1261     2001
## 1262     2006
## 1263     2004
## 1264     2003
## 1265     2002
## 1266     2001
## 1267     2005
## 1268     2001
## 1269     2003
## 1270     2005
## 1271     2002
## 1272     2003
## 1273     2001
## 1274     2013
## 1275     2004
## 1276     2004
## 1277     2006
## 1278     2016
## 1279     2002
## 1280     2004
## 1281     2003
## 1282     2001
## 1283     2003
## 1284     2003
## 1285     2001
## 1286     2001
## 1287     2001
## 1288     2001
## 1289     2005
## 1290     2012
## 1291     2007
## 1292     2001
## 1293     2004
## 1294     2004
## 1295     2015
## 1296     2002
## 1297     2002
## 1298     2001
## 1299     2003
## 1300     2001
## 1301     2004
## 1302     2001
## 1303     2005
## 1304     2006
## 1305     2006
## 1306     2005
## 1307     2001
## 1308     2001
## 1309     2003
## 1310     2004
## 1311     2005
## 1312     2004
## 1313     2002
## 1314     2001
## 1315     2006
## 1316     2001
## 1317     2001
## 1318     2002
## 1319     2003
## 1320     2006
## 1321     2001
## 1322     2001
## 1323     2003
## 1324     2003
## 1325     2002
## 1326     2003
## 1327     2006
## 1328     2001
## 1329     2016
## 1330     2005
## 1331     2001
## 1332     2002
## 1333     2006
## 1334     2001
## 1335     2004
## 1336     2005
## 1337     2002
## 1338     2003
## 1339     2006
## 1340     2005
## 1341     2001
## 1342     2016
## 1343     2012
## 1344     2016
## 1345     2005
## 1346     2006
## 1347     2002
## 1348     2016
## 1349     2001
## 1350     2004
## 1351     2006
## 1352     2016
## 1353     2001
## 1354     2006
## 1355     2003
## 1356     2016
## 1357     2003
## 1358     2001
## 1359     2001
## 1360     2016
## 1361     2005
## 1362     2006
## 1363     2003
## 1364     2003
## 1365     2016
## 1366     2003
## 1367     2004
## 1368     2003
## 1369     2002
## 1370     2003
## 1371     2003
## 1372     2003
## 1373     2003
## 1374     2001
## 1375     2003
## 1376     2001
## 1377     2001
## 1378     2002
## 1379     2012
## 1380     2006
## 1381     2004
## 1382     2002
## 1383     2001
## 1384     2003
## 1385     2006
## 1386     2001
## 1387     2003
## 1388     2002
## 1389     2001
## 1390     2002
## 1391     2003
## 1392     2003
## 1393     2003
## 1394     2003
## 1395     2005
## 1396     2013
## 1397     2016
## 1398     2001
## 1399     2002
## 1400     2001
## 1401     2006
## 1402     2003
## 1403     2012
## 1404     2001
## 1405     2001
## 1406     2003
## 1407     2003
## 1408     2007
## 1409     2002
## 1410     2006
## 1411     2006
## 1412     2005
## 1413     2003
## 1414     2002
## 1415     2001
## 1416     2006
## 1417     2001
## 1418     2001
## 1419     2001
## 1420     2001
## 1421     2002
## 1422     2003
## 1423     2001
## 1424     2005
## 1425     2003
## 1426     2004
## 1427     2016
## 1428     2006
## 1429     2005
## 1430     2016
## 1431     2003
## 1432     2001
## 1433     2001
## 1434     2003
## 1435     2004
## 1436     2001
## 1437     2003
## 1438     2012
## 1439     2003
## 1440     2005
## 1441     2001
## 1442     2003
## 1443     2002
## 1444     2016
## 1445     2002
## 1446     2005
## 1447     2003
## 1448     2005
## 1449     2001
## 1450     2001
## 1451     2001
## 1452     2002
## 1453     2002
## 1454     2006
## 1455     2001
## 1456     2016
## 1457     2001
## 1458     2001
## 1459     2001
## 1460     2003
## 1461     2016
## 1462     2003
## 1463     2015
## 1464     2005
## 1465     2002
## 1466     2002
## 1467     2001
## 1468     2005
## 1469     2006
## 1470     2001
## 1471     2005
## 1472     2002
## 1473     2001
## 1474     2002
## 1475     2005
## 1476     2012
## 1477     2016
## 1478     2002
## 1479     2001
## 1480     2002
## 1481     2016
## 1482     2001
## 1483     2002
## 1484     2002
## 1485     2002
## 1486     2003
## 1487     2001
## 1488     2002
## 1489     2002
## 1490     2001
## 1491     2006
## 1492     2001
## 1493     2002
## 1494     2002
## 1495     2004
## 1496     2001
## 1497     2004
## 1498     2001
## 1499     2001
## 1500     2003
## 1501     2001
## 1502     2002
## 1503     2002
## 1504     2001
## 1505     2001
## 1506     2002
## 1507     2002
## 1508     2009
## 1509     2005
## 1510     2002
## 1511     2002
## 1512     2002
## 1513     2002
## 1514     2001
## 1515     2002
## 1516     2001
## 1517     2016
## 1518     2016
## 1519     2002
## 1520     2002
## 1521     2003
## 1522     2001
## 1523     2002
## 1524     2001
## 1525     2001
## 1526     2002
## 1527     2001
## 1528     2002
## 1529     2001
## 1530     2003
## 1531     2001
## 1532     2006
## 1533     2001
## 1534     2002
## 1535     2002
## 1536     2001
## 1537     2001
## 1538     2002
## 1539     2003
## 1540     2002
## 1541     2001
## 1542     2002
## 1543     2012
## 1544     2001
## 1545     2003
## 1546     2006
## 1547     2002
## 1548     2002
## 1549     2003
## 1550     2001
## 1551     2001
## 1552     2016
## 1553     2001
## 1554     2003
## 1555     2001
## 1556     2012
## 1557     2012
## 1558     2001
## 1559     2001
## 1560     2002
## 1561     2002
## 1562     2001
## 1563     2013
## 1564     2002
## 1565     2001
## 1566     2001
## 1567     2006
## 1568     2001
## 1569     2003
## 1570     2002
## 1571     2003
## 1572     2001
## 1573     2003
## 1574     2002
## 1575     2002
## 1576     2006
## 1577     2001
## 1578     2001
## 1579     2001
## 1580     2002
## 1581     2011
## 1582     2001
## 1583     2006
## 1584     2002
## 1585     2001
## 1586     2003
## 1587     2003
## 1588     2016
## 1589     2001
## 1590     2005
## 1591     2009
## 1592     2001
## 1593     2002
## 1594     2001
## 1595     2012
## 1596     2005
## 1597     2002
## 1598     2001
## 1599     2001
## 1600     2001
## 1601     2001
## 1602     2002
## 1603     2003
## 1604     2002
## 1605     2001
## 1606     2002
## 1607     2002
## 1608     2001
## 1609     2005
## 1610     2013
## 1611     2003
## 1612     2001
## 1613     2012
## 1614     2002
## 1615     2003
## 1616     2002
## 1617     2001
## 1618     2012
## 1619     2014
## 1620     2001
## 1621     2002
## 1622     2001
## 1623     2003
## 1624     2004
## 1625     2014
## 1626     2001
## 1627     2001
## 1628     2002
## 1629     2001
## 1630     2004
## 1631     2003
## 1632     2005
## 1633     2001
## 1634     2001
## 1635     2002
## 1636     2001
## 1637     2002
## 1638     2003
## 1639     2001
## 1640     2003
## 1641     2007
## 1642     2001
## 1643     2003
## 1644     2002
## 1645     2016
## 1646     2004
## 1647     2001
## 1648     2016
## 1649     2006
## 1650     2001
## 1651     2001
## 1652     2005
## 1653     2002
## 1654     2001
## 1655     2003
## 1656     2001
## 1657     2001
## 1658     2001
## 1659     2004
## 1660     2002
## 1661     2016
## 1662     2006
## 1663     2001
## 1664     2001
## 1665     2001
## 1666     2001
## 1667     2016
## 1668     2002
## 1669     2001
## 1670     2001
## 1671     2001
## 1672     2002
## 1673     2005
## 1674     2001
## 1675     2012
## 1676     2003
## 1677     2012
## 1678     2012
## 1679     2012
## 1680     2006
## 1681     2001
## 1682     2016
## 1683     2006
## 1684     2015
## 1685     2001
## 1686     2001
## 1687     2004
## 1688     2001
## 1689     2001
## 1690     2001
## 1691     2001
## 1692     2014
## 1693     2005
## 1694     2001
## 1695     2001
## 1696     2002
## 1697     2001
## 1698     2001
## 1699     2001
## 1700     2001
## 1701     2001
## 1702     2002
## 1703     2001
## 1704     2001
## 1705     2001
## 1706     2001
## 1707     2005
## 1708     2003
## 1709     2009
## 1710     2003
## 1711     2001
## 1712     2005
## 1713     2001
## 1714     2002
## 1715     2001
## 1716     2001
## 1717     2001
## 1718     2001
## 1719     2001
## 1720     2001
## 1721     2001
## 1722     2003
## 1723     2001
## 1724     2001
## 1725     2001
## 1726     2001
## 1727     2015
## 1728     2001
## 1729     2001
## 1730     2001
## 1731     2002
## 1732     2001
## 1733     2012
## 1734     2001
## 1735     2001
## 1736     2006
## 1737     2001
## 1738     2001
## 1739     2001
## 1740     2001
## 1741     2001
## 1742     2001
## 1743     2001
## 1744     2012
## 1745     2003
## 1746     2015
## 1747     2002
## 1748     2001
## 1749     2003
## 1750     2001
## 1751     2001
## 1752     2003
## 1753     2014
## 1754     2001
## 1755     2001
## 1756     2001
## 1757     2001
## 1758     2003
## 1759     2001
## 1760     2002
## 1761     2001
## 1762     2004
## 1763     2001
## 1764     2001
## 1765     2001
## 1766     2001
## 1767     2002
## 1768     2001
## 1769     2001
## 1770     2003
## 1771     2002
## 1772     2012
## 1773     2002
## 1774     2001
## 1775     2001
## 1776     2012
## 1777     2001
## 1778     2001
## 1779     2001
## 1780     2002
## 1781     2003
## 1782     2001
## 1783     2001
## 1784     2001
## 1785     2001
## 1786     2001
## 1787     2001
## 1788     2001
## 1789     2001
## 1790     2012
## 1791     2005
## 1792     2006
## 1793     2001
## 1794     2013
## 1795     2001
## 1796     2002
## 1797     2002
## 1798     2001
## 1799     2001
## 1800     2012
## 1801     2001
## 1802     2001
## 1803     2012
## 1804     2001
## 1805     2001
## 1806     2001
## 1807     2001
## 1808     2002
## 1809     2002
## 1810     2002
## 1811     2001
## 1812     2001
## 1813     2001
## 1814     2014
## 1815     2001
## 1816     2001
## 1817     2004
## 1818     2001
## 1819     2003
## 1820     2004
## 1821     2012
## 1822     2001
## 1823     2001
## 1824     2001
## 1825     2001
## 1826     2001
## 1827     2002
## 1828     2002
## 1829     2016
## 1830     2001
## 1831     2001
## 1832     2001
## 1833     2001
## 1834     2001
## 1835     2001
## 1836     2001
## 1837     2001
## 1838     2001
## 1839     2001
## 1840     2003
## 1841     2013
## 1842     2002
## 1843     2003
## 1844     2003
## 1845     2003
## 1846     2002
## 1847     2003
## 1848     2004
## 1849     2002
## 1850     2003
## 1851     2006
## 1852     2014
## 1853     2003
## 1854     2003
## 1855     2002
## 1856     2002
## 1857     2003
## 1858     2002
## 1859     2003
## 1860     2002
## 1861     2002
## 1862     2003
## 1863     2002
## 1864     2002
## 1865     2016
## 1866     2016
## 1867     2003
## 1868     2002
## 1869     2012
## 1870     2002
## 1871     2002
## 1872     2015
## 1873     2002
## 1874     2002
## 1875     2015
## 1876     2005
## 1877     2003
## 1878     2002
## 1879     2002
## 1880     2003
## 1881     2003
## 1882     2002
## 1883     2003
## 1884     2004
## 1885     2002
## 1886     2014
## 1887     2012
## 1888     2002
## 1889     2003
## 1890     2002
## 1891     2014
## 1892     2002
## 1893     2002
## 1894     2002
## 1895     2005
## 1896     2004
## 1897     2002
## 1898     2002
## 1899     2009
## 1900     2003
## 1901     2002
## 1902     2014
## 1903     2002
## 1904     2016
## 1905     2013
## 1906     2014
## 1907     2016
## 1908     2002
## 1909     2003
## 1910     2012
## 1911     2016
## 1912     2002
## 1913     2002
## 1914     2016
## 1915     2004
## 1916     2002
## 1917     2006
## 1918     2013
## 1919     2002
## 1920     2003
## 1921     2004
## 1922     2002
## 1923     2002
## 1924     2002
## 1925     2002
## 1926     2002
## 1927     2002
## 1928     2002
## 1929     2002
## 1930     2006
## 1931     2002
## 1932     2003
## 1933     2002
## 1934     2002
## 1935     2002
## 1936     2002
## 1937     2002
## 1938     2003
## 1939     2002
## 1940     2002
## 1941     2002
## 1942     2002
## 1943     2002
## 1944     2002
## 1945     2003
## 1946     2008
## 1947     2004
## 1948     2015
## 1949     2003
## 1950     2002
## 1951     2002
## 1952     2003
## 1953     2004
## 1954     2002
## 1955     2002
## 1956     2003
## 1957     2003
## 1958     2014
## 1959     2006
## 1960     2003
## 1961     2002
## 1962     2003
## 1963     2013
## 1964     2004
## 1965     2004
## 1966     2002
## 1967     2004
## 1968     2006
## 1969     2004
## 1970     2015
## 1971     2002
## 1972     2005
## 1973     2004
## 1974     2005
## 1975     2004
## 1976     2004
## 1977     2003
## 1978     2016
## 1979     2014
## 1980     2014
## 1981     2014
## 1982     2003
## 1983     2014
## 1984     2003
## 1985     2004
## 1986     2003
## 1987     2006
## 1988     2014
## 1989     2015
## 1990     2004
## 1991     2004
## 1992     2003
## 1993     2004
## 1994     2005
## 1995     2003
## 1996     2003
## 1997     2005
## 1998     2003
## 1999     2005
## 2000     2006
## 2001     2004
## 2002     2016
## 2003     2003
## 2004     2003
## 2005     2003
## 2006     2003
## 2007     2005
## 2008     2003
## 2009     2003
## 2010     2003
## 2011     2003
## 2012     2004
## 2013     2014
## 2014     2004
## 2015     2004
## 2016     2004
## 2017     2005
## 2018     2004
## 2019     2003
## 2020     2015
## 2021     2016
## 2022     2004
## 2023     2005
## 2024     2004
## 2025     2003
## 2026     2004
## 2027     2004
## 2028     2003
## 2029     2004
## 2030     2003
## 2031     2004
## 2032     2014
## 2033     2016
## 2034     2004
## 2035     2012
## 2036     2004
## 2037     2004
## 2038     2016
## 2039     2012
## 2040     2004
## 2041     2008
## 2042     2009
## 2043     2004
## 2044     2004
## 2045     2009
## 2046     2012
## 2047     2013
## 2048     2013
## 2049     2009
## 2050     2016
## 2051     2005
## 2052     2015
## 2053     2005
## 2054     2012
## 2055     2004
## 2056     2004
## 2057     2004
## 2058     2004
## 2059     2005
## 2060     2004
## 2061     2014
## 2062     2004
## 2063     2006
## 2064     2007
## 2065     2004
## 2066     2004
## 2067     2008
## 2068     2014
## 2069     2004
## 2070     2016
## 2071     2004
## 2072     2004
## 2073     2004
## 2074     2005
## 2075     2004
## 2076     2015
## 2077     2014
## 2078     2014
## 2079     2006
## 2080     2012
## 2081     2009
## 2082     2004
## 2083     2012
## 2084     2012
## 2085     2012
## 2086     2012
## 2087     2004
## 2088     2004
## 2089     2016
## 2090     2005
## 2091     2004
## 2092     2004
## 2093     2006
## 2094     2006
## 2095     2014
## 2096     2005
## 2097     2009
## 2098     2016
## 2099     2013
## 2100     2005
## 2101     2006
## 2102     2004
## 2103     2004
## 2104     2005
## 2105     2012
## 2106     2006
## 2107     2005
## 2108     2004
## 2109     2014
## 2110     2005
## 2111     2006
## 2112     2012
## 2113     2006
## 2114     2005
## 2115     2005
## 2116     2004
## 2117     2016
## 2118     2006
## 2119     2006
## 2120     2005
## 2121     2013
## 2122     2005
## 2123     2005
## 2124     2004
## 2125     2006
## 2126     2013
## 2127     2013
## 2128     2006
## 2129     2008
## 2130     2005
## 2131     2014
## 2132     2006
## 2133     2006
## 2134     2009
## 2135     2012
## 2136     2006
## 2137     2005
## 2138     2012
## 2139     2005
## 2140     2012
## 2141     2005
## 2142     2005
## 2143     2006
## 2144     2014
## 2145     2014
## 2146     2013
## 2147     2005
## 2148     2005
## 2149     2005
## 2150     2012
## 2151     2005
## 2152     2005
## 2153     2006
## 2154     2005
## 2155     2011
## 2156     2013
## 2157     2014
## 2158     2006
## 2159     2011
## 2160     2013
## 2161     2013
## 2162     2006
## 2163     2005
## 2164     2006
## 2165     2006
## 2166     2014
## 2167     2016
## 2168     2006
## 2169     2015
## 2170     2008
## 2171     2012
## 2172     2006
## 2173     2014
## 2174     2014
## 2175     2009
## 2176     2012
## 2177     2016
## 2178     2009
## 2179     2008
## 2180     2008
## 2181     2016
## 2182     2011
## 2183     2009
## 2184     2013
## 2185     2016
## 2186     2011
## 2187     2015
## 2188     2012
## 2189     2014
## 2190     2013
## 2191     2016
## 2192     2014
## 2193     2014
## 2194     2014
## 2195     2007
## 2196     2012
## 2197     2012
## 2198     2013
## 2199     2014
## 2200     2013
## 2201     2008
## 2202     2009
## 2203     2016
## 2204     2014
## 2205     2012
## 2206     2009
## 2207     2012
## 2208     2008
## 2209     2009
## 2210     2008
## 2211     2008
## 2212     2011
## 2213     2016
## 2214     2015
## 2215     2009
## 2216     2008
## 2217     2008
## 2218     2008
## 2219     2012
## 2220     2012
## 2221     2012
## 2222     2015
## 2223     2012
## 2224     2012
## 2225     2015
## 2226     2015
## 2227     2012
## 2228     2012
## 2229     2009
## 2230     2014
## 2231     2015
## 2232     2009
## 2233     2009
## 2234     2012
## 2235     2013
## 2236     2014
## 2237     2013
## 2238     2008
## 2239     2014
## 2240     2013
## 2241     2012
## 2242     2015
## 2243     2014
## 2244     2013
## 2245     2016
## 2246     2015
## 2247     2014
## 2248     2015
## 2249     2008
## 2250     2012
## 2251     2012
## 2252     2012
## 2253     2008
## 2254     2009
## 2255     2016
## 2256     2008
## 2257     2012
## 2258     2008
## 2259     2012
## 2260     2013
## 2261     2012
## 2262     2008
## 2263     2008
## 2264     2008
## 2265     2011
## 2266     2014
## 2267     2013
## 2268     2011
## 2269     2009
## 2270     2009
## 2271     2013
## 2272     2008
## 2273     2009
## 2274     2012
## 2275     2013
## 2276     2015
## 2277     2013
## 2278     2013
## 2279     2009
## 2280     2012
## 2281     2012
## 2282     2009
## 2283     2014
## 2284     2014
## 2285     2013
## 2286     2016
## 2287     2009
## 2288     2009
## 2289     2016
## 2290     2016
## 2291     2009
## 2292     2012
## 2293     2015
## 2294     2009
## 2295     2009
## 2296     2013
## 2297     2012
## 2298     2012
## 2299     2009
## 2300     2012
## 2301     2011
## 2302     2016
## 2303     2009
## 2304     2011
## 2305     2013
## 2306     2012
## 2307     2012
## 2308     2014
## 2309     2013
## 2310     2016
## 2311     2012
## 2312     2016
## 2313     2009
## 2314     2009
## 2315     2009
## 2316     2011
## 2317     2013
## 2318     2016
## 2319     2009
## 2320     2016
## 2321     2016
## 2322     2016
## 2323     2009
## 2324     2015
## 2325     2016
## 2326     2012
## 2327     2012
## 2328     2013
## 2329     2009
## 2330     2010
## 2331     2011
## 2332     2012
## 2333     2012
## 2334     2013
## 2335     2013
## 2336     2016
## 2337     2010
## 2338     2010
## 2339     2013
## 2340     2013
## 2341     2013
## 2342     2013
## 2343     2011
## 2344     2016
## 2345     2011
## 2346     2012
## 2347     2015
## 2348     2013
## 2349     2011
## 2350     2016
## 2351     2016
## 2352     2012
## 2353     2012
## 2354     2013
## 2355     2012
## 2356     2016
## 2357     2013
## 2358     2013
## 2359     2011
## 2360     2016
## 2361     2013
## 2362     2013
## 2363     2013
## 2364     2012
## 2365     2012
## 2366     2011
## 2367     2016
## 2368     2013
## 2369     2012
## 2370     2012
## 2371     2011
## 2372     2016
## 2373     2013
## 2374     2013
## 2375     2011
## 2376     2013
## 2377     2015
## 2378     2012
## 2379     2016
## 2380     2013
## 2381     2012
## 2382     2011
## 2383     2013
## 2384     2012
## 2385     2011
## 2386     2012
## 2387     2011
## 2388     2016
## 2389     2016
## 2390     2016
## 2391     2016
## 2392     2016
## 2393     2011
## 2394     2013
## 2395     2012
## 2396     2012
## 2397     2016
## 2398     2011
## 2399     2016
## 2400     2015
## 2401     2014
## 2402     2012
## 2403     2012
## 2404     2013
## 2405     2011
## 2406     2011
## 2407     2011
## 2408     2013
## 2409     2013
## 2410     2016
## 2411     2013
## 2412     2012
## 2413     2012
## 2414     2012
## 2415     2013
## 2416     2012
## 2417     2013
## 2418     2012
## 2419     2013
## 2420     2012
## 2421     2013
## 2422     2012
## 2423     2012
## 2424     2016
## 2425     2012
## 2426     2012
## 2427     2012
## 2428     2012
## 2429     2012
## 2430     2012
## 2431     2012
## 2432     2012
## 2433     2012
## 2434     2012
## 2435     2016
## 2436     2012
## 2437     2013
## 2438     2012
## 2439     2012
## 2440     2016
## 2441     2012
## 2442     2012
## 2443     2012
## 2444     2012
## 2445     2012
## 2446     2012
## 2447     2012
## 2448     2012
## 2449     2012
## 2450     2012
## 2451     2013
## 2452     2012
## 2453     2012
## 2454     2016
## 2455     2012
## 2456     2013
## 2457     2012
## 2458     2013
## 2459     2012
## 2460     2013
## 2461     2012
## 2462     2013
## 2463     2013
## 2464     2013
## 2465     2016
## 2466     2013
## 2467     2013
## 2468     2013
## 2469     2015
## 2470     2013
## 2471     2014
## 2472     2016
## 2473     2015
## 2474     2014
## 2475     2013
## 2476     2016
## 2477     2016
## 2478     2015
## 2479     2013
## 2480     2013
## 2481     2013
## 2482     2013
## 2483     2016
## 2484     2013
## 2485     2014
## 2486     2013
## 2487     2013
## 2488     2016
## 2489     2013
## 2490     2013
## 2491     2013
## 2492     2016
## 2493     2016
## 2494     2014
## 2495     2013
## 2496     2016
## 2497     2014
## 2498     2013
## 2499     2013
## 2500     2014
## 2501     2016
## 2502     2013
## 2503     2013
## 2504     2016
## 2505     2016
## 2506     2016
## 2507     2016
## 2508     2016
## 2509     2016
## 2510     2015
## 2511     2013
## 2512     2013
## 2513     2013
## 2514     2015
## 2515     2015
## 2516     2013
## 2517     2013
## 2518     2014
## 2519     2014
## 2520     2014
## 2521     2014
## 2522     2016
## 2523     2015
## 2524     2015
## 2525     2014
## 2526     2016
## 2527     2016
## 2528     2016
## 2529     2014
## 2530     2016
## 2531     2016
## 2532     2014
## 2533     2015
## 2534     2014
## 2535     2016
## 2536     2015
## 2537     2014
## 2538     2014
## 2539     2014
## 2540     2014
## 2541     2016
## 2542     2015
## 2543     2015
## 2544     2014
## 2545     2014
## 2546     2014
## 2547     2015
## 2548     2014
## 2549     2015
## 2550     2014
## 2551     2015
## 2552     2015
## 2553     2014
## 2554     2015
## 2555     2015
## 2556     2014
## 2557     2016
## 2558     2014
## 2559     2015
## 2560     2016
## 2561     2015
## 2562     2015
## 2563     2015
## 2564     2016
## 2565     2014
## 2566     2015
## 2567     2015
## 2568     2015
## 2569     2015
## 2570     2015
## 2571     2015
## 2572     2015
## 2573     2016
## 2574     2015
## 2575     2015
## 2576     2015
## 2577     2015
## 2578     2015
## 2579     2015
## 2580     2015
## 2581     2015
## 2582     2015
## 2583     2015
## 2584     2016
## 2585     2016
## 2586     2015
## 2587     2016
## 2588     2016
## 2589     2015
## 2590     2015
## 2591     2015
## 2592     2016
## 2593     2016
## 2594     2016
## 2595     2015
## 2596     2016
## 2597     2015
## 2598     2016
## 2599     2016
## 2600     2016
## 2601     2016
## 2602     2015
## 2603     2016
## 2604     2016
## 2605     2015
## 2606     2016
## 2607     2016
## 2608     2015
## 2609     2016
## 2610     2016
## 2611     2016
## 2612     2016
## 2613     2016
## 2614     2016
## 2615     2016
## 2616     2016
## 2617     2016
## 2618     2016
## 2619     2016
## 2620     2015
## 2621     2016
## 2622     2016
## 2623     2016
## 2624     2016
## 2625     2016
## 2626     2016
## 2627     2016
## 2628     2015
## 2629     2016
## 2630     2016
## 2631     2016
## 2632     2016
## 2633     2016
## 2634     2016
## 2635     2016
## 2636     2016
## 2637     2016
## 2638     2016
## 2639     2016
## 2640     2016
## 2641     2016
## 2642     2016
## 2643     2016
## 2644     2016
## 2645     2016
## 2646     2016
## 2647     2016
## 2648     2016
## 2649     2016
## 2650     2016
## 2651     2016
## 2652     2016
## 2653     2016
## 2654     2016
## 2655     2016
## 2656     2016
## 2657     2016
## 2658     2016
## 2659     2016
## 2660     2016
## 2661     2016
## 2662     2016
## 2663     2007
## 2664     2007
## 2665     2006
## 2666     2007
## 2667     2006
## 2668     2006
## 2669     2007
## 2670     2007
## 2671     2006
## 2672     2006
## 2673     2006
## 2674     2006
## 2675     2006
## 2676     2006
## 2677     2006
## 2678     2006
## 2679     2006
## 2680     2006
## 2681     2006
## 2682     2006
## 2683     2006
## 2684     2006
## 2685     2007
## 2686     2006
## 2687     2006
## 2688     2007
## 2689     2006
## 2690     2006
## 2691     2006
## 2692     2005
## 2693     2005
## 2694     2005
## 2695     2005
## 2696     2005
## 2697     2005
## 2698     2005
## 2699     2005
## 2700     2005
## 2701     2005
## 2702     2005
## 2703     2005
## 2704     2005
## 2705     2005
## 2706     2005
## 2707     2005
## 2708     2005
## 2709     2005
## 2710     2005
## 2711     2005
## 2712     2005
## 2713     2005
## 2714     2005
## 2715     2005
## 2716     2005
## 2717     2005
## 2718     2005
## 2719     2005
## 2720     2005
## 2721     2005
## 2722     2005
## 2723     2005
## 2724     2005
## 2725     2005
## 2726     2005
## 2727     2005
## 2728     2005
## 2729     2005
## 2730     2005
## 2731     2005
## 2732     2005
## 2733     2005
## 2734     2005
## 2735     2005
## 2736     2005
## 2737     2005
## 2738     2005
## 2739     2005
## 2740     2005
## 2741     2005
## 2742     2005
## 2743     2005
## 2744     2005
## 2745     2005
## 2746     2005
## 2747     2005
## 2748     2005
## 2749     2005
## 2750     2005
## 2751     2005
## 2752     2005
## 2753     2005
## 2754     2005
## 2755     2005
## 2756     2005
## 2757     2005
## 2758     2005
## 2759     2005
## 2760     2005
## 2761     2005
## 2762     2005
## 2763     2005
## 2764     2005
## 2765     2005
## 2766     2005
## 2767     2005
## 2768     2005
## 2769     2005
## 2770     2005
## 2771     2005
## 2772     2005
## 2773     2005
## 2774     2005
## 2775     2005
## 2776     2005
## 2777     2005
## 2778     2005
## 2779     2005
## 2780     2005
## 2781     2005
## 2782     2005
## 2783     2005
## 2784     2005
## 2785     2005
## 2786     2005
## 2787     2005
## 2788     2005
## 2789     2005
## 2790     2005
## 2791     2005
## 2792     2005
## 2793     2005
## 2794     2005
## 2795     2005
## 2796     2005
## 2797     2005
## 2798     2005
## 2799     2005
## 2800     2005
## 2801     2005
## 2802     2005
## 2803     2005
## 2804     2005
## 2805     2005
## 2806     2005
## 2807     2005
## 2808     2005
## 2809     2005
## 2810     2005
## 2811     2005
## 2812     2005
## 2813     2005
## 2814     2005
## 2815     2005
## 2816     2005
## 2817     2005
## 2818     2005
## 2819     2005
## 2820     2005
## 2821     2005
## 2822     2005
## 2823     2005
## 2824     2005
## 2825     2005
## 2826     2005
## 2827     2005
## 2828     2005
## 2829     2005
## 2830     2005
## 2831     2005
## 2832     2005
## 2833     2005
## 2834     2005
## 2835     2005
## 2836     2005
## 2837     2005
## 2838     2005
## 2839     2005
## 2840     2005
## 2841     2005
## 2842     2005
## 2843     2005
## 2844     2005
## 2845     2005
## 2846     2005
## 2847     2005
## 2848     2005
## 2849     2005
## 2850     2005
## 2851     2005
## 2852     2005
## 2853     2005
## 2854     2005
## 2855     2005
## 2856     2005
## 2857     2005
## 2858     2005
## 2859     2005
## 2860     2005
## 2861     2005
## 2862     2005
## 2863     2005
## 2864     2005
## 2865     2005
## 2866     2005
## 2867     2005
## 2868     2005
## 2869     2005
## 2870     2005
## 2871     2005
## 2872     2005
## 2873     2005
## 2874     2005
## 2875     2005
## 2876     2005
## 2877     2005
## 2878     2005
## 2879     2005
## 2880     2005
## 2881     2005
## 2882     2005
## 2883     2005
## 2884     2005
## 2885     2005
## 2886     2005
## 2887     2005
## 2888     2005
## 2889     2005
## 2890     2005
## 2891     2005
## 2892     2005
## 2893     2005
## 2894     2005
## 2895     2005
## 2896     2005
## 2897     2005
## 2898     2005
## 2899     2005
## 2900     2005
## 2901     2005
## 2902     2005
## 2903     2005
## 2904     2005
## 2905     2005
## 2906     2005
## 2907     2005
## 2908     2005
## 2909     2005
## 2910     2005
## 2911     2005
## 2912     2005
## 2913     2005
## 2914     2005
## 2915     2005
## 2916     2005
## 2917     2005
## 2918     2005
## 2919     2005
## 2920     2005
## 2921     2005
## 2922     2005
## 2923     2005
## 2924     2005
## 2925     2005
## 2926     2005
## 2927     2005
## 2928     2005
## 2929     2005
## 2930     2005
## 2931     2005
## 2932     2005
## 2933     2005
## 2934     2005
## 2935     2005
## 2936     2005
## 2937     2005
## 2938     2005
## 2939     2005
## 2940     2005
## 2941     2005
## 2942     2005
## 2943     2005
## 2944     2005
## 2945     2005
## 2946     2005
## 2947     2005
## 2948     2005
## 2949     2005
## 2950     2005
## 2951     2005
## 2952     2005
## 2953     2005
## 2954     2005
## 2955     2005
## 2956     2005
## 2957     2005
## 2958     2005
## 2959     2005
## 2960     2005
## 2961     2005
## 2962     2005
## 2963     2005
## 2964     2005
## 2965     2005
## 2966     2005
## 2967     2005
## 2968     2005
## 2969     2005
## 2970     2005
## 2971     2005
## 2972     2005
## 2973     2005
## 2974     2005
## 2975     2005
## 2976     2005
## 2977     2005
## 2978     2005
## 2979     2005
## 2980     2005
## 2981     2005
## 2982     2005
## 2983     2005
## 2984     2005
## 2985     2005
## 2986     2005
## 2987     2005
## 2988     2005
## 2989     2005
## 2990     2005
## 2991     2005
## 2992     2005
## 2993     2005
## 2994     2005
## 2995     2005
## 2996     2005
## 2997     2005
## 2998     2005
## 2999     2005
## 3000     2005
## 3001     2005
## 3002     2005
## 3003     2005
## 3004     2005
## 3005     2005
## 3006     2005
## 3007     2005
## 3008     2005
## 3009     2005
## 3010     2005
## 3011     2005
## 3012     2005
## 3013     2005
## 3014     2005
## 3015     2005
## 3016     2005
## 3017     2005
## 3018     2005
## 3019     2005
## 3020     2005
## 3021     2005
## 3022     2005
## 3023     2005
## 3024     2005
## 3025     2005
## 3026     2005
## 3027     2005
## 3028     2005
## 3029     2005
## 3030     2005
## 3031     2005
## 3032     2005
## 3033     2005
## 3034     2005
## 3035     2005
## 3036     2005
## 3037     2005
## 3038     2005
## 3039     2005
## 3040     2005
## 3041     2005
## 3042     2005
## 3043     2005
## 3044     2005
## 3045     2005
## 3046     2005
## 3047     2005
## 3048     2005
## 3049     2005
## 3050     2005
## 3051     2005
## 3052     2005
## 3053     2005
## 3054     2005
## 3055     1997
## 3056     1997
## 3057     1997
## 3058     1997
## 3059     1997
## 3060     1997
## 3061     1997
## 3062     1997
## 3063     1997
## 3064     1997
## 3065     1997
## 3066     1997
## 3067     1997
## 3068     1997
## 3069     1997
## 3070     1997
## 3071     1997
## 3072     1997
## 3073     1997
## 3074     1997
## 3075     1997
## 3076     1997
## 3077     1997
## 3078     1997
## 3079     1997
## 3080     1997
## 3081     1997
## 3082     1997
## 3083     1997
## 3084     1997
## 3085     1997
## 3086     1997
## 3087     1997
## 3088     1997
## 3089     1997
## 3090     1997
## 3091     1997
## 3092     1997
## 3093     1997
## 3094     1997
## 3095     1997
## 3096     1997
## 3097     1997
## 3098     1997
## 3099     1997
## 3100     1997
## 3101     1997
## 3102     1997
## 3103     1997
## 3104     1997
## 3105     1997
## 3106     1997
## 3107     1997
## 3108     1997
## 3109     1997
## 3110     1997
## 3111     1997
## 3112     1997
## 3113     1997
## 3114     1997
## 3115     1997
## 3116     1997
## 3117     1997
## 3118     1997
## 3119     1997
## 3120     1997
## 3121     1997
## 3122     1997
## 3123     1997
## 3124     1997
## 3125     1997
## 3126     1997
## 3127     1997
## 3128     1997
## 3129     1997
## 3130     1997
## 3131     1997
## 3132     1997
## 3133     1997
## 3134     1997
## 3135     1997
## 3136     1997
## 3137     1997
## 3138     1997
## 3139     1997
## 3140     1997
## 3141     1997
## 3142     1997
## 3143     1997
## 3144     1997
## 3145     1997
## 3146     1997
## 3147     1997
## 3148     1997
## 3149     1997
## 3150     1997
## 3151     1997
## 3152     1997
## 3153     1997
## 3154     1997
## 3155     1997
## 3156     1997
## 3157     1997
## 3158     1997
## 3159     1997
## 3160     1997
## 3161     1997
## 3162     1997
## 3163     1997
## 3164     1997
## 3165     1997
## 3166     1997
## 3167     1997
## 3168     1997
## 3169     1997
## 3170     1997
## 3171     1997
## 3172     1997
## 3173     1997
## 3174     1997
## 3175     1997
## 3176     1997
## 3177     1997
## 3178     1997
## 3179     1997
## 3180     1997
## 3181     1997
## 3182     1997
## 3183     1997
## 3184     1997
## 3185     1997
## 3186     1997
## 3187     1997
## 3188     1997
## 3189     1997
## 3190     1997
## 3191     1997
## 3192     1997
## 3193     1997
## 3194     1997
## 3195     1997
## 3196     1997
## 3197     1997
## 3198     1997
## 3199     1997
## 3200     1997
## 3201     1997
## 3202     1997
## 3203     1997
## 3204     1997
## 3205     1997
## 3206     1997
## 3207     1997
## 3208     1997
## 3209     1997
## 3210     1997
## 3211     1997
## 3212     1997
## 3213     1997
## 3214     1997
## 3215     1997
## 3216     1997
## 3217     1997
## 3218     1997
## 3219     1997
## 3220     1997
## 3221     1997
## 3222     1997
## 3223     1997
## 3224     1997
## 3225     1997
## 3226     1997
## 3227     1997
## 3228     1997
## 3229     1997
## 3230     1997
## 3231     1997
## 3232     1997
## 3233     1997
## 3234     1997
## 3235     1997
## 3236     1997
## 3237     1997
## 3238     1997
## 3239     1997
## 3240     1997
## 3241     1997
## 3242     1997
## 3243     1997
## 3244     1997
## 3245     1997
## 3246     1997
## 3247     1997
## 3248     1997
## 3249     1997
## 3250     1997
## 3251     1997
## 3252     1997
## 3253     1997
## 3254     1997
## 3255     1997
## 3256     1997
## 3257     1997
## 3258     1997
## 3259     1997
## 3260     1997
## 3261     1997
## 3262     1997
## 3263     1997
## 3264     1997
## 3265     1997
## 3266     1997
## 3267     1997
## 3268     1997
## 3269     1997
## 3270     1997
## 3271     1997
## 3272     1997
## 3273     1997
## 3274     1997
## 3275     1997
## 3276     1997
## 3277     1997
## 3278     1997
## 3279     1997
## 3280     1997
## 3281     1997
## 3282     1997
## 3283     1997
## 3284     1997
## 3285     1997
## 3286     1997
## 3287     1997
## 3288     1997
## 3289     1997
## 3290     1997
## 3291     1997
## 3292     1997
## 3293     1997
## 3294     1997
## 3295     1997
## 3296     1997
## 3297     1997
## 3298     1997
## 3299     1997
## 3300     1997
## 3301     1997
## 3302     1997
## 3303     1997
## 3304     1997
## 3305     1997
## 3306     1997
## 3307     1997
## 3308     1997
## 3309     1997
## 3310     1997
## 3311     1997
## 3312     1997
## 3313     1997
## 3314     1997
## 3315     1997
## 3316     1997
## 3317     1997
## 3318     1997
## 3319     1997
## 3320     1997
## 3321     1997
## 3322     1997
## 3323     1997
## 3324     1997
## 3325     1997
## 3326     1997
## 3327     1997
## 3328     1997
## 3329     1997
## 3330     1997
## 3331     1997
## 3332     1997
## 3333     1997
## 3334     1997
## 3335     1997
## 3336     1997
## 3337     1997
## 3338     1997
## 3339     1997
## 3340     1997
## 3341     1997
## 3342     1997
## 3343     1997
## 3344     1997
## 3345     1997
## 3346     1997
## 3347     1997
## 3348     1997
## 3349     1997
## 3350     1997
## 3351     1997
## 3352     1997
## 3353     1997
## 3354     1997
## 3355     1997
## 3356     1997
## 3357     1997
## 3358     1997
## 3359     1997
## 3360     1997
## 3361     1997
## 3362     1997
## 3363     1997
## 3364     1997
## 3365     1997
## 3366     1997
## 3367     1997
## 3368     1997
## 3369     1997
## 3370     1997
## 3371     1997
## 3372     1997
## 3373     1997
## 3374     1997
## 3375     1997
## 3376     1997
## 3377     1997
## 3378     1997
## 3379     1997
## 3380     1997
## 3381     1997
## 3382     1997
## 3383     1997
## 3384     1997
## 3385     1997
## 3386     1997
## 3387     1997
## 3388     1997
## 3389     1997
## 3390     1997
## 3391     1997
## 3392     1997
## 3393     1997
## 3394     1997
## 3395     1997
## 3396     1997
## 3397     1997
## 3398     1997
## 3399     1997
## 3400     1997
## 3401     1997
## 3402     1997
## 3403     1997
## 3404     1997
## 3405     1997
## 3406     1997
## 3407     1997
## 3408     1997
## 3409     1997
## 3410     1997
## 3411     1997
## 3412     1997
## 3413     1997
## 3414     1997
## 3415     1997
## 3416     1997
## 3417     1997
## 3418     1997
## 3419     1997
## 3420     1997
## 3421     1997
## 3422     1997
## 3423     1997
## 3424     1997
## 3425     1997
## 3426     1997
## 3427     1997
## 3428     1997
## 3429     1997
## 3430     1997
## 3431     1997
## 3432     1997
## 3433     1997
## 3434     1997
## 3435     1997
## 3436     1997
## 3437     1997
## 3438     1997
## 3439     1997
## 3440     1997
## 3441     1997
## 3442     1997
## 3443     1997
## 3444     1997
## 3445     1997
## 3446     1997
## 3447     1997
## 3448     1997
## 3449     1997
## 3450     1997
## 3451     1997
## 3452     1997
## 3453     1997
## 3454     1997
## 3455     1997
## 3456     1997
## 3457     1997
## 3458     1997
## 3459     1997
## 3460     1997
## 3461     1997
## 3462     1997
## 3463     1997
## 3464     1997
## 3465     1997
## 3466     1997
## 3467     1997
## 3468     1997
## 3469     1997
## 3470     1997
## 3471     1997
## 3472     1997
## 3473     1997
## 3474     1997
## 3475     1997
## 3476     1997
## 3477     1997
## 3478     1997
## 3479     1997
## 3480     1997
## 3481     1997
## 3482     1997
## 3483     1997
## 3484     1997
## 3485     1997
## 3486     1997
## 3487     1997
## 3488     1997
## 3489     1997
## 3490     1997
## 3491     1997
## 3492     1997
## 3493     1997
## 3494     1997
## 3495     1997
## 3496     1997
## 3497     1997
## 3498     1997
## 3499     1997
## 3500     1997
## 3501     1997
## 3502     1997
## 3503     1997
## 3504     1997
## 3505     1997
## 3506     1997
## 3507     1997
## 3508     1997
## 3509     1997
## 3510     1997
## 3511     1997
## 3512     1997
## 3513     1997
## 3514     1997
## 3515     1997
## 3516     1997
## 3517     1997
## 3518     1997
## 3519     1997
## 3520     1997
## 3521     1997
## 3522     1997
## 3523     1997
## 3524     1997
## 3525     1997
## 3526     1997
## 3527     1997
## 3528     1997
## 3529     2009
## 3530     2009
## 3531     2009
## 3532     2008
## 3533     2009
## 3534     2009
## 3535     2009
## 3536     2008
## 3537     2009
## 3538     2008
## 3539     2009
## 3540     2009
## 3541     2008
## 3542     2009
## 3543     2009
## 3544     2009
## 3545     2009
## 3546     2009
## 3547     2009
## 3548     2009
## 3549     2009
## 3550     2009
## 3551     2008
## 3552     2009
## 3553     2009
## 3554     2009
## 3555     2009
## 3556     2009
## 3557     2009
## 3558     2009
## 3559     2008
## 3560     2008
## 3561     2009
## 3562     2008
## 3563     2008
## 3564     2009
## 3565     2009
## 3566     2008
## 3567     2009
## 3568     2008
## 3569     2008
## 3570     2009
## 3571     2008
## 3572     2008
## 3573     2008
## 3574     2009
## 3575     2009
## 3576     2009
## 3577     2008
## 3578     2009
## 3579     2009
## 3580     2009
## 3581     2009
## 3582     2009
## 3583     2008
## 3584     2008
## 3585     2009
## 3586     2008
## 3587     2008
## 3588     2008
## 3589     2008
## 3590     2008
## 3591     2009
## 3592     2009
## 3593     2009
## 3594     2009
## 3595     2008
## 3596     2008
## 3597     2009
## 3598     2009
## 3599     2008
## 3600     2008
## 3601     2008
## 3602     2009
## 3603     2008
## 3604     2009
## 3605     2008
## 3606     2009
## 3607     2008
## 3608     2008
## 3609     2008
## 3610     2008
## 3611     2008
## 3612     2008
## 3613     2008
## 3614     2008
## 3615     2008
## 3616     2009
## 3617     2008
## 3618     2008
## 3619     2009
## 3620     2009
## 3621     2008
## 3622     2009
## 3623     2008
## 3624     2008
## 3625     2009
## 3626     2009
## 3627     1997
## 3628     1997
## 3629     1997
## 3630     1997
## 3631     1997
## 3632     1997
## 3633     1997
## 3634     1997
## 3635     1997
## 3636     1997
## 3637     1997
## 3638     1997
## 3639     1997
## 3640     1997
## 3641     1997
## 3642     1997
## 3643     1997
## 3644     1997
## 3645     1997
## 3646     1997
## 3647     1997
## 3648     1997
## 3649     1997
## 3650     1997
## 3651     1997
## 3652     1997
## 3653     1997
## 3654     1997
## 3655     1997
## 3656     1997
## 3657     1997
## 3658     1997
## 3659     1997
## 3660     1997
## 3661     1997
## 3662     1997
## 3663     1997
## 3664     1997
## 3665     1997
## 3666     1997
## 3667     1997
## 3668     1997
## 3669     1997
## 3670     1997
## 3671     1997
## 3672     1997
## 3673     1997
## 3674     1997
## 3675     1997
## 3676     1997
## 3677     1997
## 3678     1997
## 3679     1997
## 3680     1997
## 3681     1997
## 3682     1997
## 3683     1997
## 3684     1997
## 3685     1997
## 3686     1997
## 3687     1997
## 3688     1997
## 3689     1997
## 3690     1997
## 3691     1997
## 3692     1997
## 3693     1997
## 3694     1997
## 3695     1997
## 3696     1997
## 3697     1997
## 3698     1997
## 3699     1997
## 3700     1997
## 3701     1997
## 3702     1997
## 3703     1997
## 3704     1997
## 3705     1997
## 3706     1997
## 3707     1997
## 3708     1997
## 3709     1997
## 3710     1997
## 3711     1997
## 3712     1997
## 3713     1997
## 3714     1997
## 3715     1997
## 3716     1997
## 3717     1997
## 3718     1997
## 3719     1997
## 3720     1997
## 3721     1997
## 3722     1997
## 3723     1997
## 3724     1997
## 3725     1997
## 3726     1997
## 3727     1997
## 3728     1997
## 3729     1997
## 3730     1997
## 3731     1997
## 3732     1997
## 3733     1997
## 3734     1997
## 3735     1997
## 3736     1997
## 3737     1997
## 3738     1997
## 3739     1997
## 3740     1997
## 3741     1997
## 3742     1997
## 3743     1997
## 3744     1997
## 3745     1997
## 3746     1997
## 3747     1997
## 3748     1997
## 3749     1997
## 3750     1997
## 3751     1997
## 3752     1997
## 3753     1997
## 3754     1997
## 3755     1997
## 3756     1997
## 3757     1997
## 3758     1997
## 3759     1997
## 3760     1997
## 3761     1997
## 3762     1997
## 3763     1997
## 3764     1997
## 3765     1997
## 3766     1997
## 3767     1997
## 3768     1997
## 3769     1997
## 3770     1997
## 3771     1997
## 3772     1997
## 3773     1997
## 3774     1997
## 3775     1997
## 3776     1997
## 3777     1997
## 3778     1997
## 3779     1997
## 3780     1997
## 3781     1997
## 3782     1997
## 3783     1997
## 3784     1997
## 3785     1997
## 3786     1997
## 3787     1997
## 3788     1997
## 3789     2005
## 3790     2005
## 3791     2005
## 3792     2005
## 3793     2005
## 3794     2005
## 3795     2005
## 3796     2005
## 3797     2005
## 3798     2005
## 3799     2005
## 3800     2005
## 3801     2005
## 3802     2005
## 3803     2005
## 3804     2005
## 3805     2005
## 3806     2005
## 3807     2005
## 3808     2005
## 3809     2005
## 3810     2005
## 3811     2005
## 3812     2005
## 3813     2005
## 3814     2005
## 3815     2005
## 3816     2005
## 3817     2005
## 3818     2005
## 3819     2005
## 3820     2005
## 3821     2005
## 3822     2005
## 3823     2005
## 3824     2005
## 3825     2005
## 3826     2005
## 3827     2005
## 3828     2005
## 3829     2005
## 3830     2005
## 3831     2005
## 3832     2005
## 3833     2005
## 3834     2005
## 3835     2005
## 3836     2005
## 3837     2005
## 3838     2005
## 3839     2005
## 3840     2005
## 3841     2005
## 3842     2005
## 3843     2005
## 3844     2005
## 3845     2005
## 3846     2005
## 3847     2005
## 3848     2005
## 3849     2005
## 3850     2005
## 3851     2005
## 3852     2005
## 3853     2005
## 3854     2005
## 3855     2005
## 3856     2005
## 3857     2005
## 3858     2005
## 3859     2005
## 3860     2005
## 3861     2005
## 3862     2005
## 3863     2005
## 3864     2005
## 3865     2005
## 3866     2005
## 3867     2005
## 3868     2005
## 3869     2005
## 3870     2005
## 3871     2005
## 3872     2005
## 3873     2005
## 3874     2005
## 3875     2005
## 3876     2005
## 3877     2005
## 3878     2005
## 3879     2005
## 3880     2005
## 3881     2005
## 3882     2005
## 3883     2005
## 3884     2005
## 3885     2005
## 3886     2005
## 3887     2005
## 3888     2005
## 3889     2005
## 3890     2005
## 3891     2005
## 3892     2005
## 3893     2005
## 3894     2005
## 3895     2005
## 3896     2005
## 3897     2005
## 3898     2005
## 3899     2005
## 3900     2005
## 3901     2005
## 3902     2005
## 3903     2005
## 3904     2005
## 3905     2005
## 3906     2005
## 3907     2005
## 3908     2005
## 3909     2005
## 3910     2005
## 3911     2005
## 3912     2005
## 3913     2005
## 3914     2005
## 3915     2005
## 3916     2005
## 3917     2005
## 3918     2005
## 3919     2005
## 3920     2005
## 3921     2005
## 3922     2005
## 3923     2005
## 3924     2005
## 3925     2005
## 3926     2005
## 3927     2005
## 3928     2005
## 3929     2005
## 3930     2005
## 3931     2005
## 3932     2005
## 3933     2005
## 3934     2005
## 3935     2005
## 3936     2005
## 3937     2005
## 3938     2005
## 3939     2005
## 3940     2005
## 3941     2005
## 3942     2005
## 3943     2005
## 3944     2005
## 3945     2005
## 3946     2005
## 3947     2005
## 3948     2005
## 3949     2005
## 3950     2005
## 3951     2005
## 3952     2005
## 3953     2005
## 3954     2005
## 3955     2005
## 3956     2005
## 3957     2005
## 3958     2005
## 3959     2005
## 3960     2005
## 3961     2005
## 3962     2005
## 3963     2005
## 3964     2005
## 3965     2005
## 3966     2005
## 3967     2005
## 3968     2005
## 3969     2005
## 3970     2005
## 3971     2005
## 3972     2005
## 3973     2005
## 3974     2005
## 3975     2005
## 3976     2005
## 3977     2005
## 3978     2005
## 3979     2005
## 3980     2005
## 3981     2005
## 3982     2005
## 3983     2005
## 3984     2005
## 3985     2005
## 3986     2005
## 3987     2005
## 3988     2005
## 3989     2005
## 3990     2005
## 3991     2005
## 3992     2005
## 3993     2005
## 3994     2005
## 3995     2005
## 3996     2005
## 3997     2005
## 3998     2005
## 3999     2005
## 4000     2005
## 4001     2005
## 4002     2005
## 4003     2005
## 4004     2005
## 4005     2005
## 4006     2005
## 4007     2005
## 4008     2005
## 4009     2006
## 4010     2006
## 4011     2006
## 4012     2006
## 4013     2006
## 4014     2006
## 4015     2006
## 4016     2006
## 4017     2006
## 4018     2006
## 4019     2006
## 4020     2006
## 4021     2006
## 4022     2006
## 4023     2006
## 4024     2006
## 4025     2006
## 4026     2006
## 4027     2006
## 4028     2006
## 4029     2006
## 4030     2006
## 4031     2006
## 4032     2006
## 4033     2006
## 4034     2006
## 4035     2006
## 4036     2006
## 4037     2006
## 4038     2006
## 4039     2006
## 4040     2006
## 4041     2006
## 4042     2006
## 4043     2006
## 4044     2006
## 4045     2006
## 4046     2006
## 4047     2006
## 4048     2006
## 4049     2006
## 4050     2006
## 4051     2006
## 4052     2006
## 4053     2006
## 4054     2006
## 4055     2006
## 4056     2006
## 4057     2006
## 4058     2006
## 4059     2006
## 4060     2006
## 4061     2006
## 4062     2006
## 4063     2006
## 4064     2006
## 4065     2006
## 4066     2006
## 4067     2006
## 4068     2006
## 4069     2006
## 4070     2006
## 4071     2006
## 4072     2006
## 4073     2006
## 4074     2006
## 4075     2006
## 4076     2006
## 4077     2006
## 4078     2006
## 4079     2006
## 4080     2006
## 4081     2006
## 4082     2006
## 4083     2006
## 4084     2006
## 4085     2006
## 4086     2006
## 4087     2006
## 4088     2006
## 4089     2006
## 4090     2006
## 4091     2006
## 4092     2006
## 4093     2006
## 4094     2006
## 4095     2006
## 4096     2006
## 4097     2006
## 4098     2006
## 4099     2006
## 4100     2006
## 4101     2006
## 4102     2006
## 4103     2006
## 4104     2006
## 4105     2006
## 4106     2006
## 4107     2006
## 4108     2006
## 4109     2006
## 4110     2006
## 4111     2006
## 4112     2006
## 4113     2006
## 4114     2006
## 4115     2006
## 4116     2006
## 4117     2006
## 4118     2006
## 4119     2006
## 4120     2006
## 4121     2006
## 4122     2006
## 4123     2006
## 4124     2006
## 4125     2006
## 4126     2006
## 4127     2006
## 4128     2006
## 4129     2006
## 4130     2006
## 4131     2006
## 4132     2006
## 4133     2006
## 4134     2006
## 4135     2006
## 4136     2006
## 4137     2006
## 4138     2006
## 4139     2006
## 4140     2006
## 4141     2006
## 4142     2006
## 4143     2006
## 4144     2006
## 4145     2006
## 4146     2006
## 4147     2006
## 4148     2006
## 4149     2006
## 4150     2006
## 4151     2006
## 4152     2006
## 4153     2006
## 4154     2006
## 4155     2006
## 4156     2006
## 4157     2006
## 4158     2006
## 4159     2006
## 4160     2006
## 4161     2006
## 4162     2006
## 4163     2006
## 4164     2006
## 4165     2006
## 4166     2006
## 4167     2006
## 4168     2006
## 4169     2006
## 4170     2006
## 4171     2006
## 4172     2006
## 4173     2006
## 4174     2006
## 4175     2006
## 4176     2006
## 4177     2006
## 4178     2006
## 4179     2006
## 4180     2006
## 4181     2006
## 4182     2006
## 4183     2006
## 4184     2006
## 4185     2006
## 4186     2006
## 4187     2006
## 4188     2006
## 4189     2006
## 4190     2006
## 4191     2006
## 4192     2006
## 4193     2006
## 4194     2006
## 4195     2006
## 4196     2006
## 4197     2006
## 4198     2006
## 4199     2006
## 4200     2006
## 4201     2006
## 4202     2006
## 4203     2006
## 4204     2006
## 4205     2006
## 4206     2006
## 4207     2006
## 4208     2006
## 4209     2006
## 4210     2006
## 4211     2006
## 4212     2006
## 4213     2006
## 4214     2006
## 4215     2006
## 4216     2006
## 4217     2006
## 4218     2006
## 4219     2006
## 4220     2006
## 4221     2006
## 4222     2006
## 4223     2006
## 4224     2006
## 4225     2006
## 4226     2006
## 4227     2006
## 4228     2006
## 4229     2006
## 4230     2006
## 4231     2006
## 4232     2006
## 4233     2006
## 4234     2006
## 4235     2006
## 4236     2006
## 4237     2006
## 4238     2006
## 4239     2006
## 4240     2006
## 4241     2006
## 4242     2006
## 4243     2006
## 4244     2006
## 4245     2006
## 4246     2006
## 4247     2006
## 4248     2006
## 4249     2006
## 4250     2006
## 4251     2006
## 4252     2006
## 4253     2006
## 4254     2006
## 4255     2006
## 4256     2006
## 4257     2006
## 4258     2006
## 4259     2006
## 4260     2006
## 4261     2006
## 4262     2006
## 4263     2006
## 4264     2006
## 4265     2006
## 4266     2006
## 4267     2006
## 4268     2006
## 4269     2006
## 4270     2006
## 4271     2006
## 4272     2006
## 4273     2006
## 4274     2006
## 4275     2006
## 4276     2006
## 4277     2006
## 4278     2006
## 4279     2006
## 4280     2006
## 4281     2006
## 4282     2006
## 4283     2006
## 4284     2006
## 4285     2006
## 4286     2006
## 4287     2006
## 4288     2006
## 4289     2006
## 4290     2006
## 4291     2006
## 4292     2006
## 4293     2006
## 4294     2006
## 4295     2006
## 4296     2006
## 4297     2006
## 4298     2006
## 4299     2006
## 4300     2006
## 4301     2006
## 4302     2006
## 4303     2006
## 4304     2006
## 4305     2006
## 4306     2006
## 4307     2006
## 4308     2006
## 4309     2006
## 4310     2006
## 4311     2006
## 4312     2006
## 4313     2006
## 4314     2006
## 4315     2006
## 4316     2006
## 4317     2006
## 4318     2006
## 4319     2006
## 4320     2006
## 4321     2006
## 4322     2006
## 4323     2006
## 4324     2006
## 4325     2006
## 4326     2006
## 4327     2006
## 4328     2006
## 4329     2006
## 4330     2006
## 4331     2006
## 4332     2006
## 4333     2006
## 4334     2006
## 4335     2006
## 4336     2006
## 4337     2006
## 4338     2006
## 4339     2006
## 4340     2006
## 4341     2006
## 4342     2006
## 4343     2006
## 4344     2006
## 4345     2006
## 4346     2006
## 4347     2006
## 4348     2006
## 4349     2006
## 4350     2006
## 4351     2006
## 4352     2006
## 4353     2006
## 4354     2006
## 4355     2006
## 4356     2006
## 4357     2006
## 4358     2006
## 4359     2006
## 4360     2006
## 4361     2006
## 4362     2006
## 4363     2006
## 4364     2006
## 4365     2006
## 4366     2006
## 4367     2006
## 4368     2006
## 4369     2006
## 4370     2006
## 4371     2006
## 4372     2006
## 4373     2006
## 4374     2006
## 4375     2006
## 4376     2006
## 4377     2006
## 4378     2006
## 4379     2006
## 4380     2006
## 4381     2006
## 4382     2006
## 4383     2006
## 4384     2006
## 4385     2006
## 4386     2006
## 4387     2006
## 4388     2006
## 4389     2006
## 4390     2006
## 4391     2006
## 4392     2006
## 4393     2006
## 4394     2006
## 4395     2006
## 4396     2006
## 4397     2006
## 4398     2006
## 4399     2006
## 4400     2006
## 4401     2006
## 4402     2006
## 4403     2006
## 4404     2006
## 4405     2006
## 4406     2006
## 4407     2006
## 4408     2006
## 4409     2006
## 4410     2006
## 4411     2006
## 4412     2006
## 4413     2006
## 4414     2006
## 4415     2006
## 4416     2006
## 4417     2006
## 4418     2006
## 4419     2006
## 4420     2006
## 4421     2006
## 4422     2006
## 4423     2006
## 4424     2006
## 4425     2006
## 4426     2006
## 4427     2006
## 4428     2006
## 4429     2006
## 4430     2006
## 4431     2006
## 4432     2006
## 4433     2006
## 4434     2006
## 4435     2006
## 4436     2006
## 4437     2006
## 4438     2006
## 4439     2006
## 4440     2006
## 4441     2006
## 4442     2006
## 4443     2006
## 4444     2006
## 4445     2006
## 4446     2006
## 4447     2006
## 4448     2006
## 4449     2006
## 4450     2006
## 4451     2006
## 4452     2006
## 4453     2006
## 4454     2006
## 4455     2006
## 4456     2006
## 4457     2006
## 4458     2006
## 4459     2006
## 4460     2006
## 4461     2006
## 4462     2006
## 4463     2006
## 4464     2006
## 4465     2006
## 4466     2006
## 4467     2006
## 4468     2006
## 4469     2006
## 4470     2006
## 4471     2006
## 4472     2006
## 4473     2006
## 4474     2006
## 4475     2006
## 4476     2006
## 4477     2006
## 4478     2006
## 4479     2006
## 4480     2006
## 4481     2006
## 4482     2006
## 4483     2006
## 4484     2006
## 4485     2006
## 4486     2006
## 4487     2006
## 4488     2006
## 4489     2006
## 4490     2006
## 4491     2006
## 4492     2006
## 4493     2006
## 4494     2006
## 4495     2006
## 4496     2006
## 4497     2006
## 4498     2006
## 4499     2006
## 4500     2006
## 4501     2006
## 4502     2006
## 4503     2006
## 4504     2006
## 4505     2006
## 4506     2006
## 4507     2006
## 4508     2006
## 4509     2006
## 4510     2006
## 4511     2006
## 4512     2006
## 4513     2006
## 4514     2006
## 4515     2006
## 4516     2006
## 4517     2006
## 4518     2006
## 4519     2006
## 4520     2006
## 4521     2006
## 4522     2006
## 4523     2006
## 4524     2006
## 4525     2006
## 4526     2006
## 4527     2006
## 4528     2006
## 4529     2006
## 4530     2006
## 4531     2006
## 4532     2006
## 4533     2006
## 4534     2006
## 4535     2006
## 4536     2006
## 4537     2006
## 4538     2006
## 4539     2006
## 4540     2006
## 4541     2006
## 4542     2006
## 4543     2006
## 4544     2006
## 4545     2006
## 4546     2006
## 4547     2006
## 4548     2006
## 4549     2006
## 4550     2006
## 4551     2006
## 4552     2006
## 4553     2006
## 4554     2006
## 4555     2006
## 4556     2006
## 4557     2006
## 4558     2006
## 4559     2006
## 4560     2006
## 4561     2006
## 4562     2006
## 4563     2006
## 4564     2006
## 4565     2006
## 4566     2006
## 4567     2006
## 4568     2006
## 4569     2006
## 4570     2006
## 4571     2006
## 4572     2006
## 4573     2006
## 4574     2006
## 4575     2006
## 4576     2006
## 4577     2006
## 4578     2006
## 4579     2006
## 4580     2006
## 4581     2006
## 4582     2006
## 4583     2006
## 4584     2006
## 4585     2006
## 4586     2006
## 4587     2006
## 4588     2006
## 4589     2006
## 4590     2006
## 4591     2006
## 4592     2006
## 4593     2006
## 4594     2006
## 4595     2006
## 4596     2006
## 4597     2006
## 4598     2006
## 4599     2006
## 4600     2006
## 4601     2006
## 4602     2006
## 4603     2006
## 4604     2006
## 4605     2006
## 4606     2006
## 4607     2006
## 4608     2006
## 4609     2006
## 4610     2006
## 4611     2006
## 4612     2006
## 4613     2006
## 4614     2006
## 4615     2006
## 4616     2006
## 4617     2006
## 4618     2006
## 4619     2006
## 4620     2006
## 4621     2006
## 4622     2006
## 4623     2006
## 4624     2006
## 4625     2006
## 4626     2006
## 4627     2006
## 4628     2006
## 4629     2006
## 4630     2006
## 4631     2006
## 4632     2006
## 4633     2006
## 4634     2006
## 4635     2006
## 4636     2006
## 4637     2006
## 4638     2006
## 4639     2006
## 4640     2006
## 4641     2006
## 4642     2006
## 4643     2006
## 4644     2006
## 4645     2006
## 4646     2006
## 4647     2006
## 4648     2006
## 4649     2006
## 4650     2006
## 4651     2006
## 4652     2006
## 4653     2006
## 4654     2006
## 4655     2006
## 4656     2006
## 4657     2006
## 4658     2006
## 4659     2006
## 4660     2006
## 4661     2006
## 4662     2006
## 4663     2006
## 4664     2006
## 4665     2006
## 4666     2006
## 4667     2006
## 4668     2006
## 4669     2006
## 4670     2006
## 4671     2006
## 4672     2006
## 4673     2006
## 4674     2006
## 4675     2006
## 4676     2006
## 4677     2006
## 4678     2006
## 4679     2006
## 4680     2006
## 4681     2006
## 4682     2006
## 4683     2006
## 4684     2006
## 4685     2006
## 4686     2006
## 4687     2006
## 4688     2006
## 4689     2006
## 4690     2006
## 4691     2006
## 4692     2006
## 4693     2006
## 4694     2006
## 4695     2006
## 4696     2006
## 4697     2006
## 4698     2006
## 4699     2006
## 4700     2006
## 4701     2006
## 4702     2006
## 4703     2006
## 4704     2006
## 4705     2006
## 4706     2006
## 4707     2006
## 4708     2006
## 4709     2006
## 4710     2006
## 4711     2006
## 4712     2006
## 4713     2006
## 4714     2006
## 4715     2006
## 4716     2006
## 4717     2006
## 4718     2006
## 4719     2006
## 4720     2006
## 4721     2006
## 4722     2006
## 4723     2006
## 4724     2006
## 4725     2006
## 4726     2006
## 4727     2006
## 4728     2006
## 4729     2006
## 4730     2006
## 4731     2006
## 4732     2006
## 4733     2006
## 4734     2006
## 4735     1996
## 4736     1996
## 4737     1996
## 4738     1996
## 4739     1996
## 4740     1996
## 4741     1996
## 4742     1996
## 4743     1996
## 4744     1996
## 4745     1996
## 4746     1996
## 4747     1996
## 4748     1996
## 4749     1996
## 4750     1996
## 4751     1996
## 4752     1996
## 4753     1996
## 4754     1996
## 4755     1996
## 4756     1997
## 4757     1997
## 4758     1997
## 4759     1997
## 4760     1997
## 4761     1997
## 4762     1997
## 4763     1997
## 4764     1997
## 4765     1997
## 4766     1997
## 4767     1997
## 4768     1997
## 4769     1997
## 4770     1997
## 4771     1997
## 4772     1997
## 4773     1997
## 4774     1997
## 4775     1997
## 4776     1997
## 4777     1997
## 4778     1997
## 4779     1997
## 4780     1997
## 4781     1997
## 4782     2013
## 4783     2012
## 4784     2013
## 4785     2013
## 4786     2012
## 4787     2012
## 4788     2013
## 4789     2013
## 4790     2013
## 4791     2013
## 4792     2013
## 4793     2013
## 4794     2013
## 4795     2012
## 4796     2013
## 4797     2013
## 4798     2013
## 4799     2013
## 4800     2013
## 4801     2013
## 4802     2012
## 4803     2013
## 4804     2012
## 4805     2013
## 4806     2013
## 4807     2012
## 4808     2013
## 4809     2012
## 4810     2013
## 4811     2013
## 4812     2012
## 4813     2013
## 4814     2013
## 4815     2013
## 4816     2012
## 4817     2012
## 4818     2012
## 4819     2013
## 4820     2013
## 4821     2012
## 4822     2012
## 4823     2012
## 4824     2012
## 4825     2012
## 4826     2012
## 4827     2013
## 4828     2013
## 4829     2012
## 4830     2012
## 4831     2012
## 4832     2013
## 4833     2012
## 4834     2012
## 4835     2013
## 4836     2012
## 4837     2012
## 4838     2012
## 4839     2012
## 4840     2012
## 4841     2012
## 4842     2012
## 4843     2012
## 4844     2012
## 4845     2012
## 4846     2012
## 4847     2012
## 4848     2012
## 4849     2012
## 4850     2012
## 4851     2012
## 4852     2012
## 4853     2012
## 4854     2012
## 4855     2012
## 4856     2012
## 4857     2012
## 4858     2012
## 4859     2013
## 4860     2012
## 4861     2012
## 4862     2013
## 4863     2012
## 4864     2012
## 4865     2012
## 4866     2013
## 4867     2013
## 4868     2012
## 4869     2012
## 4870     2012
## 4871     2012
## 4872     2013
## 4873     2013
## 4874     2012
## 4875     2012
## 4876     2012
## 4877     2012
## 4878     2012
## 4879     2012
## 4880     2012
## 4881     2012
## 4882     2013
## 4883     2012
## 4884     2012
## 4885     2012
## 4886     2012
## 4887     2012
## 4888     2012
## 4889     2012
## 4890     2012
## 4891     2013
## 4892     2012
## 4893     2013
## 4894     2012
## 4895     2012
## 4896     2012
## 4897     2012
## 4898     2012
## 4899     2012
## 4900     2012
## 4901     2012
## 4902     2012
## 4903     2012
## 4904     2012
## 4905     2012
## 4906     2012
## 4907     2012
## 4908     2012
## 4909     2012
## 4910     2012
## 4911     2012
## 4912     2012
## 4913     2012
## 4914     2013
## 4915     2012
## 4916     2012
## 4917     2012
## 4918     2012
## 4919     2013
## 4920     2012
## 4921     2012
## 4922     2013
## 4923     2012
## 4924     2012
## 4925     2012
## 4926     2012
## 4927     2012
## 4928     2012
## 4929     2012
## 4930     2012
## 4931     2012
## 4932     2012
## 4933     2012
## 4934     2012
## 4935     2012
## 4936     2013
## 4937     2012
## 4938     2012
## 4939     2012
## 4940     2012
## 4941     2012
## 4942     2012
## 4943     2012
## 4944     2013
## 4945     2012
## 4946     2012
## 4947     2012
## 4948     2012
## 4949     2012
## 4950     2012
## 4951     2012
## 4952     2012
## 4953     2012
## 4954     1999
## 4955     1999
## 4956     1999
## 4957     1999
## 4958     1999
## 4959     1999
## 4960     1999
## 4961     1999
## 4962     1999
## 4963     1999
## 4964     1999
## 4965     1999
## 4966     1999
## 4967     1999
## 4968     1999
## 4969     1999
## 4970     1999
## 4971     1999
## 4972     1999
## 4973     1999
## 4974     1999
## 4975     1999
## 4976     1999
## 4977     1999
## 4978     1999
## 4979     1999
## 4980     1999
## 4981     1999
## 4982     1999
## 4983     1999
## 4984     1999
## 4985     1999
## 4986     1999
## 4987     1999
## 4988     1999
## 4989     1999
## 4990     1999
## 4991     1999
## 4992     1999
## 4993     1999
## 4994     1999
## 4995     1999
## 4996     1999
## 4997     1999
## 4998     1999
## 4999     1999
## 5000     1999
## 5001     1999
## 5002     1999
## 5003     1999
## 5004     1999
## 5005     1999
## 5006     1999
## 5007     1999
## 5008     1999
## 5009     1999
## 5010     1999
## 5011     1999
## 5012     1999
## 5013     1999
## 5014     1999
## 5015     1999
## 5016     1999
## 5017     1999
## 5018     1999
## 5019     1999
## 5020     1999
## 5021     1999
## 5022     1999
## 5023     1999
## 5024     1999
## 5025     1999
## 5026     1999
## 5027     2011
## 5028     2011
## 5029     2011
## 5030     2011
## 5031     2011
## 5032     2011
## 5033     2011
## 5034     2011
## 5035     2011
## 5036     2011
## 5037     2011
## 5038     2011
## 5039     2011
## 5040     2011
## 5041     2011
## 5042     2011
## 5043     2011
## 5044     2011
## 5045     2011
## 5046     2011
## 5047     2011
## 5048     2011
## 5049     1999
## 5050     1999
## 5051     1999
## 5052     2000
## 5053     2000
## 5054     1999
## 5055     1999
## 5056     1999
## 5057     1999
## 5058     1999
## 5059     1999
## 5060     1999
## 5061     2002
## 5062     1999
## 5063     2003
## 5064     2001
## 5065     1999
## 5066     1999
## 5067     1999
## 5068     2001
## 5069     1999
## 5070     1999
## 5071     1999
## 5072     1999
## 5073     2001
## 5074     2000
## 5075     1999
## 5076     1999
## 5077     2000
## 5078     1999
## 5079     2000
## 5080     2001
## 5081     2001
## 5082     2001
## 5083     1999
## 5084     1999
## 5085     2001
## 5086     1999
## 5087     2001
## 5088     1999
## 5089     2000
## 5090     1999
## 5091     2000
## 5092     2000
## 5093     2001
## 5094     1999
## 5095     2000
## 5096     2000
## 5097     2001
## 5098     1999
## 5099     1999
## 5100     1999
## 5101     1999
## 5102     2001
## 5103     1999
## 5104     1999
## 5105     2000
## 5106     1999
## 5107     1999
## 5108     1999
## 5109     1999
## 5110     1999
## 5111     1999
## 5112     1999
## 5113     1999
## 5114     1999
## 5115     2000
## 5116     1999
## 5117     2001
## 5118     1999
## 5119     1999
## 5120     1999
## 5121     1999
## 5122     1999
## 5123     2000
## 5124     1999
## 5125     1999
## 5126     2001
## 5127     1999
## 5128     1999
## 5129     1999
## 5130     1999
## 5131     1999
## 5132     1999
## 5133     1999
## 5134     1999
## 5135     1999
## 5136     2000
## 5137     1999
## 5138     1999
## 5139     1999
## 5140     2000
## 5141     1999
## 5142     1999
## 5143     1999
## 5144     1999
## 5145     1999
## 5146     1999
## 5147     1999
## 5148     1999
## 5149     1999
## 5150     1999
## 5151     1999
## 5152     1999
## 5153     1999
## 5154     2000
## 5155     2000
## 5156     2000
## 5157     1999
## 5158     1999
## 5159     1999
## 5160     1999
## 5161     1999
## 5162     1999
## 5163     2000
## 5164     1999
## 5165     1999
## 5166     1999
## 5167     1999
## 5168     1999
## 5169     2000
## 5170     1999
## 5171     1999
## 5172     1999
## 5173     2000
## 5174     1999
## 5175     1999
## 5176     1999
## 5177     1999
## 5178     1999
## 5179     1999
## 5180     1999
## 5181     2000
## 5182     2001
## 5183     1999
## 5184     1999
## 5185     1999
## 5186     1999
## 5187     1999
## 5188     1999
## 5189     1999
## 5190     2000
## 5191     1999
## 5192     1999
## 5193     2000
## 5194     2000
## 5195     2000
## 5196     1999
## 5197     1999
## 5198     1999
## 5199     2000
## 5200     1999
## 5201     1999
## 5202     1999
## 5203     1999
## 5204     1999
## 5205     1999
## 5206     1999
## 5207     2000
## 5208     1999
## 5209     1999
## 5210     2000
## 5211     1999
## 5212     2001
## 5213     2000
## 5214     1999
## 5215     1999
## 5216     1999
## 5217     1999
## 5218     1999
## 5219     1999
## 5220     1999
## 5221     1999
## 5222     2000
## 5223     1999
## 5224     1999
## 5225     1999
## 5226     1999
## 5227     1999
## 5228     1999
## 5229     1999
## 5230     1999
## 5231     1999
## 5232     2000
## 5233     1999
## 5234     2000
## 5235     1999
## 5236     1999
## 5237     2000
## 5238     1999
## 5239     1999
## 5240     1999
## 5241     1999
## 5242     1999
## 5243     2000
## 5244     2000
## 5245     2002
## 5246     1999
## 5247     1999
## 5248     2000
## 5249     1999
## 5250     1999
## 5251     1999
## 5252     1999
## 5253     2000
## 5254     1999
## 5255     1999
## 5256     1999
## 5257     1999
## 5258     1999
## 5259     1999
## 5260     2000
## 5261     1999
## 5262     1999
## 5263     1999
## 5264     1999
## 5265     2000
## 5266     1999
## 5267     1999
## 5268     2000
## 5269     1999
## 5270     1999
## 5271     1999
## 5272     2000
## 5273     1999
## 5274     1999
## 5275     1999
## 5276     1999
## 5277     1999
## 5278     1999
## 5279     1999
## 5280     1999
## 5281     1999
## 5282     1999
## 5283     1999
## 5284     2000
## 5285     1999
## 5286     1999
## 5287     1999
## 5288     1999
## 5289     1999
## 5290     1999
## 5291     1999
## 5292     1999
## 5293     2000
## 5294     1999
## 5295     1999
## 5296     1999
## 5297     1999
## 5298     1999
## 5299     2000
## 5300     1999
## 5301     1999
## 5302     1999
## 5303     1999
## 5304     1999
## 5305     1999
## 5306     1999
## 5307     2000
## 5308     2000
## 5309     1999
## 5310     1999
## 5311     2000
## 5312     1999
## 5313     1999
## 5314     1999
## 5315     1999
## 5316     1999
## 5317     1999
## 5318     1999
## 5319     1999
## 5320     1999
## 5321     1999
## 5322     1999
## 5323     1999
## 5324     1999
## 5325     1999
## 5326     1999
## 5327     1999
## 5328     2000
## 5329     1999
## 5330     2001
## 5331     1999
## 5332     1999
## 5333     1999
## 5334     1999
## 5335     1999
## 5336     1999
## 5337     2000
## 5338     2000
## 5339     1999
## 5340     1999
## 5341     1999
## 5342     1999
## 5343     1999
## 5344     2002
## 5345     2001
## 5346     1999
## 5347     1999
## 5348     2000
## 5349     1999
## 5350     1999
## 5351     1999
## 5352     1999
## 5353     1999
## 5354     1999
## 5355     1999
## 5356     1999
## 5357     1999
## 5358     1999
## 5359     2000
## 5360     2000
## 5361     1999
## 5362     1999
## 5363     1999
## 5364     1999
## 5365     1999
## 5366     1999
## 5367     1999
## 5368     2000
## 5369     1999
## 5370     1999
## 5371     1999
## 5372     1999
## 5373     1999
## 5374     1999
## 5375     1999
## 5376     1999
## 5377     1999
## 5378     2001
## 5379     2000
## 5380     2001
## 5381     1999
## 5382     1999
## 5383     2000
## 5384     1999
## 5385     2000
## 5386     1999
## 5387     1999
## 5388     2000
## 5389     2002
## 5390     2000
## 5391     1999
## 5392     1999
## 5393     1999
## 5394     1999
## 5395     1999
## 5396     1999
## 5397     1999
## 5398     1999
## 5399     2000
## 5400     2000
## 5401     1999
## 5402     1999
## 5403     1999
## 5404     1999
## 5405     1999
## 5406     1999
## 5407     1999
## 5408     1999
## 5409     2001
## 5410     1999
## 5411     1999
## 5412     1999
## 5413     1999
## 5414     1999
## 5415     1999
## 5416     1999
## 5417     2001
## 5418     2000
## 5419     1999
## 5420     1999
## 5421     2000
## 5422     2000
## 5423     2002
## 5424     1999
## 5425     1999
## 5426     1999
## 5427     1999
## 5428     1999
## 5429     1999
## 5430     1999
## 5431     2000
## 5432     2000
## 5433     2001
## 5434     1999
## 5435     2000
## 5436     1999
## 5437     1999
## 5438     2001
## 5439     1999
## 5440     1999
## 5441     1999
## 5442     1999
## 5443     1999
## 5444     2000
## 5445     1999
## 5446     2000
## 5447     2000
## 5448     2000
## 5449     1999
## 5450     1999
## 5451     1999
## 5452     1999
## 5453     1999
## 5454     1999
## 5455     1999
## 5456     1999
## 5457     1999
## 5458     1999
## 5459     1999
## 5460     1999
## 5461     2000
## 5462     1999
## 5463     2000
## 5464     1999
## 5465     1999
## 5466     1999
## 5467     1999
## 5468     1999
## 5469     1999
## 5470     2000
## 5471     1999
## 5472     1999
## 5473     2000
## 5474     1999
## 5475     2000
## 5476     2000
## 5477     1999
## 5478     1999
## 5479     1999
## 5480     2002
## 5481     1999
## 5482     1999
## 5483     1999
## 5484     1999
## 5485     1999
## 5486     1999
## 5487     1999
## 5488     1999
## 5489     1999
## 5490     2000
## 5491     1999
## 5492     1999
## 5493     1999
## 5494     1999
## 5495     1999
## 5496     1999
## 5497     1999
## 5498     2000
## 5499     1999
## 5500     2000
## 5501     1999
## 5502     2000
## 5503     1999
## 5504     1999
## 5505     1999
## 5506     1999
## 5507     1999
## 5508     1999
## 5509     2000
## 5510     1999
## 5511     1999
## 5512     2000
## 5513     2000
## 5514     1999
## 5515     1999
## 5516     1999
## 5517     1999
## 5518     1999
## 5519     1999
## 5520     1999
## 5521     1999
## 5522     1999
## 5523     1999
## 5524     1999
## 5525     1999
## 5526     1999
## 5527     1999
## 5528     1999
## 5529     1999
## 5530     1999
## 5531     1999
## 5532     1999
## 5533     1999
## 5534     1999
## 5535     1999
## 5536     1999
## 5537     1999
## 5538     1999
## 5539     2000
## 5540     1999
## 5541     1999
## 5542     1999
## 5543     1999
## 5544     1999
## 5545     1999
## 5546     1999
## 5547     2001
## 5548     1999
## 5549     1999
## 5550     1999
## 5551     1999
## 5552     1999
## 5553     1999
## 5554     2001
## 5555     1999
## 5556     1999
## 5557     1999
## 5558     2000
## 5559     1999
## 5560     2002
## 5561     1999
## 5562     2000
## 5563     1999
## 5564     1999
## 5565     1999
## 5566     1999
## 5567     1999
## 5568     1999
## 5569     1999
## 5570     1999
## 5571     1999
## 5572     1999
## 5573     1999
## 5574     1999
## 5575     1999
## 5576     1999
## 5577     2000
## 5578     1999
## 5579     2000
## 5580     2000
## 5581     2001
## 5582     1999
## 5583     1999
## 5584     1999
## 5585     1999
## 5586     2001
## 5587     1999
## 5588     1999
## 5589     1999
## 5590     1999
## 5591     1999
## 5592     1999
## 5593     2000
## 5594     1999
## 5595     1999
## 5596     1999
## 5597     2000
## 5598     2000
## 5599     1999
## 5600     1999
## 5601     1999
## 5602     1999
## 5603     1999
## 5604     1999
## 5605     2000
## 5606     1999
## 5607     1999
## 5608     1999
## 5609     1999
## 5610     1999
## 5611     2000
## 5612     2002
## 5613     1999
## 5614     1999
## 5615     1999
## 5616     1999
## 5617     1999
## 5618     1999
## 5619     2000
## 5620     2000
## 5621     1999
## 5622     1999
## 5623     1999
## 5624     2000
## 5625     1999
## 5626     1999
## 5627     1999
## 5628     1999
## 5629     1999
## 5630     1999
## 5631     1999
## 5632     1999
## 5633     1999
## 5634     1999
## 5635     1999
## 5636     1999
## 5637     2000
## 5638     1999
## 5639     2000
## 5640     2002
## 5641     1999
## 5642     1999
## 5643     2000
## 5644     1999
## 5645     1999
## 5646     2000
## 5647     2000
## 5648     2000
## 5649     1999
## 5650     2002
## 5651     1999
## 5652     1999
## 5653     2000
## 5654     1999
## 5655     1999
## 5656     1999
## 5657     2000
## 5658     2002
## 5659     1999
## 5660     1999
## 5661     2000
## 5662     2000
## 5663     1999
## 5664     2001
## 5665     2000
## 5666     1999
## 5667     1999
## 5668     1999
## 5669     2000
## 5670     2000
## 5671     2000
## 5672     1999
## 5673     2000
## 5674     2001
## 5675     2000
## 5676     2000
## 5677     2000
## 5678     2000
## 5679     2000
## 5680     2000
## 5681     2000
## 5682     2000
## 5683     2000
## 5684     2000
## 5685     2000
## 5686     2000
## 5687     2000
## 5688     2000
## 5689     2000
## 5690     2000
## 5691     2000
## 5692     2000
## 5693     2000
## 5694     2000
## 5695     2000
## 5696     2000
## 5697     2000
## 5698     2000
## 5699     2000
## 5700     2000
## 5701     2001
## 5702     2000
## 5703     2000
## 5704     2001
## 5705     2000
## 5706     2000
## 5707     2000
## 5708     2000
## 5709     2000
## 5710     2000
## 5711     2000
## 5712     2000
## 5713     2000
## 5714     2000
## 5715     2001
## 5716     2000
## 5717     2000
## 5718     2002
## 5719     2000
## 5720     2000
## 5721     2000
## 5722     2000
## 5723     2000
## 5724     2000
## 5725     2000
## 5726     2000
## 5727     2000
## 5728     2000
## 5729     2000
## 5730     2000
## 5731     2000
## 5732     2000
## 5733     2000
## 5734     2000
## 5735     2000
## 5736     2000
## 5737     2000
## 5738     2000
## 5739     2000
## 5740     2000
## 5741     2000
## 5742     2000
## 5743     2000
## 5744     2001
## 5745     2000
## 5746     2000
## 5747     2000
## 5748     2000
## 5749     2000
## 5750     2000
## 5751     2000
## 5752     2001
## 5753     2000
## 5754     2001
## 5755     2000
## 5756     2000
## 5757     2001
## 5758     2000
## 5759     2001
## 5760     2000
## 5761     2000
## 5762     2000
## 5763     2000
## 5764     2000
## 5765     2000
## 5766     2000
## 5767     2000
## 5768     2000
## 5769     2000
## 5770     2000
## 5771     2000
## 5772     2000
## 5773     2000
## 5774     2000
## 5775     2001
## 5776     2001
## 5777     2000
## 5778     2001
## 5779     2001
## 5780     2000
## 5781     2000
## 5782     2002
## 5783     2000
## 5784     2001
## 5785     2000
## 5786     2001
## 5787     2001
## 5788     2000
## 5789     2003
## 5790     2001
## 5791     2001
## 5792     2001
## 5793     2001
## 5794     2001
## 5795     2001
## 5796     2001
## 5797     2001
## 5798     2001
## 5799     2001
## 5800     2001
## 5801     2001
## 5802     2002
## 5803     2001
## 5804     2002
## 5805     2003
## 5806     2001
## 5807     2001
## 5808     2001
## 5809     2001
## 5810     2001
## 5811     2001
## 5812     2001
## 5813     2001
## 5814     2001
## 5815     2001
## 5816     2001
## 5817     2001
## 5818     2001
## 5819     2001
## 5820     2001
## 5821     2001
## 5822     2001
## 5823     2001
## 5824     2002
## 5825     2001
## 5826     2001
## 5827     2001
## 5828     2002
## 5829     2001
## 5830     2001
## 5831     2001
## 5832     2001
## 5833     2001
## 5834     2003
## 5835     2001
## 5836     2001
## 5837     2001
## 5838     2001
## 5839     2001
## 5840     2001
## 5841     2001
## 5842     2001
## 5843     2001
## 5844     2001
## 5845     2001
## 5846     2001
## 5847     2001
## 5848     2001
## 5849     2001
## 5850     2002
## 5851     2001
## 5852     2002
## 5853     2001
## 5854     2001
## 5855     2002
## 5856     2002
## 5857     2001
## 5858     2001
## 5859     2001
## 5860     2002
## 5861     2001
## 5862     2002
## 5863     2002
## 5864     2001
## 5865     2001
## 5866     2001
## 5867     2001
## 5868     2002
## 5869     2001
## 5870     2002
## 5871     2001
## 5872     2002
## 5873     2002
## 5874     2001
## 5875     2001
## 5876     2002
## 5877     2001
## 5878     2002
## 5879     2001
## 5880     2001
## 5881     2002
## 5882     2001
## 5883     2001
## 5884     2002
## 5885     2002
## 5886     2002
## 5887     2001
## 5888     2001
## 5889     2001
## 5890     2001
## 5891     2001
## 5892     2001
## 5893     2001
## 5894     2001
## 5895     2001
## 5896     2001
## 5897     2001
## 5898     2001
## 5899     2001
## 5900     2001
## 5901     2001
## 5902     2001
## 5903     2002
## 5904     2002
## 5905     2002
## 5906     2002
## 5907     2001
## 5908     2001
## 5909     2001
## 5910     2001
## 5911     2001
## 5912     2001
## 5913     2002
## 5914     2001
## 5915     2001
## 5916     2001
## 5917     2002
## 5918     2003
## 5919     2001
## 5920     2001
## 5921     2001
## 5922     2001
## 5923     2001
## 5924     2002
## 5925     2001
## 5926     2001
## 5927     2002
## 5928     2002
## 5929     2002
## 5930     2002
## 5931     2002
## 5932     2002
## 5933     2002
## 5934     2002
## 5935     1999
## 5936     2002
## 5937     2002
## 5938     2002
## 5939     2003
## 5940     2002
## 5941     2002
## 5942     2002
## 5943     2002
## 5944     2002
## 5945     2002
## 5946     2002
## 5947     2002
## 5948     2002
## 5949     2002
## 5950     2002
## 5951     2002
## 5952     2002
## 5953     2002
## 5954     2002
## 5955     2002
## 5956     2002
## 5957     2002
## 5958     2002
## 5959     2002
## 5960     2002
## 5961     2002
## 5962     2002
## 5963     2002
## 5964     2002
## 5965     2002
## 5966     2002
## 5967     2002
## 5968     2003
## 5969     2002
## 5970     2002
## 5971     2002
## 5972     2002
## 5973     2002
## 5974     2002
## 5975     2002
## 5976     2002
## 5977     2002
## 5978     2003
## 5979     2002
## 5980     2002
## 5981     2002
## 5982     2002
## 5983     2002
## 5984     2002
## 5985     2002
## 5986     2002
## 5987     2002
## 5988     2002
## 5989     2003
## 5990     2002
## 5991     2002
## 5992     2002
## 5993     2002
## 5994     2002
## 5995     2002
## 5996     2002
## 5997     2002
## 5998     2002
## 5999     2002
## 6000     2002
## 6001     2002
## 6002     2002
## 6003     2002
## 6004     2002
## 6005     2002
## 6006     2003
## 6007     2002
## 6008     2002
## 6009     2002
## 6010     2002
## 6011     2002
## 6012     2002
## 6013     2002
## 6014     2003
## 6015     2003
## 6016     2002
## 6017     2002
## 6018     2002
## 6019     2002
## 6020     2002
## 6021     2002
## 6022     2003
## 6023     2002
## 6024     2003
## 6025     2002
## 6026     2002
## 6027     2002
## 6028     2002
## 6029     2002
## 6030     2003
## 6031     2002
## 6032     2003
## 6033     2003
## 6034     2003
## 6035     2003
## 6036     2003
## 6037     2003
## 6038     2003
## 6039     2003
## 6040     2003
## 6041     2003
## 6042     2003
## 6043     2003
## 6044     2003
## 6045     2003
## 6046     2003
## 6047     2003
## 6048     2003
## 6049     2003
## 6050     2003
## 6051     2003
## 6052     2003
## 6053     2003
## 6054     2003
## 6055     2003
## 6056     2003
## 6057     2003
## 6058     2003
## 6059     2003
## 6060     2010
## 6061     2010
## 6062     2010
## 6063     2010
## 6064     2010
## 6065     2010
## 6066     2010
## 6067     2010
## 6068     2010
## 6069     2010
## 6070     2010
## 6071     2010
## 6072     2010
## 6073     2010
## 6074     2010
## 6075     2010
## 6076     2010
## 6077     2010
## 6078     2010
## 6079     2010
## 6080     2010
## 6081     2010
## 6082     2010
## 6083     2010
## 6084     2010
## 6085     2010
## 6086     2010
## 6087     2010
## 6088     2010
## 6089     2010
## 6090     2010
## 6091     2010
## 6092     2010
## 6093     2010
## 6094     2010
## 6095     2010
## 6096     2010
## 6097     2010
## 6098     2010
## 6099     2010
## 6100     2010
## 6101     2010
## 6102     2010
## 6103     2010
## 6104     2010
## 6105     2010
## 6106     2010
## 6107     2010
## 6108     2010
## 6109     2010
## 6110     2010
## 6111     2010
## 6112     2010
## 6113     2010
## 6114     2010
## 6115     2010
## 6116     2010
## 6117     2010
## 6118     2010
## 6119     2010
## 6120     2010
## 6121     2010
## 6122     2010
## 6123     2010
## 6124     2010
## 6125     2010
## 6126     2010
## 6127     2010
## 6128     2010
## 6129     1996
## 6130     1996
## 6131     1996
## 6132     1996
## 6133     1996
## 6134     1996
## 6135     1996
## 6136     1996
## 6137     1996
## 6138     1996
## 6139     1996
## 6140     1996
## 6141     1996
## 6142     1996
## 6143     1996
## 6144     1996
## 6145     1996
## 6146     1996
## 6147     1996
## 6148     1996
## 6149     1996
## 6150     1996
## 6151     1996
## 6152     1996
## 6153     1996
## 6154     1996
## 6155     1996
## 6156     1996
## 6157     1996
## 6158     1996
## 6159     1996
## 6160     1996
## 6161     1996
## 6162     1996
## 6163     1996
## 6164     1996
## 6165     1996
## 6166     1996
## 6167     1996
## 6168     1996
## 6169     1996
## 6170     1996
## 6171     1996
## 6172     1996
## 6173     1996
## 6174     1996
## 6175     1996
## 6176     1996
## 6177     2002
## 6178     2002
## 6179     2002
## 6180     2002
## 6181     2002
## 6182     2002
## 6183     2002
## 6184     2002
## 6185     2002
## 6186     2002
## 6187     2002
## 6188     2002
## 6189     2002
## 6190     2002
## 6191     2002
## 6192     2002
## 6193     2002
## 6194     2002
## 6195     2002
## 6196     2002
## 6197     2002
## 6198     2002
## 6199     2002
## 6200     2002
## 6201     2002
## 6202     2002
## 6203     2002
## 6204     2002
## 6205     2002
## 6206     2002
## 6207     2002
## 6208     2002
## 6209     2002
## 6210     2002
## 6211     2002
## 6212     2002
## 6213     2002
## 6214     2002
## 6215     2002
## 6216     2002
## 6217     2002
## 6218     2002
## 6219     2002
## 6220     2002
## 6221     2002
## 6222     2002
## 6223     2002
## 6224     2002
## 6225     2002
## 6226     2002
## 6227     2002
## 6228     2002
## 6229     2002
## 6230     2002
## 6231     2002
## 6232     2002
## 6233     2002
## 6234     2002
## 6235     2002
## 6236     2002
## 6237     2002
## 6238     2002
## 6239     2002
## 6240     2002
## 6241     2002
## 6242     2002
## 6243     2002
## 6244     2002
## 6245     2002
## 6246     2002
## 6247     2002
## 6248     2002
## 6249     2002
## 6250     2002
## 6251     2002
## 6252     2002
## 6253     2002
## 6254     2002
## 6255     2002
## 6256     2002
## 6257     2002
## 6258     2002
## 6259     2002
## 6260     2002
## 6261     2002
## 6262     2002
## 6263     2002
## 6264     2002
## 6265     2002
## 6266     2002
## 6267     2002
## 6268     2002
## 6269     2002
## 6270     2002
## 6271     2002
## 6272     2002
## 6273     2002
## 6274     2002
## 6275     2002
## 6276     2002
## 6277     2002
## 6278     2002
## 6279     2002
## 6280     2002
## 6281     2002
## 6282     2002
## 6283     2002
## 6284     2002
## 6285     2002
## 6286     2002
## 6287     2002
## 6288     2002
## 6289     2002
## 6290     2002
## 6291     2002
## 6292     2002
## 6293     2002
## 6294     2002
## 6295     2002
## 6296     2002
## 6297     2002
## 6298     2002
## 6299     2002
## 6300     2002
## 6301     2002
## 6302     2002
## 6303     2002
## 6304     2002
## 6305     2002
## 6306     2002
## 6307     2002
## 6308     2002
## 6309     2002
## 6310     2002
## 6311     2002
## 6312     2002
## 6313     2002
## 6314     2002
## 6315     2000
## 6316     2000
## 6317     2000
## 6318     2000
## 6319     2000
## 6320     2000
## 6321     2000
## 6322     2000
## 6323     2000
## 6324     2000
## 6325     2000
## 6326     2000
## 6327     2000
## 6328     2000
## 6329     2000
## 6330     2000
## 6331     2000
## 6332     2000
## 6333     2000
## 6334     2000
## 6335     2000
## 6336     2000
## 6337     2000
## 6338     2000
## 6339     2000
## 6340     2000
## 6341     2000
## 6342     2000
## 6343     2000
## 6344     2000
## 6345     2000
## 6346     2000
## 6347     2000
## 6348     2000
## 6349     2000
## 6350     2000
## 6351     2000
## 6352     2000
## 6353     2000
## 6354     2000
## 6355     2000
## 6356     2000
## 6357     2000
## 6358     2000
## 6359     2000
## 6360     2000
## 6361     2000
## 6362     2000
## 6363     2000
## 6364     2000
## 6365     2000
## 6366     2000
## 6367     2000
## 6368     2000
## 6369     2000
## 6370     2000
## 6371     2000
## 6372     2000
## 6373     2000
## 6374     2000
## 6375     2000
## 6376     2000
## 6377     2000
## 6378     2000
## 6379     2000
## 6380     2000
## 6381     2000
## 6382     2000
## 6383     2000
## 6384     2000
## 6385     2000
## 6386     2000
## 6387     2000
## 6388     2000
## 6389     2000
## 6390     2000
## 6391     2000
## 6392     2000
## 6393     2000
## 6394     2000
## 6395     2000
## 6396     2000
## 6397     2000
## 6398     2000
## 6399     2000
## 6400     2000
## 6401     2000
## 6402     2000
## 6403     2000
## 6404     2000
## 6405     2000
## 6406     2000
## 6407     2000
## 6408     2000
## 6409     2000
## 6410     2000
## 6411     2000
## 6412     2000
## 6413     2000
## 6414     2000
## 6415     2000
## 6416     2000
## 6417     2000
## 6418     2000
## 6419     2000
## 6420     2000
## 6421     2000
## 6422     2000
## 6423     2000
## 6424     2000
## 6425     2000
## 6426     2000
## 6427     2000
## 6428     2000
## 6429     2000
## 6430     2000
## 6431     2000
## 6432     2000
## 6433     2000
## 6434     2000
## 6435     2000
## 6436     2000
## 6437     2000
## 6438     2000
## 6439     2000
## 6440     2000
## 6441     2000
## 6442     2000
## 6443     2000
## 6444     2000
## 6445     2000
## 6446     2000
## 6447     2000
## 6448     2000
## 6449     2000
## 6450     2000
## 6451     2000
## 6452     2000
## 6453     2000
## 6454     2000
## 6455     2000
## 6456     2000
## 6457     2000
## 6458     2000
## 6459     2000
## 6460     2000
## 6461     2000
## 6462     2000
## 6463     2000
## 6464     2000
## 6465     2000
## 6466     2000
## 6467     2000
## 6468     2000
## 6469     2000
## 6470     2000
## 6471     2000
## 6472     2000
## 6473     2000
## 6474     2000
## 6475     2000
## 6476     2000
## 6477     2000
## 6478     2000
## 6479     2000
## 6480     2000
## 6481     2000
## 6482     2000
## 6483     2000
## 6484     2000
## 6485     2000
## 6486     2000
## 6487     2000
## 6488     2000
## 6489     2000
## 6490     2000
## 6491     2000
## 6492     2000
## 6493     2000
## 6494     2000
## 6495     2000
## 6496     2000
## 6497     2000
## 6498     2000
## 6499     2000
## 6500     2000
## 6501     2000
## 6502     2007
## 6503     2007
## 6504     2007
## 6505     2007
## 6506     2007
## 6507     2007
## 6508     2007
## 6509     2007
## 6510     2007
## 6511     2007
## 6512     2007
## 6513     2007
## 6514     2007
## 6515     2007
## 6516     2007
## 6517     2007
## 6518     2007
## 6519     2007
## 6520     2007
## 6521     2007
## 6522     1996
## 6523     1996
## 6524     1996
## 6525     1996
## 6526     1996
## 6527     1996
## 6528     1996
## 6529     1997
## 6530     1996
## 6531     1996
## 6532     1996
## 6533     1996
## 6534     1997
## 6535     1996
## 6536     1996
## 6537     1996
## 6538     1996
## 6539     1996
## 6540     1996
## 6541     1996
## 6542     1996
## 6543     1996
## 6544     1996
## 6545     1996
## 6546     1996
## 6547     1996
## 6548     1996
## 6549     1996
## 6550     1996
## 6551     1996
## 6552     1996
## 6553     1996
## 6554     1996
## 6555     1996
## 6556     1996
## 6557     1996
## 6558     1996
## 6559     1996
## 6560     1996
## 6561     1996
## 6562     1996
## 6563     1996
## 6564     1996
## 6565     1996
## 6566     1996
## 6567     1996
## 6568     1996
## 6569     1996
## 6570     1996
## 6571     1996
## 6572     1996
## 6573     1996
## 6574     1996
## 6575     1996
## 6576     1996
## 6577     1996
## 6578     1996
## 6579     1996
## 6580     1996
## 6581     1996
## 6582     1996
## 6583     1996
## 6584     1996
## 6585     1996
## 6586     1996
## 6587     1996
## 6588     1996
## 6589     1996
## 6590     1996
## 6591     1996
## 6592     1996
## 6593     1996
## 6594     1996
## 6595     1996
## 6596     1996
## 6597     1996
## 6598     1996
## 6599     1996
## 6600     1996
## 6601     1996
## 6602     1996
## 6603     1996
## 6604     1996
## 6605     1996
## 6606     1996
## 6607     1996
## 6608     1996
## 6609     1996
## 6610     1996
## 6611     1996
## 6612     1996
## 6613     1996
## 6614     1996
## 6615     1996
## 6616     1996
## 6617     1997
## 6618     1996
## 6619     1996
## 6620     1997
## 6621     1996
## 6622     1996
## 6623     1996
## 6624     1997
## 6625     1997
## 6626     2001
## 6627     2001
## 6628     2001
## 6629     2001
## 6630     2001
## 6631     2001
## 6632     2001
## 6633     2001
## 6634     2001
## 6635     2001
## 6636     2001
## 6637     2001
## 6638     2001
## 6639     2001
## 6640     2001
## 6641     2001
## 6642     2001
## 6643     2001
## 6644     2001
## 6645     2001
## 6646     2001
## 6647     2001
## 6648     2001
## 6649     2001
## 6650     2001
## 6651     2001
## 6652     2001
## 6653     2001
## 6654     2001
## 6655     2001
## 6656     2001
## 6657     2001
## 6658     2014
## 6659     2014
## 6660     2014
## 6661     2014
## 6662     2014
## 6663     2014
## 6664     2014
## 6665     2014
## 6666     2014
## 6667     2014
## 6668     2014
## 6669     2014
## 6670     2014
## 6671     2014
## 6672     2014
## 6673     2014
## 6674     2014
## 6675     2014
## 6676     2014
## 6677     2014
## 6678     2014
## 6679     2014
## 6680     2014
## 6681     2014
## 6682     2014
## 6683     2014
## 6684     2014
## 6685     2014
## 6686     2014
## 6687     2014
## 6688     2014
## 6689     2014
## 6690     2014
## 6691     2014
## 6692     2014
## 6693     2014
## 6694     2014
## 6695     2014
## 6696     2014
## 6697     2014
## 6698     2014
## 6699     2014
## 6700     2014
## 6701     2014
## 6702     2014
## 6703     2014
## 6704     2014
## 6705     2014
## 6706     2014
## 6707     2014
## 6708     2014
## 6709     2014
## 6710     2014
## 6711     2014
## 6712     2014
## 6713     2014
## 6714     2014
## 6715     2014
## 6716     2014
## 6717     2014
## 6718     2014
## 6719     2014
## 6720     2014
## 6721     2014
## 6722     2014
## 6723     2014
## 6724     2014
## 6725     2014
## 6726     2014
## 6727     2014
## 6728     2014
## 6729     2014
## 6730     2014
## 6731     2014
## 6732     2014
## 6733     2014
## 6734     2014
## 6735     2014
## 6736     2014
## 6737     2014
## 6738     2015
## 6739     2014
## 6740     2015
## 6741     2014
## 6742     2014
## 6743     2014
## 6744     2015
## 6745     2014
## 6746     2014
## 6747     2014
## 6748     2014
## 6749     2014
## 6750     2014
## 6751     2014
## 6752     2014
## 6753     2014
## 6754     2014
## 6755     2014
## 6756     2014
## 6757     2014
## 6758     2014
## 6759     2014
## 6760     2014
## 6761     2014
## 6762     2014
## 6763     2014
## 6764     2014
## 6765     2014
## 6766     2014
## 6767     2014
## 6768     2015
## 6769     1996
## 6770     1996
## 6771     1996
## 6772     1996
## 6773     1996
## 6774     1996
## 6775     1996
## 6776     1996
## 6777     1996
## 6778     1996
## 6779     1996
## 6780     1996
## 6781     1996
## 6782     1996
## 6783     1996
## 6784     1996
## 6785     1996
## 6786     1996
## 6787     1996
## 6788     1996
## 6789     1996
## 6790     1996
## 6791     1996
## 6792     1996
## 6793     1996
## 6794     1996
## 6795     1996
## 6796     1996
## 6797     1996
## 6798     1996
## 6799     1996
## 6800     1996
## 6801     1996
## 6802     1996
## 6803     1996
## 6804     1996
## 6805     1996
## 6806     1996
## 6807     1996
## 6808     1996
## 6809     1996
## 6810     1996
## 6811     1996
## 6812     1996
## 6813     1996
## 6814     1996
## 6815     1996
## 6816     1996
## 6817     1996
## 6818     1996
## 6819     1996
## 6820     1996
## 6821     1996
## 6822     1996
## 6823     1996
## 6824     1996
## 6825     1996
## 6826     1996
## 6827     1996
## 6828     1996
## 6829     1996
## 6830     1996
## 6831     2016
## 6832     2016
## 6833     2016
## 6834     2016
## 6835     2016
## 6836     2016
## 6837     2016
## 6838     2016
## 6839     2016
## 6840     2016
## 6841     2016
## 6842     2016
## 6843     2016
## 6844     2016
## 6845     2016
## 6846     2016
## 6847     2016
## 6848     2016
## 6849     2016
## 6850     2016
## 6851     2016
## 6852     2016
## 6853     2016
## 6854     2016
## 6855     2016
## 6856     2016
## 6857     2016
## 6858     2016
## 6859     2016
## 6860     2016
## 6861     2016
## 6862     2016
## 6863     2016
## 6864     2016
## 6865     2016
## 6866     2016
## 6867     2016
## 6868     2016
## 6869     2016
## 6870     2016
## 6871     2016
## 6872     2016
## 6873     2016
## 6874     2004
## 6875     2005
## 6876     2005
## 6877     2004
## 6878     2004
## 6879     2004
## 6880     2004
## 6881     2005
## 6882     2004
## 6883     2004
## 6884     2004
## 6885     2004
## 6886     2004
## 6887     2004
## 6888     2004
## 6889     2004
## 6890     2004
## 6891     2004
## 6892     2005
## 6893     2004
## 6894     2004
## 6895     2004
## 6896     2005
## 6897     2004
## 6898     2005
## 6899     2004
## 6900     2005
## 6901     2004
## 6902     2004
## 6903     2004
## 6904     2004
## 6905     2004
## 6906     2004
## 6907     2004
## 6908     2004
## 6909     2004
## 6910     2004
## 6911     2004
## 6912     2004
## 6913     2004
## 6914     2004
## 6915     2004
## 6916     2004
## 6917     2004
## 6918     2004
## 6919     2004
## 6920     2004
## 6921     2005
## 6922     2004
## 6923     2004
## 6924     2005
## 6925     2004
## 6926     2004
## 6927     2004
## 6928     2004
## 6929     2004
## 6930     2004
## 6931     2004
## 6932     2004
## 6933     2004
## 6934     2004
## 6935     2004
## 6936     2004
## 6937     2004
## 6938     2004
## 6939     2004
## 6940     2004
## 6941     2005
## 6942     2004
## 6943     2005
## 6944     2005
## 6945     2004
## 6946     2004
## 6947     2004
## 6948     2004
## 6949     2004
## 6950     2005
## 6951     2004
## 6952     2004
## 6953     2004
## 6954     2004
## 6955     2004
## 6956     2004
## 6957     2004
## 6958     2004
## 6959     2004
## 6960     2004
## 6961     2004
## 6962     2004
## 6963     2004
## 6964     2004
## 6965     2004
## 6966     2004
## 6967     2004
## 6968     2004
## 6969     2004
## 6970     2004
## 6971     2004
## 6972     2004
## 6973     2004
## 6974     2004
## 6975     2004
## 6976     2004
## 6977     2004
## 6978     2004
## 6979     2004
## 6980     2004
## 6981     2004
## 6982     2004
## 6983     2004
## 6984     2004
## 6985     2004
## 6986     2004
## 6987     2005
## 6988     2004
## 6989     2004
## 6990     2004
## 6991     2005
## 6992     2004
## 6993     2004
## 6994     2004
## 6995     2005
## 6996     2004
## 6997     2005
## 6998     2005
## 6999     2004
## 7000     2004
## 7001     2004
## 7002     2004
## 7003     2004
## 7004     2004
## 7005     2005
## 7006     2004
## 7007     2004
## 7008     2004
## 7009     2004
## 7010     2005
## 7011     2004
## 7012     2004
## 7013     2004
## 7014     2004
## 7015     2005
## 7016     2004
## 7017     2005
## 7018     2004
## 7019     2004
## 7020     2005
## 7021     2004
## 7022     2005
## 7023     2005
## 7024     2004
## 7025     2005
## 7026     2004
## 7027     2004
## 7028     2004
## 7029     2004
## 7030     2005
## 7031     2005
## 7032     2004
## 7033     2004
## 7034     2004
## 7035     2004
## 7036     2004
## 7037     2004
## 7038     2004
## 7039     2004
## 7040     2004
## 7041     2005
## 7042     2004
## 7043     2004
## 7044     2005
## 7045     2005
## 7046     2004
## 7047     2004
## 7048     2004
## 7049     2005
## 7050     2004
## 7051     2004
## 7052     2005
## 7053     2004
## 7054     2005
## 7055     2004
## 7056     2004
## 7057     2005
## 7058     2004
## 7059     2004
## 7060     2004
## 7061     2004
## 7062     2004
## 7063     2004
## 7064     2005
## 7065     2005
## 7066     2004
## 7067     2004
## 7068     2005
## 7069     2004
## 7070     2004
## 7071     2005
## 7072     2005
## 7073     2016
## 7074     2016
## 7075     2016
## 7076     2016
## 7077     2016
## 7078     2016
## 7079     2016
## 7080     2016
## 7081     2016
## 7082     2016
## 7083     2016
## 7084     2016
## 7085     2016
## 7086     2016
## 7087     2016
## 7088     2016
## 7089     2016
## 7090     2016
## 7091     2016
## 7092     2016
## 7093     2016
## 7094     2016
## 7095     2016
## 7096     2016
## 7097     2016
## 7098     2016
## 7099     2016
## 7100     2016
## 7101     2016
## 7102     2016
## 7103     2016
## 7104     2016
## 7105     2016
## 7106     2016
## 7107     2016
## 7108     2016
## 7109     2016
## 7110     2016
## 7111     2016
## 7112     2016
## 7113     2016
## 7114     2016
## 7115     2016
## 7116     2016
## 7117     2016
## 7118     2016
## 7119     2016
## 7120     2016
## 7121     2016
## 7122     2016
## 7123     2016
## 7124     2016
## 7125     2016
## 7126     2016
## 7127     2016
## 7128     2016
## 7129     2016
## 7130     2016
## 7131     2016
## 7132     2016
## 7133     2016
## 7134     2016
## 7135     2016
## 7136     2016
## 7137     2016
## 7138     2016
## 7139     2016
## 7140     2016
## 7141     2016
## 7142     2016
## 7143     2000
## 7144     2000
## 7145     2000
## 7146     2000
## 7147     2000
## 7148     2000
## 7149     2000
## 7150     2000
## 7151     2000
## 7152     2000
## 7153     2000
## 7154     2000
## 7155     2000
## 7156     2000
## 7157     2000
## 7158     2000
## 7159     2000
## 7160     2000
## 7161     2000
## 7162     2000
## 7163     2000
## 7164     2000
## 7165     2000
## 7166     2000
## 7167     2000
## 7168     2000
## 7169     2000
## 7170     2000
## 7171     2000
## 7172     2000
## 7173     2000
## 7174     2000
## 7175     2000
## 7176     2000
## 7177     2000
## 7178     2000
## 7179     2000
## 7180     2000
## 7181     2000
## 7182     2000
## 7183     2000
## 7184     2000
## 7185     2000
## 7186     2000
## 7187     2000
## 7188     2000
## 7189     2000
## 7190     2000
## 7191     2000
## 7192     2000
## 7193     2000
## 7194     2000
## 7195     2000
## 7196     2000
## 7197     2000
## 7198     2000
## 7199     2000
## 7200     2000
## 7201     2000
## 7202     2000
## 7203     2000
## 7204     2000
## 7205     2000
## 7206     2000
## 7207     2000
## 7208     2000
## 7209     2000
## 7210     2000
## 7211     2000
## 7212     2000
## 7213     2000
## 7214     2000
## 7215     2000
## 7216     2000
## 7217     2000
## 7218     2000
## 7219     2000
## 7220     2000
## 7221     2000
## 7222     2000
## 7223     2000
## 7224     2000
## 7225     2000
## 7226     2000
## 7227     2000
## 7228     2000
## 7229     2000
## 7230     2000
## 7231     2000
## 7232     2000
## 7233     2000
## 7234     2000
## 7235     2000
## 7236     2000
## 7237     2000
## 7238     2000
## 7239     2000
## 7240     2000
## 7241     2000
## 7242     2000
## 7243     2000
## 7244     2000
## 7245     2000
## 7246     2000
## 7247     2000
## 7248     2000
## 7249     2000
## 7250     2000
## 7251     2000
## 7252     2000
## 7253     1997
## 7254     1997
## 7255     1997
## 7256     1997
## 7257     1997
## 7258     1997
## 7259     1997
## 7260     1997
## 7261     1997
## 7262     1997
## 7263     1997
## 7264     1997
## 7265     1997
## 7266     1997
## 7267     1997
## 7268     1997
## 7269     1997
## 7270     1997
## 7271     1997
## 7272     1997
## 7273     1997
## 7274     1997
## 7275     1997
## 7276     1997
## 7277     1997
## 7278     2006
## 7279     2006
## 7280     2006
## 7281     2006
## 7282     2006
## 7283     2006
## 7284     2006
## 7285     2006
## 7286     2006
## 7287     2006
## 7288     2006
## 7289     2006
## 7290     2006
## 7291     2006
## 7292     2006
## 7293     2006
## 7294     2006
## 7295     2006
## 7296     2006
## 7297     2006
## 7298     2006
## 7299     2013
## 7300     2013
## 7301     2013
## 7302     2013
## 7303     2013
## 7304     2013
## 7305     2013
## 7306     2013
## 7307     2013
## 7308     2013
## 7309     2013
## 7310     2013
## 7311     2013
## 7312     2013
## 7313     2013
## 7314     2013
## 7315     2013
## 7316     2013
## 7317     2013
## 7318     2013
## 7319     2013
## 7320     2013
## 7321     2013
## 7322     2013
## 7323     2013
## 7324     2013
## 7325     2013
## 7326     2013
## 7327     2013
## 7328     2013
## 7329     2013
## 7330     2013
## 7331     2013
## 7332     2013
## 7333     2013
## 7334     2013
## 7335     2013
## 7336     2013
## 7337     2013
## 7338     1996
## 7339     1996
## 7340     1996
## 7341     1996
## 7342     1996
## 7343     1996
## 7344     1996
## 7345     1996
## 7346     1996
## 7347     1996
## 7348     1996
## 7349     1996
## 7350     1996
## 7351     1996
## 7352     1996
## 7353     1996
## 7354     1996
## 7355     1996
## 7356     1996
## 7357     1996
## 7358     1996
## 7359     1996
## 7360     1996
## 7361     1996
## 7362     1996
## 7363     1996
## 7364     1996
## 7365     1996
## 7366     1996
## 7367     1996
## 7368     1996
## 7369     1996
## 7370     1996
## 7371     1996
## 7372     1996
## 7373     1996
## 7374     1996
## 7375     1996
## 7376     2011
## 7377     2011
## 7378     2011
## 7379     2011
## 7380     2015
## 7381     2011
## 7382     2011
## 7383     2011
## 7384     2011
## 7385     2011
## 7386     2011
## 7387     2014
## 7388     2011
## 7389     2011
## 7390     2011
## 7391     2011
## 7392     2011
## 7393     2013
## 7394     2011
## 7395     2011
## 7396     2013
## 7397     2011
## 7398     2011
## 7399     2011
## 7400     2011
## 7401     2014
## 7402     2011
## 7403     2014
## 7404     2013
## 7405     2015
## 7406     2011
## 7407     2011
## 7408     2011
## 7409     2011
## 7410     2011
## 7411     2011
## 7412     2011
## 7413     2011
## 7414     2014
## 7415     2011
## 7416     2011
## 7417     2011
## 7418     2014
## 7419     2014
## 7420     2011
## 7421     2014
## 7422     2011
## 7423     2011
## 7424     2011
## 7425     2011
## 7426     2014
## 7427     2011
## 7428     2011
## 7429     2011
## 7430     2011
## 7431     2011
## 7432     2011
## 7433     2011
## 7434     2011
## 7435     2011
## 7436     2011
## 7437     2011
## 7438     2011
## 7439     2014
## 7440     2014
## 7441     2011
## 7442     2011
## 7443     2011
## 7444     2011
## 7445     2011
## 7446     2011
## 7447     2014
## 7448     2011
## 7449     2011
## 7450     2011
## 7451     2011
## 7452     2011
## 7453     2011
## 7454     2011
## 7455     2014
## 7456     2013
## 7457     2014
## 7458     2011
## 7459     2011
## 7460     2011
## 7461     2011
## 7462     2011
## 7463     2011
## 7464     2011
## 7465     2011
## 7466     2013
## 7467     2011
## 7468     2011
## 7469     2011
## 7470     2014
## 7471     2011
## 7472     2011
## 7473     2011
## 7474     2011
## 7475     2011
## 7476     2014
## 7477     2011
## 7478     2011
## 7479     2011
## 7480     2011
## 7481     2011
## 7482     2011
## 7483     2011
## 7484     2015
## 7485     2011
## 7486     2011
## 7487     2011
## 7488     2011
## 7489     2011
## 7490     2011
## 7491     2011
## 7492     2011
## 7493     2011
## 7494     2011
## 7495     2011
## 7496     2011
## 7497     2011
## 7498     2011
## 7499     2011
## 7500     2011
## 7501     2011
## 7502     2011
## 7503     2011
## 7504     2011
## 7505     2011
## 7506     2011
## 7507     2011
## 7508     2011
## 7509     2014
## 7510     2011
## 7511     2013
## 7512     2011
## 7513     2011
## 7514     2011
## 7515     2011
## 7516     2011
## 7517     2011
## 7518     2011
## 7519     2011
## 7520     2011
## 7521     2011
## 7522     2011
## 7523     2011
## 7524     2011
## 7525     2013
## 7526     2011
## 7527     2014
## 7528     2014
## 7529     2011
## 7530     2011
## 7531     2013
## 7532     2011
## 7533     2012
## 7534     2012
## 7535     2011
## 7536     2011
## 7537     2014
## 7538     2011
## 7539     2012
## 7540     2011
## 7541     2011
## 7542     2011
## 7543     2011
## 7544     2012
## 7545     2011
## 7546     2013
## 7547     2011
## 7548     2012
## 7549     2011
## 7550     2011
## 7551     2014
## 7552     2011
## 7553     2015
## 7554     2011
## 7555     2012
## 7556     2011
## 7557     2011
## 7558     2011
## 7559     2012
## 7560     2013
## 7561     2011
## 7562     2011
## 7563     2011
## 7564     2011
## 7565     2013
## 7566     2011
## 7567     2011
## 7568     2011
## 7569     2012
## 7570     2012
## 7571     2011
## 7572     2011
## 7573     2011
## 7574     2011
## 7575     2011
## 7576     2011
## 7577     2011
## 7578     2014
## 7579     2011
## 7580     2014
## 7581     2011
## 7582     2012
## 7583     2011
## 7584     2011
## 7585     2011
## 7586     2011
## 7587     2011
## 7588     2013
## 7589     2011
## 7590     2011
## 7591     2013
## 7592     2011
## 7593     2011
## 7594     2014
## 7595     2011
## 7596     2011
## 7597     2011
## 7598     2011
## 7599     2013
## 7600     2011
## 7601     2011
## 7602     2014
## 7603     2011
## 7604     2012
## 7605     2011
## 7606     2011
## 7607     2011
## 7608     2011
## 7609     2011
## 7610     2011
## 7611     2011
## 7612     2012
## 7613     2011
## 7614     2011
## 7615     2011
## 7616     2011
## 7617     2011
## 7618     2013
## 7619     2011
## 7620     2011
## 7621     2011
## 7622     2011
## 7623     2011
## 7624     2013
## 7625     2012
## 7626     2011
## 7627     2014
## 7628     2011
## 7629     2011
## 7630     2012
## 7631     2014
## 7632     2012
## 7633     2015
## 7634     2011
## 7635     2011
## 7636     2011
## 7637     2011
## 7638     2011
## 7639     2014
## 7640     2011
## 7641     2011
## 7642     2011
## 7643     2011
## 7644     2012
## 7645     2011
## 7646     2011
## 7647     2012
## 7648     2014
## 7649     2011
## 7650     2011
## 7651     2014
## 7652     2011
## 7653     2011
## 7654     2011
## 7655     2014
## 7656     2011
## 7657     2011
## 7658     2014
## 7659     2011
## 7660     2011
## 7661     2011
## 7662     2011
## 7663     2011
## 7664     2011
## 7665     2011
## 7666     2011
## 7667     2011
## 7668     2011
## 7669     2011
## 7670     2013
## 7671     2011
## 7672     2011
## 7673     2011
## 7674     2011
## 7675     2011
## 7676     2011
## 7677     2011
## 7678     2013
## 7679     2011
## 7680     2013
## 7681     2011
## 7682     2011
## 7683     2011
## 7684     2011
## 7685     2011
## 7686     2011
## 7687     2011
## 7688     2013
## 7689     2011
## 7690     2011
## 7691     2011
## 7692     2011
## 7693     2011
## 7694     2011
## 7695     2011
## 7696     2011
## 7697     2011
## 7698     2011
## 7699     2011
## 7700     2011
## 7701     2011
## 7702     2011
## 7703     2011
## 7704     2012
## 7705     2011
## 7706     2011
## 7707     2011
## 7708     2014
## 7709     2014
## 7710     2011
## 7711     2011
## 7712     2011
## 7713     2011
## 7714     2011
## 7715     2011
## 7716     2011
## 7717     2011
## 7718     2011
## 7719     2011
## 7720     2011
## 7721     2011
## 7722     2011
## 7723     2013
## 7724     2011
## 7725     2011
## 7726     2011
## 7727     2011
## 7728     2011
## 7729     2011
## 7730     2011
## 7731     2014
## 7732     2012
## 7733     2011
## 7734     2014
## 7735     2011
## 7736     2011
## 7737     2011
## 7738     2011
## 7739     2011
## 7740     2011
## 7741     2011
## 7742     2011
## 7743     2015
## 7744     2011
## 7745     2011
## 7746     2011
## 7747     2013
## 7748     2011
## 7749     2011
## 7750     2012
## 7751     2011
## 7752     2011
## 7753     2011
## 7754     2011
## 7755     2011
## 7756     2011
## 7757     2011
## 7758     2011
## 7759     2011
## 7760     2011
## 7761     2013
## 7762     2014
## 7763     2011
## 7764     2011
## 7765     2011
## 7766     2011
## 7767     2011
## 7768     2013
## 7769     2014
## 7770     2011
## 7771     2011
## 7772     2012
## 7773     2013
## 7774     2013
## 7775     2014
## 7776     2012
## 7777     2013
## 7778     2014
## 7779     2011
## 7780     2011
## 7781     2011
## 7782     2011
## 7783     2011
## 7784     2011
## 7785     2013
## 7786     2011
## 7787     2013
## 7788     2011
## 7789     2011
## 7790     2011
## 7791     2013
## 7792     2011
## 7793     2011
## 7794     2014
## 7795     2011
## 7796     2011
## 7797     2014
## 7798     2011
## 7799     2014
## 7800     2014
## 7801     2012
## 7802     2013
## 7803     2013
## 7804     2012
## 7805     2013
## 7806     2013
## 7807     2013
## 7808     2012
## 7809     2014
## 7810     2012
## 7811     2014
## 7812     2014
## 7813     2013
## 7814     2013
## 7815     2014
## 7816     2014
## 7817     2013
## 7818     2014
## 7819     2012
## 7820     2013
## 7821     2014
## 7822     2013
## 7823     2012
## 7824     2012
## 7825     2014
## 7826     2013
## 7827     2012
## 7828     2013
## 7829     2013
## 7830     2013
## 7831     2014
## 7832     2013
## 7833     2014
## 7834     2013
## 7835     2014
## 7836     2013
## 7837     2014
## 7838     2013
## 7839     2015
## 7840     2014
## 7841     2014
## 7842     2014
## 7843     2014
## 7844     2014
## 7845     2014
## 7846     2014
## 7847     2014
## 7848     2014
## 7849     2014
## 7850     2014
## 7851     2014
## 7852     2014
## 7853     2014
## 7854     2014
## 7855     2014
## 7856     2014
## 7857     2014
## 7858     2014
## 7859     2015
## 7860     2014
## 7861     2014
## 7862     2014
## 7863     2015
## 7864     2014
## 7865     2014
## 7866     2014
## 7867     2014
## 7868     2014
## 7869     2014
## 7870     2014
## 7871     2014
## 7872     2014
## 7873     2014
## 7874     2014
## 7875     2014
## 7876     2014
## 7877     2014
## 7878     2015
## 7879     2015
## 7880     2014
## 7881     2014
## 7882     2015
## 7883     2015
## 7884     2015
## 7885     2015
## 7886     2015
## 7887     2014
## 7888     2015
## 7889     2000
## 7890     2000
## 7891     2000
## 7892     2000
## 7893     2000
## 7894     2000
## 7895     2000
## 7896     2000
## 7897     2000
## 7898     2000
## 7899     2000
## 7900     2000
## 7901     2000
## 7902     2000
## 7903     2000
## 7904     2000
## 7905     2000
## 7906     2000
## 7907     2000
## 7908     2000
## 7909     2000
## 7910     2000
## 7911     2000
## 7912     2000
## 7913     2000
## 7914     2000
## 7915     2000
## 7916     2000
## 7917     2000
## 7918     2000
## 7919     2000
## 7920     2000
## 7921     2000
## 7922     2000
## 7923     2000
## 7924     2000
## 7925     2000
## 7926     2000
## 7927     2000
## 7928     2000
## 7929     2000
## 7930     2000
## 7931     2000
## 7932     2000
## 7933     2000
## 7934     2000
## 7935     2000
## 7936     2000
## 7937     2000
## 7938     2000
## 7939     2000
## 7940     2000
## 7941     2000
## 7942     2000
## 7943     2000
## 7944     2000
## 7945     2000
## 7946     2000
## 7947     2000
## 7948     2000
## 7949     2000
## 7950     2000
## 7951     2000
## 7952     2000
## 7953     2000
## 7954     2000
## 7955     2000
## 7956     2000
## 7957     2000
## 7958     2000
## 7959     2000
## 7960     2000
## 7961     2000
## 7962     2000
## 7963     2000
## 7964     2000
## 7965     2000
## 7966     2000
## 7967     2000
## 7968     2000
## 7969     2000
## 7970     2000
## 7971     2000
## 7972     2000
## 7973     2000
## 7974     2000
## 7975     2000
## 7976     2000
## 7977     2000
## 7978     2000
## 7979     2000
## 7980     2000
## 7981     2000
## 7982     2000
## 7983     2000
## 7984     2000
## 7985     2000
## 7986     2000
## 7987     2000
## 7988     1996
## 7989     1996
## 7990     1996
## 7991     1996
## 7992     1996
## 7993     1996
## 7994     1996
## 7995     1996
## 7996     1996
## 7997     1996
## 7998     1996
## 7999     1996
## 8000     1996
## 8001     1996
## 8002     1996
## 8003     1996
## 8004     1996
## 8005     1996
## 8006     1996
## 8007     1996
## 8008     1996
## 8009     1996
## 8010     1996
## 8011     1996
## 8012     1996
## 8013     1996
## 8014     1996
## 8015     1996
## 8016     1996
## 8017     1996
## 8018     1996
## 8019     1996
## 8020     1996
## 8021     1996
## 8022     1996
## 8023     1996
## 8024     1996
## 8025     1996
## 8026     1996
## 8027     1996
## 8028     1996
## 8029     1996
## 8030     1996
## 8031     1996
## 8032     1996
## 8033     1996
## 8034     2000
## 8035     2000
## 8036     2000
## 8037     2000
## 8038     2000
## 8039     2000
## 8040     2000
## 8041     2000
## 8042     2000
## 8043     2000
## 8044     2000
## 8045     2000
## 8046     2000
## 8047     2000
## 8048     2000
## 8049     2000
## 8050     2000
## 8051     2000
## 8052     2000
## 8053     2000
## 8054     2000
## 8055     2000
## 8056     2000
## 8057     2000
## 8058     2000
## 8059     2000
## 8060     2000
## 8061     2000
## 8062     2000
## 8063     2000
## 8064     2000
## 8065     2009
## 8066     2009
## 8067     2009
## 8068     2009
## 8069     2009
## 8070     2009
## 8071     2009
## 8072     2009
## 8073     2009
## 8074     2009
## 8075     2009
## 8076     2009
## 8077     2009
## 8078     2009
## 8079     2009
## 8080     2009
## 8081     2009
## 8082     2009
## 8083     2009
## 8084     2009
## 8085     2009
## 8086     2009
## 8087     2009
## 8088     2009
## 8089     2009
## 8090     2009
## 8091     2009
## 8092     2009
## 8093     2009
## 8094     2009
## 8095     2009
## 8096     2009
## 8097     2009
## 8098     2009
## 8099     2009
## 8100     2009
## 8101     2009
## 8102     2009
## 8103     2009
## 8104     2009
## 8105     2009
## 8106     2009
## 8107     2009
## 8108     2009
## 8109     2009
## 8110     2009
## 8111     2009
## 8112     2009
## 8113     2009
## 8114     2009
## 8115     2009
## 8116     2009
## 8117     2009
## 8118     2009
## 8119     2009
## 8120     2009
## 8121     2009
## 8122     2009
## 8123     2009
## 8124     2009
## 8125     2009
## 8126     2009
## 8127     2009
## 8128     2009
## 8129     2009
## 8130     2009
## 8131     2009
## 8132     2009
## 8133     2000
## 8134     2000
## 8135     2000
## 8136     2000
## 8137     2000
## 8138     2000
## 8139     2000
## 8140     2000
## 8141     2000
## 8142     2000
## 8143     2000
## 8144     2000
## 8145     2000
## 8146     2000
## 8147     2000
## 8148     2000
## 8149     2000
## 8150     2000
## 8151     2000
## 8152     2000
## 8153     2000
## 8154     2000
## 8155     2000
## 8156     2000
## 8157     2000
## 8158     2000
## 8159     2000
## 8160     2000
## 8161     2000
## 8162     2000
## 8163     2000
## 8164     2000
## 8165     2000
## 8166     2000
## 8167     2000
## 8168     2000
## 8169     2000
## 8170     2000
## 8171     2000
## 8172     2000
## 8173     2000
## 8174     2000
## 8175     2000
## 8176     2000
## 8177     2000
## 8178     2000
## 8179     2012
## 8180     2012
## 8181     2012
## 8182     2012
## 8183     2012
## 8184     2012
## 8185     2012
## 8186     2012
## 8187     2012
## 8188     2012
## 8189     2012
## 8190     2012
## 8191     2012
## 8192     2012
## 8193     2012
## 8194     2012
## 8195     2012
## 8196     2012
## 8197     2012
## 8198     2012
## 8199     2012
## 8200     2012
## 8201     2012
## 8202     2012
## 8203     2012
## 8204     2012
## 8205     2012
## 8206     2012
## 8207     2012
## 8208     2012
## 8209     2012
## 8210     2012
## 8211     2012
## 8212     2012
## 8213     2012
## 8214     2012
## 8215     2012
## 8216     2012
## 8217     2012
## 8218     2012
## 8219     2012
## 8220     2012
## 8221     2012
## 8222     2012
## 8223     1997
## 8224     1997
## 8225     1997
## 8226     1997
## 8227     1997
## 8228     1997
## 8229     1997
## 8230     1997
## 8231     1997
## 8232     1997
## 8233     1997
## 8234     1997
## 8235     1997
## 8236     1997
## 8237     1997
## 8238     1997
## 8239     1997
## 8240     1997
## 8241     1997
## 8242     1997
## 8243     1997
## 8244     1997
## 8245     1997
## 8246     1997
## 8247     1997
## 8248     1997
## 8249     1997
## 8250     1997
## 8251     1997
## 8252     1997
## 8253     1997
## 8254     1997
## 8255     1997
## 8256     1997
## 8257     1997
## 8258     1997
## 8259     1997
## 8260     1997
## 8261     2016
## 8262     2016
## 8263     2016
## 8264     2016
## 8265     2016
## 8266     2016
## 8267     2016
## 8268     2016
## 8269     2016
## 8270     2016
## 8271     2016
## 8272     2016
## 8273     2016
## 8274     2016
## 8275     2016
## 8276     2016
## 8277     2016
## 8278     2016
## 8279     2016
## 8280     2016
## 8281     2016
## 8282     2016
## 8283     2016
## 8284     2016
## 8285     2016
## 8286     2016
## 8287     2016
## 8288     2016
## 8289     2016
## 8290     2016
## 8291     2016
## 8292     2016
## 8293     2016
## 8294     2016
## 8295     2016
## 8296     2016
## 8297     2016
## 8298     2016
## 8299     2016
## 8300     2016
## 8301     2016
## 8302     2016
## 8303     2016
## 8304     2016
## 8305     2016
## 8306     2016
## 8307     2016
## 8308     2016
## 8309     2016
## 8310     2016
## 8311     2016
## 8312     2016
## 8313     2016
## 8314     2016
## 8315     2016
## 8316     2016
## 8317     2016
## 8318     2016
## 8319     2016
## 8320     2016
## 8321     2016
## 8322     2016
## 8323     2016
## 8324     2016
## 8325     2016
## 8326     2016
## 8327     2016
## 8328     2016
## 8329     2016
## 8330     2016
## 8331     2016
## 8332     2016
## 8333     2016
## 8334     2016
## 8335     2016
## 8336     2016
## 8337     2016
## 8338     2016
## 8339     2016
## 8340     2016
## 8341     2016
## 8342     2016
## 8343     2016
## 8344     2016
## 8345     2016
## 8346     2016
## 8347     2016
## 8348     2016
## 8349     2016
## 8350     2016
## 8351     2016
## 8352     2016
## 8353     2016
## 8354     2016
## 8355     2016
## 8356     2016
## 8357     2016
## 8358     2016
## 8359     2016
## 8360     2016
## 8361     2016
## 8362     2016
## 8363     2016
## 8364     2016
## 8365     2016
## 8366     2016
## 8367     2016
## 8368     2016
## 8369     2016
## 8370     2016
## 8371     2016
## 8372     2016
## 8373     2016
## 8374     2016
## 8375     2016
## 8376     2016
## 8377     2016
## 8378     2016
## 8379     2016
## 8380     2016
## 8381     2016
## 8382     2016
## 8383     2016
## 8384     2016
## 8385     2016
## 8386     2016
## 8387     2016
## 8388     2016
## 8389     2016
## 8390     2016
## 8391     2016
## 8392     2016
## 8393     2016
## 8394     2016
## 8395     2016
## 8396     2016
## 8397     2016
## 8398     2016
## 8399     2016
## 8400     2016
## 8401     2016
## 8402     2016
## 8403     2016
## 8404     2016
## 8405     2016
## 8406     2016
## 8407     2016
## 8408     2016
## 8409     2016
## 8410     2016
## 8411     2016
## 8412     2016
## 8413     2016
## 8414     2016
## 8415     2016
## 8416     2016
## 8417     2016
## 8418     2016
## 8419     2016
## 8420     2016
## 8421     2016
## 8422     2016
## 8423     2016
## 8424     2016
## 8425     2016
## 8426     2016
## 8427     2016
## 8428     2016
## 8429     2016
## 8430     2016
## 8431     2016
## 8432     2016
## 8433     2016
## 8434     2016
## 8435     2016
## 8436     2016
## 8437     2016
## 8438     2016
## 8439     2016
## 8440     2016
## 8441     2016
## 8442     2016
## 8443     2016
## 8444     2016
## 8445     2016
## 8446     2016
## 8447     2016
## 8448     2016
## 8449     2016
## 8450     2016
## 8451     2016
## 8452     2016
## 8453     2016
## 8454     2016
## 8455     2016
## 8456     2016
## 8457     2016
## 8458     2016
## 8459     2016
## 8460     2016
## 8461     2016
## 8462     2016
## 8463     2016
## 8464     2016
## 8465     2016
## 8466     2016
## 8467     2016
## 8468     2016
## 8469     2016
## 8470     2016
## 8471     2016
## 8472     2016
## 8473     2016
## 8474     2016
## 8475     2016
## 8476     2016
## 8477     2016
## 8478     2016
## 8479     2016
## 8480     2016
## 8481     2016
## 8482     2016
## 8483     2016
## 8484     2016
## 8485     2016
## 8486     2016
## 8487     2016
## 8488     2016
## 8489     2016
## 8490     2016
## 8491     2016
## 8492     2016
## 8493     2016
## 8494     2016
## 8495     2016
## 8496     2016
## 8497     2016
## 8498     2016
## 8499     2016
## 8500     2016
## 8501     2016
## 8502     2016
## 8503     2016
## 8504     2016
## 8505     2016
## 8506     2016
## 8507     2016
## 8508     2016
## 8509     2016
## 8510     2016
## 8511     2016
## 8512     2016
## 8513     2016
## 8514     2016
## 8515     2016
## 8516     2016
## 8517     2016
## 8518     2016
## 8519     2016
## 8520     2016
## 8521     2016
## 8522     2016
## 8523     2016
## 8524     2016
## 8525     2016
## 8526     2016
## 8527     2016
## 8528     2016
## 8529     2016
## 8530     2016
## 8531     2016
## 8532     2016
## 8533     2016
## 8534     2016
## 8535     2016
## 8536     2016
## 8537     2016
## 8538     2016
## 8539     2016
## 8540     2016
## 8541     2016
## 8542     2016
## 8543     2016
## 8544     2016
## 8545     2016
## 8546     2016
## 8547     2016
## 8548     2016
## 8549     2016
## 8550     2016
## 8551     2016
## 8552     2016
## 8553     2016
## 8554     2016
## 8555     2016
## 8556     2016
## 8557     2016
## 8558     2016
## 8559     2016
## 8560     2016
## 8561     2016
## 8562     2016
## 8563     2016
## 8564     2016
## 8565     2016
## 8566     2016
## 8567     2016
## 8568     2016
## 8569     2016
## 8570     2016
## 8571     2016
## 8572     2016
## 8573     2016
## 8574     2016
## 8575     2016
## 8576     2016
## 8577     2016
## 8578     2016
## 8579     2016
## 8580     2016
## 8581     2016
## 8582     2016
## 8583     2016
## 8584     2016
## 8585     2016
## 8586     2016
## 8587     2016
## 8588     2016
## 8589     2016
## 8590     2016
## 8591     2016
## 8592     2016
## 8593     2016
## 8594     2016
## 8595     2016
## 8596     2016
## 8597     2016
## 8598     2016
## 8599     2016
## 8600     2016
## 8601     2016
## 8602     2016
## 8603     2016
## 8604     2016
## 8605     2016
## 8606     2016
## 8607     2016
## 8608     2016
## 8609     2016
## 8610     2016
## 8611     2016
## 8612     2016
## 8613     2016
## 8614     2016
## 8615     2016
## 8616     2016
## 8617     2016
## 8618     2016
## 8619     2016
## 8620     2016
## 8621     2016
## 8622     2016
## 8623     2016
## 8624     2016
## 8625     2016
## 8626     2016
## 8627     2016
## 8628     2016
## 8629     2016
## 8630     2016
## 8631     2016
## 8632     2016
## 8633     2016
## 8634     2016
## 8635     2016
## 8636     2016
## 8637     2016
## 8638     2016
## 8639     2016
## 8640     2016
## 8641     2016
## 8642     2016
## 8643     2016
## 8644     2016
## 8645     2016
## 8646     2016
## 8647     2016
## 8648     2016
## 8649     2016
## 8650     2016
## 8651     2016
## 8652     2016
## 8653     2016
## 8654     2016
## 8655     2016
## 8656     2016
## 8657     2016
## 8658     2016
## 8659     2016
## 8660     2016
## 8661     2016
## 8662     2016
## 8663     2016
## 8664     2016
## 8665     2016
## 8666     2016
## 8667     2016
## 8668     2016
## 8669     2016
## 8670     2016
## 8671     2016
## 8672     2016
## 8673     2016
## 8674     2016
## 8675     2016
## 8676     2016
## 8677     2016
## 8678     2016
## 8679     2016
## 8680     2016
## 8681     2016
## 8682     2016
## 8683     2016
## 8684     2016
## 8685     2016
## 8686     2016
## 8687     2016
## 8688     2016
## 8689     2016
## 8690     2016
## 8691     2016
## 8692     2016
## 8693     2016
## 8694     2016
## 8695     2016
## 8696     2016
## 8697     2016
## 8698     2016
## 8699     2016
## 8700     2016
## 8701     2016
## 8702     2016
## 8703     2016
## 8704     2016
## 8705     2016
## 8706     2016
## 8707     2016
## 8708     2016
## 8709     2016
## 8710     2016
## 8711     2016
## 8712     2016
## 8713     2016
## 8714     2016
## 8715     2016
## 8716     2016
## 8717     2016
## 8718     2016
## 8719     2016
## 8720     2016
## 8721     2016
## 8722     2016
## 8723     2016
## 8724     2016
## 8725     2016
## 8726     2016
## 8727     2016
## 8728     2016
## 8729     2016
## 8730     2016
## 8731     2016
## 8732     2016
## 8733     2016
## 8734     2016
## 8735     2016
## 8736     2016
## 8737     2016
## 8738     2016
## 8739     2016
## 8740     2016
## 8741     2016
## 8742     2016
## 8743     2016
## 8744     2016
## 8745     2016
## 8746     2016
## 8747     2016
## 8748     2016
## 8749     2016
## 8750     2016
## 8751     2016
## 8752     2016
## 8753     2016
## 8754     2016
## 8755     2016
## 8756     2016
## 8757     2016
## 8758     2016
## 8759     2016
## 8760     2016
## 8761     2016
## 8762     2016
## 8763     2016
## 8764     2016
## 8765     2016
## 8766     2016
## 8767     2016
## 8768     2016
## 8769     2016
## 8770     2016
## 8771     2016
## 8772     2016
## 8773     2016
## 8774     2016
## 8775     2016
## 8776     2016
## 8777     2016
## 8778     2016
## 8779     2016
## 8780     2016
## 8781     2016
## 8782     2016
## 8783     1998
## 8784     1998
## 8785     1998
## 8786     1998
## 8787     1998
## 8788     1998
## 8789     1998
## 8790     1998
## 8791     1998
## 8792     1998
## 8793     1998
## 8794     1998
## 8795     1998
## 8796     1998
## 8797     1998
## 8798     1998
## 8799     1998
## 8800     1998
## 8801     1998
## 8802     1998
## 8803     1998
## 8804     1998
## 8805     1998
## 8806     1998
## 8807     1998
## 8808     1998
## 8809     1998
## 8810     1998
## 8811     1998
## 8812     1998
## 8813     1998
## 8814     1998
## 8815     1998
## 8816     1998
## 8817     1998
## 8818     1998
## 8819     1998
## 8820     1998
## 8821     1998
## 8822     1998
## 8823     1998
## 8824     1998
## 8825     1998
## 8826     1998
## 8827     1998
## 8828     1998
## 8829     1998
## 8830     1998
## 8831     1998
## 8832     1998
## 8833     1998
## 8834     1998
## 8835     1998
## 8836     1998
## 8837     1998
## 8838     1998
## 8839     1998
## 8840     1998
## 8841     1998
## 8842     1998
## 8843     1998
## 8844     1998
## 8845     1998
## 8846     1998
## 8847     1998
## 8848     1998
## 8849     1998
## 8850     1998
## 8851     1998
## 8852     1998
## 8853     1998
## 8854     1998
## 8855     1998
## 8856     1998
## 8857     1998
## 8858     1998
## 8859     1998
## 8860     1998
## 8861     1998
## 8862     1998
## 8863     1998
## 8864     1998
## 8865     1998
## 8866     1998
## 8867     1998
## 8868     1998
## 8869     1998
## 8870     1998
## 8871     1998
## 8872     1998
## 8873     1998
## 8874     1998
## 8875     1998
## 8876     1998
## 8877     1998
## 8878     1998
## 8879     1998
## 8880     1998
## 8881     1998
## 8882     1998
## 8883     1998
## 8884     1998
## 8885     1998
## 8886     1998
## 8887     1998
## 8888     1998
## 8889     1998
## 8890     1998
## 8891     1998
## 8892     1998
## 8893     1998
## 8894     1998
## 8895     1998
## 8896     1998
## 8897     1998
## 8898     1998
## 8899     1998
## 8900     1998
## 8901     1998
## 8902     1998
## 8903     1998
## 8904     1998
## 8905     1998
## 8906     1998
## 8907     1998
## 8908     1998
## 8909     1998
## 8910     1998
## 8911     1998
## 8912     1998
## 8913     1998
## 8914     1998
## 8915     1998
## 8916     1998
## 8917     1998
## 8918     1998
## 8919     1998
## 8920     1998
## 8921     1998
## 8922     1998
## 8923     1998
## 8924     1998
## 8925     1998
## 8926     1998
## 8927     1998
## 8928     1998
## 8929     1998
## 8930     1998
## 8931     1998
## 8932     1998
## 8933     1998
## 8934     1998
## 8935     1998
## 8936     1998
## 8937     1998
## 8938     1998
## 8939     1998
## 8940     1998
## 8941     1998
## 8942     1998
## 8943     1998
## 8944     1998
## 8945     1998
## 8946     1998
## 8947     1998
## 8948     1998
## 8949     1998
## 8950     1998
## 8951     1998
## 8952     1998
## 8953     1998
## 8954     1998
## 8955     1998
## 8956     1998
## 8957     1998
## 8958     1998
## 8959     1998
## 8960     1998
## 8961     1998
## 8962     1998
## 8963     1998
## 8964     1998
## 8965     1998
## 8966     1998
## 8967     1998
## 8968     1998
## 8969     1998
## 8970     1998
## 8971     1998
## 8972     1998
## 8973     1998
## 8974     1998
## 8975     1998
## 8976     1998
## 8977     1998
## 8978     1998
## 8979     1998
## 8980     1998
## 8981     1998
## 8982     1998
## 8983     1998
## 8984     1998
## 8985     1998
## 8986     1998
## 8987     1998
## 8988     1998
## 8989     1998
## 8990     1998
## 8991     1998
## 8992     2000
## 8993     2000
## 8994     2000
## 8995     2000
## 8996     2000
## 8997     2000
## 8998     2000
## 8999     2000
## 9000     2000
## 9001     2000
## 9002     2000
## 9003     2000
## 9004     2000
## 9005     2000
## 9006     2000
## 9007     2000
## 9008     2000
## 9009     2000
## 9010     2000
## 9011     2000
## 9012     2000
## 9013     2000
## 9014     2000
## 9015     2000
## 9016     2000
## 9017     2000
## 9018     2000
## 9019     2000
## 9020     2000
## 9021     2000
## 9022     2000
## 9023     2000
## 9024     2000
## 9025     2000
## 9026     2000
## 9027     2000
## 9028     2000
## 9029     2000
## 9030     2000
## 9031     2000
## 9032     2000
## 9033     2000
## 9034     2000
## 9035     2000
## 9036     2000
## 9037     2000
## 9038     2000
## 9039     2000
## 9040     2000
## 9041     2000
## 9042     2000
## 9043     2000
## 9044     2000
## 9045     2000
## 9046     2000
## 9047     2000
## 9048     2000
## 9049     2000
## 9050     2000
## 9051     2000
## 9052     2000
## 9053     2000
## 9054     2000
## 9055     2000
## 9056     2000
## 9057     2000
## 9058     2000
## 9059     2000
## 9060     2000
## 9061     2000
## 9062     2000
## 9063     2000
## 9064     2000
## 9065     2006
## 9066     2006
## 9067     2006
## 9068     2006
## 9069     2006
## 9070     2006
## 9071     2006
## 9072     2006
## 9073     2006
## 9074     2006
## 9075     2006
## 9076     2006
## 9077     2006
## 9078     2006
## 9079     2006
## 9080     2006
## 9081     2006
## 9082     2006
## 9083     2006
## 9084     2006
## 9085     2006
## 9086     2006
## 9087     2006
## 9088     2006
## 9089     2006
## 9090     2006
## 9091     2006
## 9092     2006
## 9093     2006
## 9094     2006
## 9095     2006
## 9096     2006
## 9097     2006
## 9098     2006
## 9099     2006
## 9100     2006
## 9101     2006
## 9102     2006
## 9103     2006
## 9104     2006
## 9105     2006
## 9106     2006
## 9107     2006
## 9108     2006
## 9109     2006
## 9110     2006
## 9111     2006
## 9112     2006
## 9113     2006
## 9114     2006
## 9115     2006
## 9116     2006
## 9117     2006
## 9118     2006
## 9119     2006
## 9120     2006
## 9121     2006
## 9122     2006
## 9123     2006
## 9124     2006
## 9125     2006
## 9126     2006
## 9127     2006
## 9128     2006
## 9129     2006
## 9130     2006
## 9131     2006
## 9132     2006
## 9133     2006
## 9134     2006
## 9135     2006
## 9136     2006
## 9137     2006
## 9138     2006
## 9139     2006
## 9140     2006
## 9141     2006
## 9142     2006
## 9143     2005
## 9144     2005
## 9145     2005
## 9146     2005
## 9147     2005
## 9148     2005
## 9149     2005
## 9150     2005
## 9151     2005
## 9152     2005
## 9153     2005
## 9154     2005
## 9155     2005
## 9156     2005
## 9157     2005
## 9158     2005
## 9159     2005
## 9160     2005
## 9161     2005
## 9162     2005
## 9163     2005
## 9164     2005
## 9165     2005
## 9166     2005
## 9167     2005
## 9168     2005
## 9169     2005
## 9170     2005
## 9171     2005
## 9172     2005
## 9173     2005
## 9174     2005
## 9175     2005
## 9176     2005
## 9177     2005
## 9178     2005
## 9179     2005
## 9180     2005
## 9181     2005
## 9182     2005
## 9183     2005
## 9184     2005
## 9185     2005
## 9186     2005
## 9187     2005
## 9188     2005
## 9189     2005
## 9190     2005
## 9191     2005
## 9192     2005
## 9193     2005
## 9194     2005
## 9195     2005
## 9196     2005
## 9197     2005
## 9198     2008
## 9199     2008
## 9200     2008
## 9201     2008
## 9202     2008
## 9203     2008
## 9204     2008
## 9205     2008
## 9206     2008
## 9207     2008
## 9208     2008
## 9209     2008
## 9210     2008
## 9211     2008
## 9212     2008
## 9213     2008
## 9214     2008
## 9215     2008
## 9216     2008
## 9217     2008
## 9218     2008
## 9219     2008
## 9220     2008
## 9221     2008
## 9222     2008
## 9223     2008
## 9224     2008
## 9225     2008
## 9226     2008
## 9227     2008
## 9228     2008
## 9229     2008
## 9230     2008
## 9231     2008
## 9232     2008
## 9233     2008
## 9234     2008
## 9235     2008
## 9236     2008
## 9237     2008
## 9238     2008
## 9239     2008
## 9240     2008
## 9241     2008
## 9242     2008
## 9243     2008
## 9244     2008
## 9245     2008
## 9246     2008
## 9247     2008
## 9248     2008
## 9249     2008
## 9250     2008
## 9251     2008
## 9252     2008
## 9253     2008
## 9254     2008
## 9255     2008
## 9256     2008
## 9257     2008
## 9258     2008
## 9259     2008
## 9260     2008
## 9261     2008
## 9262     2008
## 9263     2008
## 9264     2008
## 9265     2008
## 9266     2008
## 9267     2008
## 9268     2008
## 9269     2008
## 9270     2008
## 9271     2008
## 9272     2008
## 9273     2008
## 9274     2008
## 9275     2008
## 9276     2008
## 9277     2008
## 9278     2008
## 9279     2008
## 9280     2008
## 9281     2008
## 9282     2008
## 9283     2008
## 9284     2008
## 9285     2008
## 9286     2008
## 9287     2008
## 9288     2008
## 9289     2008
## 9290     2008
## 9291     2008
## 9292     2008
## 9293     2008
## 9294     2008
## 9295     2008
## 9296     2008
## 9297     2008
## 9298     2008
## 9299     2008
## 9300     2008
## 9301     2008
## 9302     2008
## 9303     2008
## 9304     2008
## 9305     2008
## 9306     2008
## 9307     2008
## 9308     2008
## 9309     2008
## 9310     2008
## 9311     2008
## 9312     2008
## 9313     2008
## 9314     2008
## 9315     2008
## 9316     2008
## 9317     2008
## 9318     2008
## 9319     2008
## 9320     2008
## 9321     2008
## 9322     2008
## 9323     2008
## 9324     2008
## 9325     2008
## 9326     2008
## 9327     2008
## 9328     2008
## 9329     2008
## 9330     2008
## 9331     2008
## 9332     2008
## 9333     2008
## 9334     2008
## 9335     2008
## 9336     2008
## 9337     2008
## 9338     2008
## 9339     2008
## 9340     2008
## 9341     2008
## 9342     2008
## 9343     2008
## 9344     2008
## 9345     2008
## 9346     2008
## 9347     2008
## 9348     2008
## 9349     2008
## 9350     2008
## 9351     2008
## 9352     2008
## 9353     2008
## 9354     2008
## 9355     2008
## 9356     2008
## 9357     2008
## 9358     2008
## 9359     2008
## 9360     2008
## 9361     2008
## 9362     2008
## 9363     2008
## 9364     2016
## 9365     2015
## 9366     2015
## 9367     2015
## 9368     2015
## 9369     2015
## 9370     2015
## 9371     2016
## 9372     2015
## 9373     2015
## 9374     2015
## 9375     2016
## 9376     2015
## 9377     2016
## 9378     2016
## 9379     2015
## 9380     2016
## 9381     2016
## 9382     2016
## 9383     2016
## 9384     2016
## 9385     2016
## 9386     2016
## 9387     2016
## 9388     2016
## 9389     2016
## 9390     2016
## 9391     2016
## 9392     2016
## 9393     2016
## 9394     2016
## 9395     2015
## 9396     2016
## 9397     2016
## 9398     2016
## 9399     2016
## 9400     2016
## 9401     2016
## 9402     2016
## 9403     2016
## 9404     2015
## 9405     2015
## 9406     2016
## 9407     2015
## 9408     2016
## 9409     2016
## 9410     2015
## 9411     2016
## 9412     2015
## 9413     2016
## 9414     2015
## 9415     2016
## 9416     2016
## 9417     2004
## 9418     2004
## 9419     2004
## 9420     2004
## 9421     2004
## 9422     2004
## 9423     2004
## 9424     2004
## 9425     2004
## 9426     2004
## 9427     2004
## 9428     2004
## 9429     2004
## 9430     2004
## 9431     2004
## 9432     2004
## 9433     2004
## 9434     2004
## 9435     2004
## 9436     2004
## 9437     2004
## 9438     2004
## 9439     2004
## 9440     2004
## 9441     2004
## 9442     2004
## 9443     2004
## 9444     2004
## 9445     2004
## 9446     2004
## 9447     2004
## 9448     2004
## 9449     2004
## 9450     2004
## 9451     2004
## 9452     2004
## 9453     2004
## 9454     2004
## 9455     2004
## 9456     2004
## 9457     2004
## 9458     2004
## 9459     2004
## 9460     2004
## 9461     2004
## 9462     2004
## 9463     2004
## 9464     2004
## 9465     2004
## 9466     2004
## 9467     2004
## 9468     2004
## 9469     2004
## 9470     2004
## 9471     2004
## 9472     2004
## 9473     2004
## 9474     2004
## 9475     2004
## 9476     2004
## 9477     2004
## 9478     2004
## 9479     2004
## 9480     2004
## 9481     2004
## 9482     2004
## 9483     2004
## 9484     2004
## 9485     2004
## 9486     2004
## 9487     2004
## 9488     2004
## 9489     2004
## 9490     2004
## 9491     2004
## 9492     2004
## 9493     2004
## 9494     2004
## 9495     2004
## 9496     2004
## 9497     2004
## 9498     2004
## 9499     2004
## 9500     2004
## 9501     2004
## 9502     2004
## 9503     2004
## 9504     2004
## 9505     2004
## 9506     2004
## 9507     2004
## 9508     2004
## 9509     2004
## 9510     2004
## 9511     2004
## 9512     2004
## 9513     2004
## 9514     1996
## 9515     1996
## 9516     1996
## 9517     1996
## 9518     1996
## 9519     1996
## 9520     1996
## 9521     1996
## 9522     1996
## 9523     1996
## 9524     1996
## 9525     1996
## 9526     1996
## 9527     1996
## 9528     1996
## 9529     1996
## 9530     1996
## 9531     1996
## 9532     1996
## 9533     1996
## 9534     1996
## 9535     1999
## 9536     1999
## 9537     1999
## 9538     1999
## 9539     1999
## 9540     1999
## 9541     1999
## 9542     1999
## 9543     1999
## 9544     1999
## 9545     1999
## 9546     1999
## 9547     1999
## 9548     1999
## 9549     1999
## 9550     1999
## 9551     1999
## 9552     1999
## 9553     1999
## 9554     1999
## 9555     1999
## 9556     1999
## 9557     1999
## 9558     1999
## 9559     1999
## 9560     1999
## 9561     1999
## 9562     2000
## 9563     2000
## 9564     2000
## 9565     2000
## 9566     2000
## 9567     2000
## 9568     2000
## 9569     2000
## 9570     2000
## 9571     2000
## 9572     2000
## 9573     2000
## 9574     2000
## 9575     2000
## 9576     2000
## 9577     2000
## 9578     2000
## 9579     2000
## 9580     2000
## 9581     2000
## 9582     2000
## 9583     2000
## 9584     2000
## 9585     2000
## 9586     2000
## 9587     2000
## 9588     2000
## 9589     2000
## 9590     2000
## 9591     2000
## 9592     2000
## 9593     2000
## 9594     2000
## 9595     2000
## 9596     2000
## 9597     2000
## 9598     2000
## 9599     2000
## 9600     2000
## 9601     2000
## 9602     2000
## 9603     2000
## 9604     2000
## 9605     2000
## 9606     2000
## 9607     2000
## 9608     2000
## 9609     2000
## 9610     2000
## 9611     1997
## 9612     1997
## 9613     1997
## 9614     1997
## 9615     1997
## 9616     1997
## 9617     1997
## 9618     1997
## 9619     1997
## 9620     1997
## 9621     1997
## 9622     1997
## 9623     1997
## 9624     1997
## 9625     1997
## 9626     1997
## 9627     1997
## 9628     1997
## 9629     1997
## 9630     1997
## 9631     1997
## 9632     1997
## 9633     1997
## 9634     1997
## 9635     1997
## 9636     1997
## 9637     1997
## 9638     1997
## 9639     1997
## 9640     1997
## 9641     1997
## 9642     1997
## 9643     1997
## 9644     1997
## 9645     1997
## 9646     1997
## 9647     1997
## 9648     1997
## 9649     1997
## 9650     1997
## 9651     1997
## 9652     1997
## 9653     1997
## 9654     1997
## 9655     1997
## 9656     1997
## 9657     1997
## 9658     1997
## 9659     1997
## 9660     1997
## 9661     1997
## 9662     1997
## 9663     1997
## 9664     1997
## 9665     1997
## 9666     1997
## 9667     1997
## 9668     1997
## 9669     1997
## 9670     1997
## 9671     1997
## 9672     1997
## 9673     1997
## 9674     1997
## 9675     1997
## 9676     1997
## 9677     1997
## 9678     1997
## 9679     1997
## 9680     1997
## 9681     1997
## 9682     1997
## 9683     1997
## 9684     1997
## 9685     1997
## 9686     1997
## 9687     1997
## 9688     1997
## 9689     1997
## 9690     1997
## 9691     1997
## 9692     1997
## 9693     1997
## 9694     1997
## 9695     1997
## 9696     1997
## 9697     1997
## 9698     1997
## 9699     1997
## 9700     1997
## 9701     1997
## 9702     1997
## 9703     1997
## 9704     1997
## 9705     1997
## 9706     1997
## 9707     1997
## 9708     1997
## 9709     1997
## 9710     1997
## 9711     1997
## 9712     1997
## 9713     1997
## 9714     2007
## 9715     2009
## 9716     2009
## 9717     2007
## 9718     2008
## 9719     2009
## 9720     2008
## 9721     2007
## 9722     2008
## 9723     2007
## 9724     2009
## 9725     2008
## 9726     2007
## 9727     2008
## 9728     2007
## 9729     2007
## 9730     2008
## 9731     2007
## 9732     2008
## 9733     2007
## 9734     2007
## 9735     2007
## 9736     2009
## 9737     2009
## 9738     2009
## 9739     2008
## 9740     2008
## 9741     2009
## 9742     2008
## 9743     2007
## 9744     2007
## 9745     2007
## 9746     2008
## 9747     2007
## 9748     2007
## 9749     2007
## 9750     2008
## 9751     2007
## 9752     2008
## 9753     2007
## 9754     2007
## 9755     2007
## 9756     2007
## 9757     2008
## 9758     2009
## 9759     2007
## 9760     2009
## 9761     2009
## 9762     2009
## 9763     2007
## 9764     2007
## 9765     2007
## 9766     2009
## 9767     2007
## 9768     2008
## 9769     2008
## 9770     2009
## 9771     2007
## 9772     2009
## 9773     2009
## 9774     2007
## 9775     2008
## 9776     2007
## 9777     2007
## 9778     2009
## 9779     2007
## 9780     2007
## 9781     2009
## 9782     2009
## 9783     2007
## 9784     2009
## 9785     2009
## 9786     2007
## 9787     2007
## 9788     2007
## 9789     2007
## 9790     2007
## 9791     2007
## 9792     2007
## 9793     2007
## 9794     2009
## 9795     2007
## 9796     2008
## 9797     2009
## 9798     2007
## 9799     2007
## 9800     2007
## 9801     2009
## 9802     2007
## 9803     2007
## 9804     2009
## 9805     2007
## 9806     2007
## 9807     2009
## 9808     2007
## 9809     2008
## 9810     2007
## 9811     2007
## 9812     2007
## 9813     2007
## 9814     2007
## 9815     2007
## 9816     2007
## 9817     2009
## 9818     2012
## 9819     2009
## 9820     2007
## 9821     2007
## 9822     2009
## 9823     2007
## 9824     2008
## 9825     2007
## 9826     2007
## 9827     2010
## 9828     2012
## 9829     2007
## 9830     2007
## 9831     2007
## 9832     2007
## 9833     2009
## 9834     2007
## 9835     2008
## 9836     2008
## 9837     2013
## 9838     2013
## 9839     2013
## 9840     2013
## 9841     2013
## 9842     2013
## 9843     2013
## 9844     2013
## 9845     2013
## 9846     2013
## 9847     2012
## 9848     2013
## 9849     2013
## 9850     2013
## 9851     2013
## 9852     2013
## 9853     2013
## 9854     2012
## 9855     2013
## 9856     2013
## 9857     2013
## 9858     2013
## 9859     2013
## 9860     2013
## 9861     2013
## 9862     2013
## 9863     2013
## 9864     2013
## 9865     2012
## 9866     2012
## 9867     2013
## 9868     2013
## 9869     2013
## 9870     2013
## 9871     2013
## 9872     2013
## 9873     2012
## 9874     2013
## 9875     2013
## 9876     2013
## 9877     2013
## 9878     2013
## 9879     2013
## 9880     2013
## 9881     2013
## 9882     2013
## 9883     2012
## 9884     2012
## 9885     2012
## 9886     2013
## 9887     2013
## 9888     2013
## 9889     2012
## 9890     2013
## 9891     2013
## 9892     2013
## 9893     2013
## 9894     2013
## 9895     2012
## 9896     2012
## 9897     2012
## 9898     2013
## 9899     2013
## 9900     2012
## 9901     2013
## 9902     2013
## 9903     2013
## 9904     2013
## 9905     2013
## 9906     2012
## 9907     2013
## 9908     2013
## 9909     2013
## 9910     2013
## 9911     2013
## 9912     2013
## 9913     2013
## 9914     2013
## 9915     2012
## 9916     2012
## 9917     2012
## 9918     1997
## 9919     1997
## 9920     1997
## 9921     1997
## 9922     1997
## 9923     1997
## 9924     1997
## 9925     1997
## 9926     1997
## 9927     1997
## 9928     1997
## 9929     1997
## 9930     1997
## 9931     1997
## 9932     1997
## 9933     1997
## 9934     1997
## 9935     1997
## 9936     1997
## 9937     1997
## 9938     1997
## 9939     1997
## 9940     1997
## 9941     1997
## 9942     1997
## 9943     1997
## 9944     1997
## 9945     1997
## 9946     1997
## 9947     1997
## 9948     1997
## 9949     1997
## 9950     1997
## 9951     1997
## 9952     1997
## 9953     1997
## 9954     1997
## 9955     1997
## 9956     1997
## 9957     1997
## 9958     1997
## 9959     1997
## 9960     1997
## 9961     1997
## 9962     1997
## 9963     1997
## 9964     1997
## 9965     1997
## 9966     1997
## 9967     1997
## 9968     1997
## 9969     1997
## 9970     1997
## 9971     1997
## 9972     1997
## 9973     1997
## 9974     1997
## 9975     1997
## 9976     1997
## 9977     1997
## 9978     1997
## 9979     1997
## 9980     1997
## 9981     1997
## 9982     1997
## 9983     1997
## 9984     1997
## 9985     1997
## 9986     1997
## 9987     1997
## 9988     1997
## 9989     1997
## 9990     1997
## 9991     1997
## 9992     1997
## 9993     1997
## 9994     1997
## 9995     1997
## 9996     1997
## 9997     1997
## 9998     1997
## 9999     1997
## 10000    1997
## 10001    2000
## 10002    2000
## 10003    2000
## 10004    2000
## 10005    2000
## 10006    2000
## 10007    2000
## 10008    2000
## 10009    2000
## 10010    2000
## 10011    2000
## 10012    2000
## 10013    2000
## 10014    2000
## 10015    2000
## 10016    2000
## 10017    2000
## 10018    2000
## 10019    2000
## 10020    2000
## 10021    2000
## 10022    2000
## 10023    2000
## 10024    2016
## 10025    2016
## 10026    2016
## 10027    2016
## 10028    2016
## 10029    2016
## 10030    2016
## 10031    2016
## 10032    2016
## 10033    2016
## 10034    2016
## 10035    2016
## 10036    2016
## 10037    2016
## 10038    2016
## 10039    2016
## 10040    2016
## 10041    2016
## 10042    2016
## 10043    2016
## 10044    2016
## 10045    2016
## 10046    2016
## 10047    2016
## 10048    2016
## 10049    2016
## 10050    2016
## 10051    2016
## 10052    2016
## 10053    2016
## 10054    2016
## 10055    2016
## 10056    2016
## 10057    2016
## 10058    2016
## 10059    2016
## 10060    2016
## 10061    2016
## 10062    2016
## 10063    2016
## 10064    2016
## 10065    2016
## 10066    2016
## 10067    2016
## 10068    2016
## 10069    2016
## 10070    2016
## 10071    2016
## 10072    2016
## 10073    2016
## 10074    2016
## 10075    2016
## 10076    2016
## 10077    2016
## 10078    2016
## 10079    2016
## 10080    2016
## 10081    2016
## 10082    2016
## 10083    2016
## 10084    2016
## 10085    2016
## 10086    2016
## 10087    2016
## 10088    2016
## 10089    2016
## 10090    2016
## 10091    2016
## 10092    2016
## 10093    2016
## 10094    2016
## 10095    2016
## 10096    2016
## 10097    2016
## 10098    2016
## 10099    2016
## 10100    2016
## 10101    2016
## 10102    2016
## 10103    2016
## 10104    2016
## 10105    2016
## 10106    2016
## 10107    2016
## 10108    2016
## 10109    2016
## 10110    2016
## 10111    2016
## 10112    2016
## 10113    2016
## 10114    2016
## 10115    2016
## 10116    2016
## 10117    2016
## 10118    2016
## 10119    2016
## 10120    2016
## 10121    2016
## 10122    2016
## 10123    2016
## 10124    2016
## 10125    2016
## 10126    2016
## 10127    2016
## 10128    2016
## 10129    2016
## 10130    2016
## 10131    2016
## 10132    2016
## 10133    2016
## 10134    2016
## 10135    2016
## 10136    2016
## 10137    2016
## 10138    2016
## 10139    2016
## 10140    2016
## 10141    2016
## 10142    2016
## 10143    2016
## 10144    2016
## 10145    2016
## 10146    2016
## 10147    2016
## 10148    2016
## 10149    2016
## 10150    2016
## 10151    2016
## 10152    2016
## 10153    2016
## 10154    2016
## 10155    2016
## 10156    2016
## 10157    2016
## 10158    2016
## 10159    2016
## 10160    2016
## 10161    2016
## 10162    2016
## 10163    2016
## 10164    2016
## 10165    2016
## 10166    2016
## 10167    2016
## 10168    2016
## 10169    2016
## 10170    2016
## 10171    2016
## 10172    2016
## 10173    2016
## 10174    2016
## 10175    2016
## 10176    2016
## 10177    2016
## 10178    2016
## 10179    2016
## 10180    2016
## 10181    2016
## 10182    2016
## 10183    2016
## 10184    2016
## 10185    2016
## 10186    2016
## 10187    2016
## 10188    2016
## 10189    2016
## 10190    2016
## 10191    2016
## 10192    2016
## 10193    2016
## 10194    2016
## 10195    2016
## 10196    2016
## 10197    2016
## 10198    2016
## 10199    2016
## 10200    2016
## 10201    2016
## 10202    2016
## 10203    2016
## 10204    2016
## 10205    2016
## 10206    2016
## 10207    2016
## 10208    2016
## 10209    2016
## 10210    2016
## 10211    2016
## 10212    2016
## 10213    2016
## 10214    2016
## 10215    2011
## 10216    2009
## 10217    2012
## 10218    2009
## 10219    2009
## 10220    2009
## 10221    2009
## 10222    2009
## 10223    2012
## 10224    2009
## 10225    2012
## 10226    2009
## 10227    2012
## 10228    2009
## 10229    2009
## 10230    2009
## 10231    2009
## 10232    2009
## 10233    2016
## 10234    2011
## 10235    2009
## 10236    2009
## 10237    2009
## 10238    2014
## 10239    2011
## 10240    2009
## 10241    2009
## 10242    2009
## 10243    2009
## 10244    2012
## 10245    2009
## 10246    2010
## 10247    2010
## 10248    2010
## 10249    2009
## 10250    2009
## 10251    2009
## 10252    2009
## 10253    2009
## 10254    2009
## 10255    2009
## 10256    2009
## 10257    2009
## 10258    2016
## 10259    2009
## 10260    2009
## 10261    2010
## 10262    2014
## 10263    2009
## 10264    2016
## 10265    2011
## 10266    2014
## 10267    2010
## 10268    2014
## 10269    2009
## 10270    2015
## 10271    2009
## 10272    2013
## 10273    2009
## 10274    2013
## 10275    2016
## 10276    2009
## 10277    2014
## 10278    2011
## 10279    2009
## 10280    2009
## 10281    2011
## 10282    2009
## 10283    2010
## 10284    2009
## 10285    2009
## 10286    2009
## 10287    2011
## 10288    2009
## 10289    2009
## 10290    2010
## 10291    2009
## 10292    2009
## 10293    2009
## 10294    2016
## 10295    2009
## 10296    2009
## 10297    2011
## 10298    2009
## 10299    2016
## 10300    2009
## 10301    2009
## 10302    2009
## 10303    2010
## 10304    2009
## 10305    2009
## 10306    2009
## 10307    2011
## 10308    2009
## 10309    2011
## 10310    2009
## 10311    2011
## 10312    2010
## 10313    2009
## 10314    2011
## 10315    2011
## 10316    2009
## 10317    2009
## 10318    2009
## 10319    2015
## 10320    2010
## 10321    2009
## 10322    2009
## 10323    2010
## 10324    2016
## 10325    2016
## 10326    2009
## 10327    2009
## 10328    2016
## 10329    2009
## 10330    2009
## 10331    2009
## 10332    2009
## 10333    2009
## 10334    2011
## 10335    2009
## 10336    2009
## 10337    2016
## 10338    2009
## 10339    2011
## 10340    2009
## 10341    2009
## 10342    2009
## 10343    2010
## 10344    2009
## 10345    2011
## 10346    2009
## 10347    2009
## 10348    2009
## 10349    2014
## 10350    2011
## 10351    2016
## 10352    2009
## 10353    2009
## 10354    2009
## 10355    2016
## 10356    2016
## 10357    2009
## 10358    2015
## 10359    2009
## 10360    2015
## 10361    2009
## 10362    2009
## 10363    2010
## 10364    2016
## 10365    2009
## 10366    2010
## 10367    2016
## 10368    2009
## 10369    2016
## 10370    2009
## 10371    2011
## 10372    2014
## 10373    2009
## 10374    2012
## 10375    2014
## 10376    2009
## 10377    2009
## 10378    2009
## 10379    2009
## 10380    2009
## 10381    2009
## 10382    2011
## 10383    2009
## 10384    2009
## 10385    2009
## 10386    2016
## 10387    2009
## 10388    2011
## 10389    2010
## 10390    2012
## 10391    2009
## 10392    2009
## 10393    2010
## 10394    2009
## 10395    2009
## 10396    2009
## 10397    2009
## 10398    2009
## 10399    2009
## 10400    2009
## 10401    2009
## 10402    2009
## 10403    2014
## 10404    2009
## 10405    2009
## 10406    2009
## 10407    2010
## 10408    2009
## 10409    2009
## 10410    2009
## 10411    2009
## 10412    2010
## 10413    2010
## 10414    2009
## 10415    2009
## 10416    2009
## 10417    2009
## 10418    2015
## 10419    2011
## 10420    2012
## 10421    2009
## 10422    2009
## 10423    2014
## 10424    2009
## 10425    2009
## 10426    2011
## 10427    2012
## 10428    2009
## 10429    2012
## 10430    2010
## 10431    2009
## 10432    2009
## 10433    2009
## 10434    2009
## 10435    2009
## 10436    2016
## 10437    2015
## 10438    2009
## 10439    2009
## 10440    2009
## 10441    2013
## 10442    2011
## 10443    2009
## 10444    2010
## 10445    2010
## 10446    2014
## 10447    2010
## 10448    2009
## 10449    2012
## 10450    2010
## 10451    2011
## 10452    2009
## 10453    2009
## 10454    2011
## 10455    2009
## 10456    2011
## 10457    2009
## 10458    2009
## 10459    2010
## 10460    2009
## 10461    2009
## 10462    2009
## 10463    2009
## 10464    2012
## 10465    2014
## 10466    2009
## 10467    2009
## 10468    2009
## 10469    2015
## 10470    2010
## 10471    2016
## 10472    2016
## 10473    2009
## 10474    2009
## 10475    2012
## 10476    2010
## 10477    2009
## 10478    2009
## 10479    2009
## 10480    2009
## 10481    2011
## 10482    2011
## 10483    2009
## 10484    2016
## 10485    2014
## 10486    2009
## 10487    2009
## 10488    2014
## 10489    2009
## 10490    2009
## 10491    2011
## 10492    2009
## 10493    2013
## 10494    2009
## 10495    2009
## 10496    2009
## 10497    2009
## 10498    2009
## 10499    2009
## 10500    2011
## 10501    2012
## 10502    2009
## 10503    2016
## 10504    2010
## 10505    2014
## 10506    2009
## 10507    2009
## 10508    2009
## 10509    2009
## 10510    2009
## 10511    2009
## 10512    2009
## 10513    2009
## 10514    2011
## 10515    2009
## 10516    2009
## 10517    2011
## 10518    2009
## 10519    2016
## 10520    2009
## 10521    2009
## 10522    2009
## 10523    2009
## 10524    2009
## 10525    2009
## 10526    2009
## 10527    2009
## 10528    2009
## 10529    2012
## 10530    2009
## 10531    2009
## 10532    2009
## 10533    2014
## 10534    2009
## 10535    2009
## 10536    2011
## 10537    2013
## 10538    2009
## 10539    2009
## 10540    2010
## 10541    2016
## 10542    2009
## 10543    2015
## 10544    2009
## 10545    2009
## 10546    2015
## 10547    2014
## 10548    2013
## 10549    2013
## 10550    2009
## 10551    2009
## 10552    2009
## 10553    2010
## 10554    2009
## 10555    2009
## 10556    2015
## 10557    2011
## 10558    2012
## 10559    2009
## 10560    2009
## 10561    2009
## 10562    2016
## 10563    2009
## 10564    2009
## 10565    2009
## 10566    2009
## 10567    2011
## 10568    2015
## 10569    2014
## 10570    2009
## 10571    2009
## 10572    2009
## 10573    2014
## 10574    2009
## 10575    2009
## 10576    2011
## 10577    2016
## 10578    2009
## 10579    2011
## 10580    2011
## 10581    2009
## 10582    2009
## 10583    2013
## 10584    2011
## 10585    2010
## 10586    2009
## 10587    2010
## 10588    2015
## 10589    2014
## 10590    2009
## 10591    2009
## 10592    2011
## 10593    2014
## 10594    2009
## 10595    2009
## 10596    2011
## 10597    2011
## 10598    2016
## 10599    2009
## 10600    2011
## 10601    2013
## 10602    2009
## 10603    2009
## 10604    2014
## 10605    2009
## 10606    2009
## 10607    2009
## 10608    2009
## 10609    2009
## 10610    2009
## 10611    2011
## 10612    2011
## 10613    2010
## 10614    2014
## 10615    2012
## 10616    2012
## 10617    2009
## 10618    2009
## 10619    2010
## 10620    2009
## 10621    2009
## 10622    2009
## 10623    2010
## 10624    2009
## 10625    2015
## 10626    2009
## 10627    2009
## 10628    2015
## 10629    2009
## 10630    2009
## 10631    2009
## 10632    2009
## 10633    2009
## 10634    2015
## 10635    2013
## 10636    2009
## 10637    2016
## 10638    2015
## 10639    2013
## 10640    2009
## 10641    2009
## 10642    2009
## 10643    2009
## 10644    2010
## 10645    2009
## 10646    2009
## 10647    2009
## 10648    2009
## 10649    2009
## 10650    2015
## 10651    2015
## 10652    2009
## 10653    2011
## 10654    2009
## 10655    2009
## 10656    2009
## 10657    2009
## 10658    2010
## 10659    2013
## 10660    2015
## 10661    2013
## 10662    2016
## 10663    2009
## 10664    2010
## 10665    2009
## 10666    2014
## 10667    2014
## 10668    2009
## 10669    2009
## 10670    2016
## 10671    2009
## 10672    2010
## 10673    2010
## 10674    2015
## 10675    2011
## 10676    2015
## 10677    2009
## 10678    2015
## 10679    2009
## 10680    2013
## 10681    2016
## 10682    2009
## 10683    2009
## 10684    2015
## 10685    2009
## 10686    2010
## 10687    2013
## 10688    2009
## 10689    2009
## 10690    2009
## 10691    2009
## 10692    2009
## 10693    2011
## 10694    2009
## 10695    2014
## 10696    2009
## 10697    2010
## 10698    2010
## 10699    2009
## 10700    2016
## 10701    2009
## 10702    2011
## 10703    2014
## 10704    2013
## 10705    2009
## 10706    2009
## 10707    2009
## 10708    2009
## 10709    2009
## 10710    2010
## 10711    2009
## 10712    2009
## 10713    2009
## 10714    2011
## 10715    2009
## 10716    2012
## 10717    2009
## 10718    2011
## 10719    2014
## 10720    2009
## 10721    2012
## 10722    2009
## 10723    2016
## 10724    2016
## 10725    2014
## 10726    2012
## 10727    2011
## 10728    2016
## 10729    2015
## 10730    2013
## 10731    2013
## 10732    2016
## 10733    2015
## 10734    2009
## 10735    2011
## 10736    2015
## 10737    2009
## 10738    2012
## 10739    2009
## 10740    2009
## 10741    2012
## 10742    2014
## 10743    2015
## 10744    2009
## 10745    2016
## 10746    2011
## 10747    2009
## 10748    2011
## 10749    2011
## 10750    2009
## 10751    2012
## 10752    2009
## 10753    2009
## 10754    2009
## 10755    2012
## 10756    2010
## 10757    2016
## 10758    2010
## 10759    2009
## 10760    2009
## 10761    2009
## 10762    2009
## 10763    2009
## 10764    2011
## 10765    2009
## 10766    2009
## 10767    2009
## 10768    2010
## 10769    2010
## 10770    2011
## 10771    2009
## 10772    2009
## 10773    2009
## 10774    2009
## 10775    2012
## 10776    2016
## 10777    2009
## 10778    2009
## 10779    2009
## 10780    2013
## 10781    2012
## 10782    2010
## 10783    2009
## 10784    2009
## 10785    2013
## 10786    2010
## 10787    2009
## 10788    2009
## 10789    2009
## 10790    2009
## 10791    2009
## 10792    2010
## 10793    2010
## 10794    2015
## 10795    2011
## 10796    2009
## 10797    2011
## 10798    2010
## 10799    2014
## 10800    2011
## 10801    2009
## 10802    2009
## 10803    2009
## 10804    2009
## 10805    2009
## 10806    2010
## 10807    2009
## 10808    2009
## 10809    2009
## 10810    2009
## 10811    2016
## 10812    2016
## 10813    2009
## 10814    2016
## 10815    2010
## 10816    2009
## 10817    2009
## 10818    2009
## 10819    2016
## 10820    2013
## 10821    2016
## 10822    2014
## 10823    2012
## 10824    2009
## 10825    2009
## 10826    2009
## 10827    2009
## 10828    2009
## 10829    2009
## 10830    2011
## 10831    2009
## 10832    2009
## 10833    2009
## 10834    2009
## 10835    2015
## 10836    2009
## 10837    2009
## 10838    2009
## 10839    2009
## 10840    2009
## 10841    2010
## 10842    2011
## 10843    2009
## 10844    2011
## 10845    2011
## 10846    2009
## 10847    2009
## 10848    2009
## 10849    2015
## 10850    2015
## 10851    2009
## 10852    2009
## 10853    2013
## 10854    2009
## 10855    2009
## 10856    2009
## 10857    2010
## 10858    2014
## 10859    2009
## 10860    2009
## 10861    2009
## 10862    2009
## 10863    2009
## 10864    2009
## 10865    2009
## 10866    2011
## 10867    2009
## 10868    2009
## 10869    2016
## 10870    2009
## 10871    2010
## 10872    2010
## 10873    2009
## 10874    2015
## 10875    2014
## 10876    2009
## 10877    2009
## 10878    2009
## 10879    2009
## 10880    2009
## 10881    2009
## 10882    2009
## 10883    2009
## 10884    2009
## 10885    2014
## 10886    2009
## 10887    2011
## 10888    2009
## 10889    2009
## 10890    2009
## 10891    2009
## 10892    2009
## 10893    2015
## 10894    2009
## 10895    2009
## 10896    2013
## 10897    2009
## 10898    2009
## 10899    2009
## 10900    2009
## 10901    2016
## 10902    2012
## 10903    2015
## 10904    2016
## 10905    2015
## 10906    2009
## 10907    2016
## 10908    2009
## 10909    2015
## 10910    2013
## 10911    2011
## 10912    2009
## 10913    2015
## 10914    2009
## 10915    2015
## 10916    2015
## 10917    2014
## 10918    2011
## 10919    2009
## 10920    2014
## 10921    2009
## 10922    2010
## 10923    2016
## 10924    2009
## 10925    2015
## 10926    2009
## 10927    2014
## 10928    2009
## 10929    2011
## 10930    2009
## 10931    2009
## 10932    2009
## 10933    2009
## 10934    2009
## 10935    2009
## 10936    2009
## 10937    2009
## 10938    2015
## 10939    2010
## 10940    2012
## 10941    2011
## 10942    2011
## 10943    2009
## 10944    2015
## 10945    2009
## 10946    2009
## 10947    2011
## 10948    2016
## 10949    2012
## 10950    2009
## 10951    2009
## 10952    2010
## 10953    2014
## 10954    2009
## 10955    2014
## 10956    2009
## 10957    2011
## 10958    2009
## 10959    2011
## 10960    2011
## 10961    2009
## 10962    2009
## 10963    2009
## 10964    2010
## 10965    2009
## 10966    2010
## 10967    2009
## 10968    2013
## 10969    2010
## 10970    2009
## 10971    2016
## 10972    2014
## 10973    2015
## 10974    2015
## 10975    2015
## 10976    2011
## 10977    2009
## 10978    2013
## 10979    2015
## 10980    2009
## 10981    2014
## 10982    2016
## 10983    2016
## 10984    2011
## 10985    2012
## 10986    2009
## 10987    2009
## 10988    2011
## 10989    2009
## 10990    2009
## 10991    2009
## 10992    2009
## 10993    2009
## 10994    2016
## 10995    2011
## 10996    2009
## 10997    2009
## 10998    2009
## 10999    2009
## 11000    2016
## 11001    2009
## 11002    2012
## 11003    2009
## 11004    2009
## 11005    2009
## 11006    2015
## 11007    2012
## 11008    2015
## 11009    2009
## 11010    2009
## 11011    2009
## 11012    2012
## 11013    2009
## 11014    2011
## 11015    2009
## 11016    2009
## 11017    2009
## 11018    2009
## 11019    2009
## 11020    2014
## 11021    2009
## 11022    2011
## 11023    2014
## 11024    2012
## 11025    2009
## 11026    2016
## 11027    2016
## 11028    2011
## 11029    2011
## 11030    2010
## 11031    2009
## 11032    2010
## 11033    2010
## 11034    2009
## 11035    2009
## 11036    2014
## 11037    2014
## 11038    2013
## 11039    2009
## 11040    2009
## 11041    2016
## 11042    2016
## 11043    2009
## 11044    2009
## 11045    2015
## 11046    2011
## 11047    2009
## 11048    2009
## 11049    2011
## 11050    2014
## 11051    2013
## 11052    2009
## 11053    2009
## 11054    2009
## 11055    2014
## 11056    2011
## 11057    2013
## 11058    2014
## 11059    2009
## 11060    2009
## 11061    2009
## 11062    2009
## 11063    2009
## 11064    2009
## 11065    2012
## 11066    2013
## 11067    2009
## 11068    2009
## 11069    2015
## 11070    2016
## 11071    2009
## 11072    2009
## 11073    2016
## 11074    2009
## 11075    2009
## 11076    2012
## 11077    2009
## 11078    2012
## 11079    2013
## 11080    2010
## 11081    2016
## 11082    2016
## 11083    2011
## 11084    2010
## 11085    2009
## 11086    2015
## 11087    2009
## 11088    2011
## 11089    2016
## 11090    2010
## 11091    2009
## 11092    2009
## 11093    2013
## 11094    2013
## 11095    2016
## 11096    2009
## 11097    2009
## 11098    2009
## 11099    2015
## 11100    2009
## 11101    2009
## 11102    2009
## 11103    2010
## 11104    2013
## 11105    2015
## 11106    2012
## 11107    2009
## 11108    2016
## 11109    2009
## 11110    2014
## 11111    2012
## 11112    2012
## 11113    2009
## 11114    2011
## 11115    2009
## 11116    2009
## 11117    2009
## 11118    2016
## 11119    2012
## 11120    2009
## 11121    2010
## 11122    2009
## 11123    2016
## 11124    2009
## 11125    2009
## 11126    2009
## 11127    2009
## 11128    2010
## 11129    2009
## 11130    2009
## 11131    2009
## 11132    2011
## 11133    2009
## 11134    2009
## 11135    2014
## 11136    2009
## 11137    2009
## 11138    2009
## 11139    2009
## 11140    2009
## 11141    2009
## 11142    2012
## 11143    2009
## 11144    2010
## 11145    2011
## 11146    2010
## 11147    2015
## 11148    2009
## 11149    2009
## 11150    2015
## 11151    2010
## 11152    2015
## 11153    2015
## 11154    2016
## 11155    2014
## 11156    2011
## 11157    2009
## 11158    2009
## 11159    2011
## 11160    2016
## 11161    2009
## 11162    2009
## 11163    2009
## 11164    2014
## 11165    2015
## 11166    2009
## 11167    2011
## 11168    2016
## 11169    2009
## 11170    2012
## 11171    2014
## 11172    2016
## 11173    2011
## 11174    2009
## 11175    2009
## 11176    2009
## 11177    2013
## 11178    2009
## 11179    2009
## 11180    2009
## 11181    2009
## 11182    2015
## 11183    2009
## 11184    2009
## 11185    2012
## 11186    2016
## 11187    2015
## 11188    2011
## 11189    2009
## 11190    2016
## 11191    2009
## 11192    2011
## 11193    2014
## 11194    2009
## 11195    2009
## 11196    2009
## 11197    2009
## 11198    2009
## 11199    2014
## 11200    2013
## 11201    2014
## 11202    2012
## 11203    2016
## 11204    2016
## 11205    2015
## 11206    2015
## 11207    2011
## 11208    2009
## 11209    2015
## 11210    2015
## 11211    2009
## 11212    2013
## 11213    2015
## 11214    2015
## 11215    2013
## 11216    2009
## 11217    2009
## 11218    2011
## 11219    2016
## 11220    2009
## 11221    2011
## 11222    2010
## 11223    2012
## 11224    2009
## 11225    2016
## 11226    2012
## 11227    2015
## 11228    2009
## 11229    2009
## 11230    2015
## 11231    2015
## 11232    2011
## 11233    2010
## 11234    2015
## 11235    2009
## 11236    2013
## 11237    2016
## 11238    2016
## 11239    2009
## 11240    2014
## 11241    2009
## 11242    2012
## 11243    2009
## 11244    2009
## 11245    2011
## 11246    2009
## 11247    2009
## 11248    2012
## 11249    2010
## 11250    2016
## 11251    2009
## 11252    2009
## 11253    2009
## 11254    2011
## 11255    2009
## 11256    2009
## 11257    2010
## 11258    2009
## 11259    2009
## 11260    2012
## 11261    2009
## 11262    2009
## 11263    2013
## 11264    2009
## 11265    2009
## 11266    2009
## 11267    2011
## 11268    2009
## 11269    2009
## 11270    2009
## 11271    2009
## 11272    2009
## 11273    2009
## 11274    2010
## 11275    2012
## 11276    2009
## 11277    2016
## 11278    2009
## 11279    2013
## 11280    2009
## 11281    2009
## 11282    2012
## 11283    2011
## 11284    2014
## 11285    2014
## 11286    2009
## 11287    2009
## 11288    2009
## 11289    2009
## 11290    2016
## 11291    2011
## 11292    2009
## 11293    2012
## 11294    2009
## 11295    2010
## 11296    2009
## 11297    2011
## 11298    2011
## 11299    2011
## 11300    2011
## 11301    2010
## 11302    2009
## 11303    2010
## 11304    2015
## 11305    2009
## 11306    2016
## 11307    2009
## 11308    2009
## 11309    2009
## 11310    2009
## 11311    2009
## 11312    2009
## 11313    2012
## 11314    2013
## 11315    2009
## 11316    2009
## 11317    2009
## 11318    2016
## 11319    2013
## 11320    2014
## 11321    2014
## 11322    2009
## 11323    2009
## 11324    2011
## 11325    2009
## 11326    2009
## 11327    2009
## 11328    2011
## 11329    2009
## 11330    2009
## 11331    2016
## 11332    2012
## 11333    2009
## 11334    2013
## 11335    2016
## 11336    2012
## 11337    2010
## 11338    2009
## 11339    2012
## 11340    2015
## 11341    2009
## 11342    2009
## 11343    2009
## 11344    2009
## 11345    2009
## 11346    2011
## 11347    2015
## 11348    2010
## 11349    2009
## 11350    2009
## 11351    2009
## 11352    2009
## 11353    2009
## 11354    2012
## 11355    2015
## 11356    2009
## 11357    2012
## 11358    2011
## 11359    2016
## 11360    2009
## 11361    2015
## 11362    2009
## 11363    2009
## 11364    2011
## 11365    2012
## 11366    2009
## 11367    2009
## 11368    2009
## 11369    2009
## 11370    2009
## 11371    2011
## 11372    2009
## 11373    2010
## 11374    2013
## 11375    2011
## 11376    2009
## 11377    2009
## 11378    2011
## 11379    2009
## 11380    2009
## 11381    2009
## 11382    2009
## 11383    2010
## 11384    2009
## 11385    2009
## 11386    2011
## 11387    2009
## 11388    2010
## 11389    2011
## 11390    2011
## 11391    2016
## 11392    2009
## 11393    2013
## 11394    2010
## 11395    2010
## 11396    2011
## 11397    2009
## 11398    2009
## 11399    2009
## 11400    2009
## 11401    2009
## 11402    2009
## 11403    2015
## 11404    2010
## 11405    2016
## 11406    2009
## 11407    2009
## 11408    2009
## 11409    2016
## 11410    2009
## 11411    2016
## 11412    2009
## 11413    2009
## 11414    2009
## 11415    2009
## 11416    2009
## 11417    2009
## 11418    2009
## 11419    2009
## 11420    2009
## 11421    2009
## 11422    2016
## 11423    2016
## 11424    2009
## 11425    2009
## 11426    2012
## 11427    2015
## 11428    2009
## 11429    2015
## 11430    2016
## 11431    2009
## 11432    2016
## 11433    2009
## 11434    2009
## 11435    2009
## 11436    2009
## 11437    2009
## 11438    2016
## 11439    2009
## 11440    2009
## 11441    2009
## 11442    2009
## 11443    2009
## 11444    2009
## 11445    2009
## 11446    2009
## 11447    2015
## 11448    2009
## 11449    2009
## 11450    2010
## 11451    2011
## 11452    2016
## 11453    2009
## 11454    2013
## 11455    2016
## 11456    2009
## 11457    2009
## 11458    2009
## 11459    2015
## 11460    2013
## 11461    2009
## 11462    2009
## 11463    2010
## 11464    2009
## 11465    2009
## 11466    2009
## 11467    2009
## 11468    2012
## 11469    2009
## 11470    2016
## 11471    2015
## 11472    2009
## 11473    2011
## 11474    2011
## 11475    2010
## 11476    2015
## 11477    2009
## 11478    2014
## 11479    2010
## 11480    2014
## 11481    2012
## 11482    2016
## 11483    2009
## 11484    2015
## 11485    2009
## 11486    2009
## 11487    2015
## 11488    2015
## 11489    2012
## 11490    2009
## 11491    2010
## 11492    2015
## 11493    2013
## 11494    2010
## 11495    2009
## 11496    2011
## 11497    2009
## 11498    2016
## 11499    2009
## 11500    2009
## 11501    2016
## 11502    2010
## 11503    2012
## 11504    2010
## 11505    2009
## 11506    2009
## 11507    2009
## 11508    2009
## 11509    2010
## 11510    2009
## 11511    2016
## 11512    2009
## 11513    2010
## 11514    2011
## 11515    2009
## 11516    2011
## 11517    2009
## 11518    2010
## 11519    2011
## 11520    2014
## 11521    2010
## 11522    2010
## 11523    2016
## 11524    2010
## 11525    2010
## 11526    2010
## 11527    2009
## 11528    2013
## 11529    2009
## 11530    2010
## 11531    2015
## 11532    2011
## 11533    2015
## 11534    2010
## 11535    2010
## 11536    2009
## 11537    2012
## 11538    2010
## 11539    2010
## 11540    2010
## 11541    2010
## 11542    2013
## 11543    2010
## 11544    2015
## 11545    2010
## 11546    2010
## 11547    2016
## 11548    2010
## 11549    2010
## 11550    2010
## 11551    2010
## 11552    2010
## 11553    2010
## 11554    2010
## 11555    2010
## 11556    2016
## 11557    2010
## 11558    2011
## 11559    2010
## 11560    2013
## 11561    2010
## 11562    2010
## 11563    2016
## 11564    2010
## 11565    2012
## 11566    2012
## 11567    2012
## 11568    2011
## 11569    2016
## 11570    2010
## 11571    2010
## 11572    2012
## 11573    2012
## 11574    2010
## 11575    2016
## 11576    2016
## 11577    2011
## 11578    2010
## 11579    2011
## 11580    2010
## 11581    2011
## 11582    2011
## 11583    2016
## 11584    2015
## 11585    2011
## 11586    2011
## 11587    2011
## 11588    2014
## 11589    2012
## 11590    2011
## 11591    2011
## 11592    2016
## 11593    2014
## 11594    2011
## 11595    2013
## 11596    2011
## 11597    2014
## 11598    2011
## 11599    2011
## 11600    2011
## 11601    2011
## 11602    2015
## 11603    2011
## 11604    2012
## 11605    2011
## 11606    2013
## 11607    2013
## 11608    2012
## 11609    2012
## 11610    2011
## 11611    2011
## 11612    2016
## 11613    2011
## 11614    2011
## 11615    2011
## 11616    2011
## 11617    2012
## 11618    2013
## 11619    2011
## 11620    2011
## 11621    2012
## 11622    2011
## 11623    2015
## 11624    2012
## 11625    2012
## 11626    2011
## 11627    2012
## 11628    2012
## 11629    2012
## 11630    2012
## 11631    2015
## 11632    2012
## 11633    2012
## 11634    2012
## 11635    2012
## 11636    2012
## 11637    2016
## 11638    2012
## 11639    2015
## 11640    2014
## 11641    2012
## 11642    2012
## 11643    2012
## 11644    2012
## 11645    2012
## 11646    2012
## 11647    2012
## 11648    2012
## 11649    2012
## 11650    2012
## 11651    2012
## 11652    2012
## 11653    2013
## 11654    2015
## 11655    2014
## 11656    2014
## 11657    2012
## 11658    2015
## 11659    2014
## 11660    2014
## 11661    2012
## 11662    2013
## 11663    2015
## 11664    2014
## 11665    2012
## 11666    2014
## 11667    2014
## 11668    2014
## 11669    2015
## 11670    2012
## 11671    2013
## 11672    2012
## 11673    2015
## 11674    2016
## 11675    2012
## 11676    2013
## 11677    2013
## 11678    2013
## 11679    2013
## 11680    2013
## 11681    2013
## 11682    2013
## 11683    2013
## 11684    2013
## 11685    2013
## 11686    2015
## 11687    2012
## 11688    2015
## 11689    2013
## 11690    2013
## 11691    2013
## 11692    2013
## 11693    2013
## 11694    2015
## 11695    2013
## 11696    2015
## 11697    2014
## 11698    2014
## 11699    2013
## 11700    2016
## 11701    2014
## 11702    2015
## 11703    2016
## 11704    2013
## 11705    2013
## 11706    2015
## 11707    2014
## 11708    2015
## 11709    2016
## 11710    2016
## 11711    2014
## 11712    2016
## 11713    2015
## 11714    2014
## 11715    2015
## 11716    2014
## 11717    2014
## 11718    2014
## 11719    2016
## 11720    2014
## 11721    2014
## 11722    2014
## 11723    2014
## 11724    2014
## 11725    2014
## 11726    2015
## 11727    2014
## 11728    2014
## 11729    2014
## 11730    2014
## 11731    2014
## 11732    2016
## 11733    2016
## 11734    2015
## 11735    2014
## 11736    2015
## 11737    2014
## 11738    2015
## 11739    2014
## 11740    2015
## 11741    2015
## 11742    2014
## 11743    2015
## 11744    2014
## 11745    2014
## 11746    2014
## 11747    2015
## 11748    2014
## 11749    2014
## 11750    2016
## 11751    2014
## 11752    2016
## 11753    2015
## 11754    2016
## 11755    2014
## 11756    2016
## 11757    2016
## 11758    2015
## 11759    2015
## 11760    2015
## 11761    2015
## 11762    2015
## 11763    2016
## 11764    2016
## 11765    2014
## 11766    2014
## 11767    2015
## 11768    2016
## 11769    2015
## 11770    2014
## 11771    2015
## 11772    2016
## 11773    2014
## 11774    2015
## 11775    2015
## 11776    2014
## 11777    2015
## 11778    2015
## 11779    2015
## 11780    2015
## 11781    2014
## 11782    2015
## 11783    2016
## 11784    2016
## 11785    2016
## 11786    2016
## 11787    2015
## 11788    2016
## 11789    2016
## 11790    2015
## 11791    2015
## 11792    2015
## 11793    2016
## 11794    2016
## 11795    2016
## 11796    2016
## 11797    2016
## 11798    2015
## 11799    2016
## 11800    2016
## 11801    2015
## 11802    2015
## 11803    2016
## 11804    2015
## 11805    2016
## 11806    2016
## 11807    2015
## 11808    2016
## 11809    2016
## 11810    2016
## 11811    2016
## 11812    2016
## 11813    2016
## 11814    2016
## 11815    2016
## 11816    2016
## 11817    2016
## 11818    2016
## 11819    2016
## 11820    2016
## 11821    2016
## 11822    2016
## 11823    2016
## 11824    2016
## 11825    1999
## 11826    1999
## 11827    1999
## 11828    1999
## 11829    1999
## 11830    1999
## 11831    1999
## 11832    1999
## 11833    1999
## 11834    1999
## 11835    1999
## 11836    1999
## 11837    1999
## 11838    1999
## 11839    1999
## 11840    1999
## 11841    1999
## 11842    1999
## 11843    1999
## 11844    1999
## 11845    1999
## 11846    1999
## 11847    1999
## 11848    1999
## 11849    1999
## 11850    1999
## 11851    1999
## 11852    1999
## 11853    1999
## 11854    1999
## 11855    1999
## 11856    1999
## 11857    1999
## 11858    1999
## 11859    1999
## 11860    1999
## 11861    1999
## 11862    1999
## 11863    1999
## 11864    1999
## 11865    1999
## 11866    1999
## 11867    1999
## 11868    1999
## 11869    1999
## 11870    1999
## 11871    1999
## 11872    1999
## 11873    1999
## 11874    2006
## 11875    2006
## 11876    2006
## 11877    2006
## 11878    2006
## 11879    2006
## 11880    2006
## 11881    2006
## 11882    2006
## 11883    2006
## 11884    2006
## 11885    2006
## 11886    2006
## 11887    2006
## 11888    2006
## 11889    2006
## 11890    2006
## 11891    2006
## 11892    2006
## 11893    2006
## 11894    2006
## 11895    2006
## 11896    2006
## 11897    2006
## 11898    2006
## 11899    2006
## 11900    2006
## 11901    2006
## 11902    2006
## 11903    2006
## 11904    2006
## 11905    2006
## 11906    2006
## 11907    2006
## 11908    2006
## 11909    2006
## 11910    2006
## 11911    2006
## 11912    2006
## 11913    2006
## 11914    2006
## 11915    2006
## 11916    2006
## 11917    2006
## 11918    2006
## 11919    2006
## 11920    2006
## 11921    2006
## 11922    2006
## 11923    2006
## 11924    2006
## 11925    2006
## 11926    2006
## 11927    2006
## 11928    2006
## 11929    2006
## 11930    2006
## 11931    2006
## 11932    2006
## 11933    2006
## 11934    2006
## 11935    2006
## 11936    2006
## 11937    2006
## 11938    2006
## 11939    2006
## 11940    2006
## 11941    2006
## 11942    2006
## 11943    2006
## 11944    2006
## 11945    2006
## 11946    2006
## 11947    2006
## 11948    2006
## 11949    2006
## 11950    2006
## 11951    2006
## 11952    2006
## 11953    2006
## 11954    2006
## 11955    2006
## 11956    2006
## 11957    2006
## 11958    2006
## 11959    2006
## 11960    2006
## 11961    2006
## 11962    2006
## 11963    2006
## 11964    2006
## 11965    2006
## 11966    2006
## 11967    2006
## 11968    2006
## 11969    2006
## 11970    2006
## 11971    2006
## 11972    2006
## 11973    2006
## 11974    2006
## 11975    2006
## 11976    2006
## 11977    2006
## 11978    2006
## 11979    2006
## 11980    2006
## 11981    2006
## 11982    2006
## 11983    2006
## 11984    2006
## 11985    2006
## 11986    2006
## 11987    2006
## 11988    2006
## 11989    2006
## 11990    2006
## 11991    2006
## 11992    2006
## 11993    2006
## 11994    2006
## 11995    2006
## 11996    2006
## 11997    2006
## 11998    2006
## 11999    2006
## 12000    2006
## 12001    2006
## 12002    2006
## 12003    2006
## 12004    2006
## 12005    2006
## 12006    2006
## 12007    2006
## 12008    2006
## 12009    2006
## 12010    2006
## 12011    2006
## 12012    2006
## 12013    2006
## 12014    2006
## 12015    2006
## 12016    2006
## 12017    2006
## 12018    2006
## 12019    2007
## 12020    2007
## 12021    2007
## 12022    2007
## 12023    2007
## 12024    2007
## 12025    2007
## 12026    2007
## 12027    2007
## 12028    2007
## 12029    2007
## 12030    2007
## 12031    2007
## 12032    2007
## 12033    2007
## 12034    2007
## 12035    2007
## 12036    2007
## 12037    2007
## 12038    2007
## 12039    2006
## 12040    2006
## 12041    2007
## 12042    2006
## 12043    2006
## 12044    2006
## 12045    2006
## 12046    2006
## 12047    2006
## 12048    2006
## 12049    2006
## 12050    2006
## 12051    2007
## 12052    2006
## 12053    2007
## 12054    2006
## 12055    2006
## 12056    2006
## 12057    2006
## 12058    2006
## 12059    2006
## 12060    2006
## 12061    2006
## 12062    2006
## 12063    2006
## 12064    2006
## 12065    2006
## 12066    2006
## 12067    2006
## 12068    2006
## 12069    2006
## 12070    2006
## 12071    2006
## 12072    2006
## 12073    2006
## 12074    2006
## 12075    2006
## 12076    2006
## 12077    2006
## 12078    2006
## 12079    2006
## 12080    2006
## 12081    2006
## 12082    2006
## 12083    2007
## 12084    2006
## 12085    2006
## 12086    2007
## 12087    2006
## 12088    2006
## 12089    2006
## 12090    2006
## 12091    2006
## 12092    2006
## 12093    2006
## 12094    2006
## 12095    2007
## 12096    2006
## 12097    2007
## 12098    2006
## 12099    2006
## 12100    2006
## 12101    2007
## 12102    2006
## 12103    2006
## 12104    2006
## 12105    2006
## 12106    2006
## 12107    2007
## 12108    2006
## 12109    2006
## 12110    2006
## 12111    2006
## 12112    2006
## 12113    2006
## 12114    2006
## 12115    2007
## 12116    2006
## 12117    2006
## 12118    2006
## 12119    2006
## 12120    2006
## 12121    2006
## 12122    2007
## 12123    2006
## 12124    2006
## 12125    2006
## 12126    2006
## 12127    2006
## 12128    2006
## 12129    2007
## 12130    2006
## 12131    2006
## 12132    2006
## 12133    2006
## 12134    2006
## 12135    2006
## 12136    2006
## 12137    2006
## 12138    2006
## 12139    2006
## 12140    2006
## 12141    2007
## 12142    2007
## 12143    2006
## 12144    2006
## 12145    2006
## 12146    2006
## 12147    2007
## 12148    2006
## 12149    2006
## 12150    2006
## 12151    2007
## 12152    2006
## 12153    2007
## 12154    2006
## 12155    2006
## 12156    2006
## 12157    2006
## 12158    2007
## 12159    2006
## 12160    2006
## 12161    2006
## 12162    2006
## 12163    2007
## 12164    2007
## 12165    2007
## 12166    2006
## 12167    2007
## 12168    2006
## 12169    2006
## 12170    2006
## 12171    2007
## 12172    2006
## 12173    2006
## 12174    2006
## 12175    2006
## 12176    2006
## 12177    2006
## 12178    2006
## 12179    2006
## 12180    2006
## 12181    2007
## 12182    2006
## 12183    2006
## 12184    2006
## 12185    2006
## 12186    2006
## 12187    2006
## 12188    2006
## 12189    2006
## 12190    2006
## 12191    2007
## 12192    2006
## 12193    2006
## 12194    2006
## 12195    2006
## 12196    2007
## 12197    2007
## 12198    2006
## 12199    2006
## 12200    2007
## 12201    2006
## 12202    2006
## 12203    2006
## 12204    2006
## 12205    2006
## 12206    2006
## 12207    2006
## 12208    2007
## 12209    2006
## 12210    2006
## 12211    2006
## 12212    2006
## 12213    2007
## 12214    2006
## 12215    2006
## 12216    2007
## 12217    2006
## 12218    2006
## 12219    2006
## 12220    2006
## 12221    2006
## 12222    2007
## 12223    2006
## 12224    2006
## 12225    2006
## 12226    2006
## 12227    2006
## 12228    2006
## 12229    2006
## 12230    2007
## 12231    2007
## 12232    2006
## 12233    2007
## 12234    2006
## 12235    2006
## 12236    2007
## 12237    2007
## 12238    2006
## 12239    2006
## 12240    2006
## 12241    2006
## 12242    2006
## 12243    2006
## 12244    2006
## 12245    2007
## 12246    2006
## 12247    2006
## 12248    2006
## 12249    2006
## 12250    2007
## 12251    2006
## 12252    2006
## 12253    2007
## 12254    2006
## 12255    2006
## 12256    2007
## 12257    2006
## 12258    2006
## 12259    2006
## 12260    2006
## 12261    2006
## 12262    2006
## 12263    2006
## 12264    2006
## 12265    2006
## 12266    2007
## 12267    2007
## 12268    2007
## 12269    2006
## 12270    2007
## 12271    2006
## 12272    2006
## 12273    2006
## 12274    2006
## 12275    2007
## 12276    2006
## 12277    2006
## 12278    2006
## 12279    2007
## 12280    2007
## 12281    2006
## 12282    2006
## 12283    2006
## 12284    2006
## 12285    2006
## 12286    2006
## 12287    2006
## 12288    2006
## 12289    2006
## 12290    2006
## 12291    2007
## 12292    2006
## 12293    2007
## 12294    2006
## 12295    2006
## 12296    2006
## 12297    2006
## 12298    2006
## 12299    2006
## 12300    2006
## 12301    2006
## 12302    2007
## 12303    2006
## 12304    2006
## 12305    2006
## 12306    2006
## 12307    2006
## 12308    2006
## 12309    2006
## 12310    2006
## 12311    2006
## 12312    2006
## 12313    2007
## 12314    2006
## 12315    2006
## 12316    2006
## 12317    2006
## 12318    2006
## 12319    2006
## 12320    2007
## 12321    2006
## 12322    2007
## 12323    2006
## 12324    2007
## 12325    2007
## 12326    2006
## 12327    2006
## 12328    2006
## 12329    2007
## 12330    2007
## 12331    2006
## 12332    2006
## 12333    2007
## 12334    2006
## 12335    2006
## 12336    2006
## 12337    2006
## 12338    2006
## 12339    2006
## 12340    2006
## 12341    2006
## 12342    2006
## 12343    2006
## 12344    2006
## 12345    2006
## 12346    2006
## 12347    2006
## 12348    2006
## 12349    2006
## 12350    2007
## 12351    2006
## 12352    2006
## 12353    2007
## 12354    2010
## 12355    2010
## 12356    2012
## 12357    2010
## 12358    2012
## 12359    2010
## 12360    2012
## 12361    2010
## 12362    2010
## 12363    2010
## 12364    2010
## 12365    2012
## 12366    2010
## 12367    2010
## 12368    2012
## 12369    2010
## 12370    2010
## 12371    2010
## 12372    2010
## 12373    2010
## 12374    2010
## 12375    2010
## 12376    2012
## 12377    2010
## 12378    2010
## 12379    2010
## 12380    2010
## 12381    2010
## 12382    2010
## 12383    2012
## 12384    2012
## 12385    2010
## 12386    2010
## 12387    2010
## 12388    2010
## 12389    2010
## 12390    2010
## 12391    2010
## 12392    2012
## 12393    2012
## 12394    2010
## 12395    2010
## 12396    2010
## 12397    2010
## 12398    2012
## 12399    2010
## 12400    2010
## 12401    2010
## 12402    2010
## 12403    2012
## 12404    2010
## 12405    2010
## 12406    2010
## 12407    2010
## 12408    2012
## 12409    2010
## 12410    2010
## 12411    2010
## 12412    2012
## 12413    2012
## 12414    2012
## 12415    2010
## 12416    2012
## 12417    2012
## 12418    2012
## 12419    2010
## 12420    2012
## 12421    2010
## 12422    2010
## 12423    2010
## 12424    2012
## 12425    2012
## 12426    2010
## 12427    2010
## 12428    2010
## 12429    2012
## 12430    2012
## 12431    2012
## 12432    2012
## 12433    2010
## 12434    2012
## 12435    2010
## 12436    2012
## 12437    2010
## 12438    2012
## 12439    2012
## 12440    2010
## 12441    2010
## 12442    2012
## 12443    2010
## 12444    2010
## 12445    2010
## 12446    2012
## 12447    2012
## 12448    2010
## 12449    2010
## 12450    2012
## 12451    2012
## 12452    2012
## 12453    2010
## 12454    2010
## 12455    2012
## 12456    2010
## 12457    2012
## 12458    2012
## 12459    2010
## 12460    2012
## 12461    2010
## 12462    2010
## 12463    2012
## 12464    2010
## 12465    2010
## 12466    2010
## 12467    2012
## 12468    2010
## 12469    2010
## 12470    2010
## 12471    2012
## 12472    2010
## 12473    2012
## 12474    2010
## 12475    2012
## 12476    2010
## 12477    2012
## 12478    2012
## 12479    2012
## 12480    2010
## 12481    2012
## 12482    2012
## 12483    2010
## 12484    2012
## 12485    2012
## 12486    2010
## 12487    2012
## 12488    2010
## 12489    2012
## 12490    2012
## 12491    2012
## 12492    2012
## 12493    2012
## 12494    2010
## 12495    2010
## 12496    2012
## 12497    2012
## 12498    2012
## 12499    2012
## 12500    2012
## 12501    2012
## 12502    2012
## 12503    2010
## 12504    2012
## 12505    2010
## 12506    2012
## 12507    2012
## 12508    2012
## 12509    2012
## 12510    2010
## 12511    2010
## 12512    2012
## 12513    2012
## 12514    2010
## 12515    2012
## 12516    2012
## 12517    2012
## 12518    2012
## 12519    2012
## 12520    2010
## 12521    2012
## 12522    2012
## 12523    2012
## 12524    2012
## 12525    2010
## 12526    2010
## 12527    2012
## 12528    2012
## 12529    2010
## 12530    2010
## 12531    2012
## 12532    2012
## 12533    2010
## 12534    2010
## 12535    2010
## 12536    2012
## 12537    2012
## 12538    2012
## 12539    2010
## 12540    2012
## 12541    2012
## 12542    2010
## 12543    2010
## 12544    2012
## 12545    2012
## 12546    2012
## 12547    2010
## 12548    2010
## 12549    2012
## 12550    2012
## 12551    2010
## 12552    2012
## 12553    2012
## 12554    2012
## 12555    2010
## 12556    2010
## 12557    2012
## 12558    2010
## 12559    2010
## 12560    2010
## 12561    2012
## 12562    2012
## 12563    2010
## 12564    2012
## 12565    2012
## 12566    2012
## 12567    2010
## 12568    2012
## 12569    2012
## 12570    2012
## 12571    2012
## 12572    2010
## 12573    2012
## 12574    2012
## 12575    2012
## 12576    2012
## 12577    2012
## 12578    2012
## 12579    2012
## 12580    2012
## 12581    2010
## 12582    2012
## 12583    2012
## 12584    2012
## 12585    2012
## 12586    2012
## 12587    2010
## 12588    2012
## 12589    2010
## 12590    2012
## 12591    2013
## 12592    2012
## 12593    2012
## 12594    2012
## 12595    2012
## 12596    2012
## 12597    2012
## 12598    2010
## 12599    2012
## 12600    2012
## 12601    2012
## 12602    2012
## 12603    2012
## 12604    2010
## 12605    2012
## 12606    2010
## 12607    2012
## 12608    2012
## 12609    2012
## 12610    2013
## 12611    2010
## 12612    2012
## 12613    2012
## 12614    2012
## 12615    2012
## 12616    2012
## 12617    2007
## 12618    2007
## 12619    2007
## 12620    2007
## 12621    2007
## 12622    2007
## 12623    2007
## 12624    2007
## 12625    2007
## 12626    2007
## 12627    2007
## 12628    2007
## 12629    2007
## 12630    2007
## 12631    2007
## 12632    2007
## 12633    2007
## 12634    2007
## 12635    2007
## 12636    2007
## 12637    2007
## 12638    2007
## 12639    2007
## 12640    2007
## 12641    2007
## 12642    2007
## 12643    2007
## 12644    2007
## 12645    2007
## 12646    2007
## 12647    2007
## 12648    2007
## 12649    2007
## 12650    2007
## 12651    2007
## 12652    2007
## 12653    2007
## 12654    2007
## 12655    2007
## 12656    2007
## 12657    2007
## 12658    2007
## 12659    2007
## 12660    2007
## 12661    2007
## 12662    2007
## 12663    2007
## 12664    2007
## 12665    2007
## 12666    2007
## 12667    2007
## 12668    2007
## 12669    2007
## 12670    2007
## 12671    2007
## 12672    1996
## 12673    1996
## 12674    1996
## 12675    1996
## 12676    1996
## 12677    1996
## 12678    1996
## 12679    1996
## 12680    1996
## 12681    1996
## 12682    1996
## 12683    1996
## 12684    1996
## 12685    1996
## 12686    1996
## 12687    1996
## 12688    1996
## 12689    1996
## 12690    1996
## 12691    1996
## 12692    1996
## 12693    1996
## 12694    1996
## 12695    1996
## 12696    1996
## 12697    1996
## 12698    1996
## 12699    1996
## 12700    1996
## 12701    1996
## 12702    1996
## 12703    1996
## 12704    1996
## 12705    1996
## 12706    1996
## 12707    1996
## 12708    1996
## 12709    2011
## 12710    2011
## 12711    2011
## 12712    2011
## 12713    2011
## 12714    2011
## 12715    2011
## 12716    2011
## 12717    2011
## 12718    2011
## 12719    2011
## 12720    2011
## 12721    2011
## 12722    2011
## 12723    2011
## 12724    2011
## 12725    2011
## 12726    2011
## 12727    2011
## 12728    2011
## 12729    2011
## 12730    2011
## 12731    2011
## 12732    2011
## 12733    2011
## 12734    2011
## 12735    2011
## 12736    2011
## 12737    2011
## 12738    2011
## 12739    2011
## 12740    2011
## 12741    2011
## 12742    2011
## 12743    2011
## 12744    2011
## 12745    2011
## 12746    2011
## 12747    2011
## 12748    2011
## 12749    2011
## 12750    2011
## 12751    2011
## 12752    2011
## 12753    2011
## 12754    2011
## 12755    2011
## 12756    2011
## 12757    2011
## 12758    2011
## 12759    2011
## 12760    2011
## 12761    2011
## 12762    2011
## 12763    2011
## 12764    2011
## 12765    2011
## 12766    2011
## 12767    2011
## 12768    2011
## 12769    2011
## 12770    2011
## 12771    2011
## 12772    2011
## 12773    2011
## 12774    2011
## 12775    2011
## 12776    2011
## 12777    2011
## 12778    2011
## 12779    2011
## 12780    2011
## 12781    2011
## 12782    2011
## 12783    2011
## 12784    2011
## 12785    2011
## 12786    2011
## 12787    2011
## 12788    2011
## 12789    2011
## 12790    2011
## 12791    2011
## 12792    2011
## 12793    2011
## 12794    2011
## 12795    2011
## 12796    2011
## 12797    2011
## 12798    2011
## 12799    2011
## 12800    2011
## 12801    2011
## 12802    2011
## 12803    2011
## 12804    2011
## 12805    2011
## 12806    2011
## 12807    2011
## 12808    2011
## 12809    2011
## 12810    2011
## 12811    2011
## 12812    2011
## 12813    2011
## 12814    2011
## 12815    2011
## 12816    2011
## 12817    2011
## 12818    2011
## 12819    2011
## 12820    2011
## 12821    2011
## 12822    2011
## 12823    2011
## 12824    2011
## 12825    2011
## 12826    2011
## 12827    2011
## 12828    2011
## 12829    2011
## 12830    2011
## 12831    2011
## 12832    2011
## 12833    2011
## 12834    2011
## 12835    2011
## 12836    2011
## 12837    2011
## 12838    2011
## 12839    2011
## 12840    2011
## 12841    2011
## 12842    2011
## 12843    2011
## 12844    2011
## 12845    2011
## 12846    2011
## 12847    2011
## 12848    2011
## 12849    2011
## 12850    2011
## 12851    2011
## 12852    2011
## 12853    2011
## 12854    2011
## 12855    2011
## 12856    2011
## 12857    2011
## 12858    2011
## 12859    2011
## 12860    2011
## 12861    2011
## 12862    2011
## 12863    2011
## 12864    2011
## 12865    2011
## 12866    2011
## 12867    2011
## 12868    2011
## 12869    1996
## 12870    1996
## 12871    1996
## 12872    1996
## 12873    1996
## 12874    1996
## 12875    1996
## 12876    1996
## 12877    1996
## 12878    1996
## 12879    1996
## 12880    1996
## 12881    1996
## 12882    1996
## 12883    1996
## 12884    1996
## 12885    1996
## 12886    1996
## 12887    1996
## 12888    1996
## 12889    1996
## 12890    1996
## 12891    1996
## 12892    1996
## 12893    1996
## 12894    1996
## 12895    1996
## 12896    1996
## 12897    1996
## 12898    1996
## 12899    1996
## 12900    1996
## 12901    1996
## 12902    1996
## 12903    1996
## 12904    1996
## 12905    1996
## 12906    1996
## 12907    1996
## 12908    2006
## 12909    2006
## 12910    2006
## 12911    2006
## 12912    2006
## 12913    2006
## 12914    2006
## 12915    2006
## 12916    2006
## 12917    2006
## 12918    2006
## 12919    2006
## 12920    2006
## 12921    2006
## 12922    2006
## 12923    2006
## 12924    2006
## 12925    2006
## 12926    2006
## 12927    2006
## 12928    2006
## 12929    2006
## 12930    2006
## 12931    2006
## 12932    2006
## 12933    2006
## 12934    2006
## 12935    2006
## 12936    2006
## 12937    2006
## 12938    2006
## 12939    2006
## 12940    2006
## 12941    2006
## 12942    2006
## 12943    2006
## 12944    2006
## 12945    2006
## 12946    2006
## 12947    2006
## 12948    2006
## 12949    2006
## 12950    2006
## 12951    2006
## 12952    2006
## 12953    2006
## 12954    2006
## 12955    2006
## 12956    2006
## 12957    2006
## 12958    2006
## 12959    2006
## 12960    2006
## 12961    2006
## 12962    2006
## 12963    2006
## 12964    2006
## 12965    2006
## 12966    2006
## 12967    2006
## 12968    2006
## 12969    2006
## 12970    2006
## 12971    2006
## 12972    2006
## 12973    2006
## 12974    2006
## 12975    2006
## 12976    2006
## 12977    2006
## 12978    2006
## 12979    2006
## 12980    2006
## 12981    2006
## 12982    2006
## 12983    2006
## 12984    2006
## 12985    2006
## 12986    2006
## 12987    2006
## 12988    2006
## 12989    2006
## 12990    2006
## 12991    2006
## 12992    2006
## 12993    2006
## 12994    2006
## 12995    2006
## 12996    2006
## 12997    2006
## 12998    2006
## 12999    2006
## 13000    2006
## 13001    2006
## 13002    2006
## 13003    2006
## 13004    2006
## 13005    2006
## 13006    2006
## 13007    2006
## 13008    2006
## 13009    2006
## 13010    2006
## 13011    2006
## 13012    2006
## 13013    2006
## 13014    2006
## 13015    2006
## 13016    2006
## 13017    2006
## 13018    2006
## 13019    2006
## 13020    2006
## 13021    2006
## 13022    2006
## 13023    2006
## 13024    2006
## 13025    2006
## 13026    2006
## 13027    2006
## 13028    2006
## 13029    2006
## 13030    2006
## 13031    2006
## 13032    2006
## 13033    2006
## 13034    2006
## 13035    2006
## 13036    2006
## 13037    2006
## 13038    2006
## 13039    2006
## 13040    2006
## 13041    2006
## 13042    2006
## 13043    2006
## 13044    2006
## 13045    2006
## 13046    2006
## 13047    2006
## 13048    2006
## 13049    2006
## 13050    2006
## 13051    2006
## 13052    2006
## 13053    2006
## 13054    2006
## 13055    2006
## 13056    2006
## 13057    2006
## 13058    2006
## 13059    2006
## 13060    2006
## 13061    2006
## 13062    2006
## 13063    2006
## 13064    2006
## 13065    2006
## 13066    2006
## 13067    2006
## 13068    2006
## 13069    2015
## 13070    2015
## 13071    2015
## 13072    2015
## 13073    2015
## 13074    2015
## 13075    2015
## 13076    2015
## 13077    2015
## 13078    2015
## 13079    2015
## 13080    2015
## 13081    2015
## 13082    2015
## 13083    2015
## 13084    2015
## 13085    2015
## 13086    2015
## 13087    2015
## 13088    2015
## 13089    2015
## 13090    2015
## 13091    2015
## 13092    2015
## 13093    2015
## 13094    2015
## 13095    2015
## 13096    2015
## 13097    2015
## 13098    2015
## 13099    2015
## 13100    2015
## 13101    2015
## 13102    2015
## 13103    2015
## 13104    2015
## 13105    2015
## 13106    2015
## 13107    2015
## 13108    2015
## 13109    2015
## 13110    2015
## 13111    2015
## 13112    2015
## 13113    2015
## 13114    2015
## 13115    2015
## 13116    2015
## 13117    2015
## 13118    2015
## 13119    2015
## 13120    2015
## 13121    2015
## 13122    2015
## 13123    2015
## 13124    2015
## 13125    2015
## 13126    2015
## 13127    2015
## 13128    2015
## 13129    2015
## 13130    2015
## 13131    2015
## 13132    2015
## 13133    2015
## 13134    2015
## 13135    2015
## 13136    2015
## 13137    2015
## 13138    2015
## 13139    2015
## 13140    2015
## 13141    2015
## 13142    2015
## 13143    2015
## 13144    2015
## 13145    2015
## 13146    2015
## 13147    2015
## 13148    2015
## 13149    2015
## 13150    2015
## 13151    2015
## 13152    2015
## 13153    2015
## 13154    2015
## 13155    2015
## 13156    2015
## 13157    2015
## 13158    2015
## 13159    2015
## 13160    2015
## 13161    2015
## 13162    2015
## 13163    2015
## 13164    2015
## 13165    2015
## 13166    2015
## 13167    2015
## 13168    2015
## 13169    2015
## 13170    2015
## 13171    2015
## 13172    2015
## 13173    2015
## 13174    2015
## 13175    2015
## 13176    2015
## 13177    2015
## 13178    2015
## 13179    2015
## 13180    2015
## 13181    2015
## 13182    2015
## 13183    2015
## 13184    2015
## 13185    1996
## 13186    1996
## 13187    1996
## 13188    1996
## 13189    1996
## 13190    1996
## 13191    1996
## 13192    1996
## 13193    1996
## 13194    1996
## 13195    1996
## 13196    1996
## 13197    1996
## 13198    1996
## 13199    1996
## 13200    1996
## 13201    1996
## 13202    1996
## 13203    1996
## 13204    1996
## 13205    1996
## 13206    1996
## 13207    1996
## 13208    1996
## 13209    1996
## 13210    1996
## 13211    1996
## 13212    1996
## 13213    1996
## 13214    1996
## 13215    1996
## 13216    1996
## 13217    1996
## 13218    1996
## 13219    1996
## 13220    1996
## 13221    1996
## 13222    1996
## 13223    1996
## 13224    1996
## 13225    1996
## 13226    1996
## 13227    1996
## 13228    1996
## 13229    1996
## 13230    1996
## 13231    1996
## 13232    1996
## 13233    1996
## 13234    1996
## 13235    1996
## 13236    1996
## 13237    1996
## 13238    1996
## 13239    1996
## 13240    1996
## 13241    1996
## 13242    1996
## 13243    1996
## 13244    1996
## 13245    1996
## 13246    1996
## 13247    1996
## 13248    1996
## 13249    1996
## 13250    1996
## 13251    1996
## 13252    1996
## 13253    1996
## 13254    1996
## 13255    1996
## 13256    1996
## 13257    1996
## 13258    1996
## 13259    1996
## 13260    1996
## 13261    1996
## 13262    1996
## 13263    1996
## 13264    1996
## 13265    1996
## 13266    1996
## 13267    1996
## 13268    1996
## 13269    1996
## 13270    1996
## 13271    1996
## 13272    1996
## 13273    1996
## 13274    1996
## 13275    1996
## 13276    1996
## 13277    1996
## 13278    1996
## 13279    1996
## 13280    1996
## 13281    1996
## 13282    1996
## 13283    1996
## 13284    1996
## 13285    1996
## 13286    1996
## 13287    1996
## 13288    1996
## 13289    1996
## 13290    1996
## 13291    1996
## 13292    1996
## 13293    1996
## 13294    1996
## 13295    1996
## 13296    1996
## 13297    1996
## 13298    1996
## 13299    1996
## 13300    1996
## 13301    1996
## 13302    1996
## 13303    1996
## 13304    1996
## 13305    1996
## 13306    1996
## 13307    1996
## 13308    1996
## 13309    1996
## 13310    1996
## 13311    1996
## 13312    1996
## 13313    1996
## 13314    1996
## 13315    1996
## 13316    1996
## 13317    1996
## 13318    1996
## 13319    1996
## 13320    1996
## 13321    1996
## 13322    1996
## 13323    1996
## 13324    1996
## 13325    1996
## 13326    1996
## 13327    1996
## 13328    1996
## 13329    1996
## 13330    1996
## 13331    1996
## 13332    1996
## 13333    1996
## 13334    1996
## 13335    1996
## 13336    1996
## 13337    1996
## 13338    1996
## 13339    1996
## 13340    1996
## 13341    1996
## 13342    1996
## 13343    1996
## 13344    1996
## 13345    1996
## 13346    1996
## 13347    1996
## 13348    1996
## 13349    1996
## 13350    1996
## 13351    1996
## 13352    1996
## 13353    1996
## 13354    1996
## 13355    1996
## 13356    1996
## 13357    1996
## 13358    1996
## 13359    1996
## 13360    1996
## 13361    1996
## 13362    1996
## 13363    1996
## 13364    1996
## 13365    1996
## 13366    1996
## 13367    1996
## 13368    1996
## 13369    1996
## 13370    1996
## 13371    1996
## 13372    1996
## 13373    1996
## 13374    1996
## 13375    1996
## 13376    1996
## 13377    1996
## 13378    1996
## 13379    1996
## 13380    1996
## 13381    1996
## 13382    1996
## 13383    1996
## 13384    1996
## 13385    1996
## 13386    1996
## 13387    1996
## 13388    1996
## 13389    1996
## 13390    1996
## 13391    1996
## 13392    1996
## 13393    1996
## 13394    1996
## 13395    1996
## 13396    1996
## 13397    1996
## 13398    1996
## 13399    1996
## 13400    1996
## 13401    1996
## 13402    1996
## 13403    1996
## 13404    1996
## 13405    1996
## 13406    1996
## 13407    1996
## 13408    1996
## 13409    1996
## 13410    1996
## 13411    1996
## 13412    1996
## 13413    1996
## 13414    1996
## 13415    1996
## 13416    1996
## 13417    1996
## 13418    1996
## 13419    1996
## 13420    1996
## 13421    1996
## 13422    1996
## 13423    1996
## 13424    1996
## 13425    1996
## 13426    1996
## 13427    1996
## 13428    1996
## 13429    1996
## 13430    1996
## 13431    1996
## 13432    1996
## 13433    1996
## 13434    1996
## 13435    1996
## 13436    1996
## 13437    1996
## 13438    1996
## 13439    1996
## 13440    1996
## 13441    1996
## 13442    1996
## 13443    1996
## 13444    1996
## 13445    1996
## 13446    1996
## 13447    1996
## 13448    1996
## 13449    1996
## 13450    1996
## 13451    1996
## 13452    1996
## 13453    1996
## 13454    1996
## 13455    1996
## 13456    1996
## 13457    1996
## 13458    1996
## 13459    1996
## 13460    1996
## 13461    1996
## 13462    1996
## 13463    1996
## 13464    1996
## 13465    1996
## 13466    1996
## 13467    1996
## 13468    1996
## 13469    1996
## 13470    1996
## 13471    1996
## 13472    1996
## 13473    1996
## 13474    1996
## 13475    1996
## 13476    1996
## 13477    1996
## 13478    1996
## 13479    1996
## 13480    1996
## 13481    1996
## 13482    1997
## 13483    1997
## 13484    1997
## 13485    1997
## 13486    1997
## 13487    1997
## 13488    1997
## 13489    1997
## 13490    1997
## 13491    1997
## 13492    1997
## 13493    1997
## 13494    1997
## 13495    1997
## 13496    1997
## 13497    1997
## 13498    1997
## 13499    1997
## 13500    1997
## 13501    1997
## 13502    1997
## 13503    1997
## 13504    1997
## 13505    1997
## 13506    1997
## 13507    1997
## 13508    1997
## 13509    1997
## 13510    1997
## 13511    1997
## 13512    1997
## 13513    2009
## 13514    2009
## 13515    2009
## 13516    2009
## 13517    2009
## 13518    2009
## 13519    2009
## 13520    2009
## 13521    2009
## 13522    2009
## 13523    2009
## 13524    2009
## 13525    2009
## 13526    2009
## 13527    2009
## 13528    2009
## 13529    2009
## 13530    2009
## 13531    2009
## 13532    2009
## 13533    2009
## 13534    2009
## 13535    2009
## 13536    2009
## 13537    2009
## 13538    2009
## 13539    2009
## 13540    2009
## 13541    2009
## 13542    2009
## 13543    2009
## 13544    2009
## 13545    2009
## 13546    2009
## 13547    2009
## 13548    2009
## 13549    2009
## 13550    2009
## 13551    2009
## 13552    2009
## 13553    2009
## 13554    2009
## 13555    2009
## 13556    2009
## 13557    2009
## 13558    2009
## 13559    2009
## 13560    2009
## 13561    2009
## 13562    2009
## 13563    2009
## 13564    2009
## 13565    2009
## 13566    2009
## 13567    2009
## 13568    2009
## 13569    2009
## 13570    2009
## 13571    2009
## 13572    2009
## 13573    2009
## 13574    2009
## 13575    2009
## 13576    2009
## 13577    2009
## 13578    2009
## 13579    2009
## 13580    2009
## 13581    2009
## 13582    2009
## 13583    2009
## 13584    2009
## 13585    2009
## 13586    2009
## 13587    2009
## 13588    2009
## 13589    2009
## 13590    2009
## 13591    2009
## 13592    2009
## 13593    2009
## 13594    2009
## 13595    2009
## 13596    2009
## 13597    2009
## 13598    2009
## 13599    2009
## 13600    2009
## 13601    2009
## 13602    2009
## 13603    2009
## 13604    2009
## 13605    2009
## 13606    2009
## 13607    2009
## 13608    2009
## 13609    2009
## 13610    2009
## 13611    2009
## 13612    2009
## 13613    2009
## 13614    2009
## 13615    2009
## 13616    2009
## 13617    2009
## 13618    2009
## 13619    2009
## 13620    2009
## 13621    2009
## 13622    2009
## 13623    2009
## 13624    2009
## 13625    2009
## 13626    2009
## 13627    2009
## 13628    2009
## 13629    2009
## 13630    2009
## 13631    2009
## 13632    2009
## 13633    2009
## 13634    2009
## 13635    2009
## 13636    2009
## 13637    2009
## 13638    2009
## 13639    2009
## 13640    2009
## 13641    2009
## 13642    2009
## 13643    2009
## 13644    2009
## 13645    2009
## 13646    2009
## 13647    2009
## 13648    2009
## 13649    2009
## 13650    2009
## 13651    2009
## 13652    2009
## 13653    2009
## 13654    2009
## 13655    2009
## 13656    2009
## 13657    2009
## 13658    2009
## 13659    2009
## 13660    2009
## 13661    2009
## 13662    2009
## 13663    2009
## 13664    2009
## 13665    2009
## 13666    2009
## 13667    2009
## 13668    2009
## 13669    2009
## 13670    2009
## 13671    2009
## 13672    2009
## 13673    2009
## 13674    2009
## 13675    2009
## 13676    2009
## 13677    2009
## 13678    2009
## 13679    2009
## 13680    2009
## 13681    2009
## 13682    2009
## 13683    2009
## 13684    2009
## 13685    2009
## 13686    2009
## 13687    2009
## 13688    2009
## 13689    2009
## 13690    2009
## 13691    2009
## 13692    2009
## 13693    2009
## 13694    2009
## 13695    2009
## 13696    2009
## 13697    2009
## 13698    2009
## 13699    2009
## 13700    2009
## 13701    2009
## 13702    2009
## 13703    2009
## 13704    2009
## 13705    2009
## 13706    2009
## 13707    2009
## 13708    2009
## 13709    2009
## 13710    2009
## 13711    2009
## 13712    2009
## 13713    2009
## 13714    2009
## 13715    2009
## 13716    2009
## 13717    2009
## 13718    2009
## 13719    2009
## 13720    2009
## 13721    2009
## 13722    2009
## 13723    2009
## 13724    2009
## 13725    2009
## 13726    2009
## 13727    2009
## 13728    2009
## 13729    2009
## 13730    2009
## 13731    2009
## 13732    2009
## 13733    2009
## 13734    2009
## 13735    2009
## 13736    2009
## 13737    2009
## 13738    2009
## 13739    2009
## 13740    2009
## 13741    2009
## 13742    2009
## 13743    2009
## 13744    2009
## 13745    2009
## 13746    2009
## 13747    2009
## 13748    2009
## 13749    2009
## 13750    2009
## 13751    2009
## 13752    2009
## 13753    2009
## 13754    2009
## 13755    2009
## 13756    2009
## 13757    2009
## 13758    2009
## 13759    2009
## 13760    2009
## 13761    2009
## 13762    2009
## 13763    2009
## 13764    2009
## 13765    2009
## 13766    2009
## 13767    2009
## 13768    2009
## 13769    2009
## 13770    2009
## 13771    2009
## 13772    2009
## 13773    2009
## 13774    2009
## 13775    2009
## 13776    2009
## 13777    2009
## 13778    2009
## 13779    2009
## 13780    2009
## 13781    2009
## 13782    2009
## 13783    2009
## 13784    2009
## 13785    2009
## 13786    2009
## 13787    2009
## 13788    2009
## 13789    2009
## 13790    2009
## 13791    2009
## 13792    2009
## 13793    2009
## 13794    2009
## 13795    2009
## 13796    2009
## 13797    2009
## 13798    2009
## 13799    2009
## 13800    2009
## 13801    2009
## 13802    2009
## 13803    2009
## 13804    2009
## 13805    2009
## 13806    2009
## 13807    2009
## 13808    2009
## 13809    2009
## 13810    2009
## 13811    2009
## 13812    2009
## 13813    2009
## 13814    2009
## 13815    2009
## 13816    2009
## 13817    2009
## 13818    2009
## 13819    2009
## 13820    2009
## 13821    2009
## 13822    2009
## 13823    2009
## 13824    2009
## 13825    2009
## 13826    2009
## 13827    2009
## 13828    2009
## 13829    2009
## 13830    2009
## 13831    2009
## 13832    2009
## 13833    2009
## 13834    1997
## 13835    1997
## 13836    1997
## 13837    1997
## 13838    1997
## 13839    1997
## 13840    1997
## 13841    1997
## 13842    1997
## 13843    1997
## 13844    1997
## 13845    1997
## 13846    1997
## 13847    1997
## 13848    1997
## 13849    1997
## 13850    1997
## 13851    1997
## 13852    1997
## 13853    1997
## 13854    1997
## 13855    1997
## 13856    1997
## 13857    1997
## 13858    1997
## 13859    1998
## 13860    1997
## 13861    1997
## 13862    1997
## 13863    1997
## 13864    1997
## 13865    1997
## 13866    1997
## 13867    1997
## 13868    1997
## 13869    1997
## 13870    1997
## 13871    1997
## 13872    1997
## 13873    1997
## 13874    1997
## 13875    1997
## 13876    1997
## 13877    1997
## 13878    1997
## 13879    1997
## 13880    1997
## 13881    1997
## 13882    1997
## 13883    1997
## 13884    2015
## 13885    2015
## 13886    2015
## 13887    2015
## 13888    2015
## 13889    2015
## 13890    2015
## 13891    2015
## 13892    2015
## 13893    2015
## 13894    2015
## 13895    2015
## 13896    2015
## 13897    2015
## 13898    2015
## 13899    2015
## 13900    2015
## 13901    2015
## 13902    2015
## 13903    2015
## 13904    2015
## 13905    2015
## 13906    2015
## 13907    2015
## 13908    2015
## 13909    2015
## 13910    2015
## 13911    2015
## 13912    2015
## 13913    2015
## 13914    2015
## 13915    2015
## 13916    2015
## 13917    2015
## 13918    2015
## 13919    2015
## 13920    2015
## 13921    2015
## 13922    2015
## 13923    2015
## 13924    2015
## 13925    2015
## 13926    2015
## 13927    2015
## 13928    2015
## 13929    2015
## 13930    2015
## 13931    2015
## 13932    2015
## 13933    2015
## 13934    2015
## 13935    2015
## 13936    2015
## 13937    2015
## 13938    2015
## 13939    2015
## 13940    2015
## 13941    2015
## 13942    2015
## 13943    2015
## 13944    2015
## 13945    2015
## 13946    2015
## 13947    2015
## 13948    2015
## 13949    2015
## 13950    2015
## 13951    2015
## 13952    2015
## 13953    2015
## 13954    2015
## 13955    2015
## 13956    2015
## 13957    2015
## 13958    2015
## 13959    2015
## 13960    2015
## 13961    2015
## 13962    2015
## 13963    2015
## 13964    2015
## 13965    2015
## 13966    2015
## 13967    2015
## 13968    2015
## 13969    2015
## 13970    2015
## 13971    2015
## 13972    2015
## 13973    2015
## 13974    2015
## 13975    2015
## 13976    2015
## 13977    2015
## 13978    2015
## 13979    2015
## 13980    2015
## 13981    2015
## 13982    2015
## 13983    2015
## 13984    2015
## 13985    2015
## 13986    2015
## 13987    2015
## 13988    2015
## 13989    2015
## 13990    2015
## 13991    2015
## 13992    2015
## 13993    2015
## 13994    2015
## 13995    2015
## 13996    2015
## 13997    2015
## 13998    2015
## 13999    2015
## 14000    2015
## 14001    2015
## 14002    2015
## 14003    2015
## 14004    2015
## 14005    2015
## 14006    2015
## 14007    2015
## 14008    2015
## 14009    2015
## 14010    2015
## 14011    2015
## 14012    2015
## 14013    2015
## 14014    2015
## 14015    2015
## 14016    2015
## 14017    2015
## 14018    2015
## 14019    2015
## 14020    2015
## 14021    2015
## 14022    2015
## 14023    2015
## 14024    2015
## 14025    2015
## 14026    2015
## 14027    2015
## 14028    2015
## 14029    2015
## 14030    2015
## 14031    2015
## 14032    2015
## 14033    2015
## 14034    1996
## 14035    1996
## 14036    1996
## 14037    1996
## 14038    1996
## 14039    1996
## 14040    1996
## 14041    1996
## 14042    1996
## 14043    1996
## 14044    1996
## 14045    1996
## 14046    1996
## 14047    1996
## 14048    1996
## 14049    1996
## 14050    1996
## 14051    1996
## 14052    1996
## 14053    1996
## 14054    1996
## 14055    1996
## 14056    1996
## 14057    1996
## 14058    1996
## 14059    1996
## 14060    1996
## 14061    1996
## 14062    1996
## 14063    1996
## 14064    1996
## 14065    1996
## 14066    1996
## 14067    1996
## 14068    1996
## 14069    1996
## 14070    1996
## 14071    1996
## 14072    1996
## 14073    1996
## 14074    1996
## 14075    1996
## 14076    1996
## 14077    1996
## 14078    1996
## 14079    1996
## 14080    1996
## 14081    1996
## 14082    1996
## 14083    1996
## 14084    1996
## 14085    1996
## 14086    1996
## 14087    1996
## 14088    1996
## 14089    1996
## 14090    1996
## 14091    1996
## 14092    1996
## 14093    1996
## 14094    1996
## 14095    1996
## 14096    1996
## 14097    1996
## 14098    1996
## 14099    1996
## 14100    1996
## 14101    1996
## 14102    1996
## 14103    1996
## 14104    1996
## 14105    1996
## 14106    1996
## 14107    1996
## 14108    1996
## 14109    1996
## 14110    1996
## 14111    1996
## 14112    1996
## 14113    1996
## 14114    1996
## 14115    1996
## 14116    1996
## 14117    1996
## 14118    1996
## 14119    1996
## 14120    1996
## 14121    1996
## 14122    1996
## 14123    1996
## 14124    1996
## 14125    1996
## 14126    1996
## 14127    1996
## 14128    1996
## 14129    1996
## 14130    1996
## 14131    1996
## 14132    1996
## 14133    1996
## 14134    1996
## 14135    1996
## 14136    1996
## 14137    1996
## 14138    1996
## 14139    1996
## 14140    1996
## 14141    1996
## 14142    1996
## 14143    1996
## 14144    1996
## 14145    1996
## 14146    1996
## 14147    1996
## 14148    1996
## 14149    1996
## 14150    1996
## 14151    1996
## 14152    1996
## 14153    1996
## 14154    1996
## 14155    1996
## 14156    1996
## 14157    2011
## 14158    2011
## 14159    2011
## 14160    2011
## 14161    2011
## 14162    2011
## 14163    2011
## 14164    2011
## 14165    2011
## 14166    2011
## 14167    2011
## 14168    2011
## 14169    2011
## 14170    2011
## 14171    2011
## 14172    2011
## 14173    2011
## 14174    2011
## 14175    2011
## 14176    2011
## 14177    2011
## 14178    2011
## 14179    2011
## 14180    2011
## 14181    2011
## 14182    2011
## 14183    2011
## 14184    2011
## 14185    2011
## 14186    2011
## 14187    2011
## 14188    2011
## 14189    2011
## 14190    2011
## 14191    2011
## 14192    2011
## 14193    2011
## 14194    2011
## 14195    2011
## 14196    2011
## 14197    2011
## 14198    2011
## 14199    2011
## 14200    2011
## 14201    2011
## 14202    2011
## 14203    2011
## 14204    2011
## 14205    2011
## 14206    2011
## 14207    2011
## 14208    2011
## 14209    2011
## 14210    2011
## 14211    2011
## 14212    2011
## 14213    2011
## 14214    2011
## 14215    2011
## 14216    2011
## 14217    2011
## 14218    2011
## 14219    2011
## 14220    2011
## 14221    2011
## 14222    2011
## 14223    2011
## 14224    2011
## 14225    2011
## 14226    2011
## 14227    2011
## 14228    2011
## 14229    2011
## 14230    2011
## 14231    2011
## 14232    2011
## 14233    2011
## 14234    2011
## 14235    2011
## 14236    2011
## 14237    2011
## 14238    2011
## 14239    2011
## 14240    2011
## 14241    2011
## 14242    2011
## 14243    2011
## 14244    2011
## 14245    2011
## 14246    2011
## 14247    2011
## 14248    2011
## 14249    2011
## 14250    2011
## 14251    2011
## 14252    2011
## 14253    2011
## 14254    2011
## 14255    2011
## 14256    2011
## 14257    2011
## 14258    2011
## 14259    2011
## 14260    2011
## 14261    2011
## 14262    2011
## 14263    2011
## 14264    2011
## 14265    2011
## 14266    2011
## 14267    2011
## 14268    2011
## 14269    2011
## 14270    2011
## 14271    2011
## 14272    2011
## 14273    2011
## 14274    2011
## 14275    2011
## 14276    2011
## 14277    2011
## 14278    2011
## 14279    2011
## 14280    2011
## 14281    2011
## 14282    2011
## 14283    2011
## 14284    2011
## 14285    2011
##  [ reached getOption("max.print") -- omitted 85719 rows ]
dat  %>% filter(n_year==2015) %>% group_by(genres, n_year) %>% summarize( n_rating=mean(rating), l_rating=length(rating) ) %>% ungroup() %>% arrange(desc(l_rating)) %>% slice(1:10) %>% 
     knitr::kable()
genres n_year n_rating l_rating
Drama 2015 3.8 395
Comedy 2015 3.2 298
Action|Adventure|Sci-Fi 2015 3.9 191
Comedy|Romance 2015 3.3 186
Crime|Drama 2015 4.1 178
Comedy|Drama 2015 3.8 174
Comedy|Drama|Romance 2015 3.7 169
Drama|Romance 2015 3.8 164
Action|Adventure|Sci-Fi|Thriller 2015 3.4 112
Action|Adventure|Sci-Fi|IMAX 2015 3.5 110
dat  %>% filter(n_year==2016) %>% group_by(genres, n_year) %>% summarize( n_rating=mean(rating), l_rating=length(rating) ) %>% ungroup() %>% arrange(desc(l_rating)) %>% slice(1:10) %>% 
     knitr::kable()
genres n_year n_rating l_rating
Comedy 2016 3.0 378
Drama 2016 3.7 288
Comedy|Romance 2016 3.1 219
Action|Adventure|Sci-Fi 2016 3.5 174
Comedy|Drama 2016 3.6 162
Comedy|Drama|Romance 2016 3.4 160
Drama|Romance 2016 3.8 135
Action|Adventure|Sci-Fi|IMAX 2016 3.3 117
Action|Sci-Fi|Thriller 2016 3.4 100
Crime|Drama 2016 4.0 99
dat  %>% filter(n_year==2014) %>% group_by(genres, n_year) %>% summarize( n_rating=mean(rating), l_rating=length(rating) ) %>% ungroup() %>% arrange(desc(l_rating)) %>% slice(1:10) %>% 
     knitr::kable()
genres n_year n_rating l_rating
Drama 2014 3.5 168
Comedy 2014 3.2 128
Comedy|Drama 2014 3.3 78
Crime|Drama 2014 3.8 77
Drama|Romance 2014 3.3 65
Comedy|Drama|Romance 2014 3.3 57
Action|Adventure|Sci-Fi 2014 3.4 49
Action|Adventure|Sci-Fi|IMAX 2014 3.3 49
Comedy|Romance 2014 3.0 49
Drama|Thriller 2014 3.4 34
dat  %>% filter(n_year==2014) %>% group_by(genres, n_year) %>% summarize( n_rating=mean(rating), l_rating=length(rating) ) %>% ungroup() %>% arrange((l_rating)) %>% slice(1:10) %>% 
     knitr::kable()
genres n_year n_rating l_rating
Action 2014 3.5 1
Action|Adventure|Animation|Children|Fantasy|Sci-Fi 2014 4.0 1
Action|Adventure|Animation|Drama|Fantasy 2014 4.5 1
Action|Adventure|Animation|Horror|Sci-Fi 2014 1.5 1
Action|Adventure|Animation|Sci-Fi|Thriller 2014 3.0 1
Action|Adventure|Children|Comedy 2014 3.5 1
Action|Adventure|Children|Comedy|Fantasy 2014 2.0 1
Action|Adventure|Children|Drama 2014 3.0 1
Action|Adventure|Children|IMAX 2014 2.5 1
Action|Adventure|Comedy|Fantasy|Horror 2014 2.5 1
dat  %>% filter(n_year==2015) %>% group_by(genres, n_year) %>% summarize( n_rating=mean(rating), l_rating=length(rating) ) %>% ungroup() %>% arrange((l_rating)) %>% slice(1:10) %>% 
     knitr::kable()
genres n_year n_rating l_rating
Action|Adventure|Animation|Children|Comedy|Sci-Fi 2015 2.0 1
Action|Adventure|Animation|Children|Comedy|Western 2015 3.5 1
Action|Adventure|Animation|Comedy|Crime|Mystery 2015 2.0 1
Action|Adventure|Animation|Comedy|Fantasy 2015 5.0 1
Action|Adventure|Animation|Comedy|Sci-Fi 2015 4.5 1
Action|Adventure|Animation|Crime|Fantasy 2015 5.0 1
Action|Adventure|Animation|Horror|Sci-Fi 2015 1.0 1
Action|Adventure|Children 2015 0.5 1
Action|Adventure|Children|Comedy|Mystery 2015 0.5 1
Action|Adventure|Children|Drama 2015 3.0 1
dat  %>% filter(n_year==2016) %>% group_by(genres, n_year) %>% summarize( n_rating=mean(rating), l_rating=length(rating) ) %>% ungroup() %>% arrange((l_rating)) %>% slice(1:10) %>% 
     knitr::kable()
genres n_year n_rating l_rating
Action|Adventure|Animation|Children|Comedy|Sci-Fi|IMAX 2016 2.5 1
Action|Adventure|Animation|Children|Fantasy|Sci-Fi 2016 3.5 1
Action|Adventure|Animation|Children|Sci-Fi 2016 4.0 1
Action|Adventure|Animation|Crime|Sci-Fi 2016 3.5 1
Action|Adventure|Animation|Drama|Fantasy|Sci-Fi 2016 3.0 1
Action|Adventure|Animation|Fantasy|Sci-Fi 2016 3.0 1
Action|Adventure|Animation|Sci-Fi 2016 2.5 1
Action|Adventure|Children 2016 0.5 1
Action|Adventure|Children|Drama 2016 3.0 1
Action|Adventure|Comedy|Crime|Drama|Film-Noir|Horror|Mystery|Thriller|Western 2016 4.0 1